:root{
  --red:#d71920;
  --red-dark:#b5121b;
  --navy:#101b35;
  --ink:#172039;
  --muted:#667085;
  --paper:#fff;
  --soft:#f7f8fa;
  --line:#e8ebf0;
  --shadow:0 24px 70px rgba(16,27,53,.12);
  --radius:26px;
}


/* =========================
   GLOBAL
========================= */

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Plus Jakarta Sans","Noto Sans Devanagari",sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
  overflow-x:hidden;
}

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

a{
  text-decoration:none;
  color:inherit;
}

button{
  font:inherit;
}

.container{
  width:min(1180px,calc(100% - 40px));
  margin:auto;
}

.section{
  padding:110px 0;
}


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

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(16,27,53,.08);
}

.navbar{
  height:82px;
  min-height:82px;

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

  gap:28px;
  position:relative;
}


/* =========================
   LOGO
========================= */

.brand{
  display:flex;
  align-items:center;

  gap:12px;
  min-width:0;

  position:relative;
  z-index:5;
}

.brand img{
  width:120px;
  height:120px;

  object-fit:contain;
  border-radius:10px;

  display:block;
}


/* =========================
   NAV LINKS
========================= */

.nav-links{
  display:flex;
  align-items:center;

  gap:30px;

  font-size:13px;
  font-weight:700;
}

.nav-links a:not(.nav-call){
  transition:.2s;
}

.nav-links a:not(.nav-call):hover{
  color:var(--red);
}

.nav-call{
  background:var(--red);
  color:#fff;

  padding:12px 20px;

  border-radius:999px;

  box-shadow:0 8px 22px rgba(215,25,32,.22);
}


/* =========================
   MENU BUTTON
========================= */

.menu-toggle{
  display:none;

  border:0;
  background:transparent;

  width:42px;
  height:42px;

  cursor:pointer;
}

.menu-toggle span{
  display:block;

  width:24px;
  height:2px;

  background:var(--navy);

  margin:5px auto;

  transition:.25s;
}


/* =========================
   HERO
   BACKGROUND IMAGE
   + DARK OVERLAY
========================= */

.hero{
  min-height:835px;

  padding:100px 0;

  position:relative;

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

  overflow:hidden;

  background-image:url("images/hero.png");

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


/* =========================
   HERO DARK OVERLAY
========================= */

.hero::before{
  content:"";

  position:absolute;
  inset:0;

  background:rgba(0,0,0,.62);

  z-index:1;
}


/* =========================
   HERO CONTENT
========================= */

.hero-grid{
  width:100%;

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

  position:relative;
  z-index:2;
}

.hero-content{
  width:min(900px,100%);

  margin:auto;

  text-align:center;
}


/* =========================
   HERO TEXT
========================= */

.hero h1{
  font-family:"Noto Sans Devanagari","Plus Jakarta Sans",sans-serif;

  font-size:clamp(48px,6vw,82px);

  line-height:1.05;

  letter-spacing:-.045em;

  color:#fff;

  font-weight:800;
}

.hero h1 em{
  font-style:normal;
  color:#ff4b52;
}

.hero h2{
  font-size:clamp(20px,2.2vw,30px);

  margin-top:18px;

  color:#fff;

  font-weight:700;
}

.hero-marathi{
  font-family:"Noto Sans Devanagari",sans-serif;

  font-size:21px;

  font-weight:700;

  margin-top:18px;

  color:#fff;
}

.hero-copy{
  max-width:650px;

  margin:10px auto 0;

  color:rgba(255,255,255,.82);

  font-size:15px;
}


/* =========================
   EYEBROW
========================= */

.eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;

  gap:9px;

  margin-bottom:20px;

  font-size:11px;

  font-weight:800;

  letter-spacing:.18em;

  color:#ff5b61;
}

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

  background:#ff4b52;

  display:inline-block;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-actions{
  display:flex;

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

  gap:12px;

  flex-wrap:wrap;

  margin-top:30px;
}

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

  color:#fff;

  box-shadow:0 12px 28px rgba(0,0,0,.3);
}

.btn-primary:hover{
  background:var(--red-dark);
}

.btn-outline{
  border:1px solid rgba(255,255,255,.5);

  color:#fff;

  background:rgba(255,255,255,.08);

  backdrop-filter:blur(5px);
}

.btn-outline:hover{
  border-color:#fff;

  background:#fff;

  color:var(--navy);
}


/* =========================
   HERO TRUST
========================= */

.hero-trust{
  display:flex;

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

  gap:28px;

  margin-top:38px;
}

