:root{
  --neon-blue: #2E82FF;
  --neon-blue-900:#009fc0;
  --deep-blue:#012b36;
  --text:#ffffff;
  --muted:rgba(255,255,255,.75);
  --shadow:0 8px 24px rgba(0,0,0,.12);
  --radius:14px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html, body{
  width:100%;
  overflow-x:hidden;
  margin:0;
  padding:0;
}

body{
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,sans-serif;
  color:var(--text);
  position:relative;
}

/* ======= Announcement Bar ======= */
.announce{
  background:#ffffff;
  color:var(--deep-blue);
  font-size:.92rem;
  padding:.5rem 1rem;
  display:flex;
  gap:1rem;
  align-items:center;
  justify-content:center;
  border-bottom:1px solid rgba(0,0,0,.06);
  flex-wrap:wrap;
  width:100%;
  overflow:hidden;
}
.announce a{color:var(--deep-blue);text-decoration:none;word-break:break-all;}
.announce .pipe{opacity:.35}
.announce i{margin-right:.4rem;color:var(--neon-blue);}

/* ======= Header / Nav ======= */
.header{
  position:sticky;
  top:0;
  z-index:999;
  background: linear-gradient(135deg, #1F51FF 0%, #2E82FF 45%, #00F0FF 100%);
  color:var(--deep-blue);
  box-shadow:var(--shadow), 0 0 20px rgba(0,240,255,.25);
  width:100%;
}

.nav{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.7rem;
  min-height:70px;
  width:100%;
}

.brand{
  display:flex;
  align-items:center;
  gap:.8rem;
  font-weight:700;
  letter-spacing:.5px;
  flex-shrink:0;
}

.brand img{
  width:60px;
  height:60px;
  border-radius:10px;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.35);
  box-shadow:0 0 0 3px rgba(1,43,54,.15);
  background:#00343f;
  flex-shrink:0;
}

.brand-name{
  font-size:1.35rem;
  color:#003743;
  text-transform:uppercase;
  white-space:nowrap;
}

.links{
  display:flex;
  align-items:center;
  font-weight:600;
  gap:.3rem;
}

.links a{
  color:#003743;
  text-decoration:none;
  padding:.6rem .8rem;
  border-radius:10px;
  display:flex;
  gap:.55rem;
  align-items:center;
  transition:.2s ease;
  white-space:nowrap;
}

.links a i{font-size:1rem}
.links a:hover{background:rgba(255,255,255,.22)}

.cta{
  margin-left:.25rem;
  background:linear-gradient(135deg,#4d79ff,#3aa0ff);
  color:white !important;
  padding:.7rem 1.05rem;
  border-radius:999px;
  box-shadow:0 6px 18px rgba(0,0,0,.15);
  border:0;
}
.cta:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgba(0,0,0,.22)}

.hamburger{
  display:none;
  font-size:1.45rem;
  background:transparent;
  border:0;
  color:#003743;
  cursor:pointer;
  padding:.5rem;
  border-radius:8px;
}
.hamburger:active{transform:scale(.96)}

/* ======= Mobile Menu ======= */
.mobile{
  display:none;
  background:#00cfe8;
  border-top:1px solid rgba(255,255,255,.35);
  width:100%;
}

.mobile a{
  display:flex;
  gap:.7rem;
  align-items:center;
  padding:0.95rem 1rem;
  border-bottom:1px dashed rgba(255,255,255,.35);
  text-decoration:none;
  color:#003743;
  font-weight:600;
}
.mobile a:last-child{border-bottom:0}
.mobile .cta{margin:1rem;display:inline-flex}

/* ======= Hero Section ======= */
.hero-sticky{
  height:100vh;
  position:relative;
  z-index:1;
  width:100%;
  overflow:hidden;
}

.hero{
  position:sticky;
  top:0;
  height:100vh;
  width:100%;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.35)),
    url('images/10.png') center/cover no-repeat;
  background-attachment:scroll;
  display:grid;
  place-items:center;
  overflow:hidden;
}

.hero-inner{
  width:min(1200px, 92vw);
  margin-inline:auto;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:clamp(20px, 4vw, 48px);
  align-items:center;
  color:#fff;
  max-width:100%;
}

.hero-copy h1{
  font-size:clamp(24px, 5vw, 64px);
  line-height:1.05;
  margin:0 0 .6rem;
  font-weight:800;
  letter-spacing:.5px;
  word-wrap:break-word;
}

.hero-copy h1 span{
  color:#00F0FF;
  text-shadow:0 0 12px rgba(0,240,255,.55);
}

.hero-copy p{
  margin:0 0 1.2rem;
  font-size:clamp(14px, 1.6vw, 18px);
  color:rgba(255,255,255,.9);
}

.hero-cta{
  display:flex;
  gap:.8rem;
  flex-wrap:wrap;
}

.btn-primary{
  background:linear-gradient(135deg,#4d79ff,#3aa0ff);
  color:#fff;
  text-decoration:none;
  padding:.85rem 1.15rem;
  border-radius:999px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  box-shadow:0 8px 22px rgba(0,0,0,.25);
  white-space:nowrap;
}
.btn-primary:hover{transform:translateY(-2px)}

.btn-ghost{
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  text-decoration:none;
  padding:.85rem 1.15rem;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  background:rgba(255,255,255,.06);
  white-space:nowrap;
}
.btn-ghost:hover{background:rgba(255,255,255,.12)}

.hero-visual{
  display:grid;
  place-items:center;
  perspective:1000px;
  max-width:100%;
  overflow:hidden;
}

.hero-visual .hero-3d{
  width:min(520px, 84%);
  max-width:100%;
  height:auto;
  transform:perspective(1000px) translateZ(0) rotateY(0) rotateX(0) scale(1);
  transform-style:preserve-3d;
  transition:transform .8s cubic-bezier(.2,.7,.2,1), filter .8s;
  filter:drop-shadow(0 24px 40px rgba(0,0,0,.35));
  will-change:transform;
  animation:heroEnter .9s ease-out both;
}

.hero-visual .hero-3d:hover{
  transform:perspective(1000px) translateZ(80px) rotateY(-10deg) rotateX(4deg) scale(1.1);
}

@keyframes heroEnter{
  from{transform:perspective(1000px) translateZ(-60px) scale(.92); opacity:0}
  to{transform:perspective(1000px) translateZ(0) scale(1); opacity:1}
}

/* ======= Section 3 ======= */
:root{
  --s3-blue:#0d7fb0;
  --s3-blue-dark:#074a67;
  --s3-border:#0aa2d9;
  --s3-text:#0f1e2b;
  --s3-muted:#445d74;
  --s3-shadow:0 18px 34px rgba(24, 158, 216, 0.678);
}

.section3-cards{
  padding:clamp(36px,6vw,72px) 0;
  background:#fff;
  width:100%;
  overflow:hidden;
}

.section3-container{
  width:min(1200px,92vw);
  margin-inline:auto;
  max-width:100%;
}

.section3-head{
  text-align:center;
  margin-bottom:clamp(20px,3.6vw,36px);
}

.section3-head h5{
  margin:0 0 8px;
  color:#0ea5e9;
  font-weight:800;
}

.section3-head h2{
  margin:0;
  font-weight:900;
  font-size:clamp(24px,4.5vw,40px);
  color:#0a1520;
}

.section3-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap:clamp(28px,2vw,24px);
  width:100%;
}

