/* Main Theme: Rohini Enterprises */
:root{
  --navy:#1A365D;
  --white:#FFFFFF;
  --red:#E21F26;
  --orange:#FF8C00;
  --slate:#0f172a;
  --muted:#6b7280;
  --bg:#f6f8fb;
  --card:#ffffff;
  --ring: rgba(26,54,93,.18);
  --shadow: 0 12px 35px rgba(15,23,42,.10);
  --shadow-sm: 0 10px 20px rgba(15,23,42,.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--slate);
  background:linear-gradient(180deg,#ffffff 0%, var(--bg) 100%);
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}

.container{max-width:var(--container); margin:0 auto; padding:0 18px;}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:active{transform:translateY(1px) scale(.99);}
.btn-primary{background:var(--navy); color:var(--white); box-shadow: 0 12px 25px rgba(26,54,93,.18);}
.btn-primary:hover{transform:translateY(-1px); box-shadow: 0 16px 32px rgba(26,54,93,.22);}
.btn-accent{background:#199bec; color:#ffffff; box-shadow: 0 12px 25px rgba(25,155,236,.22);}
.btn-accent:hover{transform:translateY(-1px); box-shadow: 0 16px 32px rgba(25,155,236,.28); background:#199bec;}
.btn-outline{background:transparent; border-color:rgba(15,23,42,.15);}
.btn-outline:hover{border-color:rgba(26,54,93,.35); box-shadow:0 10px 18px rgba(15,23,42,.08); transform:translateY(-1px);}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(26,54,93,.08);
  border:1px solid rgba(26,54,93,.14);
  font-weight:700;
  color:var(--navy);
}

header.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(15,23,42,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  height: 100%;
  min-width: 200px; /* Increased min-width to prevent squishing */
  max-width: 300px; /* Added max-width to prevent excessive stretching */
}

.header-logo {
  width: 100%;
  height: auto;
  max-height: 80px; /* Increased max height */
  object-fit: contain;
  object-position: left center;
  transition: transform 0.2s ease;
}

/* Adjust header container */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  height: 80px; /* Fixed height for consistency */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .header-logo {
    max-height: 70px;
  }
  .header-inner {
    height: 70px;
  }
}

@media (max-width: 992px) {
  .header-logo {
    max-height: 60px;
  }
  .header-inner {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .header-logo {
    max-height: 50px;
  }
  .header-inner {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .brand {
    min-width: 150px;
  }
  .header-logo {
    max-height: 45px;
  }
  .header-inner {
    height: 45px;
  }
}
.logo{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--navy),#0b2347);
  display:grid;
  place-items:center;
  box-shadow:0 14px 30px rgba(26,54,93,.22);
}
.logo span{
  color:var(--white);
  font-weight:900;
  letter-spacing:.5px;
}
.brand-title{line-height:1.1;}
.brand-title strong{display:block; font-size:15px; letter-spacing:.2px;}
.brand-title small{display:block; color:var(--muted); font-weight:600;}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  font-weight:700;
  padding:10px 10px;
  border-radius:12px;
  color:rgba(15,23,42,.85);
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.nav a:hover{background:rgba(26,54,93,.08); color:var(--navy); transform:translateY(-1px);}
.nav a.active{background:rgba(26,54,93,.12); color:var(--navy);}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.lang-toggle{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(15,23,42,.04);
  border:1px solid rgba(15,23,42,.08);
}
.lang-toggle button{
  border:0;
  background:transparent;
  cursor:pointer;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  color:rgba(15,23,42,.72);
}
.lang-toggle button.active{background:rgba(26,54,93,.12); color:var(--navy);}

 .cart-link{
   position:relative;
   display:inline-flex;
   align-items:center;
   gap:8px;
 }
 .cart-badge{
   display:none;
   align-items:center;
   justify-content:center;
   min-width:22px;
   height:22px;
   padding:0 6px;
   border-radius:999px;
   background:var(--red);
   color:var(--white);
   font-weight:900;
   font-size:12px;
   box-shadow:0 10px 20px rgba(226,31,38,.25);
 }

.hamburger{
  display:none;
  width:46px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.70);
  cursor:pointer;
}
.hamburger span{display:block; width:20px; height:2px; background:rgba(15,23,42,.72); margin:5px auto; border-radius:2px;}

.mobile-panel{
  display:none;
  position:fixed;
  inset:72px 12px auto 12px;
  border-radius:18px;
  background:rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border:1px solid rgba(15,23,42,.08);
  overflow:hidden;
  z-index:60;
}
.mobile-panel.open{display:block;}
.mobile-panel nav{display:flex; flex-direction:column; padding:10px;}
.mobile-panel nav a{padding:14px 12px; border-radius:14px;}
.mobile-panel .mobile-cta{display:flex; gap:10px; padding:12px; border-top:1px solid rgba(15,23,42,.06);}

.page-hero{
  position:relative;
  color:var(--white);
  background: radial-gradient(1200px 400px at 15% 5%, rgba(255,140,0,.35), transparent 55%),
              radial-gradient(800px 420px at 75% 35%, rgba(226,31,38,.28), transparent 55%),
              linear-gradient(135deg, #0b2347, var(--navy));
  overflow:hidden;
}
.page-hero .hero-inner{padding:58px 0 24px 0;}
.page-hero h1{margin:0; font-size:40px; letter-spacing:-.6px;}
.page-hero p{margin:10px 0 0 0; color:rgba(255,255,255,.86); max-width:720px; font-weight:600;}

.breadcrumbs{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  padding:14px 0 22px 0;
  color:rgba(255,255,255,.86);
  font-weight:700;
}
.breadcrumbs a{color:rgba(255,255,255,.95); text-decoration:underline; text-underline-offset:3px;}

.section{padding:56px 0;}
.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.section-title.section-title-center{
  justify-content:center;
  text-align:center;
}
.section-title.section-title-center p{margin-left:auto; margin-right:auto;}
.section-title.section-title-center > div{width:100%;}
.section-title h2{margin:0; font-size:30px; letter-spacing:-.4px;}
.section-title p{margin:0; color:var(--muted); font-weight:600; max-width:560px;}

.grid{display:grid; gap:18px;}
.grid-3{grid-template-columns:repeat(3, minmax(0,1fr));}
.grid-2{grid-template-columns:repeat(2, minmax(0,1fr));}
.grid-4{grid-template-columns:repeat(4, minmax(0,1fr));}

 .grid > .card{display:flex; flex-direction:column; height:100%;}
 .grid > .card .card-body{display:flex; flex-direction:column; flex:1;}
 .grid > .card .card-actions{margin-top:auto;}

.card{
  background:var(--card);
  border:1px solid rgba(15,23,42,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
  transform:translateY(0);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover{transform:translateY(-4px); box-shadow:var(--shadow); border-color:rgba(26,54,93,.18);}
.card-media{height:170px; overflow:hidden;}
.card-media img{width:100%; height:100%; object-fit:cover; transform:scale(1.02); transition:transform .35s ease;}
.card:hover .card-media img{transform:scale(1.08);}
.card-body{padding:16px;}
.card-body h3{margin:0 0 8px 0; font-size:18px;}
.card-body p{margin:0 0 12px 0; color:var(--muted); font-weight:600; line-height:1.5;}
.card-actions{display:flex; gap:10px; flex-wrap:wrap;}

 .product-grid .card-media{height:220px; background:rgba(255,255,255,.9);}
 .product-grid .card-media img{object-fit:contain; transform:none;}
 .product-grid .card:hover .card-media img{transform:none;}

 .gallery-grid .card-media{height:260px;}

.category-grid .card{display:flex; flex-direction:column; height:100%;}
.category-grid .card-media{
  height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
  background:rgba(255,255,255,.9);
}
.category-grid .card-media img{
  object-fit:contain;
  transform:none;
}
.category-grid .card:hover .card-media img{transform:none;}
.category-grid .card-body{display:flex; flex-direction:column; flex:1;}
.category-grid .card-actions{margin-top:auto;}

.hero-home{
  position:relative;
  color:var(--white);
  background: linear-gradient(135deg, #0b2347, var(--navy));
  overflow:hidden;
}
.hero-home .hero-wrap{padding:60px 0 30px 0; display:grid; grid-template-columns:1.1fr .9fr; gap:22px; align-items:center;}
.hero-home h1{margin:0; font-size:46px; letter-spacing:-1px;}
.hero-home p{margin:12px 0 0 0; color:rgba(255,255,255,.86); font-weight:600; max-width:650px; line-height:1.55;}
.hero-cta{margin-top:18px; display:flex; gap:12px; flex-wrap:wrap;}
.hero-kicker{margin-bottom:14px;}
 .hero-home .hero-kicker{color:rgba(255,255,255,.95); background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.18);}

.slider{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 60px rgba(0,0,0,.22);
}
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .65s ease;
}
.slide.active{opacity:1;}
.slide img{width:100%; height:360px; object-fit:cover;}

 .slider-arrow{
   position:absolute;
   top:50%;
   transform:translateY(-50%);
   width:44px;
   height:44px;
   border-radius:16px;
   border:1px solid rgba(255,255,255,.22);
   background:rgba(0,0,0,.18);
   color:rgba(255,255,255,.92);
   display:grid;
   place-items:center;
   cursor:pointer;
   z-index:2;
   transition:background .2s ease, transform .2s ease;
 }
 .slider-arrow:hover{background:rgba(0,0,0,.28); transform:translateY(-50%) scale(1.03);}
 .slider-arrow.prev{left:12px;}
 .slider-arrow.next{right:12px;}
.slider-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.0) 30%, rgba(0,0,0,.35) 100%);
}
.slider-dots{
  position:absolute;
  left:14px;
  bottom:14px;
  display:flex;
  gap:8px;
}
.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(255,255,255,.55);
  cursor:pointer;
}
.dot.active{background:var(--orange); border-color:var(--orange);}