.hero-trust div{
  display:flex;
  flex-direction:column;

  text-align:center;
}

.hero-trust strong{
  font-size:15px;
  color:#fff;
}

.hero-trust span{
  font-size:9px;

  color:rgba(255,255,255,.65);

  margin-top:3px;

  text-transform:uppercase;

  letter-spacing:.08em;
}

.hero-trust i{
  height:34px;
  width:1px;

  background:rgba(255,255,255,.3);
}


/* =========================
   OLD HERO IMAGE HIDE
========================= */

.hero-visual{
  display:none;
}


/* =========================
   ABOUT
========================= */

.about{
  background:var(--soft);
}

.about-grid{
  display:grid;

  grid-template-columns:.9fr 1fr;

  gap:92px;

  align-items:center;
}

.about-image{
  position:relative;
}

.about-image img{
  width:100%;

  height:610px;

  object-fit:cover;
  object-position:center;

  border-radius:28px;

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

.experience-badge{
  position:absolute;

  right:-28px;
  bottom:34px;

  background:var(--red);

  color:#fff;

  border-radius:20px;

  padding:20px 22px;

  display:flex;

  align-items:center;

  gap:12px;

  box-shadow:0 18px 38px rgba(215,25,32,.25);
}

.experience-badge strong{
  font-size:34px;
  line-height:1;
}

.experience-badge span{
  font-size:10px;

  line-height:1.4;

  text-transform:uppercase;

  letter-spacing:.05em;
}

.about-content h2{
  font-family:"Noto Sans Devanagari","Plus Jakarta Sans",sans-serif;

  font-size:clamp(32px,4vw,52px);

  line-height:1.2;

  margin:12px 0 24px;

  letter-spacing:-.035em;
}

.about-content h2 span{
  color:var(--red);
}

.about-content>p:not(.section-kicker){
  color:var(--muted);

  font-size:14px;

  margin-bottom:14px;

  max-width:600px;
}

.about-content strong{
  color:var(--navy);
}

.about-points{
  border-top:1px solid #dfe3e9;

  margin-top:30px;

  padding-top:20px;

  display:grid;

  gap:14px;
}

.about-points div{
  display:flex;

  align-items:center;

  gap:14px;

  font-size:12px;
}

.about-points span{
  color:var(--red);

  font-weight:800;

  font-size:10px;
}


/* =========================
   PRODUCTS
========================= */

.products{
  background:#fff;
}

.section-heading{
  display:flex;

  align-items:end;
  justify-content:space-between;

  gap:30px;

  margin-bottom:48px;
}

.section-heading h2{
  font-size:clamp(32px,4vw,52px);

  line-height:1.1;

  margin-top:10px;

  letter-spacing:-.04em;
}

.section-heading h2 span{
  color:var(--red);
}

.section-heading>p{
  font-family:"Noto Sans Devanagari",sans-serif;

  font-weight:700;

  color:var(--muted);

  font-size:15px;

  padding-bottom:4px;
}

.product-grid{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:16px;
}

.product-card{
  position:relative;

  min-height:245px;

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

  border-radius:22px;

  padding:28px;

  background:#fff;

  transition:.25s;

  overflow:hidden;
}

.product-card:after{
  content:"";

  position:absolute;

  width:120px;
  height:120px;

  border-radius:50%;

  background:rgba(215,25,32,.05);

  right:-45px;
  bottom:-45px;

  transition:.25s;
}

.product-card:hover{
  transform:translateY(-5px);

  border-color:rgba(215,25,32,.3);

  box-shadow:0 18px 40px rgba(16,27,53,.08);
}

.product-card:hover:after{
  transform:scale(1.4);
}

.product-number{
  position:absolute;

  top:22px;
  right:24px;

  color:#aab1bf;

  font-size:10px;

  font-weight:800;
}

.product-icon{
  width:48px;
  height:48px;

  border-radius:15px;

  background:#fff1f1;

  color:var(--red);

  display:grid;

  place-items:center;

  font-size:24px;

  margin-bottom:25px;
}

.product-card h3{
  font-size:18px;

  margin-bottom:9px;
}

.product-card p{
  font-size:12px;

  color:var(--muted);

  max-width:260px;
}


/* =========================
   CONTACT
========================= */

.contact{
  background:var(--navy);

  color:#fff;
}

.contact-wrap{
  display:grid;

  grid-template-columns:1.05fr .95fr;

  gap:80px;

  align-items:center;
}

.section-kicker.light{
  color:#ff5b61;
}

.contact-main h2{
  font-family:"Noto Sans Devanagari","Plus Jakarta Sans",sans-serif;

  font-size:clamp(38px,5vw,66px);

  line-height:1.18;

  letter-spacing:-.04em;

  margin:13px 0 20px;
}

.contact-main h2 span{
  color:#ff4a51;
}

.contact-main>p:not(.section-kicker){
  color:#b9c1d1;

  max-width:530px;

  font-size:14px;
}

.contact-actions{
  display:flex;

  gap:12px;

  flex-wrap:wrap;

  margin-top:30px;
}

.btn-white{
  background:#fff;
  color:var(--navy);
}

.btn-whatsapp{
  background:var(--red);
  color:#fff;
}

.contact-details{
  border:1px solid rgba(255,255,255,.14);

  border-radius:26px;

  padding:30px;

  background:rgba(255,255,255,.035);
}

.detail-item{
  display:flex;

  gap:16px;

  padding:19px 0;

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

.detail-item:last-of-type{
  border-bottom:0;
}

.detail-icon{
  width:42px;
  height:42px;

  flex:0 0 42px;

  border-radius:12px;

  background:rgba(215,25,32,.16);

  color:#ff4a51;

  display:grid;

  place-items:center;

  font-size:20px;
}

.detail-item small{
  font-size:9px;

  letter-spacing:.16em;

  color:#8f9aae;

  font-weight:800;
}

.detail-item p,
.detail-item a{
  display:block;

  color:#fff;

  font-size:13px;

  margin-top:3px;
}

.detail-item a:hover{
  color:#ff4a51;
}

.directions-link{
  display:flex;

  justify-content:space-between;

  align-items:center;

  border-top:1px solid rgba(255,255,255,.11);

  padding-top:22px;

  margin-top:8px;

  color:#ff5b61;

  font-size:12px;

  font-weight:800;
}


/* =========================
   FOOTER
========================= */

.footer{
  background:#0b1327;

  color:#fff;
}

.footer-top{
  padding:35px 0;

  display:grid;

  grid-template-columns:1.2fr 1fr auto;

  align-items:center;

  gap:30px;
}

.footer-brand{
  display:flex;

  align-items:center;

  gap:12px;
}

.footer-brand img{
  width:120px;
  height:120px;

  object-fit:contain;

  border-radius:8px;
}

.footer-brand div{
  display:flex;

  flex-direction:column;
}

.footer-brand strong{
  font-size:13px;
}

.footer-brand span{
  font-size:9px;

  color:#7f899c;

  margin-top:3px;
}

.footer-nav{
  display:flex;

  justify-content:center;

  gap:24px;

  font-size:11px;

  color:#9da6b6;

  font-weight:700;
}

.footer-nav a:hover{
  color:#fff;
}

.footer-call{
  border:1px solid rgba(255,255,255,.16);

  padding:12px 17px;

  border-radius:999px;

  font-size:11px;

  font-weight:800;
}

.footer-call:hover{
  border-color:var(--red);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);

  padding:18px 0 22px;

  display:flex;

  justify-content:space-between;

  gap:20px;

  font-size:9px;

  color:#697488;
}


/* =========================
   MOBILE BOTTOM BAR
========================= */

.mobile-bar{
  display:none;
}


/* =========================
   ANIMATION
========================= */

.reveal{
  opacity:0;

  transform:translateY(18px);

  transition:
    opacity .65s ease,
    transform .65s ease;
}

.reveal.visible{
  opacity:1;

  transform:none;
}

:focus-visible{
  outline:3px solid rgba(215,25,32,.35);

  outline-offset:3px;
}


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

@media(max-width:900px){

  .nav-links{
    gap:18px;
  }

  .hero-grid,
  .about-grid,
  .contact-wrap{
    grid-template-columns:1fr;

    gap:50px;
  }

  .hero{
    padding-top:80px;

    padding-bottom:90px;
  }

  .about-grid{
    gap:65px;
  }

  .contact-wrap{
    gap:45px;
  }

  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-top{
    grid-template-columns:1fr auto;
  }

  .footer-nav{
    grid-column:1/-1;

    grid-row:2;

    justify-content:flex-start;
  }
}


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

@media(max-width:700px){

  body{
    padding-bottom:66px;
  }

  .container{
    width:min(100% - 28px,1180px);
  }


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

  .navbar{
    height:70px;

    min-height:70px;
  }


  /* Mobile Logo */

  .brand img{
    width:90px;

    height:90px;

    object-fit:contain;
  }


  /* Hamburger */

  .menu-toggle{
    display:block;
  }


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

  .nav-links{
    position:absolute;

    top:70px;

    left:14px;

    right:14px;

    background:#fff;

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

    border-radius:18px;

    padding:12px;

    display:flex;

    flex-direction:column;

    align-items:stretch;

    gap:4px;

    box-shadow:0 20px 40px rgba(16,27,53,.12);

    opacity:0;

    pointer-events:none;

    transform:translateY(-8px);

    transition:.2s;
  }

  .nav-links.open{
    opacity:1;

    pointer-events:auto;

    transform:none;
  }

  .nav-links a:not(.nav-call){
    padding:12px;

    border-radius:10px;
  }

  .nav-links a:not(.nav-call):hover{
    background:#fff5f5;
  }

  .nav-call{
    text-align:center;

    margin-top:4px;
  }


  /* =====================
     MOBILE HERO
     BACKGROUND + DARK
     OVERLAY
  ===================== */

  .hero{
    min-height:650px;

    padding:70px 0 80px;

    background-image:
      linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
      ),
      url("images/hero-background.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;
  }


  /* Mobile overlay */

  .hero::before{
    background:transparent;
  }


  /* Center Hero */

  .hero-grid{
    display:flex;

    justify-content:center;
  }

  .hero-content{
    width:100%;

    text-align:center;
  }


  /* Mobile Hero Heading */

  .hero h1{
    font-size:clamp(40px,13vw,60px);
  }

  .hero h2{
    font-size:19px;

    color:#fff;
  }

  .hero-marathi{
    font-size:16px;

    color:#fff;
  }

  .hero-copy{
    font-size:13px;

    color:rgba(255,255,255,.82);

    margin-left:auto;

    margin-right:auto;
  }


  /* =====================
     MOBILE HERO BUTTONS
  ===================== */

  .hero-actions{
    flex-direction:column;

    width:100%;
  }

  .hero-actions .btn{
    width:100%;
  }


  /* =====================
     MOBILE HERO TRUST
  ===================== */

  .hero-trust{
    gap:13px;

    margin-top:28px;
  }

  .hero-trust i{
    height:28px;
  }

  .hero-trust strong{
    font-size:12px;

    color:#fff;
  }

  .hero-trust span{
    font-size:7px;

    color:rgba(255,255,255,.65);
  }


  /* =====================
     GENERAL SECTIONS
  ===================== */

  .section{
    padding:76px 0;
  }


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

  .about-grid{
    gap:48px;
  }

  .about-image img{
    height:430px;
  }

  .experience-badge{
    right:12px;

    bottom:18px;

    padding:14px 16px;
  }

  .experience-badge strong{
    font-size:27px;
  }

  .experience-badge span{
    font-size:8px;
  }

  .about-content h2{
    font-size:31px;
  }

  .about-content>p:not(.section-kicker){
    font-size:13px;
  }


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

  .section-heading{
    display:block;

    margin-bottom:34px;
  }

  .section-heading h2{
    font-size:34px;
  }

  .section-heading>p{
    margin-top:12px;

    font-size:13px;
  }

  .product-grid{
    grid-template-columns:1fr;

    gap:12px;
  }

  .product-card{
    min-height:205px;

    padding:24px;
  }


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

  .contact-main h2{
    font-size:39px;
  }

  .contact-details{
    padding:18px;
  }


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

  .footer-top{
    grid-template-columns:1fr;

    gap:20px;
  }

  .footer-nav{
    grid-column:auto;

    grid-row:auto;

    justify-content:flex-start;

    flex-wrap:wrap;
  }

  .footer-call{
    justify-self:start;
  }

  .footer-bottom{
    flex-direction:column;

    gap:7px;
  }


  /* =====================
     MOBILE BOTTOM BAR
  ===================== */

  .mobile-bar{
    position:fixed;

    z-index:1200;

    bottom:0;

    left:0;

    right:0;

    background:#fff;

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

    height:62px;

    display:grid;

    grid-template-columns:1fr 1fr;

    box-shadow:0 -10px 30px rgba(16,27,53,.12);
  }

  .mobile-bar a{
    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    font-size:12px;

    font-weight:800;
  }

  .mobile-bar a:first-child{
    color:var(--navy);

    border-right:1px solid var(--line);
  }

  .mobile-bar a:last-child{
    color:var(--red);
  }
}


/* =========================
   REDUCED MOTION
========================= */

@media(prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  .reveal{
    opacity:1;

    transform:none;

    transition:none;
  }

  *{
    transition:none!important;
  }
}