.section3-card{
  position:relative;
  background:#fff;
  border:3px solid var(--s3-border);
  border-radius:18px;
  padding:clamp(22px,2.4vw,26px);
  padding-top:64px;
  color:var(--s3-text);
  box-shadow:0 8px 18px rgba(41, 19, 245, 0.04);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  max-width:100%;
}

.section3-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--s3-shadow);
  border-color:#5dc6ef;
}

.section3-card h3{
  margin:0 0 10px;
  font-size:clamp(16px,2.1vw,22px);
  font-weight:800;
  word-wrap:break-word;
}

.section3-card p{
  margin:0;
  color:var(--s3-muted);
  line-height:1.65;
  font-size:clamp(13px,1.5vw,15px);
}

.section3-cap{
  position:absolute;
  left:50%;
  top:-10px;
  transform:translateX(-50%);
  width:140px;
  height:56px;
  border-radius:16px 16px 22px 22px;
  background:linear-gradient(180deg, var(--s3-blue) 0%, #0aa2d9 100%);
  box-shadow:0 14px 24px rgba(13,127,176,.25);
  display:grid;
  place-items:center;
  color:#fff;
  font-size:20px;
  font-weight:900;
}

.section3-cap::before,
.section3-cap::after{
  content:"";
  position:absolute;
  top:8px;
  width:28px;
  height:14px;
  border-radius:4px;
  background:var(--s3-blue-dark);
}

.section3-cap::before{left:-14px;transform:skewX(-18deg)}
.section3-cap::after{right:-14px;transform:skewX(18deg)}

.section3-cap i{font-size:22px;color:#fff}

.section3-tab{
  position:absolute;
  left:50%;
  bottom:-12px;
  transform:translateX(-50%);
  width:110px;
  height:18px;
  border-radius:999px;
  background:linear-gradient(180deg, #1aa6d7 0%, var(--s3-blue) 100%);
  box-shadow:0 10px 18px rgba(13,127,176,.35);
}

/* ======= About Section ======= */
.about{
  --about-accent:#00F0FF;
  --about-dark:#0b0f14;
  --about-text:#101b29;
  --about-muted:#4b5f75;
  --about-card:#ffffff;
  --about-shadow:0 18px 40px rgba(6,24,44,.12);
  background:#f6fbff;
  padding:clamp(40px,6vw,90px) 0;
  width:100%;
  overflow:hidden;
}

.about__container{
  width:min(1200px,92vw);
  margin-inline:auto;
  color:var(--about-text);
  max-width:100%;
}

.about__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:clamp(24px,4vw,48px);
  align-items:center;
}

.about__eyebrow{
  margin:0 0 8px;
  color:#0ea5e9;
  font-weight:800;
  letter-spacing:.35px;
}

.about__title{
  margin:0 0 10px;
  font-size:clamp(24px,4.8vw,44px);
  line-height:1.1;
  font-weight:900;
  word-wrap:break-word;
}

.about__title span{
  color:var(--about-accent);
  text-shadow:0 0 12px rgba(0,240,255,.5);
}

.about__lead{
  margin:0 0 14px;
  color:var(--about-muted);
  font-size:clamp(13px,1.6vw,16.5px);
  line-height:1.75;
}

.about__list{
  list-style:none;
  padding:0;
  margin:0 0 18px;
  display:grid;
  gap:10px;
}

.about__list li{
  display:flex;
  align-items:flex-start;
  gap:.6rem;
  color:var(--about-text);
  font-size:clamp(13px,1.5vw,15px);
}

.about__list i{
  color:var(--about-accent);
  margin-top:.2rem;
  flex-shrink:0;
}

.about__cta{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin:6px 0 20px;
}

.about__btn{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  text-decoration:none;
  font-weight:700;
  padding:.85rem 1.1rem;
  border-radius:999px;
  transition:.2s ease;
  white-space:nowrap;
  font-size:clamp(13px,1.5vw,15px);
}

.about__btn--primary{
  background:linear-gradient(135deg,#4d79ff,#3aa0ff);
  color:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.about__btn--primary:hover{transform:translateY(-2px)}

.about__btn--ghost{
  border:1px solid rgba(16,27,41,.15);
  background:#ffffff;
  color:#0b0f14;
}

.about__btn--ghost:hover{border-color:rgba(16,27,41,.3)}

.about__stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(80px,1fr));
  gap:14px;
}

.about__stat{
  background:var(--about-card);
  border-radius:14px;
  padding:12px 14px;
  box-shadow:var(--about-shadow);
  text-align:center;
}

.about__stat span{
  display:block;
  font-size:clamp(18px,3.4vw,28px);
  font-weight:900;
  color:var(--about-dark);
}

.about__stat small{
  color:var(--about-muted);
  font-size:clamp(11px,1.3vw,13px);
}

.about__media{
  position:relative;
  max-width:100%;
  overflow:hidden;
}

.about__media img{
  width:100%;
  max-width:100%;
  height:auto;
  display:block;
  border-radius:22px;
  object-fit:cover;
  box-shadow:var(--about-shadow);
  transform:perspective(1000px) translateZ(0) scale(1);
  transition:transform .35s ease;
}

.about__media:hover img{
  transform:perspective(1000px) translateZ(20px) scale(1.02);
}

.about__badge{
  position:absolute;
  left:16px;
  bottom:16px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(6px);
  color:#0b0f14;
  border-radius:999px;
  padding:.45rem .8rem;
  display:flex;
  gap:.5rem;
  align-items:center;
  box-shadow:0 10px 22px rgba(0,0,0,.15);
  font-weight:700;
  font-size:clamp(12px,1.4vw,14px);
}

.about__badge i{color:#0bb7d0;}

/* ======= Section 5 ======= */
.section5{
  --s5-bg:#f6fbff;
  --s5-card:#ffffff;
  --s5-text:#121a26;
  --s5-muted:#50627a;
  --s5-line:#e8eef6;
  --s5-accent:#00F0FF;
  --s5-accent2:#23d5ab;
  --s5-grad:linear-gradient(135deg,#4d79ff,#3aa0ff);
  --s5-shadow:0 12px 26px rgba(6,24,44,.10);
  background:var(--s5-bg);
  padding:clamp(42px,6vw,90px) 0;
  color:var(--s5-text);
  width:100%;
  overflow:hidden;
}

.section5-container{
  width:min(1200px,92vw);
  margin-inline:auto;
  max-width:100%;
}

.section5-head{
  text-align:center;
  margin-bottom:clamp(22px,4vw,32px);
}

.section5-eyebrow{
  display:inline-block;
  margin-bottom:8px;
  font-weight:800;
  letter-spacing:.35px;
  color:#0ea5e9;
}

.section5-head h2{
  margin:0;
  font-weight:900;
  font-size:clamp(22px,4.6vw,40px);
  word-wrap:break-word;
}

.section5-accent{
  color:var(--s5-accent);
  text-shadow:0 0 10px rgba(0,240,255,.45);
}

.section5-accent2{color:var(--s5-accent2);}

.section5-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap:clamp(16px,2vw,22px);
  width:100%;
}

.section5-card{
  position:relative;
  display:grid;
  grid-template-columns:74px 1fr;
  align-items:center;
  gap:16px;
  background:var(--s5-card);
  border:1.5px solid var(--s5-line);
  border-radius:18px;
  padding:18px 22px;
  box-shadow:var(--s5-shadow);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  isolation:isolate;
  max-width:100%;
}

.section5-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  z-index:-1;
  background:linear-gradient(135deg,#4d79ff,#3aa0ff,#23d5ab);
  opacity:0;
  transition:opacity .25s ease;
  filter:blur(10px);
}

.section5-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(6,24,44,.14);
  border-color:transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#4d79ff,#3aa0ff,#23d5ab) border-box;
  border:1.5px solid transparent;
}

.section5-card:hover::before{opacity:.45;}

.section5-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,.6)),
    linear-gradient(135deg, rgba(77,121,255,.15), rgba(58,160,255,.15));
  border:1px solid #e6edf7;
  box-shadow:inset 0 6px 16px rgba(58,160,255,.12);
  transition:transform .25s ease, box-shadow .25s ease, filter .25s ease;
  flex-shrink:0;
}

