/* ==========================================================
   GLOBAL.CSS (Grey Gradient + White Theme)
   - Body: NO background (transparent)
   - Header: modern floating pill + blur
   - Mobile nav: clean dark grey (no green)
   - Footer: white/grey band
   - Bootstrap-friendly (no .container override)
   ========================================================== */

/* ---------- Theme Tokens ---------- */
:root{
  --dark-950:#07080c;
  --dark-900:#0b0d12;
  --dark-850:#0f1117;
  --dark-800:#141821;

  --white:#ffffff;
  --light-100:#f7f8fb;
  --light-200:#eef1f6;
  --light-300:#e6eaf2;

  --text-dark:#0b0d12;
  --text-light:#f6f7fb;

  --muted-dark: rgba(11,13,18,.70);
  --muted-light: rgba(246,247,251,.72);

  --radius-16:16px;
  --radius-20:20px;
  --radius-24:24px;
  --pill:999px;

  --focus: rgba(255,255,255,.85);
}

/* ---------- Base Reset ---------- */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: "Switzer", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: transparent;          /* ✅ NO BODY BACKGROUND */
  color: var(--text-dark);
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
p{ margin:0; }

::selection{
  background: rgba(0,0,0,.15);
}

/* ---------- Accessibility ---------- */
.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:12px;
  z-index:9999;
}
.skip-link:focus{ left:12px; }

:focus-visible{
  outline: 3px solid rgba(255,255,255,.45);
  outline-offset: 3px;
  border-radius: 10px;
}

/* ==========================================================
   HEADER (Modern grey/white theme)
   ========================================================== */

.site-header{
  position: fixed;
  left:0; right:0; top:0;
  z-index: 1200; /* overlay se upar */
  padding: 14px 0;
}

/* Floating pill bar */
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;

  padding: 10px 14px;
  border-radius: var(--pill);

  background: rgba(15, 17, 23, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: background .2s ease;
}

/* stronger on scroll (main.js adds .is-scrolled) */
.site-header.is-scrolled .header__inner{
  background: rgba(15, 17, 23, .78);
}

.brand__name{
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .2px;
  white-space: nowrap;
  color: rgba(255,255,255,.92);
}

/* Desktop nav */
.site-header .nav__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap: 22px;
}

.site-header .nav__link{
  font-size: 14px;
  color: rgba(255,255,255,.72);
  position: relative;
  transition: color .18s ease;
}

.site-header .nav__link:hover{
  color: rgba(255,255,255,.96);
}

.site-header .nav__link.is-active{
  color: rgba(255,255,255,.96);
}

.site-header .nav__link.is-active::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-10px;
  height:2px;
  border-radius:2px;
  background: rgba(255,255,255,.75);
}

.header__actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Hamburger button */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: var(--pill);
  border: 0;
  background: rgba(255,255,255,.10);
  cursor:pointer;
}
.nav-toggle__bars{
  display:block;
  width:18px;
  height:2px;
  background:#fff;
  margin:0 auto;
  position:relative;
  border-radius:2px;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:#fff;
  border-radius:2px;
}
.nav-toggle__bars::before{ top:-6px; }
.nav-toggle__bars::after{ top:6px; }

/* ==========================================================
   MOBILE NAV (no green, clean dark grey)
   - collapse earlier to avoid menu wrapping
   ========================================================== */
@media (max-width: 1100px){
   .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    position: relative;
    z-index: 1401; /* ✅ overlay se upar */
  }

  .header__cta{ display:none !important; }

  .site-header #primaryNav{
    position: fixed;
    top: 0;
    right: 0;                 /* ✅ bilkul corner */
    height: 100vh;

    width: min(360px, 92vw);  /* ✅ thora wide, gap less feel */
    padding: 80px 18px 18px;  /* ✅ right padding kam */

    background: rgba(15, 17, 23, .96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transform: translateX(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: transform .25s ease, opacity .2s ease, visibility .2s ease;
    z-index: 1300;
  }

  body.nav-open .site-header #primaryNav{
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  

  .site-header .nav__list{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  body.nav-open .site-header .nav{ transform: translateX(0); }
  body.nav-open{ overflow:hidden; }
  
  body.nav-open::before{
    content:"";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 99; 
    pointer-events: auto;
  }

  /* header pill becomes slightly rounded on mobile */
  .header__inner{
    border-radius: 22px;
  }
}

/* ==========================================================
   PAGE DEFAULT (for pages using .page class)
   - since body has no bg, pages should set bg here
   ========================================================== */
.page{
  /* padding: 140px 0 90px;
  background: linear-gradient(180deg, var(--white), var(--light-200)); */
  color: var(--text-dark);
}

@media (max-width: 992px){
  .page{
    padding: 120px 0 70px;
  }
}




/* Hamburger -> Cross when menu open */
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after{
  transition: transform .2s ease, top .2s ease, opacity .2s ease, background .2s ease;
}

body.nav-open #navToggle .nav-toggle__bars{
  background: transparent;
}

body.nav-open #navToggle .nav-toggle__bars::before{
  top: 0;
  transform: rotate(45deg);
}

body.nav-open #navToggle .nav-toggle__bars::after{
  top: 0;
  transform: rotate(-45deg);
}/* Hamburger -> Cross when menu open */
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after{
  transition: transform .2s ease, top .2s ease, opacity .2s ease, background .2s ease;
}

body.nav-open #navToggle .nav-toggle__bars{
  background: transparent;
}

