   /* Default styles for larger screens */
        .company-name {
          font-size: 1.4rem;
          margin-right: 10px;
          color: white;
        }
        
        /* For tablets (screen width less than 768px) */
        @media (max-width: 768px) {
          .company-name {
            font-size: 1.2rem; /* Adjust font size for tablets */
          }
        }
        
        /* For mobile devices (screen width less than 576px) */
        @media (max-width: 576px) {
          .company-name {
            font-size: 1rem; /* Adjust font size for mobile phones */
          }
        }

/* Hero Section */
.team-hero {
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
}

/* Card Styling */
.team-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 20px;
}
/* Image Styling */
.card-img-top {
    width: 100%;         /* Ensures the image takes the full width of the card */
    height: 250px;        /* Fixed height for all images */
    object-fit: cover;    /* Ensures the image covers the area without distortion */
    object-position: center; /* Center the image if it overflows */
}

/* Social Icons */
.social-icons a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-align: center;
}

.social-icons a:hover {
    color: #004d40;
}

/* CTA Section */
.cta-section {
    background-image: url('join-us-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}
/* Image Styling */
.img-fluid {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
.professional-title {
    font-family: 'Arial', sans-serif; /* Clean font */
    font-size: 1rem; /* Larger size for the title */
    font-weight: bold; /* Bold font for emphasis */
    color: #004d40; /* Professional blue color */
    margin-bottom: 0.5rem; /* Space below the title */
    text-align: center;
}

.position-text {
    font-family: 'Arial', sans-serif; /* Consistent font */
    font-size: 1rem; /* Slightly smaller than title */
    font-weight: bold; /* Bold for emphasis */
    color: #333; /* Dark gray for text */
    margin-bottom: 0.25rem; /* Space below the position */
    text-align: center;
}

.description-text {
    font-family: 'Arial', sans-serif; /* Consistent font */
    font-size: .7rem; /* Standard size for description */
    color: #555;
    font-weight: bold;  /* Medium gray for contrast */
    line-height: 1.5; /* Improved readability */
    margin: 0; /* Remove extra margin */
    text-align: center;
}
.social-icons {
    display: flex;
    justify-content: center;  /* Center icons horizontally */
    gap: 5px;                /* Add space between the icons */
    margin-top: 1rem;
}

.social-icons a {
    font-size: 1.8rem;  /* Size for the Bootstrap icons */
    color: #007bff;     /* Professional blue color */
    text-align: center;
}

.social-icons a:hover {
    color: #0056b3;    /* Darker blue on hover */
}