*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
:root{
  --g1:#1565e8;
  --g2:#0ea5e9;
  --white:rgb(255, 255, 255);
  --text-light:rgb(255, 255, 255);
  --text-dim:rgb(255, 255, 255);
  --donate1:#e53e3e;
  --donate2:#b91c1c;
}
html{scroll-behavior:smooth;}
body{
  font-family:'Zen Maru Gothic',sans-serif;
  min-height:200vh;
}



/* ── STICKY HEADER — sticky so hero scrolls behind ── */
.header-wrap{
  position:sticky;top:10px;z-index:9999;
  display:flex;justify-content:center;
  padding:0 16px;
  margin-top:6px;
  margin-bottom:-82px;
}
.header-card{
  width:100%;max-width:960px;
  background:rgba(255,255,255,0.85);
  border:1.5px solid rgba(255,255,255,0.6);
  border-radius:100px;
  padding:8px 14px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  backdrop-filter:blur(20px);
  box-shadow:0 8px 40px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.8) inset;
  animation:slideDown .5s cubic-bezier(.22,1,.36,1) both;
}
@keyframes slideDown{from{opacity:0;transform:translateY(-24px);}to{opacity:1;transform:translateY(0);}}

/* ── LOGO SLOT ── */
.logo-slot{
  flex-shrink:0;
  /* width:46px;height:46px; */
  /* border-radius:14px; */
  /* background:#eff6ff; */
  /* border:1.5px dashed #93c5fd; */
  display:flex;align-items:center;justify-content:center;
  color:#3b82f6;font-size:9.5px;font-weight:600;
  letter-spacing:.5px;text-align:center;line-height:1.3;
  cursor:default;user-select:none;overflow:hidden;
}
.logo-img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* ── NAV ── */
.nav-wrap{display:flex;align-items:center;gap:2px;position:relative;flex:1;justify-content:center;}
.nav-pill{
  position:absolute;
  background:rgba(255,255,255,0.95);
  border-radius:100px;
  transition:all .35s cubic-bezier(.34,1.4,.64,1);
  pointer-events:none;
  z-index:0;
  box-shadow:0 2px 12px rgba(0,0,0,0.1);
  opacity:0;
}
.nav-item{position:relative;}
.nav-item>a{
  display:flex;align-items:center;gap:5px;
  padding:8px 16px;border-radius:100px;
  color:#1e3a6e;text-decoration:none;
  font-size:13px;font-weight:500;
  white-space:nowrap;position:relative;z-index:1;
  transition:color .2s;cursor:pointer;user-select:none;
}
.nav-item>a i.main-icon{font-size:15px;}
.nav-item>a .chev{font-size:11px;transition:transform .22s;margin-left:1px;}
.nav-item>a.active,
.nav-item>a.hovered{color:var(--g1);font-weight:600;}
.nav-item:hover .chev{transform:rotate(180deg);}

/* ── MEGA MENU ── */
.mega{
  position:absolute;
  top:calc(100% + 4px);
  left:50%;
  transform:translateX(-50%) translateY(8px);
  background:#fff;
  border-radius:20px;
  border:1px solid rgba(21,101,232,0.1);
  box-shadow:0 20px 60px rgba(21,101,232,0.18),0 4px 16px rgba(0,0,0,0.08);
  padding:22px;
  opacity:0;pointer-events:none;
  transition:opacity .25s,transform .25s cubic-bezier(.34,1.2,.64,1);
  z-index:9998;
  min-width:560px;
}
/* invisible bridge fills the gap so pointer doesn't leave nav-item */
.mega::before{
  content:'';position:absolute;top:-10px;left:0;
  width:100%;height:10px;
  background:transparent;
}
/* arrow */
.mega::after{
  content:'';position:absolute;top:-6px;left:50%;
  transform:translateX(-50%) rotate(45deg);
  width:12px;height:12px;background:#fff;
  border-left:1px solid rgba(21,101,232,0.1);
  border-top:1px solid rgba(21,101,232,0.1);
  pointer-events:none;
}
.nav-item:hover .mega{
  opacity:1;pointer-events:all;
  transform:translateX(-50%) translateY(0);
}
.mega-label{
  font-size:10px;font-weight:700;letter-spacing:1.6px;
  color:#94a3b8;text-transform:uppercase;
  padding-bottom:12px;margin-bottom:14px;
  border-bottom:1px solid #e8f0fe;
}
.mega-grid{display:grid;gap:10px;grid-template-columns:repeat(3,1fr);}

