* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f1f8 100%);
    overflow-x: hidden;
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/pexels-tara-winstead-7722680.jpg') center/cover;
    color: white;
    padding: 120px 20px;
    text-align: left;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-breadcrumb {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Welcome Section */
.welcome-section {
    padding: 60px 0px;
    background: white;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.welcome-title span {
    color: #00bfa5;
}

.welcome-text {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Mission Section */
.mission-section {
    /* background: #f0f8f6; */
    padding: 60px 0px;
}

.mission {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    /* align-items: center; */
    /* max-width: 1100px; */
    /* margin: 0 auto; */
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a472a;
    line-height: 1.3;
}

.mission-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 60px 0px;
    background: white;
}

.section-label {
    display: inline-block;
    background: #e0f7f4;
    color: #00bfa5;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-label i {
    margin-right: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.section-title span {
    color: #00bfa5;
}

.team-container {
    max-width: 1100px;
    margin: 0 auto;
}

.team-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.team-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.team-card h5 {
    font-weight: 600;
    color: #1a472a;
    margin-bottom: 0.3rem;
}

.team-card p {
    color: #999;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #00bfa5;
    background: white;
    color: #00bfa5;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #00bfa5;
    color: white;
}

/* Why Choose Us Section */
.choose-section {
  background: #f0f8f6;
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  background: #1a472a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.section-label i {
  margin-right: 8px;
}

/* .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a472a;
  margin-bottom: 30px;
  line-height: 1.3;
} */

/* .section-title span {
  color: #0e8a4c;
} */

.choose-content {
  max-width: 500px;
}

.choose-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.choose-card i {
  font-size: 2.2rem;
  color: #1a472a;
}

.choose-card h5 {
  font-weight: 600;
  margin-top: 10px;
  color: #1a472a;
}

.choose-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.choose-image {
  position: relative;
  /* margin-top: 125px; */
}

.choose-image img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

.badge-25 {
  position: absolute;
  right: 10px;
  bottom: 450px;
  width: 120px;
  height: 120px;
  background: #1a472a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.badge-25 span {
  font-size: 0.85rem;
  font-weight: 400;
}

/* Vision Section */
.vision-section {
    background: white;
    padding: 60px 20px;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.vision-image {
    background: #f0f8f6;
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
}

.vision-content {
    order: 1;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a472a;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.vision-text {
    color: #666;
    line-height: 1.8;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
  background: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.section-title .highlight {
  color: #00a4cc;
}

/* Gallery Items */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(119, 179, 244, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Controls (Top Right Corner) */
.gallery-controls {
  display: flex;
  align-items: center;
}

.control-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: #00a4cc;
}



/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .mission-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-title {
        font-size: 1.8rem;
    }

    .choose-container {
        grid-template-columns: 1fr;
    }

    .choose-image {
        display: block;
    }

    .badge-25 {
        /* position: static;
        transform: none;
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
        margin: 20px auto; */
        display: none;
    }

    .vision-container {
        grid-template-columns: 1fr;
    }

    .vision-image {
        order: 1;
    }

    .vision-content {
        order: 2;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .app-badges {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .choose-content {
        grid-template-columns: 1fr;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .team-carousel {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .choose-section {
        padding: 60px 0;
    }
}