:root{
  --bg-color:#f8fafc;
  --surface:#ffffff;
  --text-main:#0f172a;
  --text-muted:#475569;
  --border:#e2e8f0;

  --primary:#2563eb;
  --primary-dark:#1d4ed8;

  --radius-md:14px;
  --radius-lg:24px;

  --shadow-md:0 10px 30px rgba(0,0,0,.08);
  --shadow-lg:0 20px 50px rgba(0,0,0,.12);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

html{
  scroll-behavior:smooth;
}

html,
body{
  width:100%;
  overflow-x:hidden;
}

body{
  background:var(--bg-color);
  color:var(--text-main);
  line-height:1.7;
}

img{
  max-width:100%;
  display:block;
}

/* =========================
   NAVBAR
========================= */

nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:16px clamp(18px,5vw,80px);

  background:rgba(255,255,255,.88);
  backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(255,255,255,.15);

  z-index:1000;

  transition:.3s;
}

nav.scrolled{
  padding:12px clamp(18px,5vw,80px);
  box-shadow:var(--shadow-md);
  border-color:var(--border);
}

/* LOGO */

.logo{
  display:flex;
  align-items:center;
  gap:12px;

  text-decoration:none;

  min-width:0;
}

.logo img{
  width:44px;
  height:44px;

  object-fit:contain;

  border-radius:10px;
}

.logo span{
  font-size:clamp(14px,2vw,20px);
  font-weight:800;

  color:var(--text-main);

  text-transform:uppercase;

  white-space:nowrap;
}

.logo span span{
  color:var(--primary);
}

/* NAV LINKS */

.nav-links{
  display:flex;
  align-items:center;
  gap:clamp(14px,2vw,34px);

  list-style:none;
}

.nav-links a{
  text-decoration:none;

  color:var(--text-muted);

  font-size:clamp(13px,1vw,15px);
  font-weight:600;

  transition:.25s;

  position:relative;
}

.nav-links a:hover{
  color:var(--primary);
}

.nav-links a::after{
  content:"";

  position:absolute;
  left:0;
  bottom:-6px;

  width:0%;
  height:2px;

  background:var(--primary);

  transition:.3s;
}

.nav-links a:hover::after{
  width:100%;
}

/* RIGHT */

.nav-right{
  display:flex;
  align-items:center;
  gap:16px;
}

/* BUTTON */

.btn-donate{
  background:linear-gradient(
    135deg,
    var(--primary),
    #3b82f6
  );

  color:white;

  padding:13px 26px;

  border-radius:999px;

  text-decoration:none;

  font-size:14px;
  font-weight:700;

  transition:.3s;

  box-shadow:
  0 10px 25px rgba(37,99,235,.25);
}

.btn-donate:hover{
  transform:translateY(-3px);

  background:linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary)
  );
}

/* HAMBURGER */

.hamburger{
  display:none;

  flex-direction:column;
  gap:5px;

  cursor:pointer;

  z-index:1001;
}

.hamburger span{
  width:26px;
  height:2px;

  background:var(--text-main);

  transition:.3s;
}

.mobile-only{
  display:none;
}

/* =========================
   HERO SECTION
========================= */

.hero{
  position:relative;

  min-height:100vh;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;

  padding:
  clamp(130px,15vw,190px)
  clamp(20px,5vw,90px)
  100px;

  background:
linear-gradient(
  rgba(15,23,42,.74),
  rgba(15,23,42,.84)
),
url('43.jpeg');

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  background-attachment:scroll;

  color:white;
}

.hero-content{
  max-width:1000px;

  margin:auto;

  display:flex;
  flex-direction:column;
  align-items:center;
}

.hero h1{
  font-size:clamp(34px,7vw,74px);

  line-height:1.05;

  font-weight:800;

  margin-bottom:24px;

  letter-spacing:-2px;
}

.hero h1 span{
  color:#60a5fa;
}