.section5-icon i{
  font-size:22px;
  color:#0a58ff;
}

.section5-card:hover .section5-icon{
  transform:scale(1.06);
  box-shadow:0 10px 20px rgba(58,160,255,.25), inset 0 8px 18px rgba(58,160,255,.18);
  filter:drop-shadow(0 6px 14px rgba(0,240,255,.35));
}

.section5-body h3{
  margin:0 0 6px;
  font-size:clamp(16px,2.1vw,20px);
  font-weight:800;
  word-wrap:break-word;
}

.section5-body p{
  margin:0;
  color:var(--s5-muted);
  line-height:1.65;
  font-size:clamp(13px,1.6vw,16px);
}

/* ======= Section 6 ======= */
.section6{
  --s6-bg:#f6fbff;
  --s6-card:#ffffff;
  --s6-text:#111a27;
  --s6-border:#a7e7ff;
  --s6-accent:#00F0FF;
  --s6-accent2:#23d5ab;
  --s6-glow:linear-gradient(135deg,#4d79ff,#3aa0ff,#23d5ab);
  background:var(--s6-bg);
  padding:clamp(40px,6vw,90px) 0;
  color:var(--s6-text);
  width:100%;
  overflow:hidden;
}

.section6-container{
  width:min(1200px,92vw);
  margin-inline:auto;
  max-width:100%;
}

.section6-head{
  text-align:center;
  margin-bottom:clamp(22px,4vw,32px);
}

.section6-head h2{
  margin:0;
  font-weight:900;
  font-size:clamp(22px,4.6vw,40px);
  word-wrap:break-word;
}

.s6-accent{
  color:var(--s6-accent);
  text-shadow:0 0 10px rgba(0,240,255,.45);
}

.s6-accent2{color:var(--s6-accent2);}

.section6-marquee{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  padding:8px 0;
  margin:12px 0 18px;
  width:100%;
}

.section6-marquee::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(closest-side, transparent 60%, rgba(246,251,255,.9) 100%);
  pointer-events:none;
  mask:linear-gradient(90deg, rgba(0,0,0,0.95), #0006 14%, #0006 86%, rgba(0,0,0,0.95));
}

.section6-track{
  display:flex;
  align-items:center;
  gap:clamp(16px,2.4vw,22px);
  will-change:transform;
}

.section6-card{
  position:relative;
  flex:0 0 auto;
  width:clamp(180px, 24vw, 360px);
  aspect-ratio:16/9;
  border-radius:26px;
  overflow:hidden;
  background:var(--s6-card);
  border:2px solid var(--s6-border);
  box-shadow:0 14px 30px rgba(6,24,44,.10);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  isolation:isolate;
}

.section6-card:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 20px 48px rgba(6,24,44,.16);
  border-color:transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    var(--s6-glow) border-box;
}

