

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('../images/team-hero.jpg') no-repeat center center/cover;
    color: white;
    padding: 200px 0;
    text-align: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Team Cards */


/* Team Section */
.team-section {
    background-color: #f9f9f9;
}

/* Section Titles */
.section-title h2 {
    font-size: 2rem;
    font-weight: bold;
}

.section-title p {
    font-size: 1rem;
    color: #777;
}

/* Team Card */
.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Team Image */
/* Team Image Fix */
.team-image {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure full image visibility */
    object-position: top; /* Adjust image position */
    transition: transform 0.3s ease-in-out;
}

/* Image Hover Effect */
.team-image img:hover {
    transform: scale(1.05);
}

/* Team Content */
.team-content {
    padding: 15px;
}

/* Team Names */
.team-content h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Role Description */
.team-content p {
    font-size: 1rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-card {
        padding: 15px;
    }

    .team-image {
        height: 250px;
    }

    .team-content h4 {
        font-size: 1.2rem;
    }

    .team-content p {
        font-size: 0.95rem;
    }
}









.footer {
    background: #000;
    color: white;
  }
  
  .footer h5 {
    color: #ff7f00;
    font-size: 1.5rem;
  }
  
  .footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer a:hover {
    color: #ff7f00;
  }
  
  .footer .border-white {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  