/* ── MEGA CARDS ── */
.mc{
  display:flex;flex-direction:column;align-items:center;gap:8px;
  padding:12px 10px;border-radius:14px;
  text-decoration:none;
  border:1.5px solid #e8f0fe;background:#fafcff;
  transition:all .25s cubic-bezier(.34,1.4,.64,1);
  cursor:pointer;overflow:hidden;position:relative;
}
.mc::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,var(--g1),var(--g2));
  opacity:0;transition:opacity .22s;border-radius:inherit;
}
.mc:hover{transform:translateY(-4px) scale(1.04);border-color:var(--g1);box-shadow:0 8px 24px rgba(21,101,232,0.2);}
.mc:hover::after{opacity:1;}
.mc:hover .mc-name{color:#fff;}
.mc:hover .mc-sub{color:rgba(255,255,255,0.75);}
.mc-img{
  width:100%;height:80px;
  border-radius:8px;
  background:#e8f0fe;
  overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  position:relative;z-index:1;
}
.mc-img img{width:100%;height:100%;object-fit:cover;border-radius:8px;transition:transform .3s;}
.mc:hover .mc-img img{transform:scale(1.07);}
.mc-img-placeholder{
  width:100%;height:100%;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:4px;color:#93c5fd;font-size:9px;letter-spacing:.5px;text-transform:uppercase;font-weight:600;
}
.mc-img-placeholder i{font-size:26px;color:#bfdbfe;}
.mc-name{font-size:11.5px;font-weight:600;color:#1e3a6e;text-align:center;position:relative;z-index:1;transition:color .22s;line-height:1.3;}
.mc-sub{font-size:10px;color:#64748b;text-align:center;position:relative;z-index:1;transition:color .22s;line-height:1.4;}

/* ── DONATE BUTTON — premium ── */
.btn-donate{
  flex-shrink:0;
  display:flex;align-items:center;gap:8px;
  padding:10px 24px;border-radius:100px;
  font-size:13px;font-weight:600;font-family:'Zen Maru Gothic',sans-serif;
  text-decoration:none;border:none;cursor:pointer;
  background:linear-gradient(135deg,var(--donate1) 0%,var(--donate2) 100%);
  color:#fff;
  position:relative;overflow:hidden;
  letter-spacing:.3px;
  transition:transform .3s cubic-bezier(.34,1.4,.64,1), box-shadow .3s ease;
  animation:pulse-ring 2.6s ease-in-out infinite;
}
/* shimmer layer */
.btn-donate::before{
  content:'';
  position:absolute;
  top:0;left:-75%;
  width:50%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.35),transparent);
  transform:skewX(-20deg);
  transition:left 0s;
}
/* top gloss */
.btn-donate::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(255,255,255,0.18) 0%,transparent 55%);
  pointer-events:none;border-radius:inherit;
}
.btn-donate:hover{
  transform:translateY(-3px) scale(1.06);
  box-shadow:0 10px 32px rgba(229,62,62,0.55), 0 2px 8px rgba(229,62,62,0.3);
  animation:none;
}
.btn-donate:hover::before{
  left:130%;
  transition:left .5s ease;
}
.btn-donate:active{
  transform:translateY(-1px) scale(1.02);
  box-shadow:0 4px 16px rgba(229,62,62,0.4);
}
/* heart icon bounce */
.btn-donate .hi{
  font-size:16px;
  display:inline-block;
  animation:heartbeat 2.6s ease-in-out infinite;
}
.btn-donate:hover .hi{
  animation:heart-hover .4s ease forwards;
}
@keyframes pulse-ring{
  0%,100%{box-shadow:0 0 0 0 rgba(229,62,62,0.5),0 4px 18px rgba(229,62,62,0.25);}
  50%{box-shadow:0 0 0 7px rgba(229,62,62,0),0 4px 18px rgba(229,62,62,0.25);}
}
@keyframes heartbeat{
  0%,100%{transform:scale(1);}
  14%{transform:scale(1.3);}
  28%{transform:scale(1);}
  42%{transform:scale(1.18);}
  56%{transform:scale(1);}
}
@keyframes heart-hover{
  0%{transform:scale(1);}
  40%{transform:scale(1.45) rotate(-10deg);}
  70%{transform:scale(0.9) rotate(5deg);}
  100%{transform:scale(1.1) rotate(0deg);}
}

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
  align-items: center; justify-content: center;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1;
}
.hamburger span{
  display:block;width:22px;height:2px;
  background:#1e3a6e;border-radius:2px;
  transition:all .3s cubic-bezier(.22,1,.36,1);transform-origin:center;
}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0);}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}

/* ── MOBILE MENU ── */
.mob-menu{
  display:none;flex-direction:column;gap:3px;
  width:100%;padding-top:12px;margin-top:6px;
  border-top:1px solid rgba(0,0,0,0.08);
}
.mob-menu.open{display:flex;animation:mf .28s ease;}
@keyframes mf{from{opacity:0;transform:translateY(-8px);}to{opacity:1;transform:translateY(0);}}
.mob-menu a{
  display:flex;align-items:center;gap:9px;padding:10px 14px;
  border-radius:12px;color:#1e3a6e;text-decoration:none;
  font-size:13.5px;font-weight:500;transition:background .2s;
}
.mob-menu a:hover{background:rgba(21,101,232,0.08);color:var(--g1);}
.mob-menu a i{font-size:17px;}
.mob-btns{display:flex;gap:10px;padding:10px 0 4px;flex-wrap:wrap;}
.mob-btns .btn-donate{flex:1;justify-content:center;font-size:13px; color: white;}

/* ── RESPONSIVE ── */
@media(max-width:768px){
  .nav-wrap{display:none;}
  .btn-donate{display:none;}
  .hamburger{display:flex;}
  .header-card{border-radius:20px;padding:10px 14px;flex-wrap:wrap; align-items:center;}
  .header-wrap{top:6px;}
}
@media(max-width:480px){
  .top-contact{gap:12px;flex-wrap:wrap;}
  .top-inner{flex-direction:column;align-items:flex-start;gap:6px;}
  .top-bar{padding:5px 16px;}
}

/* ════════════════════════════════
   HERO SECTION
════════════════════════════════ */
.herosection{
  position:relative;
  width:100%;
  height:100vh;
  min-height:600px;
  overflow:hidden;
  margin-top:0;
}

/* ── Slides ── */
.hero-slides{
  position:absolute;inset:0;
}
.hero-slide{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.06);
  transition:opacity 1.4s cubic-bezier(.4,0,.2,1),
             transform 6s cubic-bezier(.4,0,.2,1),
             filter 1.4s ease;
  filter:blur(12px) brightness(.6);
  will-change:opacity,transform,filter;
}
.hero-slide.active{
  opacity:1;
  transform:scale(1);
  filter:blur(0px) brightness(.55);
}
.hero-slide.leaving{
  opacity:0;
  filter:blur(14px) brightness(.4);
  transform:scale(1.04);
}

/* Cow images */
.hero-slide:nth-child(1){background-image:url('image/ChatGPT Image Jun 3, 2026, 01_05_47 PM.png');background-position:center 40%;}
.hero-slide:nth-child(2){background-image:url('image/ChatGPT Image Jun 11, 2026, 11_38_41 AM.webp');background-position:center 50%;}
.hero-slide:nth-child(3){background-image:url('image/ChatGPT Image Jun 11, 2026, 11_40_51 AM (1).webp');background-position:center 45%;}

/* Background color hata do ya transparent karo */
.hero-slide {
  background-color: transparent;
}

/* ── Dark gradient overlay — stronger at bottom-left for text ── */
.hero-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 60%, transparent 100%),
    linear-gradient(to top,   rgba(0,0,0,0.55) 0%, transparent 50%);
  z-index:1;
}