.section6-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease, filter .35s ease;
}

.section6-card:hover .section6-img{
  transform:scale(1.07);
  filter:saturate(1.05) contrast(1.02);
}

.section6-label{
  position:absolute;
  inset:auto 12px 12px 12px;
  color:#fff;
  font-weight:800;
  padding:.7rem 1rem;
  border-radius:18px;
  background:linear-gradient(135deg,#03c7ff,#00F0FF);
  box-shadow:0 10px 24px rgba(0,240,255,.25);
  text-align:center;
  transform:translateY(6px);
  transition:transform .25s ease, box-shadow .25s ease;
  font-size:clamp(12px,1.5vw,14px);
}

.section6-card:hover .section6-label{
  transform:translateY(0);
  box-shadow:0 14px 28px rgba(0,240,255,.35);
}

.section6-actions{
  display:grid;
  place-items:center;
  margin-top:10px;
}

.section6-more{
  background:linear-gradient(135deg,#4d79ff,#3aa0ff);
  color:#fff;
  border:0;
  border-radius:12px;
  padding:.75rem 1.1rem;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  font-size:clamp(13px,1.5vw,15px);
}

.section6-more:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 28px rgba(0,0,0,.22);
}

.section6-more:disabled{
  opacity:.6;
  cursor:not-allowed;
}

/* ======= Section 7 ======= */
.section7{
  --s7-bg:#f6fbff;
  --s7-card:#ffffff;
  --s7-text:#111a27;
  --s7-muted:#6b7c8f;
  --s7-line:#e8eef6;
  --s7-accent:#00F0FF;
  --s7-accent2:#23d5ab;
  --s7-glow:linear-gradient(135deg,#4d79ff,#3aa0ff,#23d5ab);
  background:var(--s7-bg);
  /* padding:clamp(40px,6vw,90px) 0; */
  color:var(--s7-text);
  width:100%;
  overflow:hidden;
}

.section7-container{
  width:min(1200px,92vw);
  margin-inline:auto;
  max-width:100%;
}

.section7-head{
  text-align:center;
  margin-bottom:clamp(22px,4vw,36px);
}

.section7-eyebrow{
  display:inline-block;
  margin-bottom:8px;
  font-weight:800;
  color:#0ea5e9;
  letter-spacing:.35px;
}

.section7-head h2{
  margin:0;
  font-size:clamp(20px,4.3vw,38px);
  font-weight:900;
  word-wrap:break-word;
}

.s7-accent{
  color:var(--s7-accent);
  text-shadow:0 0 10px rgba(0,240,255,.45);
}

.s7-accent2{color:var(--s7-accent2);}

.section7-marquee{
  position:relative;
  overflow:hidden;
  padding:6px 0;
  border-radius:26px;
  width:100%;
}

.section7-marquee::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  mask:linear-gradient(90deg, rgba(0,0,0,0.05), #000 12%, #000 88%, rgba(0,0,0,0.05));
  background:radial-gradient(closest-side, transparent 62%, rgba(246,251,255,.98));
}

.section7-track{
  display:flex;
  align-items:stretch;
  gap:clamp(16px,2vw,22px);
  will-change:transform;
}

.section7-card{
  flex:0 0 auto;
  width:clamp(180px, 23vw, 320px);
  background:var(--s7-card);
  border:1px solid var(--s7-line);
  border-radius:22px;
  box-shadow:0 12px 26px rgba(6,24,44,.10);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  isolation:isolate;
}

.section7-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 42px rgba(6,24,44,.16);
  border-color:transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    var(--s7-glow) border-box;
}

.section7-logo{
  display:grid;
  place-items:center;
  padding:28px 22px 18px;
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.6));
}

.section7-logo img{
  width:78%;
  max-width:100%;
  height:100px;
  object-fit:contain;
  filter:grayscale(30%) contrast(1.05);
  transition:transform .25s ease, filter .25s ease;
}

.section7-card:hover .section7-logo img{
  transform:scale(1.06);
  filter:grayscale(0%) saturate(1.05);
}

.section7-name{
  padding:5px 16px 16px;
  text-align:center;
  font-weight:800;
  color:var(--s7-text);
  border-top:1px dashed var(--s7-line);
  font-size:clamp(13px,1.5vw,15px);
}

.section7-name small{
  color:var(--s7-muted);
  font-weight:700;
  font-size:clamp(11px,1.3vw,13px);
}

/* ======= Section 8 ======= */
.s8{
  --s8-text:#101b29;
  --s8-muted:#4b5f75;
  --s8-card:#ffffff;
  --s8-line:#e9eef6;
  --s8-accent1:#00F0FF;
  --s8-accent2:#23d5ab;
  --s8-shadow:0 18px 42px rgba(6,24,44,.10);
  background:#f6fbff;
  padding:clamp(42px,6vw,90px) 0;
  color:var(--s8-text);
  width:100%;
  overflow:hidden;
}

.s8__container{
  width:min(1200px,92vw);
  margin-inline:auto;
  max-width:100%;
}

.s8__head{
  text-align:center;
  margin-bottom:clamp(24px,4vw,36px);
}

.s8__eyebrow{
  color:#0ea5e9;
  font-weight:800;
  letter-spacing:.35px;
  display:inline-block;
  margin-bottom:8px;
}

.s8__head h2{
  margin:0;
  font-size:clamp(22px,4.6vw,40px);
  font-weight:900;
  word-wrap:break-word;
}

.s8__accent1{
  color:var(--s8-accent1);
  text-shadow:0 0 10px rgba(0,240,255,.45);
}

.s8__accent2{color:var(--s8-accent2);}

.s8__grid{
  display:grid;
  gap:clamp(18px,3vw,28px);
}

.s8__card{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:clamp(18px,2.4vw,28px);
  align-items:center;
  background:var(--s8-card);
  border:1.5px solid var(--s8-line);
  border-radius:24px;
  padding:clamp(16px,2.4vw,24px);
  box-shadow:var(--s8-shadow);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  position:relative;
  overflow:hidden;
  max-width:100%;
}

