      /* Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* WhatsApp Button Styling */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 50px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
  position: fixed;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
}

/* Tooltip Styling */
.whatsapp-tooltip {
  position: absolute;
  right: 70px; /* Position to the left of the WhatsApp button */
  background-color: #ffffff;
  color: #25D366;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}



@media (max-width: 480px) {
  .whatsapp-button {
      width: 50px;
      height: 50px;
      left: 15px;
  }

  .whatsapp-icon {
      width: 24px;
      height: 24px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .whatsapp-button {
      width: 55px;
      height: 55px;
  }

  .whatsapp-icon {
      width: 28px;
      height: 28px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .whatsapp-button {
      width: 60px;
      height: 60px;
  }

  .whatsapp-icon {
      width: 30px;
      height: 30px;
  }
}

@media (min-width: 1025px) {
  .whatsapp-button {
      width: 70px;
      height: 70px;
  }

  .whatsapp-icon {
      width: 35px;
      height: 35px;
  }
}

    
    /* ========== Page container & typography (class-based only) ========== */
    .about-page-root {
        font-family: "Inter", "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
        /*background-color: #ffffff;*/
        background: linear-gradient(180deg, #F7F4EF 0%, #F0ECE5 100%);
        color: #222831;
        line-height: 1.6;
    }

    .about-page-container {
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-page-heading {
        font-weight: 700;
        color: #1d3557;
        margin: 0 0 10px 0;
    }

    .about-page-subheading {
        color: #00a884;
        font-weight: 600;
        margin: 0 0 12px 0;
    }

    .about-page-text {
        color: #4a4a4a;
        margin: 0 0 12px 0;
    }

    .about-page-btn {
        display: inline-block;
        background: #00a884;
        color: #ffffff;
        padding: 10px 18px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: background .18s ease, transform .12s ease;
    }

    .about-page-btn:hover {
        background: #008f70;
        transform: translateY(-2px);
    }

    /* .about-page-section {
        padding-top: 60px;
        padding-bottom: 60px;
    } */

    /* ========== HERO ========== */
    .about-page-hero {
        position: relative;
        height: 100vh;
        min-height: 480px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .about-page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("images/office\ meeting.jpg");
        background-size: cover;
        background-position: center;
        z-index: 1;
        filter: brightness(.8);
    }

    .about-page-hero::after {
        /* dark overlay */
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 2;
    }

    .about-page-hero-inner {
        position: relative;
        z-index: 3;
        text-align: center;
        color: #ffffff;
        max-width: 980px;
        padding: 24px;
    }

    .about-page-hero-title {
        font-size: 2.6rem;
        line-height: 1.05;
        margin-bottom: 14px;
        font-weight: 800;
        color: #ffffff;
    }

    .about-page-hero-lead {
        font-size: 1.125rem;
        margin-bottom: 20px;
        opacity: 0.95;
    }

    /* ========== COMPANY STORY (image left, text right) ========== */
    .about-page-story {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: center;
    }

    .about-page-story-img {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(16, 24, 40, 0.08);
    }

    .about-page-story-img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .about-page-story-content {
        padding: 8px;
    }

    .about-page-quote {
        background: #f7fcfb;
        border-left: 6px solid #00a884;
        padding: 18px;
        border-radius: 8px;
        box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
        margin-top: 18px;
    }

    /* ========== CEO MESSAGE (image left, text right) ========== */
    .about-page-ceo {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 28px;
        align-items: center;
    }

    .about-page-ceo-photo {
        width: 320px;
        min-width: 180px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 28px rgba(16, 24, 40, 0.08);
    }

    .about-page-ceo-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .about-page-ceo-content {
        padding: 6px 0;
    }

    .about-page-ceo-name {
        font-size: 1.05rem;
        font-weight: 700;
        margin-top: 8px;
    }

    .about-page-ceo-designation {
        color: #6b7280;
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .about-page-ceo-letter {
        background: #ffffff;
        border-left: 6px solid #00a884;
        padding: 18px;
        border-radius: 8px;
        box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
    }

    /* ========== VISION & MISSION CARDS ========== */
    .about-page-vision-mission {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .about-page-vm-card {
        background: #ffffff;
        border-left: 6px solid #00a884;
        padding: 22px;
        border-radius: 10px;
        box-shadow: 0 8px 26px rgba(16, 24, 40, 0.06);
    }

    .about-page-vm-title {
        margin-bottom: 8px;
        font-weight: 700;
        color: #1d3557;
    }

    /* ========== CORE VALUES GRID ========== */
    .about-page-values {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .about-page-value-card {
        background: #fff;
        padding: 18px;
        border-radius: 10px;
        /* border-left: 6px solid #00a884; */
        border-bottom: 4px solid #00a884;
        box-shadow: 0 6px 20px rgba(16, 24, 40, 0.04);
        text-align: left;
    }

    .about-page-value-icon {
        font-size: 26px;
        margin-bottom: 8px;
        color: #00a884;
    }

    .about-page-value-title {
        font-weight: 700;
        margin-bottom: 6px;
        color: #1d3557;
    }

    /* ========== Timeline / Journey ========== */
    .about-page-timeline {
        position: relative;
        padding-left: 18px;
        padding-right: 18px;
    }

    .about-page-timeline-list {
        display: grid;
        gap: 20px;
    }

    .about-page-timeline-item {
        display: flex;
        gap: 18px;
        align-items: flex-start;
    }

    .about-page-timeline-dot {
        min-width: 14px;
        min-height: 14px;
        border-radius: 50%;
        background: #00a884;
        margin-top: 6px;
        flex-shrink: 0;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }

    .about-page-timeline-body {
        background: #fff;
        border-left: 6px solid #00a884;
        padding: 14px 16px;
        border-radius: 8px;
        box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
    }

    .about-page-timeline-year {
        font-weight: 700;
        color: #1d3557;
        margin-bottom: 6px;
    }

    /* ========== TEAM GRID ========== */
    /* .about-page-team {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
    }

    .about-page-team-card {
        background: #ffffff;
        border-left: 2px solid #00a884;
        border-bottom: 4px solid #00a884;
        border-radius: 10px;
        padding: 16px;
        box-shadow: 0 8px 26px rgba(16, 24, 40, 0.06);
        text-align: center;
        transition: transform .16s ease;
    }

    .about-page-team-card:hover {
        transform: translateY(-6px);
    }

    .about-page-team-photo {
        width: 100%;
        height: 180px;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 12px;
    }

    .about-page-team-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .about-page-team-name {
        font-weight: 700;
        margin-bottom: 4px;
    }

    .about-page-team-role {
        color: #6b7280;
        margin-bottom: 10px;
    } */



    /* ========== TEAM SECTION ========== */
.about-page-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ========== TEAM GRID ========== */
.about-page-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* ========== TEAM CARD ========== */
.about-page-team-card {
  background: #ffffff;
  border-left: 2px solid #00a884;
  border-bottom: 4px solid #00a884;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 26px rgba(16, 24, 40, 0.06);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-page-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* ========== TEAM PHOTO ========== */
.about-page-team-photo {
  aspect-ratio: 1 / 1; /* responsive square */
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #f3f4f6; /* fallback bg for transparent images */
}

.about-page-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* image fills box neatly */
  display: block;
  transition: transform 0.3s ease;
}

.about-page-team-photo img:hover {
  transform: scale(1.05);
}
.team-link {
  text-decoration: none;
  color: inherit;              /* same color as team name */
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.team-link:hover {
  color: #00a884;              /* green hover effect */
  transform: scale(1.03);      /* slight zoom effect */
}


/* ========== TEAM TEXT ========== */
.about-page-team-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #111827;
}

.about-page-team-role {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 10px;
}


/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .about-page-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-page-team {
    gap: 16px;
  }

  .about-page-team-card {
    padding: 14px;
  }

  .about-page-team-name {
    font-size: 1rem;
  }

  .about-page-team-role {
    font-size: 0.85rem;
  }
}


    /* ========== WHY CHOOSE US (div list) ========== */
    .about-page-why {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 16px;
    }

    .about-page-why-item {
        background: #fff;
        border-left: 1px solid #00a884;
        border-bottom: 4px solid #00a884;
        padding: 18px;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
    }

    /* ========== CLOSING CTA (full width background) ========== */
    .about-page-cta {
        position: relative;
        border-radius: 12px;
        padding: 48px 28px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .about-page-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
        background-size: cover;
        background-position: center;
        filter: brightness(.75);
        z-index: 1;
    }

    .about-page-cta::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 2;
    }

    .about-page-cta-inner {
        position: relative;
        z-index: 3;
        color: #ffffff;
        max-width: 900px;
    }

    .about-page-cta-title {
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 12px;
    }





        /* Section 5 - CTA */
    .cta {
      background: linear-gradient(135deg, #00a884, #007a61);
      text-align: center;
      padding: 80px 20px;
      color: #fff;
      border-radius: 12px;
      border-bottom: 4px solid #0d1b2a;

    }

    .cta h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .cta p {
      margin-bottom: 25px;
      font-size: 1.1rem;
    }


    /* ========== small helpers ========== */
    .about-page-flex {
        display: flex;
        gap: 18px;
        align-items: center;
    }

    .about-page-center {
        text-align: center;
    }

    /* ========== Responsive breakpoints (your requested ranges) ========== */
    @media only screen and (min-width:300px) and (max-width:480px) {
        .about-page-hero-title {
            font-size: 1.6rem;
        }

        .about-page-hero {
            height: 65vh;
            min-height: 420px;
            padding-left: 12px;
            padding-right: 12px;
        }

        .about-page-story {
            grid-template-columns: 1fr;
        }

        .about-page-ceo {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .about-page-ceo-photo {
            width: 220px;
            margin: 0 auto;
        }

        .about-page-vision-mission {
            grid-template-columns: 1fr;
        }

        .about-page-values {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media only screen and (min-width:481px) and (max-width:768px) {
        .about-page-hero-title {
            font-size: 2.0rem;
        }

        .about-page-story {
            grid-template-columns: 1fr;
        }

        .about-page-ceo {
            grid-template-columns: 1fr;
        }

        .about-page-vision-mission {
            grid-template-columns: 1fr 1fr;
        }

        .about-page-values {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media only screen and (min-width:769px) and (max-width:1024px) {
        .about-page-hero-title {
            font-size: 2.4rem;
        }

        .about-page-values {
            grid-template-columns: repeat(3, 1fr);
        }

        .about-page-story {
            grid-template-columns: 1fr 1fr;
        }

        .about-page-ceo {
            grid-template-columns: 260px 1fr;
        }
    }

    @media only screen and (min-width:1025px) and (max-width:1300px) {
        .about-page-hero-title {
            font-size: 2.6rem;
        }

        .about-page-values {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    /* larger screens */
    @media (min-width:1301px) {
        .about-page-hero-title {
            font-size: 3rem;
            letter-spacing: -0.5px;
        }
    }









    