.hero p{
  font-size:clamp(15px,2vw,20px);

  color:#e2e8f0;

  max-width:850px;

  margin:auto auto 40px;
}

/* HERO BUTTONS */

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;

  gap:18px;

  width:100%;
}

.btn-hero{
  min-width:190px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;

  padding:16px 32px;

  border-radius:999px;

  font-size:15px;
  font-weight:700;

  transition:.3s;
}

.btn-hero-primary{
  background:var(--primary);

  color:white;

  box-shadow:
  0 12px 30px rgba(37,99,235,.35);
}

.btn-hero-primary:hover{
  transform:translateY(-3px);

  background:var(--primary-dark);
}

.btn-hero-outline{
  border:2px solid rgba(255,255,255,.8);

  color:white;
}

.btn-hero-outline:hover{
  background:white;
  color:var(--text-main);

  transform:translateY(-3px);
}

/* =========================
   SECTION WRAPPER
========================= */

.section-wrapper{
  padding:100px clamp(20px,5vw,80px);

  max-width:1400px;

  margin:auto;
}

.section-header{
  text-align:center;

  margin-bottom:60px;
}

.section-header h2{
  font-size:clamp(28px,5vw,44px);

  font-weight:800;

  margin-bottom:18px;

  letter-spacing:-1px;
}

.section-header p{
  font-size:clamp(14px,2vw,18px);

  color:var(--text-muted);

  max-width:700px;

  margin:auto;
}

/* =========================
   CAUSES
========================= */

.causes-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(min(100%,320px),1fr));

  gap:28px;
}

.cause-card{
  background:var(--surface);

  border-radius:var(--radius-lg);

  overflow:hidden;

  border:1px solid var(--border);

  box-shadow:var(--shadow-md);

  transition:.35s;
}

.cause-card:hover{
  transform:translateY(-10px);

  box-shadow:var(--shadow-lg);
}

.cause-img{
  width:100%;
  aspect-ratio:16/10;

  object-fit:cover;
}

.cause-content{
  padding:32px;
}

.cause-num{
  font-size:42px;
  font-weight:800;

  color:#dbeafe;

  margin-bottom:14px;
}

.cause-content h3{
  font-size:24px;

  margin-bottom:14px;
}

.cause-content p{
  color:var(--text-muted);

  font-size:15px;
}

/* =========================
   SPLIT SECTIONS
========================= */

.split-row{
  display:flex;
  align-items:center;

  gap:70px;

  margin-bottom:120px;
}

.split-row.reverse{
  flex-direction:row-reverse;
}

.split-text,
.split-image{
  flex:1;

  min-width:0;
}

.split-image img{
  width:100%;

  aspect-ratio:4/3;

  object-fit:cover;

  border-radius:var(--radius-lg);

  box-shadow:var(--shadow-lg);
}

.split-text h3{
  font-size:clamp(28px,4vw,42px);

  margin-bottom:24px;

  font-weight:800;
}

.split-text p{
  color:var(--text-muted);

  margin-bottom:20px;

  font-size:16px;
}

.chairman-note{
  display:inline-block;

  margin-top:10px;

  background:#eff6ff;

  color:var(--primary-dark);

  padding:14px 20px;

  border-left:4px solid var(--primary);

  border-radius:10px;

  font-weight:600;
}

/* =========================
   STATS
========================= */

.stats {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  padding: 100px clamp(20px, 5vw, 80px);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(180px,1fr));

  gap:32px;

  max-width:1400px;

  margin:auto;
}

.stat-box{
  text-align:center;
}

.stat-box h2{
  font-size:clamp(36px,5vw,62px);

  font-weight:800;

  margin-bottom:10px;
}

.stat-box p{
  font-size:15px;

  opacity:311%;
}

/* =========================
   PROJECTS
========================= */

.projects{
  background:var(--bg-color);
}

.project-card{
  display:flex;
  flex-direction:column;

  background:var(--surface);

  overflow:hidden;

  border-radius:var(--radius-lg);

  border:1px solid var(--border);

  box-shadow:var(--shadow-md);
}