.s8__card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(6,24,44,.14);
  border-color:transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#4d79ff,#3aa0ff,#23d5ab) border-box;
}

.s8__card:nth-child(even){
  grid-template-columns:1.05fr 0.95fr;
}

.s8__card:nth-child(even) .s8__media{order:2;}
.s8__card:nth-child(even) .s8__body{order:1;}

.s8__media{
  position:relative;
  aspect-ratio:4/3;
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.6));
  max-width:100%;
}

.s8__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.02);
  transition:transform .35s ease, filter .35s ease;
  filter:contrast(1.02) saturate(1.02);
}

.s8__card:hover .s8__media img{
  transform:scale(1.06);
}

.s8__ring{
  position:absolute;
  inset:-2px;
  border-radius:20px;
  pointer-events:none;
  background:conic-gradient(from 180deg at 50% 50%, #4d79ff, #3aa0ff, #23d5ab, #4d79ff);
  mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite:exclude;
  -webkit-mask-composite:xor;
  padding:2px;
  opacity:.35;
  transition:opacity .25s ease;
}

.s8__card:hover .s8__ring{opacity:.6;}

.s8__badge{
  display:inline-block;
  background:#eef7ff;
  border:1px solid #d3e9ff;
  color:#0a4a7a;
  padding:.3rem .6rem;
  border-radius:999px;
  font-weight:800;
  font-size:clamp(11px,1.3vw,13px);
  margin-bottom:.4rem;
}

.s8__name{
  margin:.1rem 0 .35rem;
  font-size:clamp(18px,2.6vw,24px);
  font-weight:900;
  word-wrap:break-word;
}

.s8__bio{
  margin:0;
  color:var(--s8-muted);
  line-height:1.75;
  font-size:clamp(13px,1.6vw,16px);
}

.s8__links{
  display:flex;
  gap:.6rem;
  margin-top:12px;
  flex-wrap:wrap;
}

.s8__links a{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  color:#0a3b57;
  text-decoration:none;
  border:1px solid #e6edf7;
  border-radius:12px;
  background:#fff;
  transition:.2s ease;
  box-shadow:0 6px 14px rgba(6,24,44,.07);
}

.s8__links a:hover{
  color:#0a58ff;
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(6,24,44,.12);
}

/* ======= Section 9 ======= */
.section9{
  --s9-bg:#ffffff;
  --s9-card:#fff;
  --s9-line:#e8eef6;
  --s9-text:#0f1b29;
  --s9-muted:#50627a;
  --s9-accent:#00F0FF;
  --s9-grad:linear-gradient(135deg,#4d79ff,#3aa0ff);
  --s9-shadow:0 18px 42px rgba(6,24,44,.10);
  background:var(--s9-bg);
  padding:clamp(40px,6vw,90px) 0;
  color:var(--s9-text);
  width:100%;
  overflow:hidden;
}

.section9__container{
  width:min(1200px,92vw);
  margin-inline:auto;
  max-width:100%;
}

.section9__head{
  text-align:center;
  margin-bottom:clamp(20px,4vw,34px);
}

.section9__eyebrow{
  color:#0ea5e9;
  font-weight:800;
  letter-spacing:.35px;
  display:inline-block;
  margin-bottom:6px;
}

.section9__head h2{
  margin:0;
  font-size:clamp(20px,4.4vw,38px);
  font-weight:900;
  word-wrap:break-word;
}

.s9-accent{
  color:var(--s9-accent);
  text-shadow:0 0 10px rgba(0,240,255,.45);
}

.section9__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:clamp(18px,3vw,28px);
  align-items:start;
}

.section9__form{
  background:var(--s9-card);
  border:1px solid var(--s9-line);
  border-radius:18px;
  padding:clamp(16px,2.2vw,22px);
  box-shadow:var(--s9-shadow);
  max-width:100%;
}

.s9-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(10px,1.8vw,14px);
  margin-bottom:12px;
}

.s9-field{
  position:relative;
  display:flex;
  align-items:center;
  border:1px solid var(--s9-line);
  border-radius:12px;
  background:#fff;
  box-shadow:inset 0 1px 0 rgba(6,24,44,.02);
  padding-left:44px;
  max-width:100%;
}

.s9-field input, .s9-field textarea{
  width:100%;
  border:0;
  outline:0;
  padding:.9rem 1rem;
  font:inherit;
  color:var(--s9-text);
  font-size:clamp(13px,1.5vw,15px);
}

.s9-field--textarea{
  padding-left:44px;
  margin-top:6px;
}

.s9-field textarea{
  resize:vertical;
  min-height:150px;
}

.s9-icon{
  position:absolute;
  left:12px;
  color:#0a58ff;
  opacity:.9;
  font-size:1rem;
}

.s9-field:focus-within{
  border-color:#b8e8ff;
  box-shadow:0 0 0 3px rgba(0,240,255,.15);
}

.s9-btn{
  margin-top:12px;
  border:0;
  border-radius:999px;
  cursor:pointer;
  background:var(--s9-grad);
  color:#fff;
  font-weight:800;
  padding:.9rem 1.2rem;
  display:inline-flex;
  gap:.6rem;
  align-items:center;
  box-shadow:0 12px 26px rgba(0,0,0,.16);
  transition:transform .2s ease, box-shadow .2s ease;
  font-size:clamp(13px,1.5vw,15px);
  white-space:nowrap;
}

.s9-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(0,0,0,.22);
}

.s9-note{
  color:var(--s9-muted);
  font-size:clamp(12px,1.4vw,14px);
  margin:.5rem 0 0;
}

.section9__info{
  background:#fff;
  border:1px solid var(--s9-line);
  border-radius:18px;
  padding:clamp(16px,2.2vw,22px);
  box-shadow:var(--s9-shadow);
  display:grid;
  gap:12px;
  max-width:100%;
}

