:root {
    --mist: #faf6f9;
    --mint: #ECFAF2;
    --blush: #fcebea;
    --lavender: #d8c9ca;
    --text-dark: #3a3a3a;
    --accent: #A28A74;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    
    font-family: 'Montserrat', sans-serif;
    background-color: var(--mist);
    display: flex;
    justify-content: center;
    color: var(--text-dark);
  }

  .page-container{
    width: 100%;
  }
  /* HEADER */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
  }

  .logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent);
  }

  .nav-links a {
    text-decoration: none;
    margin: 0 15px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
  }

  .btn-nav {
    background-color: var(--blush);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
  }
  
  /* 🔹 HAMBURGER ICON */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 18px;
    justify-content: space-between;
  }

  .menu-toggle span {
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
  }

  /* 🔹 MOBILE STYLES */
  @media (max-width: 768px) {
    header {
      padding: 20px 25px;
    }

    .nav-links {
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      flex-direction: column;
      background: #fff;
      text-align: center;
      gap: 20px;
      padding: 20px 0;
      display: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .nav-links.active {
      display: flex;
	  z-index: 999;
    }

    .menu-toggle {
      display: flex;
    }
  }

  /* HERO */
  .hero {
    text-align: center;
    background-image: url("gradient.png");
    background: linear-gradient(to bottom, var(--mist), white, var(--mint));
    padding: 100px 20px 80px;
  }

  .hero h1 {
    font-weight: 600;
    font-size: 2.6rem;
    color: var(--text-dark);
    line-height: 1.4;
  }

  .btn-main {
    background-color: var(--blush);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    display: inline-block;
    margin-top: 30px;
  }

  /* SERVICES SECTION */
  .section {
    background: var(--blush);
    padding: 80px 10%;
    text-align: center;
  }

  .section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
  }

  .section h2 span {
    color: #848484;
  }

  .section p.subtitle {
    color: #6f6f6f;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 15px;
  }

  .features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
  }

  .feature-box {
    background: transparent;
    border-radius: 16px;
  }

  .feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }

  .feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .feature-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
  }

  .feature-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
  }

  @media (max-width: 1024px) {
    .features {
      flex-wrap: wrap;
    }
  }

  /* TESTIMONIAL SECTION */
  .testimonial-section {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    background: linear-gradient(to right, var(--mint), var(--blush));
    padding: 100px 10%;
  }

  .left-text, .right-text {
    flex: 1;
    color: var(--text-dark);
  }

  .left-text h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .left-text .author,
  .right-text .author {
    font-size: 15px;
    color: #777;
    font-style: italic;
  }

  .right-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .right-text p span {
    color: #c44f3a;
    font-weight: 600;
  }

  @media (max-width: 900px) {
    .testimonial-section {
      flex-direction: column;
      gap: 50px;
      padding: 60px 8%;
    }

    .left-text h3 {
      font-size: 24px;
    }
  }

  /* CTA SECTION */
  .cta-section {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: var(--blush);
  }

  .cta-left {
    flex: 1;
    padding: 70px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cta-left h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
  }

  .cta-left button {
    width: 180px;
    background-color: #EED3CC;
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

  .cta-left button:hover {
    background-color: #e3c1b9;
  }

  .cta-right {
    flex: 0.55;
    background-color: var(--lavender);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
  }

  .cta-right img {
    width: 270px;
    margin-bottom: 10px;
    object-fit: contain;
  }

  .cta-right h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
  }

  .cta-right p {
    font-size: 13px;
    letter-spacing: 2px;
    color: #5f5f5f;
    margin-top: 4px;
  }

  @media (max-width: 900px) {
    .cta-section {
      flex-direction: column;
    }

    .cta-left, .cta-right {
      flex: 1;
      padding: 50px 8%;
    }
  }

  /* FOOTER */
  footer {
    background: var(--mist);
    padding: 20px 8%;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer-bottom p {
    font-size: 14px;
    margin: 0;
  }

  .socials {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .socials a {
    color: var(--text-dark);
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .socials a:hover {
    color: #7c7c7c;
  }

  @media (max-width: 700px) {
    .footer-bottom {
      flex-direction: column-reverse;
      gap: 15px;
      text-align: center;
    }
  }

 /* About Section */
.about-section {
  background-color: #f9f6fb; /* soft lavender tone */
  padding: 80px 10%;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Text Section */
.about-text {
  flex: 1 1 45%;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #4c3c67;
  margin-bottom: 10px;
}

.about-text h4 {
  font-size: 18px;
  color: #555;
  margin-bottom: 16px;
  font-weight: 500;
}

.about-text p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* Image Section */
.about-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.about-image img {
   border-radius: 25px;
  height: 260px; 
}


/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
    margin-bottom: 20px;
  }
  /* Image Section */
.about-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.about-image img {
   
  height: 200px; 
}

}

/* Section Background */
.soft-spot-section {
  background: linear-gradient(to right, #F5E7E1 50%, #DFF3E3 50%); /* Blush Sand + Mint Whisper */
  padding: 80px 10%;
}

.soft-spot-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Text Area */
.soft-spot-text {
  flex: 1 1 45%;
}

.soft-spot-text h2 {
  font-size: 26px;
  font-weight: 700;
  color: #4c3c67;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.soft-spot-text p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  max-width: 500px;
}

/* Image Area */
.soft-spot-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.soft-spot-image img {
  border-radius: 25px;
  height: 260px; 
}

/* Responsive Design */
@media (max-width: 768px) {
  .soft-spot-section {
    background: #F5E7E1; /* single color on small screens */
  }

  .soft-spot-container {
    flex-direction: column;
    text-align: center;
  }

  .soft-spot-text {
    order: 2;
  }

  .soft-spot-image {
    order: 1;
    margin-bottom: 25px;
  }

  .soft-spot-image img {
     
    height: 200px;
  }
}



  .quote-container {
    width: 100%;
    background-color: var(--blush); /* Laver or Mist */
    border-radius: 12px;
    padding: 80px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }

  .quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #9C6F6A;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 8px;
  }

  .quote-author {
    font-weight: 600;
    color: #9C6F6A;
    font-size: 16px;
    margin-top: 0;
  }

  .quote-position {
    font-size: 13px;
    color: #A98D88;
    margin-top: 2px;
  }


  .vision-section {
   background-color: var(--blush);
    text-align: center;
    padding: 20px 20px;
  }

  .vision-section h2 {
    font-size: 28px;
    color: #704C4C;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .vision-section p.subtitle {
    color: #8B6F6B;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
  }

  .values-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
  }

  .value-box {
        background-color: transparent;
    border-radius: 12px;
    padding: 40px 25px;
    width: 280px;
    transition: all 0.3s ease;
  }

  .value-box:hover {
    transform: translateY(-8px);
  }

  .value-box i {
    font-size: 32px;
    color: #9C6F6A;
    margin-bottom: 18px;
  }

  .value-box h3 {
    font-size: 20px;
    color: #704C4C;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .value-box p {
    color: #8B6F6B;
    font-size: 14px;
    line-height: 1.6;
  }

  .quote-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: var(--mist); /* Laver or Mist */
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
  }

  /* Left Side */
  .quote-left {
    flex: 2;
    padding: 60px 40px;
  }

  .quote-left p.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #9C6F6A;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
        text-align: center;
  }

  .quote-left p.quote-author {
    font-weight: 600;
    color: #000;
    font-size: 15px;
    margin-bottom: 3px;
    text-align: center;
  }

  .quote-left p.quote-position {
    font-size: 13px;
    color: #A98D88;
    text-align: center;
  }

  /* Right Side */
  .quote-right {
    flex: 1;
    background-color: #D7CBD8; /* soft purple tone */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    
  }

  .quote-right .logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .quote-right .logo-box h1 {
    font-size: 60px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .quote-right .logo-box p {
    font-size: 14px;
    margin-top: 4px;
    letter-spacing: 1px;
  }

  .social-icons {
    margin-top: 25px;
  }

  .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 18px;
    transition: 0.3s;
  }

  .social-icons a:hover {
    color: #ECEDEE;
  }

  @media(max-width: 768px) {
    .quote-wrapper {
      flex-direction: column;
    }
    .quote-right {
      padding: 30px 0;
    }
  }

  .looking-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--mist); /* Blush Sand */
    padding: 60px 80px;
    border-radius: 14px;
    max-width: 100%;
    margin: 40px auto;
    flex-wrap: wrap;
  }

  .looking-text {
    font-size: 26px;
    color: #3C3C3C;
    font-weight: 400;
    margin-left: 10%;
  }

  .looking-text strong {
    font-weight: 700;
  }

  .search-btn {
    background-color:var(--blush);; /* Mint Whisper */
    border: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 34px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 30%;
  }

  .search-btn:hover {
    background-color: #ECEDEE;
  }

  @media (max-width: 768px) {
    .looking-section {
      flex-direction: column;
      text-align: center;
      gap: 20px;
      padding: 40px 20px;
    }
  }

  /* Hero Section */