/* ── Text content ── */
.hero-content{
  position:absolute;
  bottom:160px;
  left:7%;
  z-index:2;
  max-width:560px;
}
.hero-tag{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.25);
  backdrop-filter:blur(8px);
  color:#fff;font-size:12px;font-weight:500;letter-spacing:1.2px;
  padding:5px 14px;border-radius:100px;
  margin-bottom:18px;
  text-transform:uppercase;
  animation:fadeUp .8s .2s both;
}
.hero-tag i{font-size:14px;color:#fbbf24;}
.hero-title{
  font-size:clamp(32px,5vw,58px);
  font-weight:700;
  color:#fff;
  line-height:1.15;
  margin-bottom:16px;
  animation:fadeUp .8s .35s both;
  text-shadow:0 2px 20px rgba(0,0,0,0.3);
}
.hero-title span{
  color:#fbbf24;
}
.hero-sub{
  font-size:clamp(14px,1.6vw,17px);
  color:rgba(255,255,255,0.8);
  line-height:1.75;
  margin-bottom:28px;
  animation:fadeUp .8s .5s both;
  max-width:440px;
}
.hero-btns{
  display:flex;align-items:center;gap:14px;flex-wrap:wrap;
  animation:fadeUp .8s .65s both;
}
.hero-btn-primary{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 28px;border-radius:100px;
  background:linear-gradient(135deg,var(--g1),var(--g2));
  color:#fff;font-size:14px;font-weight:600;
  text-decoration:none;
  box-shadow:0 6px 24px rgba(21,101,232,0.45);
  transition:transform .3s cubic-bezier(.34,1.4,.64,1),box-shadow .3s;
  font-family:'Zen Maru Gothic',sans-serif;
}
.hero-btn-primary:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 12px 32px rgba(21,101,232,0.55);
}
.hero-btn-secondary{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 26px;border-radius:100px;
  background:rgba(255,255,255,0.12);
  border:1.5px solid rgba(255,255,255,0.35);
  backdrop-filter:blur(8px);
  color:#fff;font-size:14px;font-weight:500;
  text-decoration:none;
  transition:background .25s,transform .3s cubic-bezier(.34,1.4,.64,1);
  font-family:'Zen Maru Gothic',sans-serif;
}
.hero-btn-secondary:hover{
  background:rgba(255,255,255,0.22);
  transform:translateY(-3px);
}

/* ── Slide dots ── */
.hero-dots{
  position:absolute;
  bottom:110px;right:7%;
  z-index:2;
  display:flex;flex-direction:column;gap:10px;
}
.hero-dot{
  width:8px;height:8px;border-radius:50%;
  background:rgba(255,255,255,0.35);
  border:1.5px solid rgba(255,255,255,0.5);
  cursor:pointer;
  transition:all .35s cubic-bezier(.34,1.4,.64,1);
}
.hero-dot.active{
  background:#fff;
  transform:scale(1.4);
  box-shadow:0 0 0 3px rgba(255,255,255,0.25);
}

/* ── Progress bar ── */
.hero-progress{
  position:absolute;
  bottom:0;left:0;
  height:3px;
  background:linear-gradient(90deg,var(--g1),var(--g2));
  width:0%;
  z-index:3;
  transition:width linear;
}

/* ── Wave at bottom — multi layer flowing ── */
.hero-wave{
  position:absolute;
  bottom:-2px;left:0;
  width:100%;
  z-index:4;
  height:130px;
  overflow:hidden;
}
/* Each SVG is 200% wide so it can slide left by 50% seamlessly */
.hero-wave svg{
  position:absolute;
  bottom:0;left:0;
  width:200%;
  height:100%;
}
.hero-wave .wave-l3{
  opacity:0.22;
  animation:waveSweep 9s linear infinite;
}
.hero-wave .wave-l2{
  opacity:0.35;
  animation:waveSweep 6s linear infinite reverse;
}
.hero-wave .wave-l1{
  opacity:1;
  animation:waveSweep 4s linear infinite;
}
@keyframes waveSweep{
  0%  { transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* ── Animations ── */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(28px);}
  to{opacity:1;transform:translateY(0);}
}

/* ── Responsive ── */
@media(max-width:768px){
  .herosection{height:100vh;}
  .hero-content{bottom:160px;left:5%;right:5%;max-width:100%;}
  .hero-dots{bottom:160px;right:5%;}
  .hero-title{font-size:28px;}
  .hero-wave{height:70px;}
}