.s9-infoItem{
  display:flex;
  gap:.9rem;
  align-items:center;
  text-decoration:none;
  color:inherit;
  border:1px dashed var(--s9-line);
  border-radius:14px;
  padding:.85rem 1rem;
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.s9-infoItem i{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#03c7ff,#00F0FF);
  color:#fff;
  box-shadow:0 8px 18px rgba(0,240,255,.25);
  flex-shrink:0;
}

.s9-infoItem strong{
  display:block;
  font-weight:900;
  font-size:clamp(13px,1.5vw,15px);
}

.s9-infoItem span{
  color:var(--s9-muted);
  font-size:clamp(12px,1.4vw,14px);
  font-weight:600;
  word-break:break-word;
}

.s9-infoItem:hover{
  border-color:#b8e8ff;
  transform:translateY(-2px);
  box-shadow:0 14px 26px rgba(6,24,44,.1);
}

.s9-toast{
  position:fixed;
  left:50%;
  bottom:22px;
  transform:translateX(-50%) translateY(20px);
  background:#0e2433;
  color:#fff;
  padding:.7rem 1rem;
  border-radius:12px;
  display:flex;
  gap:.5rem;
  align-items:center;
  box-shadow:0 14px 28px rgba(0,0,0,.25);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
  z-index:9999;
  max-width:90vw;
  font-size:clamp(12px,1.4vw,14px);
}

.s9-toast i{color:#23d5ab;}
.s9-toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}


/* ////////////////////////////map ////////////////////////////////// */

  /* //////////////// map ///////////////////////// */
/* ======= No-key Map styles ======= */
.contact-section4{ background:#fff; padding: clamp(40px,6vw,0px) 20px; }
.map-wrap{ max-width:1180px; margin:0 auto; }
.map-head h2{ font-size:1.6rem; margin-bottom:.3rem; }
.map-head p{ color:#6b6b6b; margin-bottom:14px; }

.map-controls{
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; flex-wrap:wrap; margin-bottom:12px;
}
.btn-group{ display:flex; gap:8px; flex-wrap:wrap; }
.map-btn{
  background: linear-gradient(135deg,#23d5ab,#23d5ab);
  color:#111; border:1px solid rgba(0,0,0,.1);
  padding:.55rem .8rem; border-radius:10px; font-weight:600;
  cursor:pointer; transition:transform .2s, box-shadow .2s;
}
.map-btn:hover{ transform:translateY(-2px); box-shadow:0 8px 16px rgba(230,184,0,.35); }
.map-btn.is-active{ outline:2px solid #2286f8; }
.map-btn.ghost{ background:#fff; border:1px solid #e0e0e0; }

.map-split{
  display:grid; grid-template-columns:1fr; gap:12px; min-height:54vh;
}
#leafletMap, #streetIframe{
  width:100%; height:54vh;
  border:1px solid #eee; border-radius:12px; overflow:hidden;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

/* Split view on desktop when Street View is open */
.map-split.split #leafletMap, .map-split.split #streetIframe{ height:60vh; }
@media (min-width: 960px){
  .map-split.split{ grid-template-columns:1fr 1fr; }
}
/* Leaflet default tweak */
.leaflet-control-zoom{ border-radius:10px; overflow:hidden; }



/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ///////////////////// Enquiry Form //////////////////////////////////////// */
:root {
  --primary1: #03c7ff;
  --primary2: #00F0FF;
}

/* Vertical floating button (fixed center-right) */
.enquiry-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--primary1), var(--primary2));
  color: #fff;
  border: none;
  outline: none;
  padding: 10px 0;
  width: 42px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: bold;
  font-size: 14px;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 8px 18px rgba(0,240,255,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}

.enquiry-btn:hover {
  box-shadow: 0 0 18px rgba(0,240,255,0.4);
  transform: translateY(-50%) scale(1.05);
}

/* Panel (hidden by default) */
.enquiry-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 360px;
  max-width: 95%;
  height: 100vh;
  background: #0a0a0a;
  color: #fff;
  padding: 2rem 1.5rem;
  box-shadow: -4px 0 25px rgba(0,240,255,0.2);
  transition: right 0.4s ease;
  z-index: 1100;
  overflow-y: auto;
}

.enquiry-panel.open {
  right: 0;
}

/* Close button */
.close-enquiry {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.enquiry-logo{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 8px;
}

.enquiry-logo a{
  display: inline-flex;
  padding: 6px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);           /* subtle card */
  border: 1px solid rgba(255,255,255,0.08);
}

.enquiry-logo img{
  display: block;
  width: 120px;           /* adjust as needed */
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0,240,255,.18)); /* soft glow */
}

/* Small screens: logo thoda chhota */
@media (max-width: 480px){
  .enquiry-logo img{ width: 96px; }
}


.enquiry-panel h3 {
  margin-top: 50px;
  font-size: 1.4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary1), var(--primary2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Form styling */
#enquiryForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.5rem;
}

#enquiryForm input,
#enquiryForm textarea {
  background: #111;
  border: 1px solid rgba(0,240,255,0.3);
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  outline: none;
  transition: 0.3s;
}

#enquiryForm input:focus,
#enquiryForm textarea:focus {
  border-color: var(--primary1);
  box-shadow: 0 0 8px rgba(0,240,255,0.4);
}

.send-btn {
  background: linear-gradient(135deg, var(--primary1), var(--primary2));
  border: none;
  color: #000;
  font-weight: bold;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,240,255,0.25);
  transition: 0.3s;
}

.send-btn:hover {
  filter: brightness(1.15);
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 1050;
}

/* Open state */
.overlay.show {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .enquiry-btn {
    right: 0;
    width: 38px;
    font-size: 13px;
  }

  /* .enquiry-panel {
    width: 100%;
  } */
}