.career-hero {
  background-image: url('careers.avif'); /* replace with your image */
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.career-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.career-hero .overlay {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.career-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.career-hero p {
  font-size: 16px;
  margin-top: 10px;
}

/* Openings Section */
.career-openings {
  background-color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.career-openings h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.career-openings p {
  color: #555;
  font-size: 15px;
}


.offers {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;   /* Cards ko equal height deta hai */
}

.card {
  background: var(--mint);
  padding: 26px 28px;
  border-radius: 18px;
  border: 1px solid #eee;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: .25s ease;
  height: 100%;        /* IMPORTANT: equal height force */
  display: flex;
  flex-direction: column;
}


.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

.badge {
  background: var(--mint);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.card p {
  font-size: 0.98rem;
  color: #555;
  margin-top: 8px;
}

.card ul li {
  font-size: 0.9rem;
}

.btn {
  padding: 9px 18px;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #8b745f;
}

.metrics {
  margin-top: 50px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.kpi {
  background: white;
  padding: 20px 26px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.kpi b {
  font-size: 1.4rem;
  display: block;
  color: var(--accent);
}

.kpi span {
  font-size: 0.9rem;
  color: #444;
}

/* ---------------------------
   TABLET (max-width: 992px)
   --------------------------- */
@media (max-width: 992px) {
  .offers {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

/* ---------------------------
   MOBILE (max-width: 600px)
   --------------------------- */
@media (max-width: 600px) {
  .offers {
    grid-template-columns: repeat(1, 1fr); /* 1 per row */
    gap: 18px;
  }

  .card {
    padding: 22px 20px;
  }

  .card h3 {
    font-size: 1.2rem;
  }

  .card p,
  .card ul li {
    font-size: 0.9rem;
  }
}
.card .btn {
  flex: 1;
  text-align: center;
  min-width: 130px;
}

/* Button wrapper container fix */
.card .btn-row {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

/* MOBILE FIX */
@media (max-width: 600px) {
  .card .btn {
    width: 100%;         /* Mobile me full width */
    min-width: unset;
  }
}