.marquee{
  position:relative;
  border-top:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  overflow:hidden;
}
.marquee .track{
  display:flex;
  width:max-content;
  gap:42px;
  padding:12px 0;
  animation: marquee 18s linear infinite;
}
.marquee .item{font-weight:800; color:rgba(255,255,255,.92); letter-spacing:.2px; white-space:nowrap;}
@keyframes marquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}

.feature-block{
  background: radial-gradient(900px 320px at 10% 20%, rgba(255,140,0,.18), transparent 60%),
              radial-gradient(900px 320px at 80% 60%, rgba(226,31,38,.16), transparent 60%),
              linear-gradient(135deg, #ffffff, #f5f7fb);
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow-sm);
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:center;
}
.feature-block h3{margin:0 0 10px 0; font-size:22px;}
.feature-block p{margin:0; color:rgba(15,23,42,.72); font-weight:600; line-height:1.6;}
.feature-media{border-radius:20px; overflow:hidden; border:1px solid rgba(15,23,42,.08);}
.feature-media img{width:100%; height:260px; object-fit:cover;}

.icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(26,54,93,.05);
  color:var(--navy);
  margin-bottom:12px;
}
.icon svg{width:24px; height:24px;}

.form{
  background:var(--card);
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  box-shadow:var(--shadow-sm);
  padding:18px;
}
.field{display:flex; flex-direction:column; gap:8px; margin-bottom:12px;}
.field label{font-weight:800; font-size:13px; color:rgba(15,23,42,.80);}
.field input, .field textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  padding:12px 12px;
  font:inherit;
  outline:none;
  background:#fff;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus{border-color:rgba(26,54,93,.55); box-shadow:0 0 0 4px var(--ring);}