/* ======= Footer ======= */
.f10{
  --f10-bg:#0b1220;
  --f10-card:#0f1a2c;
  --f10-text:#eaf2ff;
  --f10-dim:#9fb1c8;
  --f10-line:#203049;
  --f10-accent:#00F0FF;
  --f10-grad:linear-gradient(135deg,#4d79ff,#3aa0ff);
  --f10-shadow:0 18px 42px rgba(0,0,0,.28);
  background:
    radial-gradient(1200px 300px at 50% -60px, rgba(0,240,255,.14), transparent 60%),
    var(--f10-bg);
  color:var(--f10-text);
  padding-top:clamp(32px,5vw,54px);
  width:100%;
  overflow:hidden;
}

.f10__container{
  width:min(1200px,92vw);
  margin-inline:auto;
  max-width:100%;
}

.f10__top{
  display:grid;
  gap:clamp(18px,2.8vw,28px);
  grid-template-columns:1.05fr 1fr 1.05fr;
  padding:clamp(16px,2.4vw,24px) 0;
  border-top:2px solid rgba(0,240,255,.15);
}

.f10__logo{
  display:flex;
  align-items:center;
  gap:.7rem;
  text-decoration:none;
  color:var(--f10-text);
  font-weight:900;
}

.f10__logo img{
  width:100px;
  height:100px;
  border-radius:12px;
  object-fit:contain;
  background:#061120;
  border:1px solid #18324e;
  flex-shrink:0;
}

.f10__tag{
  color:var(--f10-dim);
  margin:.6rem 0 1rem;
  font-size:clamp(12px,1.4vw,14px);
}

.f10__social{
  display:flex;
  gap:.55rem;
  flex-wrap:wrap;
}

.f10__social a{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:10px;
  color:#0ad3ff;
  background:#0f2236;
  border:1px solid #163553;
  transition:.2s ease;
  text-decoration:none;
}

.f10__social a:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,240,255,.15);
  color:#fff;
}

.f10__links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(12px,2vw,22px);
}

.f10__col h4{
  margin:0 0 .6rem;
  font-size:clamp(14px,1.5vw,16px);
  color:#cfe6ff;
}

.f10__col a{
  display:block;
  color:var(--f10-dim);
  text-decoration:none;
  padding:.35rem 0;
  border-radius:8px;
  transition:color .18s ease, transform .18s ease;
  font-size:clamp(12px,1.4vw,14px);
}

.f10__col a:hover{
  color:#fff;
  transform:translateX(2px);
}

.f10__news h4{
  margin:0 0 .4rem;
  color:#cfe6ff;
  font-size:clamp(14px,1.5vw,16px);
}

.f10__news p{
  margin:.2rem 0 1rem;
  color:var(--f10-dim);
  font-size:clamp(12px,1.4vw,14px);
}

.f10__form{display:block;}

.f10__field{
  position:relative;
  display:flex;
  align-items:center;
  gap:.5rem;
  background:#0f2236;
  border:1px solid #17324f;
  border-radius:12px;
  padding-left:42px;
  overflow:hidden;
  max-width:100%;
}

.f10__icon{
  position:absolute;
  left:12px;
  color:#30d7ff;
}

.f10__field input{
  flex:1;
  background:transparent;
  border:0;
  outline:0;
  color:#fff;
  padding:.85rem 1rem;
  font-size:clamp(12px,1.4vw,14px);
  min-width:0;
}

.f10__btn{
  border:0;
  background:var(--f10-grad);
  color:#fff;
  font-weight:800;
  padding:.8rem 1rem;
  border-radius:10px;
  cursor:pointer;
  white-space:nowrap;
  transition:transform .18s ease, box-shadow .18s ease;
  font-size:clamp(12px,1.4vw,14px);
}

.f10__btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(0,0,0,.25);
}

.f10__hint{
  display:block;
  margin-top:.55rem;
  color:#87a0b8;
  font-size:clamp(11px,1.3vw,13px);
}

.f10__bottom{
  margin-top:clamp(18px,3vw,26px);
  border-top:1px solid #15253a;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  padding:14px 0;
  color:#b9c8db;
  font-size:clamp(11px,1.3vw,13px);
  flex-wrap:wrap;
}

.f10__bottom a{
  color:#7fe7ff;
  text-decoration:none;
  font-weight:800;
}

.f10__bottom a:hover{
  color:#fff;
  /* text-decoration:underline; */
}

.f10__toast{
  position:fixed;
  left:50%;
  bottom:20px;
  transform:translateX(-50%) translateY(14px);
  background:#08131f;
  color:#eaf2ff;
  border:1px solid #17324f;
  border-radius:12px;
  padding:.6rem .9rem;
  display:flex;
  align-items:center;
  gap:.5rem;
  box-shadow:var(--f10-shadow);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
  z-index:9999;
  max-width:90vw;
  font-size:clamp(12px,1.4vw,14px);
}

.f10__toast i{color:#23d5ab;}
.f10__toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}


/* ////////////////////////////////////////whatsapp icons /////////////////////////////////// */
.floating-btn {
  position: fixed;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 1000;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  animation: glowPulse 1.5s infinite ease-in-out; /* 🔥 always glowing */
}

/* WhatsApp Button */
.floating-btn.whatsapp {
  bottom: 90px;
  background: #25D366;
  box-shadow: 0 0 20px #25D366;
}

/* Call Button */
.floating-btn.call {
  bottom: 25px;
  background: #128C7E;
  box-shadow: 0 0 20px #128C7E;
}

/* Continuous glow animation */
@keyframes glowPulse {
  0% { box-shadow: 0 0 8px currentColor, 0 0 16px currentColor; }
  50% { box-shadow: 0 0 18px currentColor, 0 0 36px currentColor; }
  100% { box-shadow: 0 0 8px currentColor, 0 0 16px currentColor; }
}


/* ======= Keyframes ======= */
@keyframes s6scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