.project-img{
  width:100%;

  aspect-ratio:16/10;

  object-fit:cover;
}

.project-body{
  padding:32px;

  display:flex;
  flex-direction:column;

  flex:1;
}

.project-body h3{
  font-size:24px;

  margin-bottom:14px;
}

.project-body p{
  color:var(--text-muted);

  margin-bottom:24px;

  flex:1;
}

.read-more{
  text-decoration:none;

  color:var(--primary);

  font-weight:700;
}

/* =========================
   TEAM
========================= */

.team-section{
  background:var(--surface);
}

.team-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(min(100%,220px),1fr));

  gap:24px;
}

.team-member{
  background:var(--bg-color);

  border:1px solid var(--border);

  border-radius:var(--radius-md);

  text-align:center;

  padding:28px;
}

.team-avatar{
  width:82px;
  height:82px;

  margin:0 auto 18px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#dbeafe;

  font-size:34px;
}

.team-member h4{
  font-size:16px;

  margin-bottom:6px;
}

.team-member p{
  font-size:13px;

  color:var(--primary);

  font-weight:700;
}



/* =========================
   TABLET
========================= */

@media(max-width:992px){

  .split-row,
  .split-row.reverse{
    flex-direction:column;

    gap:40px;

    margin-bottom:70px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  nav{
    padding:14px 20px;
  }

  .desktop-btn{
    display:none;
  }

  .mobile-only{
    display:block;
    width:100%;
  }

  .hamburger{
    display:flex;
  }

  .nav-links{
    position:fixed;

    top:76px;
    left:20px;
    right:20px;

    background:white;

    flex-direction:column;
    align-items:flex-start;

    padding:24px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.1);

    opacity:0;
    visibility:hidden;

    transform:translateY(-10px);

    transition:.3s;
  }

  .nav-links.active{
    opacity:1;
    visibility:visible;

    transform:translateY(0);
  }

  .hero{
    text-align:center;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .btn-hero{
    width:100%;
  }

  .section-wrapper{
    padding:80px 20px;
  }

  .stats-grid{
    grid-template-columns:1fr 1fr;
  }

}
.view-more-btn{
  display:inline-block;
  padding:14px 34px;
  background:#2563eb;
  color:white;
  font-weight:700;
  border-radius:999px;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(37,99,235,0.25);
  transition:0.3s;
}

.view-more-btn:hover{
  transform:translateY(-4px);
}
.team-section .view-more-wrap{
  grid-column: 1 / -1;
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:40px;
}
/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

  .hero h1{
    font-size:30px;
  }

  .hero p{
    font-size:14px;
  }

  .stats-grid{
    grid-template-columns:1fr;
  }

  .section-header h2{
    font-size:28px;
  }

  .logo span{
    font-size:14px;
  }

}
/* Scroll cue container */
.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 1.2s ease forwards; /* Page load par fade in hone ke liye */
}

/* Mouse ka outer shape */
.hero__scroll .wheel {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

/* Mouse ke andar animated dot/line */
.hero__scroll .wheel::before {
  content: '';
  width: 3px;
  height: 7px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scroll-wheel 1.8s infinite; /* Scroll animation */
}

/* Dot ko neeche move karne wali animation */
@keyframes scroll-wheel {
  0% { 
    transform: translateY(0); 
    opacity: 1; 
  }
  100% { 
    transform: translateY(10px); 
    opacity: 0; 
  }
}

/* Pure scroll element ko load hone par show karne wali animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* =============================================
   VARIABLES (Agar pehle se defined hain to ignore karein)
============================================= */
:root {
  --ink:        #060c1a;
  --muted:      #5d6b8a;
  --surface:    #ffffff;
  --blue:       #1847f5;
  --blue-lt:    #e8eeff;
  --border:     rgba(24,71,245,.1);
  --card-shadow-h: 0 16px 48px rgba(6,12,26,.13);
  --r-lg:       24px;
}

/* =============================================
   SECTION HEADINGS & UTILITIES
============================================= */
.section {
  padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 72px);
  font-family: 'Outfit', sans-serif;
}
.section__inner {
  max-width: 1380px;
  margin: auto;
}
.section__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-lt);
  border: 1px solid rgba(24,71,245,.18);
  color: var(--blue);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  margin-bottom: 16px;
}
.chip .dot {
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}
.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 16px;
}
.h2 em {
  font-style: italic;
  color: var(--blue);
}
.lead {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.85;
}