/* ════════════════
   STATS SECTION
════════════════ */
.ss{position:relative;background:var(--color-background-primary);padding:72px 24px 80px;overflow:hidden;font-family:'Zen Maru Gothic',sans-serif;}
.ss::before{content:'';position:absolute;inset:0;background-image:radial-gradient(circle,#e0eaff 1.5px,transparent 1.5px);background-size:32px 32px;opacity:0.35;pointer-events:none;}
.ss::after{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:80px;height:3px;border-radius:0 0 6px 6px;background:linear-gradient(90deg,#1565e8,#0ea5e9);}
.ss-inner{max-width:1060px;margin:0 auto;position:relative;z-index:1;}
.ss-head{text-align:center;margin-bottom:52px;}
.eyebrow{display:inline-flex;align-items:center;gap:7px;font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:#1565e8;background:#eff6ff;border:1px solid #bfdbfe;padding:5px 16px;border-radius:100px;margin-bottom:14px;}
.eyebrow i{font-size:13px;}
.ss-head h2{font-size:clamp(22px,3.5vw,36px);font-weight:700;color:var(--color-text-primary);line-height:1.2;margin-bottom:10px;}
.ss-head h2 span{color:#1565e8;}
.ss-head p{font-size:15px;color:var(--color-text-secondary);max-width:480px;margin:0 auto;line-height:1.7;}
.sg{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;}
.sc{position:relative;background:var(--color-background-primary);border:1.5px solid #e8f0fe;border-radius:20px;padding:28px 14px 24px;text-align:center;overflow:hidden;cursor:default;transition:transform .35s cubic-bezier(.34,1.4,.64,1),box-shadow .35s ease,border-color .25s;}
.sc::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,#1565e8,#0ea5e9);opacity:0;transition:opacity .3s;border-radius:inherit;}
.sc:hover{transform:translateY(-8px) scale(1.03);box-shadow:0 16px 48px rgba(21,101,232,0.18);border-color:transparent;}
.sc:hover::before{opacity:1;}
.si{width:56px;height:56px;border-radius:16px;background:#eff6ff;border:1.5px solid #bfdbfe;display:flex;align-items:center;justify-content:center;margin:0 auto 14px;position:relative;z-index:1;transition:background .3s,border-color .3s,transform .35s cubic-bezier(.34,1.8,.64,1);}
.si i{font-size:24px;color:#1565e8;transition:color .3s;}
.sc:hover .si{background:rgba(255,255,255,0.18);border-color:rgba(255,255,255,0.3);transform:scale(1.12) rotate(-6deg);}
.sc:hover .si i{color:#fff;}
.sn{font-size:clamp(26px,3vw,38px);font-weight:700;color:var(--color-text-primary);line-height:1;margin-bottom:5px;position:relative;z-index:1;transition:color .3s;display:flex;align-items:baseline;justify-content:center;gap:2px;}
.sn .suf{font-size:0.55em;font-weight:700;}
.sc:hover .sn{color:#fff;}
.sl{font-size:12px;font-weight:600;color:var(--color-text-primary);margin-bottom:4px;position:relative;z-index:1;transition:color .3s;letter-spacing:.2px;}
.sc:hover .sl{color:rgba(255,255,255,0.9);}
.sb{font-size:11px;color:var(--color-text-secondary);position:relative;z-index:1;transition:color .3s;line-height:1.5;}
.sc:hover .sb{color:rgba(255,255,255,0.65);}
.sbar{position:absolute;bottom:0;left:0;height:3px;width:0%;background:linear-gradient(90deg,#fff,rgba(255,255,255,0.4));border-radius:0 3px 3px 0;transition:width .6s ease;z-index:2;}
.sc:hover .sbar{width:100%;}
.cn{display:inline-block;min-width:1ch;}
@media(max-width:760px){.sg{grid-template-columns:repeat(3,1fr);}.sg .sc:nth-child(4),.sg .sc:nth-child(5){grid-column:span 1;}}
@media(max-width:480px){.sg{grid-template-columns:repeat(2,1fr);}.sg .sc:nth-child(5){grid-column:span 2;}}


/* //////////////////////////////////////// section 2 ////////////////////////////////////////////// */
.homeaboutsection{position:relative;padding:100px 32px 110px;background:#f8faff;overflow:hidden;font-family:'Zen Maru Gothic',sans-serif;}
.has-bg-orb1{position:absolute;top:-120px;right:-100px;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(21,101,232,0.08),transparent 70%);pointer-events:none;}
.has-bg-orb2{position:absolute;bottom:-80px;left:-80px;width:380px;height:380px;border-radius:50%;background:radial-gradient(circle,rgba(14,165,233,0.07),transparent 70%);pointer-events:none;}
.has-bg-lines{position:absolute;inset:0;pointer-events:none;overflow:hidden;}
.has-bg-lines::before{content:'';position:absolute;top:50%;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(21,101,232,0.08),transparent);}
.has-inner{max-width:1200px;margin:0 auto;position:relative;z-index:1;display:grid;grid-template-columns:1fr 1.1fr;gap:80px;align-items:center;}

/* LEFT CONTENT */
.has-left{display:flex;flex-direction:column;}
.has-tag{display:inline-flex;align-items:center;gap:8px;margin-bottom:24px;width:fit-content;}
.has-tag-line{width:32px;height:2px;background:#1565e8;border-radius:2px;}
.has-tag-text{font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:#1565e8;}
.has-h2{font-size:clamp(30px,3.8vw,50px);font-weight:800;color:#0a0f1e;line-height:1.15;margin-bottom:8px;letter-spacing:-1px;}
.has-h2-sub{font-size:clamp(28px,3.5vw,46px);font-weight:300;color:#334155;letter-spacing:-1px;line-height:1.15;margin-bottom:28px;}
.has-h2-sub em{font-style:normal;color:#1565e8;font-weight:700;}
.has-desc{font-size:15px;color:#4b5675;line-height:1.85;margin-bottom:36px;max-width:440px;}
.has-pillars{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:40px;}
.has-pillar{background:#fff;border:1px solid rgba(21,101,232,0.1);border-radius:16px;padding:18px 16px;display:flex;align-items:flex-start;gap:12px;transition:border-color .25s,transform .25s;}
.has-pillar:hover{border-color:rgba(21,101,232,0.3);transform:translateY(-2px);}
.has-pillar-icon{width:36px;height:36px;min-width:36px;border-radius:10px;background:linear-gradient(135deg,#eff6ff,#dbeafe);display:flex;align-items:center;justify-content:center;}
.has-pillar-icon i{font-size:17px;color:#1565e8;}
.has-pillar-body strong{display:block;font-size:13px;font-weight:700;color:#0f172a;margin-bottom:2px;letter-spacing:.2px;}
.has-pillar-body span{font-size:12px;color:#64748b;line-height:1.5;}
.has-cta-row{display:flex;align-items:center;gap:20px;}
.has-btn-main{display:inline-flex;align-items:center;gap:10px;padding:15px 34px;background:#0a0f1e;color:#fff;font-size:14px;font-weight:700;border-radius:100px;text-decoration:none;letter-spacing:.3px;transition:background .25s,transform .25s,box-shadow .25s;border:none;cursor:pointer;}
.has-btn-main:hover{background:#1565e8;transform:translateY(-2px);box-shadow:0 12px 32px rgba(21,101,232,0.35);}
.has-btn-main .btn-arrow{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,0.15);display:flex;align-items:center;justify-content:center;transition:background .25s,transform .25s;}
.has-btn-main:hover .btn-arrow{background:rgba(255,255,255,0.25);transform:translateX(3px);}
.has-btn-link{font-size:13px;font-weight:600;color:#64748b;text-decoration:none;display:inline-flex;align-items:center;gap:6px;letter-spacing:.2px;transition:color .2s;}
.has-btn-link:hover{color:#1565e8;}
.has-btn-link i{font-size:15px;}

/* RIGHT — IMAGE COLLAGE */
.has-right{position:relative;height:560px;}
.has-img-main{position:absolute;top:0;left:30px;right:0;bottom:60px;border-radius:28px;overflow:hidden;box-shadow:0 32px 80px rgba(10,15,30,0.18);}
.has-img-main img,.has-img-main .has-slide{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:opacity 1s ease;}
.has-slide{background-size:cover;background-position:center;opacity:0;}
.has-slide.active{opacity:1;}

.has-img-sm1{position:absolute;bottom:0;left:0;width:48%;aspect-ratio:4/3;border-radius:20px;overflow:hidden;border:4px solid #f8faff;box-shadow:0 16px 48px rgba(10,15,30,0.15);z-index:2;}
.has-img-sm1 .sm-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1s ease;}
.has-img-sm1 .sm-slide.active{opacity:1;}

.has-img-sm2{position:absolute;top:40px;left:-20px;width:38%;aspect-ratio:1/1;border-radius:20px;overflow:hidden;border:4px solid #f8faff;box-shadow:0 16px 48px rgba(10,15,30,0.15);z-index:2;}
.has-img-sm2 .sm2-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1s ease;}
.has-img-sm2 .sm2-slide.active{opacity:1;}

.has-badge-trust{position:absolute;top:20px;right:10px;background:#fff;border-radius:18px;padding:14px 18px;display:flex;align-items:center;gap:12px;box-shadow:0 8px 32px rgba(10,15,30,0.12);z-index:3;border:1px solid rgba(21,101,232,0.08);}
.trust-icon{width:42px;height:42px;border-radius:12px;background:linear-gradient(135deg,#1565e8,#0ea5e9);display:flex;align-items:center;justify-content:center;}
.trust-icon i{font-size:20px;color:#fff;}
.trust-text strong{display:block;font-size:13px;font-weight:700;color:#0f172a;}
.trust-text span{font-size:11px;color:#64748b;}

.has-badge-live{position:absolute;bottom:72px;right:0;background:#fff;border-radius:14px;padding:12px 16px;display:flex;align-items:center;gap:10px;box-shadow:0 8px 28px rgba(10,15,30,0.1);z-index:3;border:1px solid rgba(21,101,232,0.08);}
.live-dot{width:9px;height:9px;border-radius:50%;background:#22c55e;position:relative;}
.live-dot::after{content:'';position:absolute;inset:-3px;border-radius:50%;border:2px solid rgba(34,197,94,0.35);animation:livePulse 1.8s infinite;}
@keyframes livePulse{0%,100%{transform:scale(1);opacity:1;}50%{transform:scale(1.5);opacity:0;}}
.live-text{font-size:12px;font-weight:700;color:#0f172a;letter-spacing:.2px;}
.live-sub{font-size:10px;color:#64748b;margin-top:1px;}

.has-progress{position:absolute;bottom:0;right:0;left:30px;height:4px;background:rgba(21,101,232,0.08);border-radius:0 0 28px 28px;overflow:hidden;z-index:4;}
.has-progress-bar{height:100%;width:0%;background:linear-gradient(90deg,#1565e8,#0ea5e9);transition:width .12s linear;border-radius:0 2px 2px 0;}

/* dots */
.has-dots-v2{position:absolute;bottom:68px;left:50%;transform:translateX(-50%);display:flex;gap:6px;z-index:5;}
.has-dot-v2{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,0.5);border:none;cursor:pointer;padding:0;transition:background .3s,transform .3s,width .3s;}
.has-dot-v2.active{background:#fff;width:20px;border-radius:3px;}

@media(max-width:960px){
  .has-inner{grid-template-columns:1fr;gap:56px;}
  .has-right{height:460px;order:-1;}
  .has-img-sm2{display:none;}
  .has-img-main{left:0;}
  .has-img-sm1{width:44%;}
}
@media(max-width:600px){
  .homeaboutsection{padding:64px 20px 72px;}
  .has-right{height:340px;}
  .has-img-sm1{display:none;}
  .has-badge-trust{top:12px;right:8px;padding:10px 12px;}
  .has-badge-live{display:none;}
  .has-pillars{grid-template-columns:1fr;}
  .has-cta-row{flex-direction:column;align-items:flex-start;gap:14px;}
  .has-h2{font-size:26px;}
  .has-h2-sub{font-size:22px;}
}


/* //////////////////////////////////////// section 3 ////////////////////////////////////////////// */
.hs3{background:#f5f7ff;;position:relative;overflow:hidden;}
.hs3-head{text-align:center;margin-bottom:64px;}
.hs3-kicker{display:inline-flex;align-items:center;gap:8px;margin-bottom:14px;}
.hs3-kicker i{font-size:10px;color:#1565e8;}
.hs3-kicker span{font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:#1565e8;}
.hs3-title{font-size:clamp(28px,4vw,50px);font-weight:800;color:#05080f;line-height:1.12;letter-spacing:-1.5px;margin-bottom:14px;}
.hs3-title em{font-style:normal;background:linear-gradient(135deg,#1565e8,#0ea5e9);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
.hs3-sub{font-size:15px;color:#64748b;max-width:480px;margin:0 auto;line-height:1.8;}
.hs3-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px 28px;max-width:1160px;margin:0 auto;}

/* CARD */
.hs3-card{position:relative;display:flex;flex-direction:column;padding-top:38px;}

/* top icon badge — attached/overlapping */
.hs3-badge{position:absolute;top:0;left:50%;transform:translateX(-50%);z-index:10;width:72px;height:72px;border-radius:22px;background:linear-gradient(135deg,#1565e8,#0ea5e9);display:flex;align-items:center;justify-content:center;box-shadow:0 12px 32px rgba(21,101,232,0.35);transition:transform .4s cubic-bezier(.34,1.5,.64,1),box-shadow .3s;}
.hs3-badge i{font-size:26px;color:#fff;}
.hs3-card:hover .hs3-badge{transform:translateX(-50%) translateY(-6px) scale(1.08);box-shadow:0 20px 48px rgba(21,101,232,0.45);}

/* number pill on badge corner */
.hs3-badge-num{position:absolute;top:-7px;right:-7px;width:22px;height:22px;border-radius:50%;background:#05080f;color:#fff;font-size:9px;font-weight:800;display:flex;align-items:center;justify-content:center;border:2px solid #fff;letter-spacing:.5px;}

/* card inner */
.hs3-inner{background:#fff;border-radius:24px;border:1.5px solid #e8eeff;overflow:hidden;display:flex;flex-direction:column;flex:1;transition:transform .4s cubic-bezier(.34,1.2,.64,1),box-shadow .4s,border-color .3s;padding-top:44px;}
.hs3-card:hover .hs3-inner{transform:translateY(-6px);box-shadow:0 28px 64px rgba(21,101,232,0.13);border-color:rgba(21,101,232,0.25);}

/* image */
.hs3-img-wrap{position:relative;height:180px;overflow:hidden;}
.hs3-img{position:absolute;inset:0;background-size:cover;background-position:center;transition:opacity .7s ease,transform .7s ease;}
.img-a{opacity:1;transform:scale(1);}
.img-b{opacity:0;transform:scale(1.08);}
.hs3-card:hover .img-a{opacity:0;transform:scale(1.08);}
.hs3-card:hover .img-b{opacity:1;transform:scale(1);}

/* body */
.hs3-body{padding:20px 22px 22px;flex:1;display:flex;flex-direction:column;}
.hs3-card-title{font-size:16px;font-weight:800;color:#05080f;margin-bottom:7px;letter-spacing:-.2px;}
.hs3-card-desc{font-size:13px;color:#64748b;line-height:1.75;margin-bottom:18px;flex:1;}

/* divider */
.hs3-divider{height:1px;background:linear-gradient(90deg,transparent,#dbeafe 30%,#dbeafe 70%,transparent);margin:0 0 16px;}

/* stats row inside card */
.hs3-stat-row{display:flex;align-items:center;gap:6px;margin-bottom:16px;}
.hs3-stat-chip{display:inline-flex;align-items:center;gap:5px;background:#f0f5ff;border-radius:8px;padding:5px 10px;}
.hs3-stat-chip i{font-size:11px;color:#1565e8;}
.hs3-stat-chip span{font-size:11px;font-weight:600;color:#3b5fc0;}

/* donate btn */
.hs3-btn{display:flex;align-items:center;justify-content:space-between;padding:11px 14px 11px 16px;border-radius:12px;background:#f0f5ff;border:1.5px solid #dbeafe;text-decoration:none;transition:all .25s;cursor:pointer;}
.hs3-btn:hover{background:linear-gradient(135deg,#1565e8,#0ea5e9);border-color:transparent;box-shadow:0 8px 24px rgba(21,101,232,0.3);}
.hs3-btn-left{display:flex;align-items:center;gap:8px;}
.hs3-btn-txt{font-size:13px;font-weight:700;color:#1565e8;letter-spacing:.3px;transition:color .25s;}
.hs3-btn:hover .hs3-btn-txt{color:#fff;}
.hs3-btn-heart{font-size:13px;color:#1565e8;transition:color .25s;}
.hs3-btn:hover .hs3-btn-heart{color:#fff;}
.hs3-btn-arrow{width:28px;height:28px;border-radius:8px;background:#dbeafe;display:flex;align-items:center;justify-content:center;transition:all .25s;}
.hs3-btn-arrow i{font-size:13px;color:#1565e8;transition:color .25s;}
.hs3-btn:hover .hs3-btn-arrow{background:rgba(255,255,255,0.22);transform:translateX(3px);}
.hs3-btn:hover .hs3-btn-arrow i{color:#fff;}

/* bottom connector strip — attached */
.hs3-strip{background:#eef3ff;border:1.5px solid #dbeafe;border-top:none;border-radius:0 0 20px 20px;padding:10px 20px;display:flex;align-items:center;gap:8px;transition:background .3s;}
.hs3-card:hover .hs3-strip{background:#dbeafe;}
.hs3-strip i{font-size:12px;color:#1565e8;}
.hs3-strip span{font-size:11px;font-weight:600;color:#3b5fc0;letter-spacing:.2px;}
.hs3-strip-dot{width:4px;height:4px;border-radius:50%;background:#93c5fd;margin-left:auto;}

/* footer */
.hs3-footer{text-align:center;margin-top:60px;}
.hs3-footer p{font-size:13px;color:#94a3b8;margin-bottom:18px;}
.hs3-footer-btn{display:inline-flex;align-items:center;gap:10px;padding:16px 44px;background:#05080f;color:#fff;font-size:14px;font-weight:700;border-radius:100px;text-decoration:none;letter-spacing:.4px;transition:all .3s;}
.hs3-footer-btn:hover{background:linear-gradient(135deg,#1565e8,#0ea5e9);transform:translateY(-3px);box-shadow:0 14px 36px rgba(21,101,232,.35);}
.hs3-footer-btn i{font-size:17px;}

@media(max-width:960px){.hs3-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){
  .hs3{padding:64px 16px 72px;}
  .hs3-grid{grid-template-columns:1fr;gap:36px 0;}
  .hs3-title{font-size:26px;}
}

/* //////////////////////////////////////// section 4 ////////////////////////////////////////////// */
.testi-section{background:#f5f7ff;padding:60px 0 100px;overflow:hidden;position:relative;}

/* bg orbs */
.testi-orb1{position:absolute;top:-100px;left:-100px;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(21,101,232,0.07),transparent 70%);pointer-events:none;}
.testi-orb2{position:absolute;bottom:-80px;right:-80px;width:350px;height:350px;border-radius:50%;background:radial-gradient(circle,rgba(14,165,233,0.06),transparent 70%);pointer-events:none;}

/* head */
.testi-head{text-align:center;padding:0 24px;margin-bottom:56px;}
.testi-kicker{display:inline-flex;align-items:center;gap:8px;margin-bottom:14px;}
.testi-kicker-dot{width:5px;height:5px;border-radius:50%;background:#1565e8;}
.testi-kicker span{font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:#1565e8;}
.testi-title{font-size:clamp(26px,4vw,46px);font-weight:800;color:#05080f;letter-spacing:-1.5px;line-height:1.15;margin-bottom:12px;}
.testi-title em{font-style:normal;background:linear-gradient(135deg,#1565e8,#0ea5e9);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
.testi-sub{font-size:15px;color:#64748b;max-width:440px;margin:0 auto;line-height:1.8;}

/* track wrapper */
.testi-track-wrap{position:relative;}
/* fade edges */
.testi-track-wrap::before,.testi-track-wrap::after{content:'';position:absolute;top:0;bottom:0;width:120px;z-index:10;pointer-events:none;}
.testi-track-wrap::before{left:0;background:linear-gradient(90deg,#f5f7ff,transparent);}
.testi-track-wrap::after{right:0;background:linear-gradient(270deg,#f5f7ff,transparent);}

/* marquee */
.testi-track{display:flex;gap:20px;width:max-content;animation:marquee 32s linear infinite;}
.testi-track:hover{animation-play-state:paused;}
.testi-track-row2{animation-direction:normal;animation-duration:40s;}
@keyframes marquee{0%{transform:translateX(0);}100%{transform:translateX(-50%)}}

/* CARD */
.testi-card{background:#fff;border:1.5px solid #e8eeff;border-radius:22px;padding:26px 24px 22px;width:320px;min-width:320px;display:flex;flex-direction:column;gap:0;position:relative;transition:transform .3s ease,box-shadow .3s ease,border-color .3s;}
.testi-card:hover{transform:translateY(-6px);box-shadow:0 20px 52px rgba(21,101,232,0.12);border-color:rgba(21,101,232,0.25);}

/* top row */
.testi-top{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:16px;}
.testi-avatar-wrap{display:flex;align-items:center;gap:12px;}
.testi-avatar{width:48px;height:48px;border-radius:14px;background:linear-gradient(135deg,#1565e8,#0ea5e9);display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:800;color:#fff;flex-shrink:0;border:2px solid #fff;box-shadow:0 4px 14px rgba(21,101,232,0.25);}
.testi-name-wrap{}
.testi-name{font-size:14px;font-weight:700;color:#05080f;letter-spacing:-.2px;}
.testi-role{font-size:11px;color:#94a3b8;font-weight:500;margin-top:2px;}
.testi-quote-icon{width:34px;height:34px;border-radius:10px;background:#eff6ff;border:1px solid #dbeafe;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.testi-quote-icon svg{width:16px;height:16px;fill:#1565e8;}

/* stars */
.testi-stars{display:flex;gap:3px;margin-bottom:12px;}
.testi-stars span{font-size:13px;}

/* text */
.testi-text{font-size:13px;color:#475569;line-height:1.8;flex:1;}

/* tag chip */
.testi-tag{display:inline-flex;align-items:center;gap:5px;margin-top:16px;background:#f0f5ff;border-radius:8px;padding:5px 11px;width:fit-content;}
.testi-tag span{font-size:11px;font-weight:600;color:#3b5fc0;}
.testi-tag-dot{width:6px;height:6px;border-radius:50%;background:#1565e8;}

/* FEATURED card variant */
.testi-card.featured{background:linear-gradient(145deg,#1565e8,#0d47c8);border-color:transparent;}
.testi-card.featured .testi-name{color:#fff;}
.testi-card.featured .testi-role{color:rgba(255,255,255,0.6);}
.testi-card.featured .testi-text{color:rgba(255,255,255,0.85);}
.testi-card.featured .testi-quote-icon{background:rgba(255,255,255,0.15);border-color:rgba(255,255,255,0.2);}
.testi-card.featured .testi-quote-icon svg{fill:#fff;}
.testi-card.featured .testi-tag{background:rgba(255,255,255,0.15);}
.testi-card.featured .testi-tag span{color:#fff;}
.testi-card.featured .testi-tag-dot{background:#fff;}
.testi-card.featured:hover{box-shadow:0 20px 52px rgba(21,101,232,0.35);}

/* second row spacing */
.testi-row2{margin-top:20px;}

/* responsive */
@media(max-width:600px){
  .testi-section{padding:60px 0 70px;}
  .testi-card{width:270px;min-width:270px;padding:20px 18px 18px;}
  .testi-track-wrap::before,.testi-track-wrap::after{width:60px;}
}

/* //////////////////////////////////////// section 2 ////////////////////////////////////////////// */
/* //////////////////////////////////////// section 2 ////////////////////////////////////////////// */
/* //////////////////////////////////////// section 7 Footer ////////////////////////////////////////////// */
    /* ── FOOTER — single block, no separate strip ── */
    .footer {
      position: relative;
      overflow: hidden;
    }
 
    /* BG image */
    .footer-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://cdn.pixabay.com/photo/2025/07/18/07/35/cow-9720831_640.jpg');
      background-size: cover;
      background-position: center top;
      z-index: 0;
     
    }

    .footer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);  /* 0.65 = darkness, 0–1 adjust karo */
}
 
    /* Gradient overlay:
       - Very white/opaque at top (newsletter area)
       - Fades to semi-transparent middle (image visible)
       - Dark at bottom (text readable) */
    .footer-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.96) 0%,
        rgba(255,255,255,0.92) 8%,
        rgba(255,255,255,0.60) 18%,
        rgba(255,255,255,0.20) 30%,
        rgba(0,0,0,0.15) 50%,
        rgba(0,0,0,0.42) 75%,
        rgba(0,0,0,0.58) 100%
      );
      z-index: 1;
    }
 
    .footer-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px 40px;
    }
 
    /* ── NEWSLETTER — inside footer, top section ── */
    .newsletter-area {
      display: flex;
      justify-content: center;
      padding: 36px 0 40px;
    }
 
    .newsletter-form {
      display: flex;
      align-items: center;
      max-width: 560px;
      width: 100%;
      border: 1.5px solid #bbb;
      border-radius: 4px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
 
    .newsletter-form input {
      flex: 1;
      padding: 14px 20px;
      border: none;
      outline: none;
      
      font-size: 14px;
      color: #333;
      background: transparent;
    }
 
    .newsletter-form input::placeholder { color: #aaa; }
 
    .newsletter-form button {
      padding: 14px 30px;
      background: #1565e8;
      color: #fff;
      border: none;
      font-family:'Zen Maru Gothic',sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1.5px;
      cursor: pointer;
      transition: background 0.25s;
      white-space: nowrap;
    }
 
    .newsletter-form button:hover { background: #0062ff; }
 
    /* ── LOGO + SOCIALS ROW ── */
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255,255,255,0.45);
      margin-bottom: 40px;
    }
 
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
 
    .logo-img-box {
      width: fit-content;
      height: 74px;
      /* border-radius: 50%; */
      /* background: rgba(255,255,255,0.20); */
      backdrop-filter: blur(4px);
      border: 2px solid rgba(255,255,255,0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }
 
    .logo-img-box svg { width: 34px; height: 34px; }
 
    .logo-text-block .logo-name {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.8px;
      text-shadow: 0 2px 8px rgba(0,0,0,0.45);
      line-height: 1.2;
    }
 
    .logo-text-block .logo-tagline {
      font-size: 11px;
      color: rgba(255,255,255,0.75);
      text-shadow: 0 1px 4px rgba(0,0,0,0.4);
      margin-top: 2px;
    }
 
    .footer-socials {
      display: flex;
      align-items: center;
      gap: 10px;
    }
 
    .footer-socials a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(4px);
      transition: all 0.25s ease;
    }
 
    .footer-socials a:hover {
      background: rgba(255,255,255,0.28);
      border-color: #fff;
      transform: translateY(-3px);
    }
 
    /* ── COLUMNS ── */
    .footer-cols {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 40px;
    }
 
    .footer-col h4 {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    }
 
    .footer-col p {
      font-size: 13.5px;
      color: rgba(255,255,255,0.85);
      line-height: 1.85;
      text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    }
 
    .footer-col a {
      display: block;
      font-size: 13.5px;
      color: rgba(255,255,255,0.82);
      text-decoration: none;
      padding: 4px 0;
      transition: all 0.2s;
      text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    }
 
    .footer-col a:hover { color: #f5c87a; padding-left: 6px; }
 
    .contact-list { display: flex; flex-direction: column; gap: 13px; }
 
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: rgba(255,255,255,0.85);
      font-size: 13.5px;
      text-shadow: 0 1px 4px rgba(0,0,0,0.4);
      line-height: 1.7;
    }
 
    .contact-item i {
      font-size: 17px;
      color: #f5c87a;
      margin-top: 2px;
      flex-shrink: 0;
    }
 
    /* ── BOTTOM BAR ── */
    .footer-bottom {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 15px 40px;
      background: rgba(0,0,0,0.55);
      color: rgba(255,255,255,0.58);
      font-size: 12.5px;
      letter-spacing: 0.3px;
      backdrop-filter: blur(8px);
    }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .footer-inner { padding: 0 32px 32px; }
      .footer-cols  { grid-template-columns: 1fr 1fr; gap: 30px; }
    }
 
    @media (max-width: 600px) {
      .newsletter-area { padding: 28px 20px 32px; }
      .newsletter-form {
        flex-direction: column;
        border: none;
        border-radius: 0;
        gap: 8px;
        background: transparent;
        box-shadow: none;
      }
      .newsletter-form input {
        width: 100%;
        border: 1.5px solid #bbb;
        border-radius: 6px;
        background: #fff;
      }
      .newsletter-form button { width: 100%; border-radius: 6px; }
 
      .footer-inner { padding: 0 20px 24px; }
 
      .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
      }
 
      .footer-cols {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center;
      }
 
      .footer-col a:hover { padding-left: 0; }
      .contact-item { justify-content: center; text-align: left; }
      .footer-socials { justify-content: center; }
    }




    /* Sticky Button */
.enq-btn{
  position: fixed;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: linear-gradient(90deg, #0a3dff, #00b7ff);
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-weight: 900;
  letter-spacing: 0.5px;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 18px 40px rgba(10,61,255,0.35);
  font-family: 'Zen Maru Gothic', sans-serif !important;
}

/* Panel */
.enq-panel{
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -20px 0 60px rgba(0,0,0,0.18);
  transition: 0.45s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

/* Open State */
.enq-panel.active{
  right: 0;
}

/* Header */
.enq-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.enq-header img{
  height: 80px;
  object-fit: contain;
}

.enq-close{
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #0a3dff;
}

/* Form */
.enq-form{
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enq-form h3{
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 900;
  color: #07112a;
}

.enq-form input,
.enq-form select,
.enq-form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.14);
  font-weight: 600;
  outline: none;
}

.enq-form textarea{
  resize: none;
  height: 90px;
}

.enq-form input:focus,
.enq-form select:focus,
.enq-form textarea:focus{
  border-color: #0a3dff;
}

/* Submit */
.enq-form button{
  margin-top: 10px;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(90deg, #0a3dff, #00b7ff);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(10,61,255,0.28);
  font-family: 'Zen Maru Gothic', sans-serif !important;
}

.enq-form button:hover{
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 600px){
  .enq-panel{
    width: 100%;
  }
  .enq-btn{
    right: -25px;
  }
}

/* Sticky WhatsApp Icon */
.wa-float {
  position: fixed;
  bottom: 40px;
  right: 22px;
  z-index: 9999;
  cursor: pointer;
  display: inline-block;
  animation: waFloat 2.2s ease-in-out infinite;
}

.wa-float img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 255, 0, 0.5));
  transition: transform 0.3s ease;
}

/* Hover effect */
.wa-float:hover img {
  transform: scale(1.18) rotate(3deg);
  filter: drop-shadow(0 0 12px rgba(0, 255, 0, 0.7));
}

/* ////////////////////////////////////////// translator ////////////////////////////////////////////// */
/* ── TOP BAR ── */
.top-bar {
  width: 100%;
  background: linear-gradient(90deg, var(--g1) 0%, var(--g2) 100%);
  padding: 5px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-contact span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-dim);
  font-size: 11.5px;
}

.top-contact i {
  font-size: 14px;
  color: rgb(255, 255, 255);
}
.top-contact a {
  font-size: 14px;
  color: rgb(255, 255, 255);
  text-decoration: none;
}


/* ── RIGHT SIDE: socials + translate grouped ── */
.top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-dim);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.22s;
  font-weight: 600;
}

.top-socials a:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
}

/* ── DIVIDER between socials & translate ── */
.top-right::before {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
  order: 1; /* socials=0, divider=1, translate=2 */
}
.top-socials { order: 0; }
.site-translate { order: 2; }

/* ── GOOGLE TRANSLATE WRAPPER ── */
.site-translate {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

#google_translate_element {
  display: flex;
  align-items: center;
}

/* ── GOOGLE TRANSLATE GADGET OVERRIDES ── */
.goog-te-gadget {
  font-family: 'Zen Maru Gothic', sans-serif !important;
  font-weight: 800 !important;
  color: transparent !important;
  line-height: 1 !important;
}

.goog-te-gadget span { display: none !important; }
.goog-te-gadget a    { display: none !important; }

.goog-te-combo {
  padding: 4px 10px !important;
  height: 26px !important;
  border-radius: 13px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  outline: none !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 0.2s, border-color 0.2s !important;
  /* Match top-bar height visually */
  vertical-align: middle !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  /* Custom dropdown arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.7)'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  background-size: 8px 5px !important;
  padding-right: 24px !important;
}

.goog-te-combo:hover {
  background-color: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.goog-te-combo option {
  background: #1a1a2e !important;
  color: #fff !important;
}

/* If your header bg is light, set combo text dark */



/* =============================================
   BOTTOM NAV (mobile)
============================================= */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--nav-h-mob);
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 900;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.07);
}
.bottom-nav__inner {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.bnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: #1a73e8;           /* ← blue icons */
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  padding: 6px 4px 8px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
.bnav-item.active { color: #1a73e8; }
.bnav-item.active::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 2.5px;
  background: #1a73e8;
  border-radius: 0 0 3px 3px;
}
.bnav-item svg { width: 22px; height: 22px; flex-shrink: 0; }
.bnav-label { font-size: 9.5px; line-height: 1; }

/* Call button — blue bg + white */
.bnav-call {
  background: #1a73e8;       /* ← blue background */
  color: #fff !important;    /* ← white text */
  border-radius: 0;
  font-weight: 900;
}
.bnav-call::before { display: none !important; }
.bnav-call svg { color: #fff; }  /* ← white icon */

@media(max-width: 768px) { .bottom-nav { display: block; } }