.error{color:var(--red); font-weight:800; font-size:12px; display:none;}

.footer{
  background: radial-gradient(900px 420px at 15% 10%, rgba(255,140,0,.12), transparent 55%),
              radial-gradient(900px 420px at 85% 40%, rgba(226,31,38,.10), transparent 55%),
              linear-gradient(135deg, #0b2347, var(--navy));
  color:rgba(255,255,255,.86);
}
.footer-top{padding:44px 0 18px 0;}

.footer-grid{
  display:grid;
   gap:18px;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
.footer h3{margin:0 0 10px 0; color:var(--white); font-size:16px;}
.footer p{margin:0; line-height:1.7; font-weight:600; color:rgba(255,255,255,.82);}
.footer a{color:rgba(255,255,255,.88); font-weight:700;}
.footer a:hover{color:var(--white); text-decoration:underline; text-underline-offset:3px;}
.footer ul{margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);
  padding:14px 0;
  color:rgba(255,255,255,.70);
  font-weight:700;
  font-size:13px;
}



.footer-logo {
  display: block;
  height: 52px;
  width: auto;
  margin: 0 auto 14px auto;
    margin-bottom: 10px;
}

.footer-brand {
  max-width: 280px;
  text-align: center;
}
.footer-logo {
  height: 55px;
  width: auto;
  margin-bottom: 14px;
  align-items: center;
}

.footer-brand-text {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}



.footer-brand-year {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #ffffff;
}

/* ICON BASE STYLE */
.footer-contact i {
  font-size: 16px;
  min-width: 18px;
  margin-top: 3px;
}

/* ICON COLORS (LIKE YOUR IMAGE) */
.footer-contact li.phone i {
  color: #ff5c5c; /* red/pink phone */
}

.footer-contact li.email i {
  color: #b388ff; /* purple mail */
}

.footer-contact li.address i {
  color: #ff9800; /* orange location */
}

/* LINKS */
.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Mobile alignment */
@media (max-width: 768px) {
  .footer-brand {
    text-align: center;
    margin: 0 auto;
  }
}

.map{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  height:190px;
}
.map iframe{width:100%; height:100%; border:0;}

/* Floating Action Buttons */
.floating {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  pointer-events: none;
  /* Ensure buttons don't overlap with scrollbar */
  padding-right: env(safe-area-inset-right);
}

/* Base button styles for all floating buttons */
.float-btn, .whatsapp-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  text-decoration: none;
  color: inherit;
  pointer-events: auto;
}