body.nav-open #navToggle .nav-toggle__bars::before{
  top: 0;
  transform: rotate(45deg);
}

body.nav-open #navToggle .nav-toggle__bars::after{
  top: 0;
  transform: rotate(-45deg);
}












/* ===== Footer (Theme-matched) ===== */
.site-footer{
  background: linear-gradient(135deg, #0f1218, #2b313c);
  color: rgba(255,255,255,.82);
  padding: 70px 0 28px;
  overflow: hidden;
}

.site-footer .home-container{
  text-align: center;
  position: relative;
}

/* subtle glow */
.site-footer .home-container::before{
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.10), transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,.08), transparent 50%);
  pointer-events: none;
}

.site-footer .home-container > *{
  position: relative;
  z-index: 1;
}

.footer-title{
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.footer-text{
  margin: 0 auto 18px;
  max-width: 820px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,.70);
}

/* Social */
.footer-social{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 22px;
}

.footer-social-link{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,.92);
  color: #101319;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.10);
}

.footer-social-link:hover{
  background: rgba(255,255,255,.80);
}

/* Links */
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a{
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.footer-links a:hover{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Bottom */
.footer-bottom{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 575.98px){
  .site-footer{
    padding: 55px 0 24px;
  }
  .footer-title{ font-size: 20px; }
  .footer-links{ gap: 14px; }
  .footer-social-link{ width: 42px; height: 42px; }
}








/* ==========================================================
   Small helpers
   ========================================================== */
.text-muted-theme{ color: var(--muted-dark) !important; }














/* ===== Reviews (Theme-matched) ===== */

/* custom container (because you said bootstrap sirf row/col) */
.home-container{
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

.home-sec--reviews{
  background: #eef2f6;          /* same family as your light sections */
  padding: 80px 0;
}

/* top small title */
.home-rev-kicker{
  margin: 0 0 10px 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(16,19,25,.55);
}

/* main heading */
.home-rev-title{
  margin: 0 0 34px 0;
  text-align: center;
  font-weight: 900;
  font-size: 44px;
  line-height: 1.12;
  color: #101319;              /* your theme’s dark text */
}

.home-rev-title em{
  font-style: italic;
  font-weight: 500;
  color: rgba(16,19,25,.62);
}

/* spacing between columns (no bootstrap utilities) */
.home-rev-row{
  row-gap: 18px;
}

/* card */
.home-rev-card{
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(16,19,25,.08);
  border-radius: 22px;
  padding: 22px 22px 20px;
  box-shadow: 0 18px 45px rgba(16,19,25,.08);
}

/* head layout */
.home-rev-head{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

/* quote icon (theme dark pill/circle) */
.home-rev-quote{
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #101319, #2b313c);
    color: #fff;
    flex: 0 0 auto;
    line-height: 53px;
}

/* name + role */
.home-rev-meta{
  margin: 0;
  line-height: 1.15;
}

.home-rev-meta strong{
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: #101319;
}

.home-rev-meta span{
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  font-style: italic;
  color: rgba(16,19,25,.55);
}

/* review text */
.home-rev-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(16,19,25,.72);
}

/* CTA button - matches your pill buttons */
.home-rev-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 28px;
  padding: 12px 26px;
  border-radius: 999px;

  background: #101319;
  color: #fff;
  text-decoration: none;
  font-weight: 800;

  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.home-rev-cta:hover{
  background: #2b313c;
}

/* responsive */
@media (max-width: 991.98px){
  .home-sec--reviews{ padding: 65px 0; }
  .home-rev-title{ font-size: 34px; margin-bottom: 26px; }
}

@media (max-width: 575.98px){
  .home-container{ width: calc(100% - 22px); }
  .home-rev-title{ font-size: 28px; }
  .home-rev-card{ padding: 18px 18px 16px; border-radius: 18px; }
}














/* ===== Newsletter (Theme-matched) ===== */
.home-sec--newsletter{
  padding: 70px 0;
  background: #ffffff;
}

.home-news-row{
  /* card look */
  background: linear-gradient(135deg, #0f1218, #2b313c);
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 26px 70px rgba(16,19,25,.14);
  row-gap: 22px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* subtle watermark / glow */
.home-news-row::before{
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.10), transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,.08), transparent 50%);
  pointer-events: none;
}

.home-news-row > *{
  position: relative;
  z-index: 1;
}

.home-news-kicker{
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
}

.home-sec.home-sec--newsletter .home-news-title{
  margin: 0 0 12px 0;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}

.home-news-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.home-news-form{
  margin: 0;
}

.home-news-label{
  display: block;
  margin: 0 0 8px 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
}

.home-news-field{
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

.home-news-input{
  flex: 1 1 auto;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
}

.home-news-input::placeholder{
  color: rgba(255,255,255,.55);
}

.home-news-btn{
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  background: #ffffff;
  color: #101319;
  white-space: nowrap;
}

.home-news-btn:hover{
  background: rgba(255,255,255,.88);
}

.home-news-note{
  margin: 10px 0 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

.home-news-toptext{
  margin: 0 0 12px 0;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
}

/* Responsive */
@media (max-width: 991.98px){
  .home-sec--newsletter{ padding: 55px 0; }
  .home-news-row{ padding: 26px; }
}

@media (max-width: 575.98px){
  .home-news-row{ padding: 20px; border-radius: 22px; }
  .home-news-field{
    flex-direction: column;
    border-radius: 18px;
    padding: 12px;
  }
  .home-news-btn{
    width: 100%;
    padding: 12px 16px;
  }
}