@import "footer.css";

@font-face {
    font-family: "PP Fragment Serif";
    src: url("PPFragment-SerifRegular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "PP Fragment Serif";
    src: url("PPFragment-SerifExtraBold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "PP Fragment Sans";
    src: url("PPFragment-SansRegular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "PP Fragment Sans";
    src: url("PPFragment-SansExtraBold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }

:root {
    --green-deep: rgb(48, 87, 42);
    --green-mid: #1CA069;
    --green-vivid: #A5DE48;
    --green-light: #EAF8CC;
    --green-pale: #f3f3f3;
    --earth: #55BFDE;
    --earth-light: #f5eda4;
    --ink: #101410;
    --ink-muted:  #3a4a3a;
    --ink-faint: rgba(58, 74, 58, 0.8);
    --white: #FFFFFF;
    --border: rgba(28,160,105,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --font-display: "PP Fragment Serif", serif;
    --font-body: "PP Fragment Sans", sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    line-height:1.5;
  }

  img{display:block;max-width:100%;}
  
  a{text-decoration:none;}

  .max-width-80 {max-width: 80%}
  .max-width-90 {max-width: 90%;}

  .margin-top-2 {margin-top: 2rem;}

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 5%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
  }
  nav.scrolled {
    padding: 0.65rem 5%;
    box-shadow: 0 2px 20px rgba(48,87,42,0.08);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }
  .nav-logo-mark {
    /* width: 36px; height: 36px; */
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .nav-logo-mark::after { content: none; }

  .nav-logo-mark img {
    height:30px;
    object-fit:contain; 
    padding: 0 10px;
  }
  .nav-links {
    display: flex; gap: 0; list-style: none;
  }
  .nav-links a {
    display: block; padding: 0.5rem 1.1rem;
    text-decoration: none; font-size: 0.875rem; font-weight: 500;
    color: var(--ink-muted);
    border-radius: 8px;
    transition: all 0.2s;
  }
  .nav-links a:hover { background: var(--green-light); color: var(--green-deep); }
  .nav-links a.active {
    color: var(--green-mid);
    font-weight: 600;
  }
  .nav-cta {
    margin-left: 1rem;
    background: var(--green-mid); color: white !important;
    border-radius: 8px !important; padding: 0.5rem 1.25rem !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--green-deep) !important; color: white !important; }
  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px;
  }
  .nav-hamburger span {
    width: 22px; height: 2px; background: var(--ink);
    border-radius: 2px; transition: all 0.3s;
  }

    /* Mobile menu */
  .mobile-menu {
    display: none;
    position: fixed; top: 55px; left: 0; right: 0; z-index: 99;
    background: white; border-bottom: 1px solid var(--border);
    padding: 1rem 5%;
    flex-direction: column; gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 0.75rem 1rem; border-radius: 8px;
    color: var(--ink-muted); text-decoration: none;
    font-size: 0.925rem; font-weight: 500;
    transition: background 0.2s;
  }
  .mobile-menu a:hover { background: var(--green-light); color: var(--green-deep); }

  /* ─── BREADCRUMB ─── */
  .breadcrumb{
    position: relative;z-index:1;
    margin:0 auto;
    padding:1rem 15%;
    display:flex;align-items:center;gap:.5rem;
    flex-wrap:wrap;
  }
  .breadcrumb a{
    font-size:.8rem;color:var(--ink-faint);font-weight:500;
    display:flex;align-items:center;gap:.35rem;
    transition:color .2s;
  }
  .breadcrumb a svg{width:13px;height:13px;flex-shrink:0;}
  .breadcrumb a:hover{color:var(--green-mid);}
  .breadcrumb-sep{
    font-size:.8rem;color:var(--border-dark);
    line-height:1.5;margin:0 .1rem;
  }
  .breadcrumb-current{
    font-size:.8rem;color:var(--ink-muted);font-weight:600;
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
    max-width:320px;
  }
  
  .btn-primary {
    background: var(--green-mid); color: white;
    padding: 0.95rem 2.2rem; border-radius: 12px;
    font-family: var(--font-sans-bold); font-weight: 800; font-size: 0.875rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    text-decoration: none; display: inline-flex; align-items: center; gap: 9px;
    transition: all 0.25s;
    position: relative; overflow: hidden;
  }
  .btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.12);
    transform: translateX(-100%) skewX(0deg);
    transition: transform 0.4s;
  }
  .btn-primary:hover::after { transform: translateX(120%) skewX(-15deg); }
  .btn-primary:hover {
    background: var(--green-deep);
    transform: translateY(-3px);
  }
  .btn-secondary {
    background: transparent; color: var(--green-mid);
    padding: 0.85rem 2rem; border-radius: 10px;
    font-family: var(--font-sans-bold); font-weight: 800; font-size: 0.8rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--green-mid);
    transition: all 0.25s;
  }
  .btn-secondary:hover { background: var(--green-light); transform: translateY(-2px); }

  section {
    position: relative;
    background: #ffffff;
    padding: 4rem 8%;
    overflow: hidden;
  }

  .section-label {
    font-size: clamp(0.875rem, 2.8vw, 1rem); font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--green-mid);
    margin-bottom: 0.5rem;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 2.8vw, 2.25rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 0.25rem;
  }

  .section-title.white,
  .section-subheading.white,
  .section-desc.white {
    color: var(--white);
  }

  .section-title em { font-style: normal; }

  .section-subheading {
    font-size: clamp(0.925rem, 2.8vw, 1.1rem);
    color: rgba(58, 74, 58, 0.7);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .section-desc {
    font-size: clamp(1.1rem, 2.8vw, 1.25rem);
    color: var(--ink-faint);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .section-without-padding { padding: 0 8%; }

  .green-pale-section {
    background: var(--green-pale);
  }

  .green-section {
    background: var(--green-mid)
  }
  .green-section .section-label { color: var(--green-vivid); }
  .green-section .section-title { color: white;}
  .green-section p {
    font-size: clamp(1.1rem, 2.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .grid-14 {
    grid-template-columns: 1.4fr 1fr;
  }

  .grid-2-cols {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .content-inner-padding {
    padding: 4rem 8%;
  }

  .wwd-content {
    background-color: rgba(234, 248, 204, 0.9);
    border-radius: 0 0 0 5rem;
  }

  .grid-columns-with-gap { display: flex; flex-direction: column; gap: 1.5rem; }

  .grid-columns-no-gap {
    display: flex; flex-direction: column; gap: 0;
    /* border-top: 1px solid rgba(0,0,0,0.07); */
  }

  .grid-columns-no-gap-content {
    display: grid;
    grid-template-columns: 38px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: color 0.2s;
    align-items: start;
  }

  .icon-box {
    grid-column: 1; grid-row: 1 / 3;
    display: flex; align-items: flex-start; padding-top: 3px;
  }

  .icon-wrap {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-mid); flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
  }
  .grid-columns-no-gap-content:hover .icon-wrap { background: var(--green-mid); color: white; }

  /* Title and desc sit in column 2 */
  .side-panel-title {
    grid-column: 2; grid-row: 1;
    font-family: var(--font-display);
    font-size: clamp(0.875rem, 2.8vw, 1rem); font-weight: 500;
    color: var(--ink); margin-bottom: 0.25rem;
    transition: color 0.2s;
  }
  .grid-columns-no-gap-content:hover .side-panel-title { color: var(--green-mid); }

  .side-panel-desc {
    grid-column: 2; grid-row: 2;
    font-size: 0.85rem; line-height: 1.65;
    color: var(--ink-muted); margin: 0;
  }

  .buttons-grid {
    display: flex; gap: 12px; flex-wrap: wrap;
  }

  .india-map {
    width: 90%;
  }

  .grid-4-cols {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .grid-3-cols {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .grid-card {
    border-radius: 16px; overflow: hidden;
    border: 1.5px solid var(--border);
    transition: all 0.3s; cursor: default;
    background: white;
  }
  .grid-card:hover {
    box-shadow: 0 12px 40px rgba(48,87,42,0.12);
    transform: translateY(-5px);
  }
  .grid-card-img {
    height: 180px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; position: relative; overflow: hidden;
  }
  .grid-card-img.green { background: linear-gradient(135deg, #1CA069, #30572A); }
  .grid-card-img.earth { background: linear-gradient(135deg, #2351F5, #071F58); }
  .grid-card-img.teal { background: linear-gradient(135deg, #55BFDE, #071F58); }

  .grid-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .grid-card:hover .grid-card-img img {
    transform: scale(1.5);
  }
  .grid-card-body { padding: 1.5rem; }
  .grid-tag {
    display: inline-block; padding: 3px 10px; border-radius: 100px;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase; margin-bottom: 0.75rem;
  }
  .grid-tag.green { background: var(--green-light); color: var(--green-deep); }
  .grid-tag.earth { background: var(--earth-light); color: #071F58; }
  .grid-tag.teal { background: #D8F2FA; color: #071F58; }
  .grid-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.8vw, 1.25rem); font-weight: 600; line-height: 1.5;
    color: var(--ink); margin-bottom: 0.5rem;
  }
  .grid-card-excerpt {
    font-size: clamp(0.925rem, 2.8vw, 1.1rem);
    color: var(--ink-muted);
    line-height: 1.6;
  }

  /* HERO Section */
  .hero {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    min-height: 80vh;
    /* padding: 0; */
    padding-top: 50px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
  }
  .hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 40%;
    filter: brightness(0.85);
  }
  .hero-overlay {
    position: absolute; inset: 0; z-index: 1;
  }
  .hero-inner {
    position: relative; z-index: 3;
    max-width: 860px; width: 100%;
    text-align: center;
    margin-top: 2rem;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 700; line-height: 1.12;
    color: #fff; margin: 0;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 32px rgba(0,0,0,0.5);
    margin-bottom: 0.25rem;
  }
  .hero-title em { font-style: normal; color: var(--green-vivid); text-shadow: 0 0 40px rgba(165,222,72,0.4); }
  .hero-sub {
    font-size: clamp(0.88rem, 1.6vw, 1.25rem);
    line-height: 1.35; color: rgba(255,255,255,0.9);
    margin: 0;
  }

  .content,
.image-box{
  flex:1;
}

.image-box{
  display:flex;
}

  /* HERO Section */
  .wwa-what-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    align-self: stretch;
    max-height: 600px;
  }
  .wwa-what-visual img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 30%;
    display: block;
    transition: transform 0.5s ease;
  }
  .wwa-what-visual:hover img { transform: scale(1.03); }
  .wwa-what-sub {
    font-size: clamp(0.925rem, 2.8vw, 1.1rem);
    line-height: 1.75;
    color: var(--ink-faint);
  }
  .wwa-what-checklist {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0 0;
  }
  .wwa-what-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(0.925rem, 2.8vw, 1.1rem);
    color: var(--ink-faint);
    line-height: 1.55;
  }

  .wwa-what-checklist .white-item {
    color: rgba(255, 255, 255, 0.9);
  }

  .wwa-what-checklist li:hover {
    color: var(--green-mid);
    transform: scale(1.05);
    transform-origin: left;
  }

  .wwa-what-checklist .white-item:hover {
    color: var(--green-light);
  }
  /* .wwa-what-checklist li::before {
    content: '';
    width: 22px; height: 22px;
    border-radius: 6px;
    flex-shrink: 0;
    background: var(--green-light);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231CA069' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 14px; background-position: center; background-repeat: no-repeat;
    margin-top: 2px;
  } */

  /* TRUST BAR — infinite marquee */
  .trust-bar {
    padding: 1rem 0;
    display: flex; align-items: center; gap: 0;
    overflow: hidden;
  }
  .trust-bar-label {
    /* background: var(--green-deep); */
    display: flex;
    height: 4rem;
    align-items: center;
    font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em;
    color: var(--green-deep); text-transform: uppercase; white-space: nowrap;
    padding: 0 1.5rem 0 2.5rem; flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .trust-marquee-outer {
    overflow: hidden; flex: 1; mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  }
  .trust-marquee-track {
    display: flex; width: max-content;
    animation: marqueeScroll 60s linear infinite;
  }
  .trust-marquee-track:hover { animation-play-state: paused; }
  .trust-marquee-set {
    display: flex; align-items: center; gap: 0; flex-shrink: 0;
  }
  .partner-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.45rem 1.4rem;
    font-family: var(--font-display); font-size: 0.9rem; font-weight: 400; font-style: italic;
    color: rgba(255,255,255,0.7); white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s, background 0.2s; cursor: default;
  }
  .partner-pill:hover { color: white; background: rgba(255,255,255,0.05); }
  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  
  /* CTA */
  .cta-section {
    background: var(--earth-light);
    text-align: center;
  }
  .cta-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
  .cta-content .section-title { max-width: none; margin: 0 auto 1rem; }
  .cta-content .section-title em { color: var(--green-mid); }
  .cta-content p {
    font-size: clamp(0.925rem, 2.8vw, 1.1rem);
    color: var(--ink-muted); line-height: 1.75;
    margin-bottom: 1.5rem;
  }
  .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-primary-cta {
    background: var(--green-mid); color: white;
    padding: 0.875rem 2rem; border-radius: 10px;
    font-family: var(--font-sans-bold); font-weight: 800; font-size: 0.8rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(85,191,222,0.3);
  }
  
  .btn-primary-cta:hover { filter: brightness(0.9); transform: translateY(-2px); }

  .btn-secondary-cta {
    background: transparent; color: var(--ink);
    padding: 0.875rem 2rem; border-radius: 10px;
    font-weight: 600; font-size: 0.85rem;
    border: 1.5px solid var(--border);
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.25s;
  }

  .btn-secondary-cta:hover { border-color: var(--green-mid); color: var(--green-mid); }
  
  footer {
    background: var(--green-deep); color: rgba(255,255,255,0.6);
    padding: 4rem 8% 2rem;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
  }
  .footer-brand p {
    font-size: 0.875rem; line-height: 1.75; margin-top: 1rem;
    max-width: 280px;
  }
  .footer-col h4 {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: white;
    margin-bottom: 1rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-col a {
    color: rgba(255,255,255,0.55); text-decoration: none;
    font-size: 0.875rem; transition: color 0.2s;
  }
  .footer-col a:hover { color: #A5DE48; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  }
  .footer-bottom p { font-size: 0.8rem; }
  .footer-social { display: flex; gap: 12px; }
  .social-btn {
    width: 34px; height: 34px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); font-size: 0.8rem; font-weight: 700;
    text-decoration: none; transition: all 0.2s; font-family: serif;
  }
  .social-btn:hover { border-color: #A5DE48; color: #A5DE48; }

  @media (max-width: 1600px) {
    .section-without-padding {
      padding: 4rem 8%;
    }
  }
  /* MOBILE */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    section{ padding: 3.5rem 6%; }
    .section-title { max-width: 100%; }
    .hero { padding: 110px 6% 5rem; }
    /* .grid-3-cols, .grid-4-cols { grid-template-columns: repeat(2, 1fr); } */
    .grid-2-cols { grid-template-columns: 1fr; gap: 1.5rem; }
    .grid-3-cols {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
  }

  .grid-3-cols > * {
    min-width: 100%;
    /* flex-shrink: 0; */
    scroll-snap-align: start;
  }

  /* Optional: hide scrollbar */
  .grid-3-cols::-webkit-scrollbar {
    display: none;
  }

  .grid-3-cols {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .india-map {
    width: 100%;
  }
    .trust-bar { justify-content: center; padding:0; }
    .trust-bar-label {
      padding: 0 1rem;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .wwa-what { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 6%; }
    .wwa-what-visual img { height: 300px; }
  }

  @media (max-width: 600px) {
    nav { padding: 0.875rem 5%; }
    section, .content-inner-padding { padding: 2rem 8%; }
    .no-gaps { gap: 0;}
    .wwd-content {border-radius: 0;}
    .hero { padding: 4rem 5% 2rem; min-height: auto; }
    .grid-14 { grid-template-columns: 1fr; }
    .grid-columns-no-gap-content { grid-template-columns: 34px 1fr; column-gap: 0.75rem; }
    .buttons-grid { flex-direction: column; align-items: center; }
    footer { padding: 3rem 5% 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
    .wwa-what { padding: 3.5rem 5%; }
    .wwa-what-visual img { height: 230px; }
    .max-width-80, .max-width-90 {max-width: 100%;}
    .margin-top-2 {margin-top: 0}
  }