/* =============================================
   PILLARS / CARDS CSS
============================================= */
.pillars {
  background: var(--surface);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid #e8edf8;
  background: var(--surface);
  transition: .4s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
}
.pillar:hover {
  transform: translateY(-12px);
  box-shadow: var(--card-shadow-h);
  border-color: var(--border);
}
.pillar__img-wrap {
  overflow: hidden;
  position: relative;
}
.pillar__img-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: .55s cubic-bezier(.4, 0, .2, 1);
}
.pillar:hover .pillar__img-wrap img {
  transform: scale(1.07);
}
.pillar__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 999px;
}
.pillar__body {
  padding: clamp(20px, 3vw, 32px);
}
.pillar__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--blue-lt);
  line-height: 1;
  margin-bottom: 6px;
}
.pillar__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.pillar__body p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
}
.pillar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  margin-top: 18px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: .25s;
}
.pillar:hover .pillar__link {
  gap: 12px;
}

/* =============================================
   RESPONSIVE DESIGN (Media Queries)
============================================= */

/* Tablet & Smaller Laptops */
@media (max-width: 992px) {
  .pillars__grid {
    grid-template-columns: 1fr 1fr; /* 2 Cards in a row */
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .pillars__grid {
    grid-template-columns: 1fr; /* 1 Card per row (stacked) */
  }
}
/* =============================================
   FOOTER
============================================= */
.footer{
  background:#050b1a;
  padding:clamp(48px,7vw,90px) clamp(20px,5vw,72px) 0;
}
.footer__inner{max-width:1380px;margin:auto;}
.footer__grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1.1fr;
  gap:clamp(32px,5vw,72px);
  padding-bottom:clamp(32px,5vw,60px);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.footer__wordmark{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;font-weight:700;color:#fff;
  margin-bottom:14px;display:block;
}
.footer__wordmark b{color:var(--blue);}
.footer__desc{
  font-size:13.5px;color:#4a5670;line-height:1.85;
  margin-bottom:20px;max-width:300px;
}
.footer__contact p{
  font-size:12.5px;color:#4a5670;
  margin-bottom:10px;line-height:1.7;
}
.footer__contact strong{color:rgba(255,255,255,.55);font-weight:600;}
 
.footer h4{
  font-family:'Cormorant Garamond',serif;
  font-size:18px;font-weight:700;color:#fff;
  margin-bottom:20px;letter-spacing:-.3px;
}
.partners-wrap{display:flex;flex-wrap:wrap;gap:8px;}
.partner-chip{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.07);
  border-radius:999px;padding:6px 13px;
  font-size:11.5px;color:#4a5670;font-weight:600;
  transition:.2s;
}
.partner-chip:hover{background:rgba(24,71,245,.15);border-color:rgba(24,71,245,.3);color:#93c5fd;}
 
.bank{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  border-radius:12px;padding:13px 16px;
  margin-bottom:9px;transition:.2s;
}
.bank:hover{background:rgba(255,255,255,.06);}
.bank span{
  display:block;font-size:10.5px;
  color:#3d4f6a;letter-spacing:.5px;margin-bottom:4px;
}
.bank strong{
  color:rgba(255,255,255,.75);
  font-size:12.5px;word-break:break-all;font-weight:600;
}
 
.footer__bottom{
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:12px;
  padding:20px 0 24px;
  font-size:12px;color:#2d3d56;
}
.footer__bottom a{color:#2d3d56;transition:.2s;}
.footer__bottom a:hover{color:#fff;}
 @media(max-width:768px){
  
 
  
  .footer__grid{grid-template-columns:1fr;}
  .footer__bottom{flex-direction:column;text-align:center;}
}
/* =============================================
   VARIABLES (Agar define nahi hain toh ye lazmi hain)
============================================= */
:root {
  --blue:       #1847f5;
  --blue-d:     #0f35cc;
}

/* =============================================
   CTA BAND STYLES
============================================= */
.cta-band {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  padding: clamp(48px, 7vw, 90px) clamp(20px, 5vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
  font-family: 'Outfit', sans-serif;
}

/* Background glowing effect (Radial Gradient) */
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 500px at 50% 120%, rgba(255,255,255,.07), transparent);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: auto;
}

/* Heading Styling */
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

/* Paragraph Styling */
.cta-band p {
  font-size: 16px;
  color: rgb(255, 255, 255);
  margin-bottom: 36px;
  line-height: 1.8;
}

/* Buttons Container */
.cta-band__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* =============================================
   CTA BUTTONS STYLES
============================================= */
/* White Filled Button */
.btn--white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--blue);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  border-radius: 999px;
  transition: 0.28s;
  box-shadow: 0 8px 24px rgba(6, 12, 26, 0.15);
  text-decoration: none;
}

