/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Montserrat:wght@300;400;500;600;700;900&display=swap');

/* ===== GLOBAL RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #ffffff; color: #0a0a0a; font-family: 'Montserrat', sans-serif; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }
::selection { background: #AAFF00; color: #000; }

/* ================================================================
   SECTION 1 — HERO  ▸ WHITE BG
================================================================ */
.hero-section {
  display: flex;
  min-height: 70vh;
  width: 100%;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Sidebar */
.hero-sidebar {
  display: none;
  width: 56px;
  border-right: 1px solid #e5e7eb;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  background: #f9fafb;
  position: relative;
  z-index: 50;
  flex-shrink: 0;
  height: 100vh;
  position: sticky;
  top: 0;
}
.hero-sidebar-inner { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; }
.hero-sidebar-links { display: flex; flex-direction: column; align-items: center; width: 100%; border-top: 1px solid #e5e7eb; }
.hero-sidebar-link { padding: 24px 0; width: 100%; display: flex; justify-content: center; align-items: center; border-bottom: 1px solid #e5e7eb; transition: background .2s; text-decoration: none;}

/* FIX 2: Sab side text solid clear Black kar dia gaya hai! */
.hero-sidebar-link span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px; /* Thoda readable banaya gaya */
  letter-spacing: 0.18em;
  color: #000000; /* Proper black solid color */
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
  font-family: 'Montserrat', sans-serif;
}

.hero-sidebar-link:hover { background: #AAFF00; }
.hero-sidebar-link:hover span {
  color: #000;
}

.hero-sidebar-follow { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 9px; letter-spacing: 0.2em; color: #0a0a0a; text-transform: uppercase; margin-top: auto; padding-bottom: 12px; font-family: 'Montserrat', sans-serif; }

/* Main */
.hero-main { flex: 1; position: relative; width: 100%; display: flex; flex-direction: column; }

/* BG polygons */
.hero-bg-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 1; }

/* Stars */
.hero-star { position: absolute; z-index: 0; pointer-events: none; }
.hero-star-1 { top: 10%; right: 5%; width: 60px; height: 60px; color: rgba(0,200,83,.25); }
.hero-star-2 { display: none; bottom: 200px; left: 38%; width: 36px; height: 36px; color: #00C853; }

/* ----------------------------------------------------------------
   HEADER
---------------------------------------------------------------- */
.hero-header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  z-index: 50;
}

/* Logo */
.hero-logo { display: flex; align-items: center; gap: 10px; }
.hero-logo-icon { width: 28px; height: 28px; color: #00C853; flex-shrink: 0; }
.hero-logo-text { font-size: 20px; font-weight: 700; letter-spacing: .05em; color: #0a0a0a; display: flex; align-items: center; font-family: 'Playfair Display', serif; }
.hero-logo-i { position: relative; display: inline-block; }
.hero-logo-dot { position: absolute; top: -.1em; left: .25em; width: .15em; height: .15em; background: #AAFF00; border-radius: 50%; }

/* Nav Links */
.hero-nav {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}
.hero-nav a { color: #4b5563; transition: color .2s; display: flex; align-items: center; gap: 5px; text-decoration: none; }
.hero-nav a:hover, .hero-nav a.active { color: #00C853; }

/* Actions */
.hero-actions { display: flex; align-items: center; gap: 14px; }
.hero-talk-btn {
  /* Isse by default call header Button hide rehta hai, Taki mobile view menu visible rahe  */
  display: none;
  align-items: center;
  gap: 12px;
  background: #0a0a0a;
  color: #fff;
  padding: 8px 8px 8px 24px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
}
.hero-talk-btn:hover { background: #00C853; color: #fff; }
.hero-talk-icon {
  width: 36px;
  height: 36px;
  background: #AAFF00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-talk-icon svg { width: 18px; height: 18px; }

/* Hamburger Menu Button (Now it will appear safely) */
.hero-menu-btn {
  width: 46px;
  height: 46px;
  background: #0a0a0a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  transition: background .2s;
  cursor: pointer;
  border: none;
}
.hero-menu-btn:hover { background: #00C853; }
.hero-menu-line { width: 18px; height: 2.5px; background: #fff; border-radius: 2px; }
.hero-menu-line:first-child { align-self: flex-start; margin-left: 13px; }
.hero-menu-line:last-child { align-self: flex-end; margin-right: 13px; }

/* ----------------------------------------------------------------
   HERO CONTENT
---------------------------------------------------------------- */
.hero-headline { position: relative; z-index: 20; display: flex; flex-direction: column; padding: 0 20px; margin-top: 24px; }
.hero-headline h1 { font-size: 7.5vw; line-height: 1.2; font-weight: 900; letter-spacing: -.02em; text-transform: uppercase; display: flex; flex-direction: column; gap: 6px; font-family: 'Playfair Display', serif; }
.hl1 { position: relative; display: inline-block; color: #0a0a0a; width: fit-content; margin-left: 14px; }
.bkt-tl { position: absolute; left: -14px; top: 4px; width: 10px; height: 20px; }
.bkt-tl::before { content:''; position: absolute; top:0; left:0; width:100%; height:2px; background:#0a0a0a; }
.bkt-tl::after { content:''; position: absolute; top:0; left:0; width:2px; height:100%; background:#0a0a0a; }
.bkt-dot-tr { position: absolute; top:-3px; right:0; width:5px; height:5px; background:#AAFF00; }
.bkt-dot-bl { position: absolute; bottom:0; left:-3px; width:5px; height:5px; background:#AAFF00; }
.hl2 { display: flex; flex-wrap: wrap; align-items: center; margin-left: 14px; }
.text-outline-w { -webkit-text-stroke: 1.5px rgba(10,10,10,.4); color: transparent; }
.text-lime { color: #00C853; }
.hl3 { position: relative; display: inline-block; color: #0a0a0a; width: fit-content; margin-left: 14px; }
.bkt-br { position: absolute; right: -14px; bottom: 4px; width: 10px; height: 20px; }
.bkt-br::before { content:''; position: absolute; bottom:0; right:0; width:100%; height:2px; background:#0a0a0a; }
.bkt-br::after { content:''; position: absolute; bottom:0; right:0; width:2px; height:100%; background:#0a0a0a; }
.bkt-dot-bl2 { position: absolute; bottom:-3px; left:0; width:5px; height:5px; background:#AAFF00; }
.bkt-dot-tr2 { position: absolute; top:0; right:-3px; width:5px; height:5px; background:#AAFF00; }
.hero-cta { margin-top: 28px; margin-left: 14px; }
.hero-cta-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0a0a0a;
  color: #fff;
  padding: 10px 10px 10px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  width: fit-content;
  transition: background .2s;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}
.hero-cta-btn:hover { background: #00C853; }
.hero-cta-icon {
  width: 38px;
  height: 38px;
  background: #AAFF00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-cta-icon svg { width: 18px; height: 18px; }

/* Container: display:flex and gap hata dein */
.hero-subtext { 
    position: relative; 
    z-index: 20; 
    /* display: flex; removed */
    /* gap: 12px; removed */
    padding: 0 20px; 
    margin-top: 32px; 
}

/* 'A' class: isme float aur right margin daalna hai */
.hero-subtext-c { 
    float: left;        /* Isse agla text A ko properly wrap karke niche aayega */
    margin-right: 6px;  /* 'A' aur 't' ke beech thodi space dene ke liye */
    margin-top: 4px;    /* A ke top aur p ke line alignment thik karne ke liye */
    font-size: 38px; 
    font-weight: 700; 
    color: #00C853; 
    line-height: 1; 
    font-family: 'Playfair Display', serif; 
}

.hero-subtext-p { 
    color: #0a0a0a; 
    font-size: 11px; 
    line-height: 1.6; 
    font-family: 'Montserrat', sans-serif; 
}

/* Testimonial */
.hero-testimonial { position: relative; z-index: 20; background: #00C853; padding: 24px; display: flex; flex-direction: column; justify-content: center; margin-top: 36px; }
.hero-customer-card { background: #fff; border-radius: 10px; padding: 8px; display: flex; align-items: center; gap: 6px; width: fit-content; box-shadow: 0 10px 25px rgba(0,0,0,.1); max-width: 100%; }
.hero-avatars { display: flex; }
.hero-avatars img { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; margin-left: -6px; }
.hero-avatars img:first-child { margin-left: 0; }
.hero-card-div { width: 1px; height: 20px; background: #e5e7eb; margin: 0 2px; flex-shrink: 0; }
.hero-card-stats { padding-right: 6px; flex-shrink: 0; }
.hero-card-num { color: #0a0a0a; font-weight: 700; font-size: 14px; line-height: 1; font-family: 'Playfair Display', serif; }
.hero-card-lbl { color: #0a0a0a; font-size: 9px; font-weight: 500; margin-top: 2px; font-family: 'Montserrat', sans-serif; }
.hero-test-text { color: #ffffff; font-size: 18px; line-height: 1.6; font-weight: 500; margin-top: 16px; max-width: 95%; font-family: 'Montserrat', sans-serif; }

/* Image */
.hero-image { position: relative; width: 100%; height: 320px; border-radius: 32px 32px 0 0; overflow: hidden; z-index: 10; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.08); pointer-events: none; }


/* ================================================================
   DESKTOP OVERRIDES  (≥ 1024px)
================================================================ */
@media (min-width: 1024px) {
  .hero-sidebar { display: flex; }
  .hero-main { height: 100vh; overflow: hidden; }
  .hero-bg-svg { position: absolute; }
  .hero-star-1 { top: 20%; width: 90px; height: 90px; }
  .hero-star-2 { display: block; }
  .hero-header { position: absolute; top: 0; left: 0; padding: 24px 40px; }
  .hero-logo-icon { width: 32px; height: 32px; }
  .hero-logo-text { font-size: 24px; }
  
  /* PC View ke links flex show and buttons aajaate hai yahan*/
  .hero-nav { display: flex; }
  .hero-talk-btn { display: flex; } 
  .hero-talk-icon { width: 40px; height: 40px; }
  .hero-actions { gap: 18px; }
  
  /* Hamburger is safely hidden here */
  .hero-menu-btn { display: none; }
  
  .hero-headline { position: absolute; top: 16%; left: 8%; padding: 0; margin-top: 0; }
  .hero-headline h1 { font-size: 3.5vw; line-height: 1.1; gap: 0; }
  .hl1, .hl2, .hl3 { margin-left: 0; }
  .bkt-tl { left: -28px; top: 6px; width: 16px; height: 26px; }
  .bkt-dot-tr, .bkt-dot-bl { width: 7px; height: 7px; }
  .bkt-br { right: -28px; bottom: 6px; width: 16px; height: 26px; }
  .bkt-dot-bl2, .bkt-dot-tr2 { width: 7px; height: 7px; }
  .hero-cta { margin-left: 6px; }
  .hero-subtext { position: absolute; top: 18%; left: 55%; width: 28%; min-width: 220px; padding: 0; margin-top: 0; }
  .hero-subtext-p { font-size: 14px; }
  .hero-bottom-black { display: block; position: absolute; bottom: 0; left: 0; width: 20%; height: 25%; z-index: 10; }
  .hero-testimonial { position: absolute; bottom: 0; left: 20%; width: 35%; height: 35%; border-radius: 32px 32px 0 0; padding: 20px; margin-top: 0; }
  .hero-image { position: absolute; bottom: 0; right: 0; width: 45%; height: 60%; border-radius: 60px 0 0 0; }
}

/* ================================================================
   MOBILE MENU OVERLAY
================================================================ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
}
.mobile-menu-overlay.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  background: #1a1a1a; border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.mobile-menu-close:hover { background: #00C853; }
.mobile-menu-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: .05em; margin-bottom: 8px; }
.mobile-menu-logo span { color: #AAFF00; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 0; width: 100%; padding: 0 32px; }
.mobile-nav a { color: #9ca3af; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; padding: 20px 0; width: 100%; text-align: center; border-bottom: 1px solid #1f2937; transition: color .2s; text-decoration: none; }
.mobile-nav a:first-child { border-top: 1px solid #1f2937; }
.mobile-nav a:hover, .mobile-nav a.active { color: #AAFF00; }
.mobile-cta-btn { display: flex; align-items: center; gap: 10px; background: #fff; color: #0a0a0a; padding: 8px 8px 8px 24px; border-radius: 9999px; font-weight: 700; font-size: 12px; font-family: 'Montserrat', sans-serif; transition: background .2s; margin-top: 8px; letter-spacing: .08em; text-decoration: none;}
.mobile-cta-btn:hover { background: #AAFF00; }

.mobile-social-row { display: flex; gap: 24px; margin-top: 8px; }
.mobile-social-row a { 
  /* Safe & crisp visibility over black screen overlay */
  color: #ffffff; 
  transition: color .2s; 
}
.mobile-social-row a:hover { color: #AAFF00; }

/* ================================================================
   SECTION 2 — ABOUT SECTION STYLING (WITH LONG CONTENT SUPPORT)
================================================================ */
.about-section {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.about-inner {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

/* Helper to start Grid columns from TOP (Required for long text) */
.align-top { align-items: start !important; }

/* Image Base Setup */
.about-images { position: relative; width: 100%; max-width: 440px; height: 340px; margin: 0 auto; }
.about-img-woman { position: absolute; bottom: 0; left: 0; width: 48%; height: 74%; border-radius: 9999px 9999px 0 9999px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,.5); }
.about-img-man { position: absolute; top: 0; right: 0; width: 48%; height: 68%; border-radius: 9999px 9999px 9999px 0; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,.5); }
.about-img-woman img, .about-img-man img { width: 100%; height: 100%; object-fit: cover; }

/* Badge Setup */
.about-badge { position: absolute; top: 8%; left: 25%; z-index: 30; width: 27%; aspect-ratio: 1; min-width: 80px; border-radius: 50%; border: 1px dashed rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; background: #0a0a0a; box-shadow: 0 16px 32px rgba(0,0,0,.5); }
.about-badge-num { width: 48%; height: 48%; background: #00C853; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; font-weight: 500; z-index: 10; box-shadow: 0 0 20px rgba(0,200,83,.4); font-family: 'Playfair Display', serif; }
.about-badge svg.spin-txt { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 20s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Experiece Base Setu[ */
.about-exp { position: absolute; bottom: 0; right: 0; width: 48%; height: 27.5%; display: flex; align-items: stretch; z-index: 20; background: #0a0a0a; }
.about-exp-num { background: #00C853; width: 35%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,200,83,.3); }
.about-exp-num span { transform: rotate(-90deg); font-size: 24px; font-weight: 700; white-space: nowrap; letter-spacing: .1em; -webkit-text-stroke: 1px white; color: transparent; font-family: 'Playfair Display', serif; }
.about-exp-txt { display: flex; flex-direction: column; justify-content: center; padding: 0 10px; width: 65%; }
.about-exp-lbl { color: #fff; font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; font-family: 'Montserrat', sans-serif; }
.about-exp-div { width: 100%; height: 1px; background: #2a2a2a; margin: 5px 0; }

/* --- Content area styling --- */
.about-content { display: flex; flex-direction: column; z-index: 10; width: 100%; }
.about-subtitle { display: flex; align-items: center; gap: 10px; color: #fff; text-transform: uppercase; letter-spacing: .15em; font-size: 11px; font-weight: 500; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; }
.about-sub-icon { display: flex; align-items: center; gap: 5px; }
.about-dot { width: 5px; height: 5px; border-radius: 50%; background: #00C853; }
.about-tri { width: 0; height: 0; border-top: 3px solid transparent; border-left: 5px solid #00C853; border-bottom: 3px solid transparent; }
.about-title { font-size: 28px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 30px; letter-spacing: -.02em; font-family: 'Playfair Display', serif; }
.about-icon-desc { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 30px; width: 100%; }
.about-icon-box { background: #fff; border-radius: 12px; padding: 12px; width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 8px 20px rgba(0,0,0,.3); margin-top:5px; }
.about-desc { color: #cccccc; line-height: 1.8; font-size: 14px; font-family: 'Montserrat', sans-serif; margin-bottom: 16px; }

/* -- Styling new elements (h3 headers & list & boxes) -- */
.about-heading-green { font-size: 20px; font-weight: 700; color: #00C853; margin-top: 10px; margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.bottom-margin-40 { margin-bottom: 40px; }

.about-list { list-style: none; padding: 0; margin-bottom: 16px; color: #fff; }
.about-list li { position: relative; padding-left: 25px; margin-bottom: 10px; font-size: 14px; font-weight: 500; }
.about-list li::before { content: '✓'; color: #00C853; position: absolute; left: 0; font-weight: bold; }

/* Grid for "Why Choose Us" feature cards */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
.feat-box { background-color: #121212; padding: 20px; border-radius: 10px; border-left: 3px solid #00C853; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.feat-box h4 { margin: 0 0 8px 0; color: #fff; font-size: 15px; font-family: 'Playfair Display', serif;}
.feat-box p { margin: 0; color: #ccc; font-size: 13px; line-height: 1.6;}

/* CTA Statbox & Solutions */
.about-stat-box { border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 18px 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; background: #111111; margin-bottom: 24px; width: 100%; box-shadow: 0 16px 32px rgba(0,0,0,.4); }
.about-stat-num { font-size: 44px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -.04em; font-family: 'Playfair Display', serif; }
.about-stat-div { width: 100%; height: 1px; background: #222222; }
.about-stat-txt { color: #ffffff; line-height: 1.6; font-size: 13px; font-family: 'Montserrat', sans-serif; width: 100%; }

.about-solution { font-size: 12px; display: flex; flex-direction: column; gap: 6px; font-family: 'Montserrat', sans-serif; }
.about-sol-lbl { color: #00C853; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 14px;}
.about-sol-txt { color: #ffffff; }

.about-btns { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.about-btn-main { background: #00C853; color: #fff; padding: 15px 30px; border-radius: 9999px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: 13px; transition: all .2s; cursor: pointer; text-decoration: none; border: none; font-family: 'Montserrat', sans-serif; display: inline-block;}
.about-btn-main:hover { background: #009940; }

.about-abstract { display: none; position: absolute; bottom: -40px; right: -40px; width: 260px; height: 260px; pointer-events: none; z-index: 0; }
.about-abstract img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: screen; border-radius: 50%; opacity: .9; filter: hue-rotate(80deg) saturate(200%) contrast(120%); }


/* ================================================================
   MEDIA QUERIES (Sticky Layout implementation is right here!)
================================================================ */
@media (min-width: 640px) {
  .about-icon-desc { flex-direction: row; align-items: flex-start; } /* Make text go side by side of green icon*/
  .about-stat-box { flex-direction: row; align-items: center; }
  .about-stat-div { width: 1px; height: 52px; flex-shrink: 0; }
  .about-stat-num { font-size: 56px; flex-shrink: 0; }
  .about-exp-num span { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr 1fr; } /* Side-by-side why choose boxs*/
}

@media (min-width: 1024px) {
  /* Creating layout Split*/
  .about-inner { max-width: 100%; grid-template-columns: 440px 1fr; gap: 60px; padding: 80px 60px; }
  
  /* CRUCIAL TRICK: STICKY BEHAVIOR FOR LEFT IMAGES */
  /* Scroll pe Left-side images hamesha saamne rahegi vapis gumm nhi hogi */
  .sticky-left {
    position: sticky;
    top: 100px;  /* Page ke upper se 100px chipka rahega scroll hote hue */
  }

  .about-images { height: 520px; margin: 0; }
  .about-exp-num span { font-size: 36px; }
  .about-exp-txt { padding: 0 18px; }
  .about-abstract { display: block; }
  .about-title { font-size: 40px; }
}

@media (min-width: 1440px) {
  .about-inner { padding: 100px; gap: 80px; }
}

/* ================================================================
   SECTION 3 — MARQUEE ▸ PARALLAX IMAGE BG (FIXED)
================================================================ */

.marquee-section {
  position: relative;
  width: 100%;
  padding: 20vh 0;
  overflow: hidden; /* Very important to hide overflowing content */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}


@media (max-width: 1024px) {
  .marquee-section {
    padding: 10vh 0;
  }
}

.marquee-banner {
  position: absolute;
  width: 150%;
  padding: 18px 0;
  font-size: clamp(24px, 5.5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  overflow: hidden;
  display: flex;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
}

/* --- Banner Specific Styles --- */
.marquee-white { 
  background: #fff; 
  color: #0a0a0a; 
  transform: rotate(-5deg); 
  z-index: 10; 
}
.marquee-orange { 
  background: #00C853; /* Original Green Color */
  color: #fff; 
  transform: rotate(5deg); 
  z-index: 20; 
}

/* --- Track & Animation --- */
.marquee-track { 
  display: flex; 
  flex-shrink: 0; 
  align-items: center; 
  min-width: 100%; 
  white-space: nowrap; 
}

.mq-left { 
  animation: mqLeft 40s linear infinite; 
}
.mq-right { 
  animation: mqRight 40s linear infinite; 
}

/* 
  FIX: The animation is changed from -100% to -50%.
  This makes the animation seamless, BUT it requires you to 
  duplicate the content inside your .marquee-track div in your HTML.
*/
@keyframes mqLeft { 
  from { transform: translateX(0); } 
  to { transform: translateX(-50%); } 
}
@keyframes mqRight { 
  from { transform: translateX(-50%); } 
  to { transform: translateX(0); } 
}

/* --- Item & Icon Styles --- */
.mq-item { 
  display: inline-flex; 
  align-items: center; 
  padding: 0 14px; 
}

.mq-ast { 
  display: inline-block; 
  width: .8em; 
  height: .8em; 
  vertical-align: middle; 
}

.mq-outline { 
  -webkit-text-stroke: 2px #00C853; /* Matched color with marquee-orange */
  color: transparent; 
}

/* --- Responsive Adjustments --- */
@media (min-width: 768px) {
  .mq-item { 
    padding: 0 24px; 
  }
  .marquee-banner { 
    padding: 24px 0; 
  }
  .mq-outline { 
    -webkit-text-stroke: 3px #00C853; /* Matched color with marquee-orange */
  }
}

/* ================================================================
   SECTION 4 — PORTFOLIO  ▸ WHITE BG
================================================================ */
.portfolio-section {
  background: #ffffff;
  color: #0a0a0a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 80vh;
}
.portfolio-header {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 28px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  z-index: 40;
}
@media (min-width: 1024px) { .portfolio-header { flex-direction: row; align-items: flex-end; } }
.portfolio-tag { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #0a0a0a; margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
.portfolio-title { font-size: clamp(20px, 3.2vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; color: #0a0a0a; margin-top: 6px; font-family: 'Playfair Display', serif; }
.portfolio-hdr-actions { display: flex; align-items: center; gap: 10px; width: 100%; flex-shrink: 0; }
@media (min-width: 1024px) { .portfolio-hdr-actions { width: auto; } }
.portfolio-view-btn { background: #0a0a0a; color: #fff; padding: 11px 20px; border-radius: 9999px; font-weight: 700; font-size: 12px; letter-spacing: .05em; transition: background .2s; white-space: nowrap; border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; }
.portfolio-view-btn:hover { background: #00C853; }
.portfolio-arr-btn { width: 42px; height: 42px; flex-shrink: 0; background: #00C853; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: background .2s; border: none; cursor: pointer; }
.portfolio-arr-btn:hover { background: #009940; }
.portfolio-carousel { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; min-height: 280px; }
@media (min-width: 640px)  { .portfolio-carousel { min-height: 360px; } }
@media (min-width: 768px)  { .portfolio-carousel { min-height: 440px; } }
@media (min-width: 1024px) { .portfolio-carousel { min-height: 520px; } }
@media (min-width: 1280px) { .portfolio-carousel { min-height: 600px; } }
.portfolio-scale { position: absolute; top: 50%; left: 50%; translate: -50% -50%; width: 1200px; height: 580px; scale: .40; transform-origin: center center; }
@media (min-width: 640px)  { .portfolio-scale { scale: .54; } }
@media (min-width: 768px)  { .portfolio-scale { scale: .68; } }
@media (min-width: 1024px) { .portfolio-scale { scale: .82; } }
@media (min-width: 1280px) { .portfolio-scale { scale: .95; } }
.p-card { position: absolute; top: 50%; left: 50%; border-radius: 40px; overflow: hidden; cursor: pointer; transition: width .7s cubic-bezier(.25,.1,.25,1), height .7s cubic-bezier(.25,.1,.25,1), translate .7s cubic-bezier(.25,.1,.25,1), rotate .7s cubic-bezier(.25,.1,.25,1), filter .7s cubic-bezier(.25,.1,.25,1), opacity .7s cubic-bezier(.25,.1,.25,1), z-index 0s; box-shadow: 0 20px 40px rgba(0,0,0,.18); opacity: 0; pointer-events: none; }
.p-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.25,.1,.25,1); }
.p-card.pos-center:hover img { transform: scale(1.05); }
.p-card.pos-far-left { width: 280px; height: 400px; translate: calc(-50% - 580px) calc(-50% - 30px); rotate: 22deg; z-index: 10; filter: brightness(.60); opacity: 1; pointer-events: auto; }
.p-card.pos-left { width: 320px; height: 460px; translate: calc(-50% - 300px) calc(-50% + 50px); rotate: -14deg; z-index: 20; filter: brightness(.80); opacity: 1; pointer-events: auto; }
.p-card.pos-center { width: 550px; height: 550px; translate: -50% -50%; rotate: 0deg; z-index: 30; filter: brightness(1); opacity: 1; pointer-events: auto; }
.p-card.pos-right { width: 320px; height: 460px; translate: calc(-50% + 300px) calc(-50% + 50px); rotate: 14deg; z-index: 20; filter: brightness(.80); opacity: 1; pointer-events: auto; }
.p-card.pos-far-right { width: 280px; height: 400px; translate: calc(-50% + 580px) calc(-50% - 30px); rotate: -22deg; z-index: 10; filter: brightness(.60); opacity: 1; pointer-events: auto; }
.p-card.pos-hidden { opacity: 0; pointer-events: none; z-index: 0; translate: -50% -50%; rotate: 0deg; width: 280px; height: 400px; }
.p-card-arrow { position: absolute; top: 35%; left: 50%; translate: -50% -50%; pointer-events: none; opacity: 0; transition: opacity .7s .1s; }
.p-card.pos-center .p-card-arrow { opacity: 1; }
.p-card-info { position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to right, #00C853, #AAFF00); padding: 24px 32px; display: flex; justify-content: space-between; align-items: flex-end; transform: translateY(100%); opacity: 0; transition: transform .7s cubic-bezier(.25,.1,.25,1), opacity .7s cubic-bezier(.25,.1,.25,1); }
.p-card.pos-center .p-card-info { transform: translateY(0); opacity: 1; }
.p-card-title { font-size: 22px; font-weight: 700; margin-bottom: 10px; line-height: 1.2; color: #fff; font-family: 'Playfair Display', serif; }
.p-card-cat { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: #fff; font-family: 'Montserrat', sans-serif; }
.p-card-year { font-size: 76px; font-weight: 700; line-height: 1; letter-spacing: -.05em; -webkit-text-stroke: 2px rgba(255,255,255,.9); color: transparent; user-select: none; font-family: 'Playfair Display', serif; }
.portfolio-nav { display: flex; justify-content: center; align-items: center; gap: 12px; padding: 12px 0 28px; position: relative; z-index: 40; }
.p-nav-btn { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: all .2s; }
.p-prev { background: #00C853; color: #fff; box-shadow: 0 8px 20px rgba(0,200,83,.3); }
.p-next { background: #00C853; color: #fff; box-shadow: 0 8px 20px rgba(0,200,83,.3); }
.p-next:hover { background: #009940; }

/* ================================================================
   SECTION 5 — WORK PROCESS  ▸ WHITE BACKGROUND
================================================================ */
.process-section {
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  padding: 48px 24px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}

@media (min-width: 768px)  { .process-section { padding: 48px; } }
@media (min-width: 1024px) { .process-section { padding: 56px 72px; } }

.process-hdr {
  max-width: 1200px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  z-index: 10;
  width: 100%;
}
@media (min-width: 768px) { .process-hdr { flex-direction: row; align-items: center; } }

.process-hdr-left { max-width: 100%; width: 100%; }
@media (min-width: 768px) { .process-hdr-left { max-width: 600px; } }

.process-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #00C853;
  font-weight: 700;
  letter-spacing: .2em;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.process-title {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .process-title {
    white-space: normal;
    font-size: clamp(18px, 5vw, 24px);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.process-desc {
  max-width: 360px;
  color: #555555;
  font-size: 13px;
  line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
}

.process-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.process-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 9999px;
  position: relative;
  z-index: 10;
}

.p-badge-inactive {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #444444;
  background: transparent;
}

.p-badge-active {
  border: 1px solid #00C853;
  background: #00C853;
  color: #fff;
}

.p-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.p-dot-orange { background: #00C853; }
.p-dot-white  { background: #fff; }

.p-badge-txt {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  font-family: 'Montserrat', sans-serif;
}

.process-line {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  border-left: 1px dashed;
  z-index: 0;
}
.pl-inactive { border-color: #00C853; }
.pl-active   { border-color: #00C853; }

.process-line-arrow {
  position: absolute;
  bottom: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}

.process-step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.process-step-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
  color: #111111;
  font-family: 'Playfair Display', serif;
}

/* ✅ UPDATED — height thodi badhao */
.process-img-wrap {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 16 / 13; /* was 16 / 11 */
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 2px solid #f0f0f0;
}

.process-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================================
   SECTION 6 — SERVICES
================================================================ */
.services-section { height: 450vh; background: #fff; color: #0a0a0a; font-family: 'Montserrat', sans-serif; position: relative; }
.services-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.svc-fixed-ui { position: absolute; top: 16px; right: 16px; display: flex; flex-direction: column; gap: 6px; z-index: 50; }
@media (min-width: 768px) { .svc-fixed-ui { top: 28px; right: 28px; } }
.svc-fixed-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.svc-fixed-btn:hover { border-color: #00C853; color: #00C853; }
.svc-scroll-top { position: absolute; bottom: 16px; right: 16px; z-index: 50; width: 38px; height: 38px; border-radius: 50%; background: #00C853; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; box-shadow: 0 4px 16px rgba(0,200,83,.4); transition: background .2s; }
.svc-scroll-top:hover { background: #00a846; }
@media (min-width: 768px) { .svc-scroll-top { bottom: 28px; right: 28px; width: 44px; height: 44px; } }
.services-track { display: flex; flex-wrap: nowrap; height: 100%; width: max-content; position: relative; z-index: 10; will-change: transform; }

/* ── HERO PANEL ── */
.svc-hero-panel {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  overflow: hidden;
}

/* ── HERO BACKGROUND IMAGE ── */
.svc-hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* 🔗 APNA IMAGE URL YAHAN REPLACE KARO */
  background-image: url('images/services-2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.3) saturate(1.0);
  transition: opacity .1s ease;
}

/* ── PARALLAX LINES — SVG based (sharp & crisp) ── */
.svc-parallax-bg {
  position: absolute;
  inset: -15%;
  width: 130%;
  height: 130%;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  transition: opacity .4s ease;
}

.svc-lines-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── CORNERS ── */
.svc-corners { position: absolute; inset: 0; pointer-events: none; transition: opacity .5s ease; z-index: 2; }
.svc-corner { position: absolute; }
.svc-corner svg { width: 22px; height: 22px; color: #00C853; }
@media (min-width: 768px)  { .svc-corner svg { width: 36px; height: 36px; } }
@media (min-width: 1024px) { .svc-corner svg { width: 44px; height: 44px; } }
.svc-tl { top: 18px; left: 18px; }
.svc-tr { top: 18px; right: 18px; }
.svc-bl { bottom: 18px; left: 18px; }
.svc-br { bottom: 18px; right: 18px; }
@media (min-width: 768px) {
  .svc-tl { top: 36px; left: 36px; }
  .svc-tr { top: 36px; right: 36px; }
  .svc-bl { bottom: 36px; left: 36px; }
  .svc-br { bottom: 36px; right: 36px; }
}

/* ── HERO CONTENT ── */
.svc-hero-content { position: relative; display: inline-block; padding: 0 14px; z-index: 3; }
.svc-meta { position: absolute; top: -22px; left: 0; display: flex; align-items: center; gap: 5px; font-size: 9px; letter-spacing: .2em; font-weight: 500; text-transform: uppercase; transition: opacity .5s ease; font-family: 'Montserrat', sans-serif; color: #fff; }
@media (min-width: 768px) { .svc-meta { top: -38px; font-size: 11px; } }
.svc-meta-dot { width: 6px; height: 6px; background: #00C853; border-radius: 50%; }
.svc-counter { position: absolute; top: -28px; right: 0; display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 300; color: #fff; transition: opacity .5s ease; font-family: 'Montserrat', sans-serif; }
@media (min-width: 768px)  { .svc-counter { top: -48px; font-size: 28px; gap: 14px; } }
@media (min-width: 1024px) { .svc-counter { font-size: 38px; gap: 36px; } }
.svc-counter-line { width: 16px; height: 1px; background: rgba(255,255,255,0.5); }
@media (min-width: 768px) { .svc-counter-line { width: 28px; height: 2px; } }

.svc-title-wrap { position: relative; transform: scaleY(1.08); transform-origin: bottom; }
.svc-title-bg { font-family: 'Playfair Display', serif; font-size: clamp(42px, 9vw, 96px); line-height: 1; text-transform: uppercase; color: rgba(255,255,255,0.06); user-select: none; letter-spacing: -.02em; white-space: nowrap; }
.svc-title-fill { position: absolute; top: 0; left: 0; height: 100%; overflow: hidden; width: 0%; transition: none; }
.svc-title-fill-txt { font-family: 'Playfair Display', serif; font-size: clamp(42px, 9vw, 96px); line-height: 1; text-transform: uppercase; color: #00C853; white-space: nowrap; letter-spacing: -.02em; }

.svc-scroll-ind { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.35); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 5px; transition: opacity .4s; font-family: 'Montserrat', sans-serif; z-index: 3; }
@media (min-width: 768px) { .svc-scroll-ind { font-size: 11px; } }
.svc-scroll-line { width: 1px; height: 22px; background: rgba(255,255,255,0.12); position: relative; overflow: hidden; }
.svc-scroll-dot { position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: #00C853; animation: scrollDot 1.5s linear infinite; }
@keyframes scrollDot { from { transform: translateY(-100%); } to { transform: translateY(200%); } }

/* ── SERVICE PANELS ── */
.svc-panel { width: 88vw; height: 100%; flex-shrink: 0; position: relative; border-right: 1px solid #f0f0f0; padding: 44px 16px 24px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; background: #fff; }
@media (min-width: 640px)  { .svc-panel { width: 64vw; } }
@media (min-width: 768px)  { .svc-panel { width: 50vw; padding: 56px 32px 32px; } }
@media (min-width: 1024px) { .svc-panel { width: 42vw; padding: 56px 48px; } }
@media (min-width: 1280px) { .svc-panel { width: 38vw; } }
.svc-panel-bg-num { position: absolute; bottom: -12px; right: -6px; font-family: 'Playfair Display', serif; font-size: clamp(90px, 14vw, 160px); line-height: 1; color: rgba(0,200,83,.04); pointer-events: none; user-select: none; }
.svc-panel-top { display: flex; justify-content: space-between; align-items: flex-start; z-index: 10; }
.svc-panel-num { font-family: 'Montserrat', sans-serif; font-size: clamp(38px, 5.5vw, 76px); font-weight: 300; color: #0a0a0a; line-height: 1; letter-spacing: -.05em; opacity: .07; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
.svc-panel-num.in-view { opacity: 1; transform: translateY(0); }
.svc-lets-work { font-family: 'Playfair Display', serif; font-size: clamp(12px, 1.6vw, 20px); text-transform: uppercase; display: flex; align-items: center; gap: 4px; color: #0a0a0a; margin-top: 5px; opacity: 0; transform: translateX(12px); transition: opacity .5s ease .1s, transform .5s ease .1s; }
.svc-panel.in-view .svc-lets-work { opacity: 1; transform: translateX(0); }
.svc-panel-icon { flex: 1; display: flex; align-items: center; justify-content: center; padding: 6px 0; z-index: 0; pointer-events: none; }
.svc-panel-icon img { max-width: 90px; max-height: 90px; object-fit: contain; filter: drop-shadow(0 10px 22px rgba(0,200,83,.15)); opacity: .15; transform: scale(.75) translateY(10px); transition: opacity .6s ease, transform .6s ease; }
@media (min-width: 768px)  { .svc-panel-icon img { max-width: 130px; max-height: 130px; } }
@media (min-width: 1024px) { .svc-panel-icon img { max-width: 160px; max-height: 160px; } }
.svc-panel-icon img.in-view { opacity: 1; transform: scale(1) translateY(0); }
.svc-panel-bottom { max-width: 380px; z-index: 10; margin-top: auto; padding-top: 10px; opacity: 0; transform: translateY(18px); transition: opacity .55s ease .18s, transform .55s ease .18s; }
.svc-panel.in-view .svc-panel-bottom { opacity: 1; transform: translateY(0); }
.svc-panel-title { font-family: 'Playfair Display', serif; font-size: clamp(17px, 2.2vw, 30px); text-transform: uppercase; margin-bottom: 8px; letter-spacing: .04em; color: #0a0a0a; }
@media (min-width: 768px) { .svc-panel-title { margin-bottom: 12px; } }
.svc-panel-desc { color: #0a0a0a; font-size: clamp(11px, 1vw, 13px); line-height: 1.7; font-weight: 300; font-family: 'Montserrat', sans-serif; }
.svc-panel::before { content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 0%; background: #00C853; transition: height .6s ease; }
.svc-panel.in-view::before { height: 100%; }

/* ================================================================
   SECTION 7 — VIDEO
================================================================ */
.video-hero-section { position: relative; width: 100%; height: 70vh; background-color: #0a0a0a; overflow: hidden; font-family: 'Montserrat', sans-serif; }
.video-hero-bg { position: absolute; inset: 0; z-index: 0; background-image: url('images/satya-shaw-6.jpg'); background-size: cover; background-position: center; }
.video-hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, transparent 50%, rgba(0,0,0,0.60) 100%); }
.video-hero-banner-wrap { position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 20; }
.video-hero-banner-box { position: relative; width: 220px; height: 130px; }
.video-hero-banner-svg { width: 100%; height: 100%; filter: drop-shadow(0 20px 20px rgba(0,0,0,0.15)); }
.video-hero-play-btn { position: absolute; top: 76px; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; border-radius: 50%; background: #00C853; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.2s ease; box-shadow: 0 16px 32px rgba(0,0,0,0.3); }
.video-hero-play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }
.video-hero-ring { position: absolute; border-radius: 50%; }
.video-hero-ring-1 { inset: 5px; border: 1px solid rgba(255,255,255,0.80); }
.video-hero-ring-2 { inset: 12px; border: 2px solid white; }
.video-hero-play-icon { width: 26px; height: 26px; fill: white; margin-left: 3px; }
.video-hero-title-wrap { position: absolute; bottom: 36px; width: 100%; padding: 0 14px; display: flex; justify-content: center; z-index: 10; }
.video-hero-title { font-size: 11vw; font-weight: 500; letter-spacing: 0.05em; display: flex; align-items: center; text-transform: uppercase; line-height: 1; user-select: none; white-space: nowrap; font-family: 'Montserrat', sans-serif; }
.video-hero-title-outline { -webkit-text-stroke: 2px white; color: transparent; }
.video-hero-title-orange { color: #00C853; }
.video-hero-title-gap { display: inline-block; width: 2.5vw; }
.video-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 100; display: none; align-items: center; justify-content: center; }
.video-popup-overlay.video-popup-active { display: flex; }
.video-popup-box { position: relative; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; width: 420px; max-width: 90vw; padding: 48px 32px 40px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px; box-shadow: 0 32px 64px rgba(0,0,0,0.6); animation: videoPopupIn 0.25s ease; }
@keyframes videoPopupIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.video-popup-close-btn { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); color: white; font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; line-height: 1; }
.video-popup-close-btn:hover { background: rgba(0,200,83,0.8); border-color: #00C853; }
.video-popup-content { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.video-popup-play-icon { width: 60px; height: 60px; fill: #00C853; }
.video-popup-text { color: white; font-size: 17px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; font-family: 'Montserrat', sans-serif; }

/* ================================================================
   SECTION 8 — FOOTER  ▸ BLACK BG  (UPDATED)
================================================================ */
.footer-section { background: #0a0a0a; color: #fff; font-family: 'Montserrat', sans-serif; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.footer-swirl { position: absolute; color: #00C853; pointer-events: none; opacity: 0.3; width: 320px; height: 320px; }
.footer-swirl-r { right: -60px; top: 30px; }
.footer-swirl-l { left: -60px; bottom: 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; width: 100%; padding: 48px 20px 32px; position: relative; z-index: 10; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 48px; text-align: center; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-col { display: flex; flex-direction: column; align-items: center; }

/* ── Title ── */
.footer-col-title { font-size: 17px; font-weight: 700; margin-bottom: 24px; color: #00C853; font-family: 'Playfair Display', serif; }
@media (min-width: 768px) { .footer-col-title { font-size: 20px; } }

/* ── Contact items (email / website / phone) ── */
.footer-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 13px;
  font-family: 'Montserrat', sans-serif;
  word-break: break-all;        /* ← stops long email/URL from overflowing */
}
@media (min-width: 768px) {
  .footer-contact-item {
    font-size: 15px;             /* ← bigger on desktop */
    gap: 12px;
    margin-bottom: 16px;
    word-break: normal;
  }
}
.footer-ci svg { color: #00C853; flex-shrink: 0; }

/* ── Socials ── */
.footer-socials { display: flex; justify-content: center; gap: 12px; margin-top: 14px; }
.footer-soc-btn { width: 36px; height: 36px; border-radius: 50%; background: #181818; display: flex; align-items: center; justify-content: center; color: #fff; transition: all .2s; border: 1px solid rgba(255,255,255,.08); cursor: pointer; }
.footer-soc-btn:hover { background: #00C853; border-color: #00C853; }

/* ── Nav links ── */
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: #ffffff; font-size: 13px; transition: color .2s; font-family: 'Montserrat', sans-serif; }
@media (min-width: 768px) { .footer-links a { font-size: 15px; } }
.footer-links a:hover { color: #ffffff; }
.footer-links a.active { color: #00C853; text-decoration: underline; text-underline-offset: 4px; }

/* ── Divider ── */
.footer-div { width: 100%; height: 1px; background: #1f2937; margin-bottom: 36px; }

/* ── Big logo ── */
.footer-logo { display: flex; justify-content: center; align-items: center; margin-bottom: 36px; font-size: clamp(32px, 9vw, 100px); font-weight: 900; line-height: 1; letter-spacing: -.04em; font-family: 'Playfair Display', serif; flex-wrap: wrap; gap: 4px; }
.footer-logo-x { color: #00C853; position: relative; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 4px; }
.footer-logo-x-bar { position: absolute; top: -15%; left: -10%; width: 120%; height: 12%; background: #fff; }
.footer-logo-outline { -webkit-text-stroke: 2px rgba(255,255,255,.6); color: transparent; margin-left: 6px; }


.footer-contact-item a {
  color: #ffffff; /* Link ka color hamesha white rahega */
}

/* Optional: Agar aap chahte hain ki mouse le jaane par color badle */
.footer-contact-item a:hover {
  color: #cccccc; /* Example: Mouse le jaane par halka gray ho jayega */
}


/* ── Bottom bar ── */
.s8-bottom { background: #111111; border-top: 1px solid #1f2937; padding: 18px 20px; }
.s8-bottom .row { max-width: 1200px; margin: 0 auto; text-align: center; }
.s8-bottom .ftex { color: #ffffff; font-size: 12px; font-family: 'Montserrat', sans-serif; line-height: 1.8; }
@media (min-width: 768px) { .s8-bottom .ftex { font-size: 14px; } }
.s8-bottom .ftex a { color: #00C853; transition: color .2s; }
.s8-bottom .ftex a:hover { color: #fff; }

/* ================================================================
   ABOUT US (simple center section)
================================================================ */
.about-us-section { display: flex; justify-content: center; align-items: center; padding: 40px 20px; background-color: #ffffff; }
.inner-about { text-align: center; max-width: 1400px; width: 100%; }
.inner-about h1 { font-size: 2.5rem; margin-bottom: 15px; color: #00c853; font-family: 'Playfair Display', serif; }
.inner-about p { font-size: 1.1rem; color: black; font-family: 'Montserrat', sans-serif; }
@media (max-width: 600px) { .inner-about h1 { font-size: 2rem; } .inner-about p { font-size: 1rem; } }

/* ================================================================
   SUB PAGES — SITE HEADER
================================================================ */
.site-header { position: relative; width: 100%; background: #ffffff; border-bottom: 1px solid #f0f0f0; z-index: 900; }
.site-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; }
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo-icon { width: 30px; height: 30px; color: #00C853; flex-shrink: 0; }
.site-logo-text { font-size: 20px; font-weight: 700; letter-spacing: .05em; color: #0a0a0a; display: flex; align-items: center; font-family: 'Playfair Display', serif; }
.site-logo-i { position: relative; display: inline-block; }
.site-logo-dot { position: absolute; top: -.1em; left: .25em; width: .15em; height: .15em; background: #AAFF00; border-radius: 50%; }
.site-nav { display: none; align-items: center; gap: 28px; font-size: 16px; font-weight: 500; font-family: 'Montserrat', sans-serif; }
.site-nav a { color: #4b5563; transition: color .2s; }
.site-nav a:hover, .site-nav a.active { color: #00C853; }
.site-actions { display: flex; align-items: center; gap: 10px; }
.site-search-btn { display: none; }
.site-call-btn { display: none; align-items: center; gap: 10px; background: #0a0a0a; color: #fff; padding: 5px 5px 5px 20px; border-radius: 9999px; font-weight: 600; font-size: 12px; font-family: 'Montserrat', sans-serif; transition: background .2s; flex-shrink: 0; }
.site-call-btn:hover { background: #00C853; }
.site-call-icon { width: 28px; height: 28px; background: #AAFF00; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.site-menu-btn { width: 36px; height: 36px; background: #0a0a0a; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; transition: background .2s; cursor: pointer; }
.site-menu-btn:hover { background: #00C853; }
.site-menu-line { width: 14px; height: 2px; background: #fff; }
.site-menu-line:first-child { align-self: flex-start; margin-left: 9px; }
.site-menu-line:last-child  { align-self: flex-end; margin-right: 9px; }
@media (min-width: 1024px) {
  .site-header-inner { padding: 20px 48px; }
  .site-logo-icon { width: 34px; height: 34px; }
  .site-logo-text { font-size: 24px; }
  .site-nav { display: flex; }
  .site-call-btn { display: flex; }
  .site-actions { gap: 16px; }
  .site-menu-btn { display: none; }
}

/* SITE MOBILE MENU */
.site-mobile-menu { position: fixed; inset: 0; background: #0a0a0a; z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; transform: translateX(100%); transition: transform 0.38s cubic-bezier(.77,0,.18,1); }
.site-mobile-menu.open { transform: translateX(0); }
.site-mobile-close { position: absolute; top: 20px; right: 20px; background: #1a1a1a; color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; }
.site-mobile-close:hover { background: #00C853; }
.site-mobile-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: .05em; }
.site-mobile-logo span { color: #AAFF00; }
.site-mobile-nav { display: flex; flex-direction: column; align-items: center; width: 100%; padding: 0 32px; }
.site-mobile-nav a { color: #9ca3af; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; padding: 20px 0; width: 100%; text-align: center; border-bottom: 1px solid #1f2937; transition: color .2s; }
.site-mobile-nav a:first-child { border-top: 1px solid #1f2937; }
.site-mobile-nav a:hover, .site-mobile-nav a.active { color: #AAFF00; }
.site-mobile-cta { display: flex; align-items: center; gap: 10px; background: #fff; color: #0a0a0a; padding: 8px 8px 8px 24px; border-radius: 9999px; font-weight: 700; font-size: 12px; font-family: 'Montserrat', sans-serif; transition: background .2s; letter-spacing: .08em; }
.site-mobile-cta:hover { background: #AAFF00; }
.site-mobile-social { display: flex; gap: 16px; }
.site-mobile-social a { font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: .2em; color: #4b5563; text-transform: uppercase; transition: color .2s; }
.site-mobile-social a:hover { color: #AAFF00; }

/* ================================================================
   SUB PAGES — PAGE BANNER
================================================================ */
.page-banner { position: relative; width: 100%; height: 340px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
@media (min-width: 768px)  { .page-banner { height: 480px; } }
@media (min-width: 1024px) { .page-banner { height: 640px; } }

.page-banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; /* Optional but good practice */ object-position: center; animation: bannerZoom 8s ease forwards; }
@keyframes bannerZoom { from { transform: scale(1.06); } to { transform: scale(1); } }

/* <<< YEH LINE CHANGE KI HAI >>> */
.page-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.75) 100%); }

.page-banner-content { position: relative; z-index: 10; width: 100%; padding: 32px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
@media (min-width: 1024px) { .page-banner-content { padding: 48px 64px; } }

.page-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 12px; }
.page-breadcrumb a { color: rgba(255,255,255,.65); transition: color .2s; }
.page-breadcrumb a:hover { color: #AAFF00; }
.page-breadcrumb-sep { color: #AAFF00; }

/* <<< YEH LINE CHANGE KI HAI >>> */
.page-banner-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 5vw, 56px); font-weight: 900; color: #fff; letter-spacing: -.02em; line-height: 1.1; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; text-shadow: 0px 2px 8px rgba(0,0,0,0.5); /* Shadow for better readability */ }

.page-banner-title .accent { color: #AAFF00; }
.page-banner-line { width: 48px; height: 3px; background: #AAFF00; margin: 16px auto 0; border-radius: 2px; }

/* ================================================================
   SUB PAGES — ABOUT PAGE LAYOUT
================================================================ */
.about-page-wrapper {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    padding-top: 0px;
}

/* Intro card -- MODIFIED FOR IMAGE LAYOUT */
.about-page-intro {
    background: #ffffff;
    border-radius: 2.4rem;
    padding: 3rem 3.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 40px rgba(0, 200, 83, 0.08), 0 2px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: about-fadeUp 0.65s 0.05s ease forwards;
    /* --- NEW --- */
    display: flex;
    align-items: center;
    gap: 2.5rem;
    /* --- NEW --- */
}

.about-page-intro::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #00C853;
    border-radius: 3px 0 0 3px;
}

.about-page-intro::after {
    content: 'SBS';
    position: absolute;
    right: 2rem;
    bottom: -1rem;
    font-family: 'Playfair Display', serif;
    font-size: 9rem;
    font-weight: 700;
    color: rgba(0, 200, 83, 0.05);
    pointer-events: none;
    line-height: 1;
    z-index: 0;
}

/* --- NEW STYLES for Text and Image Wrappers --- */
.about-page-intro-text {
    flex: 1 1 60%;
    position: relative;
    z-index: 1;
}

.about-page-intro-image {
    flex: 1 1 35%;
    max-width: 350px;
}

.about-page-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 1.8rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}
/* --- END NEW STYLES --- */

.about-page-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #009940;
    background: #f0fff4;
    border: 1px solid rgba(0, 200, 83, 0.25);
    padding: 0.35rem 1rem;
    border-radius: 60px;
    margin-bottom: 1.4rem;
    font-family: 'Montserrat', sans-serif;
}

.about-page-label i {
    color: #00C853;
    font-size: 0.5rem;
}

.about-page-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-page-intro h2 span {
    color: #00C853;
}

.about-page-intro p {
    margin-top: 1.2rem;
    font-size: 0.98rem;
    color: #4b5563;
    font-weight: 300;
    line-height: 1.8;
    max-width: 720px;
    font-family: 'Montserrat', sans-serif;
}

/* Mission banner */
.about-page-mission {
    background: #0a0a0a;
    border-radius: 2rem;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    border: 1px solid rgba(0, 200, 83, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: about-fadeUp 0.65s 0.2s ease forwards;
}

.about-page-mission::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.12), transparent 70%);
}

.about-page-mission-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: rgba(0, 200, 83, 0.15);
    border: 1px solid rgba(0, 200, 83, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #00C853;
    flex-shrink: 0;
}

.about-page-mission-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.about-page-mission-text strong {
    color: #00C853;
    font-style: normal;
}

/* Philosophy pillars */
.about-page-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.about-page-pillar {
    background: #ffffff;
    border-radius: 2rem;
    padding: 2.2rem 1.8rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    opacity: 0;
    animation: about-fadeUp 0.6s ease forwards;
}

.about-page-pillar:nth-child(1) {
    animation-delay: 0.3s;
}

.about-page-pillar:nth-child(2) {
    animation-delay: 0.42s;
}

.about-page-pillar:nth-child(3) {
    animation-delay: 0.54s;
}

.about-page-pillar:nth-child(4) {
    animation-delay: 0.66s;
}

.about-page-pillar:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(0, 200, 83, 0.13), 0 4px 16px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 200, 83, 0.3);
}

.about-page-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #00C853;
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.about-page-pillar:hover::before {
    transform: scaleX(1);
}

.about-page-pillar-num {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(0, 200, 83, 0.07);
    line-height: 1;
    transition: color 0.3s;
}

.about-page-pillar:hover .about-page-pillar-num {
    color: rgba(0, 200, 83, 0.14);
}

.about-page-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f0fff4;
    border: 1px solid rgba(0, 200, 83, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #00C853;
    margin-bottom: 1.4rem;
    transition: all 0.3s;
}

.about-page-pillar:hover .about-page-pillar-icon {
    background: #00C853;
    color: #ffffff;
    border-color: #00C853;
    transform: rotate(-6deg) scale(1.08);
}

.about-page-pillar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.18rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 0.55rem;
}

.about-page-pillar p {
    font-size: 0.88rem;
    color: #9ca3af;
    line-height: 1.7;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

/* Bottom two columns */
.about-page-bottom {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1.4rem;
}

.about-page-credentials {
    background: #ffffff;
    border-radius: 2rem;
    padding: 2.4rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    opacity: 0;
    animation: about-fadeUp 0.6s 0.78s ease forwards;
}

.about-page-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.8rem;
}

.about-page-section-head .about-page-head-icon {
    width: 36px;
    height: 36px;
    background: #f0fff4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #00C853;
    flex-shrink: 0;
}

.about-page-section-head h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a0a0a;
}

.about-page-cred-list {
    list-style: none;
}

.about-page-cred-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #0a0a0a;
    font-size: 0.95rem;
    transition: color 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.about-page-cred-list li:last-child {
    border-bottom: none;
}

.about-page-cred-list li:hover {
    color: #009940;
}

.about-page-cred-list .about-page-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f0fff4;
    border: 1.5px solid rgba(0, 200, 83, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #00C853;
    flex-shrink: 0;
    transition: all 0.2s;
}

.about-page-cred-list li:hover .about-page-check {
    background: #00C853;
    color: #ffffff;
    border-color: #00C853;
}

.about-page-exp-note {
    margin-top: 1.6rem;
    background: #0a0a0a;
    border-radius: 1.4rem;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    line-height: 1.65;
    font-family: 'Montserrat', sans-serif;
}

.about-page-exp-note i {
    color: #00C853;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Commitment card */
.about-page-commitment {
    background: #ffffff;
    border-radius: 2rem;
    padding: 2.4rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    animation: about-fadeUp 0.6s 0.9s ease forwards;
}

.about-page-quote {
    background: #f0fff4;
    border-radius: 1.6rem;
    padding: 2rem 2rem 2rem 2.4rem;
    border-left: 4px solid #00C853;
    position: relative;
}

.about-page-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(0, 200, 83, 0.12);
    line-height: 0.5;
    position: absolute;
    top: 1.8rem;
    left: 1.5rem;
}

.about-page-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.06rem;
    color: #0a0a0a;
    line-height: 1.75;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
}

.about-page-quote p strong {
    color: #009940;
    font-style: normal;
}

.about-page-philosophy {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: #4b5563;
    font-weight: 300;
    line-height: 1.75;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
    font-family: 'Montserrat', sans-serif;
}

.about-page-philosophy .about-page-sprout {
    width: 32px;
    height: 32px;
    background: #f0fff4;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #00C853;
    flex-shrink: 0;
    margin-top: 2px;
}

@keyframes about-fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================================================
   RESPONSIVE STYLES -- MODIFIED
================================================================ */

@media (max-width: 1000px) {
    /* --- NEW styles for intro card stacking --- */
    .about-page-intro {
        flex-direction: column;
        /* Stacks image below text */
        text-align: center;
        padding: 3rem;
    }
    .about-page-intro-image {
        margin-top: 2rem;
        max-width: 400px;
        width: 100%;
    }
    .about-page-label {
        margin-left: auto;
        margin-right: auto;
        /* Centers the label */
    }
    .about-page-intro p {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
    /* --- END NEW --- */

    .about-page-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-page-bottom {
        grid-template-columns: 1fr;
    }
    .about-page-mission {
        padding: 1.8rem 2rem;
    }
}

@media (max-width: 600px) {
    .about-page-pillars {
        grid-template-columns: 1fr;
    }
    .about-page-intro {
        padding: 2.5rem 2rem;
    }
    .about-page-mission {
        padding: 1.5rem;
        flex-wrap: wrap;
    }
}

/* ================================================================
   SUB PAGES — SERVICES PAGE (sp-)
================================================================ */
.sp { font-family: 'Montserrat', sans-serif; background: #fff; color: #0a0a0a; padding: 0 0 90px; }
.sp-wrap { max-width: 1400px; margin: 0 auto; padding: 0 36px; }

/* Header */
.sp-header { text-align: center; margin-bottom: 60px; }
.sp-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: #f0fff4; border: 1px solid rgba(0,200,83,0.15); border-radius: 100px; padding: 6px 16px 6px 10px; margin-bottom: 18px; }
.sp-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: #00C853; box-shadow: 0 0 0 3px rgba(0,200,83,0.2); }
.sp-eyebrow span { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #009940; font-family: 'Montserrat', sans-serif; }
.sp-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(34px, 5vw, 54px); font-weight: 900; line-height: 1.1; color: #0a0a0a; letter-spacing: -1px; }
.sp-header h1 em { font-style: italic; color: #00C853; }
.sp-header p { margin-top: 14px; font-size: 15px; font-weight: 300; color: #4b5563; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.75; font-family: 'Montserrat', sans-serif; }

/* Stats row */
.sp-stats { display: flex; justify-content: center; gap: 48px; margin-bottom: 60px; padding-bottom: 52px; border-bottom: 1px solid rgba(0,200,83,0.15); }
.sp-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: #00C853; line-height: 1; }
.sp-stat span { font-size: 12px; font-weight: 400; color: #4b5563; margin-top: 4px; display: block; letter-spacing: 0.3px; font-family: 'Montserrat', sans-serif; }

/* Services grid 2x2 */
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(0,200,83,0.15); border-radius: 18px; overflow: hidden; border: 1.5px solid rgba(0,200,83,0.15); margin-bottom: 2px; }
.sp-card { background: #fff; padding: 40px 38px; position: relative; transition: background 0.25s; }
.sp-card:hover { background: #f0fff4; }
.sp-card::after { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: #00C853; transform: scaleY(0); transform-origin: top; transition: transform 0.3s ease; }
.sp-card:hover::after { transform: scaleY(1); }
.sp-card-num { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: #00C853; letter-spacing: 1px; margin-bottom: 8px; opacity: 0.7; }
.sp-card h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #0a0a0a; line-height: 1.25; margin-bottom: 10px; }
.sp-card h2 em { font-style: italic; color: #00C853; }
.sp-card p { font-size: 13.5px; font-weight: 300; color: #4b5563; line-height: 1.7; margin-bottom: 20px; font-family: 'Montserrat', sans-serif; }
.sp-cpa-mark { display: inline-flex; align-items: center; gap: 8px; background: #00C853; border-radius: 8px; padding: 5px 12px; margin-bottom: 16px; }
.sp-cpa-mark span { font-size: 12px; font-weight: 500; color: #fff; letter-spacing: 0.5px; font-family: 'Montserrat', sans-serif; }
.sp-cpa-mark strong { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: #fff; }
.sp-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.sp-list li { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(0,200,83,0.1); font-size: 13.5px; color: #0a0a0a; font-weight: 400; font-family: 'Montserrat', sans-serif; }
.sp-list li:last-child { border-bottom: none; }
.sp-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #00C853; flex-shrink: 0; }
.sp-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sp-tile { background: #f0fff4; border: 1px solid rgba(0,200,83,0.15); border-radius: 10px; padding: 14px 14px 12px; }
.sp-tile .ti { font-size: 22px; display: block; margin-bottom: 6px; }
.sp-tile span { font-size: 12.5px; font-weight: 500; color: #0a0a0a; line-height: 1.35; display: block; font-family: 'Montserrat', sans-serif; }

/* Dark card */
.sp-card.dark { background: #0a0a0a; }
.sp-card.dark:hover { background: #111111; }
.sp-card.dark h2 { color: #fff; }
.sp-card.dark p { color: rgba(255,255,255,0.55); }
.sp-card.dark .sp-tile { background: rgba(0,200,83,0.09); border-color: rgba(0,200,83,0.18); }
.sp-card.dark .sp-tile span { color: rgba(255,255,255,0.85); }

/* Who we serve */
.sp-serve { background: #00C853; border-radius: 18px; overflow: hidden; margin-top: 2px; position: relative; }
.sp-serve::before { content: ''; position: absolute; top: -60px; left: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,0.07); pointer-events: none; }
.sp-serve-inner { display: grid; grid-template-columns: 260px 1fr; position: relative; z-index: 1; }
.sp-serve-left { padding: 40px 36px; border-right: 1px solid rgba(255,255,255,0.2); display: flex; flex-direction: column; justify-content: center; }
.sp-serve-left h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.sp-serve-left p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.78); line-height: 1.65; font-family: 'Montserrat', sans-serif; }
.sp-serve-right { display: grid; grid-template-columns: repeat(5, 1fr); }
.sp-serve-item { padding: 30px 18px; border-right: 1px solid rgba(255,255,255,0.15); text-align: center; transition: background 0.25s; cursor: default; }
.sp-serve-item:last-child { border-right: none; }
.sp-serve-item:hover { background: rgba(255,255,255,0.1); }
.sp-serve-item .si { font-size: 26px; display: block; margin-bottom: 10px; }
.sp-serve-item h4 { font-size: 12.5px; font-weight: 500; color: #fff; line-height: 1.35; font-family: 'Montserrat', sans-serif; }

/* Reveal animation */
.sp-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.sp-reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .sp-grid { grid-template-columns: 1fr; }
  .sp-serve-inner { grid-template-columns: 1fr; }
  .sp-serve-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .sp-serve-right { grid-template-columns: repeat(3, 1fr); }
  .sp-stats { gap: 28px; }
}
@media (max-width: 600px) {
  .sp-wrap { padding: 0 20px; }
  .sp { padding: 60px 0 70px; }
  .sp-serve-right { grid-template-columns: 1fr 1fr; }
  .sp-tiles { grid-template-columns: 1fr; }
  .sp-stats { flex-wrap: wrap; gap: 20px; justify-content: flex-start; }
}

/* ================================================================
   SUB PAGES — CONTACT SECTION WRAPPER (CENTER FIX)
================================================================ */
.contact-section-wrapper { display: flex; flex-direction: column; align-items: center; width: 100%; padding: 60px 24px; gap: 40px; padding-top: 0px; }

/* ================================================================
   SUB PAGES — CONTACT DETAILS BAR
================================================================ */
.contact-details-container { width: 100%; max-width: 1200px; background: #00C853; border-radius: 24px; display: flex; align-items: stretch; position: relative; overflow: hidden; box-shadow: 0 16px 48px rgba(0,200,83,0.28), 0 4px 12px rgba(0,0,0,0.06); }
.contact-details-container::before { content: ''; position: absolute; top: -70px; right: -50px; width: 220px; height: 220px; background: rgba(255,255,255,0.09); border-radius: 50%; pointer-events: none; }
.contact-details-container::after { content: ''; position: absolute; bottom: -50px; left: 38%; width: 160px; height: 160px; background: rgba(255,255,255,0.06); border-radius: 50%; pointer-events: none; }
.details-cards { display: flex; align-items: stretch; flex: 1; z-index: 1; width: 100%; }
.detail-card { display: flex; align-items: center; gap: 16px; padding: 32px 40px; border-right: 1px solid rgba(255,255,255,0.2); transition: transform 0.2s ease; flex: 1; min-width: 0; }
.detail-card:last-child { border-right: none; }
.detail-card:hover { transform: translateY(-3px); }
.detail-card-icon { width: 46px; height: 46px; background: rgba(255,255,255,0.2); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.15); transition: background 0.2s; }
.detail-card:hover .detail-card-icon { background: rgba(255,255,255,0.3); }
.detail-card-text { min-width: 0; flex: 1; overflow: hidden; }
.detail-card-text strong { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 5px; font-family: 'Montserrat', sans-serif; }
.detail-card-text p, .detail-card-text a { display: block; font-size: 0.9rem; font-weight: 500; color: #ffffff; text-decoration: none; line-height: 1.55; transition: color 0.2s; overflow-wrap: break-word; word-break: break-word; font-family: 'Montserrat', sans-serif; }
.detail-card:hover .detail-card-text a { color: rgba(255,255,255,0.82); }

/* ================================================================
   SUB PAGES — CONTACT FORM BOX
================================================================ */
.form-box { width: 100%; max-width: 780px; background: #ffffff; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.07), 0 0 0 1px #ccf0d9; padding: 52px 54px; position: relative; margin: 0 auto; }
.form-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: #00C853; }
.form-header { margin-bottom: 32px; text-align: center; }
.form-header .eyebrow { display: inline-flex; align-items: center; gap: 8px; background: #f0fff4; border: 1px solid #ccf0d9; color: #009940; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
.form-header .eyebrow::before { content: ''; width: 6px; height: 6px; background: #00C853; border-radius: 50%; }
.form-header h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #0a0a0a; line-height: 1.2; margin-bottom: 8px; }
.form-header h2 em { font-style: italic; color: #009940; }
.form-header p { font-size: 0.88rem; color: #4b5563; line-height: 1.65; font-family: 'Montserrat', sans-serif; }

/* Form Grid */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.form-group#services-group { grid-column: 1 / -1; }
.form-group label, .form-group .group-title { font-size: 0.76rem; font-weight: 600; color: #0a0a0a; letter-spacing: 0.05em; text-transform: uppercase; font-family: 'Montserrat', sans-serif; }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select { height: 48px; padding: 0 16px; border: 1.5px solid #ccf0d9; border-radius: 12px; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; color: #0a0a0a; background: #f9fafb; outline: none; width: 100%; min-width: 0; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; -webkit-appearance: none; appearance: none; }
.form-group input[type="text"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group input[type="email"]::placeholder { color: #9ca3af; }
.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus { border-color: #00C853; box-shadow: 0 0 0 4px rgba(0,200,83,0.15); background: #ffffff; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234b5563' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-color: #f9fafb; padding-right: 40px; cursor: pointer; }
.error-message { font-size: 0.74rem; color: #e53935; min-height: 14px; display: block; font-family: 'Montserrat', sans-serif; }

/* Services Section Inside Form */
#services-group { background: #f0fff4; border: 1.5px solid #ccf0d9; border-radius: 14px; padding: 18px 20px; }
.checkbox-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; }
.checkbox-item input[type="checkbox"] { -webkit-appearance: checkbox; appearance: checkbox; width: 18px; height: 18px; cursor: pointer; accent-color: #00C853; }
.checkbox-item label { font-size: 0.84rem; font-weight: 400; color: #0a0a0a; cursor: pointer; letter-spacing: 0; text-transform: none; line-height: 1.4; font-family: 'Montserrat', sans-serif; }

/* Loader */
.loader { grid-column: 1 / -1; color: #009940; font-size: 0.85rem; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Montserrat', sans-serif; }
.loader::before { content: ''; width: 16px; height: 16px; border: 2px solid #ccf0d9; border-top-color: #00C853; border-radius: 50%; animation: formSpin 0.7s linear infinite; display: inline-block; }
@keyframes formSpin { to { transform: rotate(360deg); } }

/* Submit Button */
.submit-wrap { grid-column: 1 / -1; display: flex; justify-content: center; margin-top: 6px; }
.submit-btn { height: 52px; padding: 0 52px; background: #00C853; color: #ffffff; font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 600; letter-spacing: 0.04em; border: none; border-radius: 14px; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 6px 20px rgba(0,200,83,0.35); }
.submit-btn::after { content: '→'; font-size: 1.1rem; transition: transform 0.2s; }
.submit-btn:hover { background: #009940; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,200,83,0.4); }
.submit-btn:hover::after { transform: translateX(4px); }
.submit-btn:active { transform: translateY(0); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: 0 6px 20px rgba(0,200,83,0.35); }

/* Success Message */
.success-message { grid-column: 1 / -1; background: #f0fff4; border: 1.5px solid #ccf0d9; border-radius: 12px; padding: 16px 20px; color: #009940; font-size: 0.9rem; font-weight: 500; text-align: center; display: none; font-family: 'Montserrat', sans-serif; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 960px) {
  .contact-section-wrapper { padding: 40px 20px; gap: 28px; }
  .detail-card { padding: 24px 22px; gap: 12px; }
  .form-box { padding: 40px 36px; }
  .checkbox-options { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .contact-section-wrapper { padding: 30px 16px; gap: 20px; }
  .details-cards { flex-direction: column; }
  .detail-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 18px 24px; flex: none; }
  .detail-card:last-child { border-bottom: none; }
  .form-grid { grid-template-columns: 1fr; }
  .checkbox-options { grid-template-columns: 1fr; }
  .form-box { padding: 30px 24px; }
}