/* Hover and active states */
.float-btn:hover, .whatsapp-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.float-btn:active, .whatsapp-toggle:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Phone call button */
.float-btn.call {
  background: #25D366;
  border: none;
  order: 2;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.float-btn.call:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.float-btn.call svg {
  stroke: #fff;
  width: 24px;
  height: 24px;
}

/* WhatsApp button */
.whatsapp-toggle {
  background: #25D366;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  order: 1;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.whatsapp-toggle:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-toggle i {
  font-size: 28px;
  color: white;
}

/* Back to top button */
.float-btn.top {
  display: none;
  background: var(--navy);
  border: none;
  order: 0;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.float-btn.top.show {
  display: grid;
}

.float-btn.top svg {
  stroke: #fff;
  width: 22px;
  height: 22px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating {
    right: max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    gap: 15px;
  }
  
  .float-btn, .whatsapp-toggle {
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-toggle i {
    font-size: 26px;
  }
  
  .float-btn svg {
    width: 22px;
    height: 22px;
  }
}

.reveal{opacity:0; transform:translateY(14px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in-view{opacity:1; transform:translateY(0);}

.price{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  margin:10px 0 12px 0;
}

/* Service Cards */
.service-card {
  background: var(--card);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--navy);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(26, 54, 93, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--navy);
  color: white;
  transform: scale(1.1);
}

.service-icon i {
  font-size: 28px;
  color: var(--navy);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
  color: white;
}

.service-card h3 {
  color: var(--navy);
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-card {
    padding: 20px 15px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 24px;
  }
  
  .service-card h3 {
    font-size: 16px;
  }
  
  .service-card p {
    font-size: 13px;
  }
}

.price strong{font-size:18px;}
.price span{color:var(--muted); font-weight:700; font-size:13px;}
 .price{
   display:flex;
   align-items:baseline;
   justify-content:space-between;
   gap:10px;
   margin:10px 0 12px 0;
 }
 .price strong{font-size:18px;}
 .price span{color:var(--muted); font-weight:700; font-size:13px;}

 .cart{
   display:flex;
   flex-direction:column;
   gap:12px;
 }
 .cart-row{
   background:var(--card);
   border:1px solid rgba(15,23,42,.08);
   border-radius:20px;
   box-shadow:var(--shadow-sm);
   padding:12px;
   display:grid;
   grid-template-columns: 90px 1fr 110px 120px 120px;
   gap:12px;
   align-items:center;
 }
 .cart-media{width:90px; height:70px; border-radius:16px; overflow:hidden; border:1px solid rgba(15,23,42,.08);}
 .cart-media img{width:100%; height:100%; object-fit:cover;}
 .cart-name{font-weight:900;}
 .cart-price{color:var(--muted); font-weight:800; margin-top:4px;}
 .cart-qty input{
   width:100%;
   border-radius:14px;
   border:1px solid rgba(15,23,42,.14);
   padding:10px 10px;
   font:inherit;
   font-weight:800;
 }
 .cart-line{font-weight:900; text-align:right;}
 .cart-remove{display:flex; justify-content:flex-end;}

 .checkout-row{
   display:flex;
   align-items:center;
   justify-content:space-between;
   gap:10px;
   padding:8px 0;
   font-weight:800;
 }

.small-note{color:var(--muted); font-weight:700; font-size:13px; line-height:1.6;}

@media (max-width: 980px){
  .hero-home .hero-wrap{grid-template-columns:1fr;}
  .slider{order:-1;}
  .grid-3{grid-template-columns:repeat(2, minmax(0,1fr));}
  .grid-4{grid-template-columns:repeat(2, minmax(0,1fr));}
  .feature-block{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .cart-row{grid-template-columns: 70px 1fr;}
  .cart-line{text-align:left;}
  .cart-remove{justify-content:flex-start;}
}

@media (max-width: 720px){
  .nav{display:none;}
  .hamburger{display:inline-block;}
  .brand{min-width:auto;}
  .page-hero h1{font-size:32px;}
  .hero-home h1{font-size:34px;}
  .slide img{height:280px;}
  .grid-2{grid-template-columns:1fr;}
  .grid-3{grid-template-columns:1fr;}
  .grid-4{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .cart-row{grid-template-columns: 70px 1fr;}
  .cart-line{text-align:left;}
  .cart-remove{justify-content:flex-start;}

  .section{padding:42px 0;}
  .page-hero .hero-inner{padding:44px 0 18px 0;}
  .hero-home .hero-wrap{padding:44px 0 18px 0;}
  .hero-home p{font-size:14px;}
  .hero-cta{flex-direction:column;}
  .hero-cta .btn{width:100%;}

  .cart-row{gap:10px;}
  .cart-qty, .cart-line, .cart-remove{grid-column:1 / -1;}

  .floating {
    right: 12px;
    bottom: 12px;
  }
  
  .float-btn {
    width: 48px;
    height: 48px;
  }
  
  .float-btn svg {
    width: 20px;
    height: 20px;
  }
  
}

@media (min-width: 981px){
  .slide img{height:clamp(9000px, 1400vh, 20000px);}
  .hero-home .hero-wrap{padding:200px 0 150px 0;}
}










.top-info-strip {
  background-color: #0b2347;
  color: #ffffff;
  font-size: 13px;
}

.top-info-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info-left span,
.top-info-right span {
  margin-right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-info-strip i {
  font-size: 13px;
}

/* Mobile */
@media (max-width: 768px) {
  .top-info-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .top-info-left span {
    margin-right: 0;
  }
}










.hero-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-center .breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-center .separator {
  opacity: 0.6;
}






/* WhatsApp Floating Toggle - Styles moved to main floating buttons section */





/* About Page */


/* About intro section */
/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  padding: 1rem;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  line-height: 1.2;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.features-list {
  margin: 2rem 0;
}

.features-list p {
  margin: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.features-list i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.about-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  min-height: 400px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.about-img:hover img {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text {
    text-align: center;
    padding: 0;
  }
  
  .about-text .section-title {
    text-align: center;
  }
  
  .features-list {
    text-align: left;
    max-width: 300px;
    margin: 2rem auto;
  }
  
  .about-img {
    min-height: 300px;
  }
}




/* who we are */


/* Ensure section titles are centered */
.section-title {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Specific override for the Who We Are section */
#who-we-are .section-title {
  text-align: center !important;
  margin: 0 auto 1.5rem !important;
}







/* Vision & Mission Section */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vision-card,
.mission-card {
  background: #fff;
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.vision-card h3,
.mission-card h3 {
  text-align: center;
  margin-bottom: 1.2rem;
  color: var(--heading-color);
  font-size: 1.5rem;
}

.vision-card p {
  color: var(--text-color);
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.mission-list i {
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
  
  .vision-card,
  .mission-card {
    padding: 1.8rem;
  }
}




/* Hero Section Centering */
.page-hero {
  display: flex;
  align-items: center;
  min-height: 300px; /* Adjust height as needed */
  text-align: center;
}

.hero-inner {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 1rem 0;
  width: 100%;
  max-width: 800px;
}

.page-hero p {
  margin: 0 0 1.5rem 0;
  max-width: 600px;
  width: 100%;
}

.breadcrumbs {
  justify-content: center;
  margin-top: 1rem;
}

/* Ensure text alignment for all direct children */
.page-hero > .container > * {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-hero {
    min-height: 250px;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .page-hero p {
    font-size: 1.1rem;
  }
}














/* Quick Access Section */
.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.quick-access-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 2rem 1rem;
  text-align: center;
  color: var(--navy);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.quick-access-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.quick-access-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  display: block;
}

/* About Snapshot */
.about-snapshot {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.about-snapshot .btn {
  margin-top: 1.5rem;
}

/* Vision & Mission */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vision-mission-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.vision-mission-card:hover {
  transform: translateY(-5px);
}

.vision-mission-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.vision-mission-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--navy), #0b2347);
  color: white;
  padding: 4rem 1rem;
  border-radius: var(--radius);
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .quick-access-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vision-mission-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}




/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.testimonial-content {
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-content .stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1.5rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--navy);
  font-size: 2rem;
}

.author-info h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1.1rem;
}

.author-info p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    margin-bottom: 1.5rem;
  }
}




/* Office Hours & Visiting Info */
.office-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.info-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.info-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.info-card h3 {
  color: var(--navy);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.info-card h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.info-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
}

.info-list li:last-child {
  border-bottom: none;
}

.holiday-note {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin: 1rem 0 0;
}

.map-container {
  margin-top: 2rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  display: block;
  width: 100%;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .office-info-grid {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    margin-top: 1rem;
  }
}