.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(6, 12, 26, 0.2);
}

/* White Outlined Button */
.btn--white-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  border-radius: 999px;
  transition: 0.28s;
  text-decoration: none;
}

.btn--white-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-3px);
}

/* =============================================
   RESPONSIVE DESIGN (Mobile Devices)
============================================= */
@media(max-width: 480px){
  .cta-band__btns .btn--white,
  .cta-band__btns .btn--white-outline {
    width: 100%;
    justify-content: center;
  }
}
/* =============================================
   VARIABLES & COMMON UTILITIES
============================================= */
:root {
  --ink:        #060c1a;
  --muted:      #5d6b8a;
  --surface:    #ffffff;
  --bg:         #f3f6fd;
  --bg-2:       #eaf0ff;
  --blue:       #1847f5;
  --blue-d:     #0f35cc;
  --blue-lt:    #e8eeff;
  --blue-glow:  rgba(24,71,245,.22);
  --r-xl:       36px;
}

.section {
  padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 72px);
  font-family: 'Outfit', sans-serif;
}

.section__inner {
  max-width: 1380px;
  margin: auto;
}

/* Chip (Small Badge) */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-lt);
  border: 1px solid rgba(24, 71, 245, 0.18);
  color: var(--blue);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  margin-bottom: 18px;
}

.chip .dot {
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

/* Section Headings */
.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 16px;
}

.h2 em {
  font-style: italic;
  color: var(--blue);
}

/* =============================================
   ABOUT SECTION LAYOUT (Split Row)
============================================= */
.about {
  background: var(--bg);
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.split-row:last-child {
  margin-bottom: 0;
}

/* Reverse Order for the second row */
.split-row.flip {
  direction: rtl;
}

.split-row.flip > * {
  direction: ltr;
}

/* =============================================
   IMAGE & DECORATIVE ELEMENTS
============================================= */
.split__img {
  position: relative;
}

.split__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: 0 32px 80px rgba(6, 12, 26, 0.14);
}

/* Decorative background gradient behind image */
.split__img::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--r-xl) + 8px);
  background: linear-gradient(135deg, var(--blue) 0%, transparent 60%);
  opacity: 0.08;
  z-index: -1;
}

/* Floating Tag on Image */
.img-tag {
  position: absolute;
  bottom: -16px;
  right: 20px;
  background: var(--blue);
  color: #fff;
  border: 3px solid var(--surface);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 12px 32px var(--blue-glow);
  max-width: 200px;
  z-index: 10;
}