@keyframes s7scrollLeft{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

@keyframes s7scrollRight{
  from{transform:translateX(-50%);}
  to{transform:translateX(0);}
}

/* ======= RESPONSIVE BREAKPOINTS ======= */
@media (max-width: 992px){
  .links{display:none;}
  .hamburger{display:inline-block;}
  .brand-name{font-size:1.15rem;}
  .announce{flex-wrap:wrap;row-gap:.35rem;}
  .announce .pipe{display:none;}
  
  .hero-inner{
    grid-template-columns:1fr;
    text-align:center;
  }
  
  .hero-visual .hero-3d{
    width:min(520px, 68vw);
    margin-inline:auto;
  }
  
  .hero-copy .hero-cta{
    justify-content:center;
  }
  
  .about__grid{
    grid-template-columns:1fr;
  }
  
  .section3-grid{
    grid-template-columns:repeat(2, minmax(200px,1fr));
  }
}

@media (max-width: 900px){
  .s8__card,
  .s8__card:nth-child(even){
    grid-template-columns:1fr;
  }
  
  .s8__card:nth-child(even) .s8__media{
    order:0;
  }
}

@media (max-width: 940px){
  .section9__grid{
    grid-template-columns:1fr;
  }
  
  .f10__top{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .s9-row{
    grid-template-columns:1fr;
  }
  
  .f10__bottom{
    flex-direction:column;
    text-align:center;
  }
  
  .f10__links{
    grid-template-columns:1fr;
  }
}

@media (max-width: 560px){
  .section3-grid{
    grid-template-columns:1fr;
  }
  
  .section7-card{
    width:72vw;
  }
}

@media (max-width: 520px){
  .section6-card{
    width:78vw;
  }
}

@media (max-width: 420px){
  .brand img{
    width:50px;
    height:50px;
  }
  
  .brand-name{
    font-size:1rem;
  }
  
  .announce{
    font-size:.85rem;
    padding:.45rem .7rem;
  }
  
  .nav{
    padding:.5rem;
    min-height:60px;
  }
  
  .hero-copy h1{
    font-size:20px;
  }
  
  .hero-copy p{
    font-size:13px;
  }
  
  .btn-primary, .btn-ghost{
    padding:.7rem .9rem;
    font-size:13px;
  }
  
  .about__stats{
    grid-template-columns:1fr;
  }
}
/* Mobile responsive styles for newsletter */
@media (max-width: 640px) {
  .f10__field {
    flex-direction: column;
    align-items: stretch !important;
    gap: 0.75rem;
  }

  .f10__field input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
  }

  .f10__icon {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
  }

  .f10__btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    position: static;
  }
}

/* Extra small devices - fine tuning */
@media (max-width: 480px) {
  .f10__news {
    padding: 1.5rem 1rem;
  }

  .f10__news h4 {
    font-size: 1.2rem;
  }

  .f10__news p {
    font-size: 0.9rem;
  }

  .f10__field input {
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    font-size: 0.9rem;
  }

  .f10__btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }

  .f10__hint {
    font-size: 0.75rem;
  }
}

/* Mobile-only centering */
@media (max-width: 640px) {
  .f10__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  /* Brand */
  .f10__brand .f10__logo img { 
    display: block; 
    margin-inline: auto; 
  }
  .f10__social {
    display: flex;
    justify-content: center;
    gap: .75rem;
  }

  /* Links */
  .f10__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .f10__col a { display: block; }

  /* Newsletter */
  .f10__news {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
  }
  .f10__form { display: flex; justify-content: center; }
  .f10__field { width: 100%; }

  /* Bottom bar */
  .f10__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .25rem;
  }

  /* Optional: center any toast */
  .f10__toast {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* /////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////// new section ///////////////////////////////// */
/* ===================== NEWSECTION (scoped styles) ===================== */
.newsection {
  padding: clamp(48px, 6vw, 96px) 16px;
  background: #0b0b0b;               /* dark base to match your theme */
  color: #fff;
}
.newsection:nth-of-type(even) { background:#101216; } /* gentle alternation */

.newsection__container {
  max-width: 1180px;
  margin: 0 auto;
}

.newsection__head {
  text-align: center;
  margin-bottom: clamp(28px, 3.5vw, 48px);
}
.newsection__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 600;
  color: #bdbdbd;
  text-transform: uppercase;
}
.newsection__head h2 {
  margin: 8px 0 10px;
  line-height: 1.2;
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
}
.newsection__lead {
  color: #cfcfcf;
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
}
.newsection__accent   { color: #8b5cf6; }  /* violet */
.newsection__accent2  { color: #22d3ee; }  /* cyan */

/* INDUSTRIES grid */
.newsection--industries .newsection__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(1, minmax(0,1fr));
}
@media (min-width: 640px){
  .newsection--industries .newsection__grid { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 992px){
  .newsection--industries .newsection__grid { grid-template-columns: repeat(3,1fr); }
}
.newsection__card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.newsection__card::after{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(600px 120px at 0% 0%, rgba(139,92,246,.15), transparent 60%),
              radial-gradient(400px 100px at 100% 100%, rgba(34,211,238,.12), transparent 55%);
  pointer-events:none;
  opacity:.8;
}
.newsection__card:hover{
  transform: translateY(-4px);
  border-color: rgba(139,92,246,.35);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.newsection__icon{
  font-size: 28px;
  margin-bottom: 10px;
  color: #22d3ee;
}
.newsection__card h3{
  font-size: 18px;
  margin: 4px 0 6px;
  font-weight: 600;
}
.newsection__card p{
  color: #d6d6d6;
  font-size: 14px;
  line-height: 1.6;
}

/* WHY US – features list */
.newsection--why .newsection__features{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 8px;
}
@media (min-width: 768px){
  .newsection--why .newsection__features{ grid-template-columns: 1fr 1fr; }
}
.newsection__feature{
  display:flex; gap:14px; align-items:flex-start;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:16px 18px;
  transition: border-color .3s ease, transform .3s ease;
}
.newsection__feature i{
  font-size:22px; color:#8b5cf6; flex:0 0 auto;
  filter: drop-shadow(0 0 10px rgba(139,92,246,.35));
}
.newsection__feature h3{ margin:0 0 4px; font-size:16px; }
.newsection__feature p{ margin:0; color:#d7d7d7; font-size:14px; line-height:1.5; }
.newsection__feature:hover{ transform: translateY(-2px); border-color: rgba(139,92,246,.35); }

/* CTA buttons */
.newsection__cta{
  margin-top: 22px;
  display:flex; flex-wrap:wrap; gap:10px;
  justify-content:center;
}
.newsection__btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 16px; border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  color:#fff; text-decoration:none; font-weight:600;
  background: linear-gradient(90deg, rgba(139,92,246,.25), rgba(34,211,238,.25));
  backdrop-filter: blur(6px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.newsection__btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 10px 24px rgba(34,211,238,.18);
}
.newsection__btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,0.2);
}