/* Tag positioned on the left for the flipped row */
.img-tag.left {
  right: auto;
  left: 20px;
}

/* =============================================
   TEXT CONTENT & BLOCKQUOTE
============================================= */
.split__txt p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 18px;
}

.blockquote {
  background: linear-gradient(135deg, var(--blue-lt), var(--bg-2));
  border-left: 4px solid var(--blue);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  margin-top: 8px;
  font-size: 15px;
  font-style: italic;
  color: var(--blue-d);
  font-weight: 600;
  line-height: 1.7;
}

/* =============================================
   RESPONSIVE DESIGN (Tablets & Mobile)
============================================= */
@media (max-width: 992px) {
  .split-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  /* Remove flip direction on small screens so text/images stack normally */
  .split-row.flip {
    direction: ltr;
  }
  
  /* Keep floating tags safe inside the screen on smaller devices */
  .split__img .img-tag {
    bottom: -12px;
    right: 10px;
    max-width: 85%;
    font-size: 11px;
  }
  
  .split__img .img-tag.left {
    left: 10px;
  }
}

@media (max-width: 480px) {
  .split__img .img-tag {
    font-size: 10px;
    padding: 10px 14px;
  }
}
/* =============================================
   FOOTER
============================================= */
.footer{
  background:#050b1a;
  padding:clamp(48px,7vw,90px) clamp(20px,5vw,72px) 0;
}
.footer__inner{max-width:1380px;margin:auto;}
.footer__grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1.1fr;
  gap:clamp(32px,5vw,72px);
  padding-bottom:clamp(32px,5vw,60px);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.footer__wordmark{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;font-weight:700;color:#fff;
  margin-bottom:14px;display:block;
}
.footer__wordmark b{color:var(--blue);}

.footer__desc{
  font-size:13.5px;
  color:rgba(255,255,255,0.75); /* Update: Dark grey se light soft-white kiya */
  line-height:1.85;
  margin-bottom:20px;max-width:300px;
}

.footer__contact p{
  font-size:12.5px;color:#ffffff;
  margin-bottom:10px;line-height:1.7;
}

.footer__contact strong{
  color:#ffffff; /* Update: Dim se pure white kiya */
  font-weight:600;
}
 
.footer h4{
  font-family:'Cormorant Garamond',serif;
  font-size:18px;font-weight:700;color:#fff;
  margin-bottom:20px;letter-spacing:-.3px;
}

.partners-wrap{display:flex;flex-wrap:wrap;gap:8px;}

.partner-chip{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.07);
  border-radius:999px;padding:6px 13px;
  font-size:11.5px;
  color:rgba(255,255,255,0.85); /* Update: Dikhne wala white kiya */
  font-weight:600;
  transition:.2s;
}
.partner-chip:hover{background:rgba(24,71,245,.15);border-color:rgba(24,71,245,.3);color:#ffffff;}
 
.bank{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  border-radius:12px;padding:13px 16px;
  margin-bottom:9px;transition:.2s;
}
.bank:hover{background:rgba(255,255,255,.06);}

.bank span{
  display:block;font-size:10.5px;
  color:rgba(255,255,255,0.65); /* Update: Bank details title ab clear dikhega */
  letter-spacing:.5px;margin-bottom:4px;
}

.bank strong{
  color:#ffffff; /* Update: Account numbers pure white kar diye */
  font-size:12.5px;word-break:break-all;font-weight:600;
}
 
.footer__bottom{
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:12px;
  padding:20px 0 24px;
  font-size:12px;
  color:rgba(255,255,255,0.55); /* Update: Copyright text ab read-able hai */
}

.footer__bottom a{
  color:rgba(255,255,255,0.8); /* Update: Link text clear white kiya */
  transition:.2s;
}
.footer__bottom a:hover{color:#fff; text-decoration: underline;}

@media(max-width:768px){
  .footer__grid{grid-template-columns:1fr;}
  .footer__bottom{flex-direction:column;text-align:center;}
}