/* --- Global Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8fafc;
  color: #334155;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
padding: 15px;

}

/* --- Top Bar --- */
.top-bar {
  background-color: #0b1d3a;
  color: #cbd5e1;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info span {
  margin-right: 20px;
}

.top-info i {
  color: #f97316;
  margin-right: 5px;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-quote {
  background-color: #f97316;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

/*body{
line-height:1.8;
color:#333;
}*/

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.page-banner{
background:#0F2547;
color:#fff;
padding:90px 20px;
text-align:center;
}

.page-banner h1{
font-size:48px;
margin-bottom:15px;
}

.about-company{
padding:80px 0;
}

.about-grid{
display:grid;
grid-template-columns: 100%;
/*grid-template-columns:1fr;*/
/*gap:60px;*/
align-items:center;
}

.about-image img{
width:100%;
border-radius:12px;
}

.about-content span{
color:#ff6b1a;
font-weight:600;
}

.about-content h2{
font-size:24px;
margin:8px 0;
color:#0F2547;
}

.vision-mission{
background:#f7f7f7;
padding:60px 0;
}

.vm-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.box{
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.box h3{
margin-bottom:20px;
color:#0F2547;
}

.counter-section{
background:#ff6b1a;
padding:70px 0;
color:#fff;
}

.counter-section .container{
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
gap:30px;
}

.counter{
font-size:48px;
font-weight:700;
}


.title{
text-align:center;
margin-bottom:50px;
}


.cta{
background:#0F2547;
padding:40px 20px;
text-align:center;
color:#fff;
}

.cta a{
display:inline-block;
margin-top:25px;
background:#ff6b1a;
padding:14px 35px;
text-decoration:none;
color:#fff;
border-radius:6px;
}

@media(max-width:768px){

.about-grid,
.vm-grid,
.counter-section .container,
.why-grid{
grid-template-columns:1fr;
}

.about-content h2{
font-size:28px;
}

}



.what-we-do-section {
    width: 100%;
    padding: 40px 20px;
    background: #f4f7fb;
    overflow: hidden;
}

.what-we-do-section .container {
    max-width: 1200px;
    margin: auto;
}


/* ================= GRID ================= */

.what-we-do-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}


/* ================= LEFT CONTENT ================= */

.what-we-do-content {
    padding-right: 15px;
}

.what-we-do-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff4ec;
    border-radius: 14px;
    margin-bottom: 20px;
}

.what-we-do-icon i {
    font-size: 32px;
    color: #ef4d2f;
}


/* Heading */

.what-we-do-content h2 {
    font-size: 27px;
    font-weight: 700;
    color: #0F2547;
    margin: 0 0 18px;
    line-height: 1.2;
}


/* Paragraph */

.what-we-do-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #526275;
    margin: 0 0 15px;
}


/* ================= RIGHT CARDS ================= */

.what-we-do-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* Card */

.what-we-do-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 16px;
    background: rgba(255,255,255,.85);
    border: 1px solid #ccd8e1;
    border-radius: 10px;
    transition: all .35s ease;
}


/* Hover */

.what-we-do-card:hover {
    transform: translateY(-4px);
    border-color: #1485b8;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}


/* Number */

.feature-number {
    min-width: 36px;
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0F2547;
    color: #fff;

    border-radius: 9px;

    font-size: 15px;
    font-weight: 700;
}


/* Card Content */

.feature-content {
    flex: 1;
}

.feature-content h3 {
    margin: 2px 0 6px;

    font-size: 14px;
    font-weight: 700;

    color: #0F2547;
}
 
.feature-content p {
    margin: 0;

    font-size: 13px;
    line-height: 1.6;

    color: #5b6673;
}


/* ================= ANIMATION ================= */

.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all .8s ease;
}

.reveal-left {
    transform: translateX(-45px);
}

.reveal-right {
    transform: translateX(45px);
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}


/* ================= TABLET ================= */

@media (max-width: 991px) {

    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .what-we-do-content {
        padding-right: 0;
    }

    .what-we-do-content h2 {
        font-size: 25px;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .what-we-do-section {
        padding: 35px 15px;
    }

    .what-we-do-grid {
        gap: 28px;
    }

    .what-we-do-icon {
        width: 55px;
        height: 55px;
    }

    .what-we-do-icon i {
        font-size: 27px;
    }

    .what-we-do-content h2 {
        font-size: 23px;
    }

    .what-we-do-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .what-we-do-card {
        padding: 14px;
        gap: 12px;
    }

    .feature-number {
        min-width: 34px;
        width: 34px;
        height: 34px;
    }

    .feature-content h3 {
        font-size: 13px;
    }

    .feature-content p {
        font-size: 12px;
    }

}

/* --- Navbar --- */
.navbar {
 /* background-color: #0f2b5c;*/
  /*padding: 15px 0;*/
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.site-logo img{
    max-height:80px;
    width:auto;
}
.logo-bold {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #f97316;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: #94a3b8;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f97316;
}

/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-choose-section {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    background:
        linear-gradient(
            rgba(244,248,252,0.96),
            rgba(244,248,252,0.96)
        );
    overflow: hidden;
}


/* Background Decorative Circle */

.why-choose-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(10, 126, 180, 0.06);
    top: -180px;
    left: -180px;
}

.why-choose-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(245, 128, 32, 0.05);
    right: -150px;
    bottom: -180px;
}


/* =====================================================
   CONTAINER
===================================================== */

.why-choose-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}


/* =====================================================
   HEADING
===================================================== */

.why-choose-heading {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 45px;
}


.why-small-title {
    display: inline-block;
    margin-bottom: 10px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #0F2547;
}


.why-choose-heading h2 {
    margin: 0 0 15px;

    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;

    color: #152d3d;
}


.why-choose-heading h2 span {
    color: #0F2547;
}


.why-choose-heading p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #647484;
}


/* =====================================================
   GRID
===================================================== */

.why-choose-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;
}


/* =====================================================
   CARD
===================================================== */

.why-card {
    position: relative;

    padding: 27px 25px;

    background: rgba(255,255,255,0.95);

    border: 1px solid #d8e2e9;

    border-radius: 14px;

    min-height: 245px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


/* Top Blue Line */

.why-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: #0F2547;

    transition: width .4s ease;
}


.why-card:hover::before {
    width: 100%;
}


.why-card:hover {

    transform: translateY(-7px);

    border-color: #b8d2df;

    box-shadow:
        0 15px 35px rgba(20, 70, 95, .10);
}


/* =====================================================
   CARD TOP
===================================================== */

.why-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 20px;
}


/* =====================================================
   ICON
===================================================== */

.why-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eef7fb;

    color: #0F2547;

    font-size: 22px;

    transition: all .35s ease;
}


.why-card:hover .why-icon {

    background: #0F2547;

    color: #fff;

    transform: scale(1.06);
}


/* =====================================================
   NUMBER
===================================================== */

.why-number {

    font-size: 13px;

    font-weight: 700;

    color: #a2b0ba;

    letter-spacing: 1px;
}


/* =====================================================
   CARD HEADING
===================================================== */

.why-card h3 {

    margin: 0 0 10px;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 700;

    color: #0F2547;
}


/* =====================================================
   CARD TEXT
===================================================== */

.why-card p {

    margin: 0;

    font-size: 14px;

    line-height: 1.7;

    color: #5c6b78;
}


/* =====================================================
   SCROLL ANIMATION
===================================================== */

.reveal-card {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}


.reveal-card.show {

    opacity: 1;

    transform: translateY(0);
}


/* Stagger Effect */

.reveal-card:nth-child(1) {
    transition-delay: .05s;
}

.reveal-card:nth-child(2) {
    transition-delay: .10s;
}

.reveal-card:nth-child(3) {
    transition-delay: .15s;
}

.reveal-card:nth-child(4) {
    transition-delay: .20s;
}

.reveal-card:nth-child(5) {
    transition-delay: .25s;
}

.reveal-card:nth-child(6) {
    transition-delay: .30s;
}

.reveal-card:nth-child(7) {
    transition-delay: .35s;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .why-choose-section {
        padding: 65px 20px;
    }

    .why-choose-heading h2 {
        font-size: 31px;
    }

    .why-choose-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .why-choose-section {
        padding: 50px 15px;
    }

    .why-choose-heading {
        margin-bottom: 30px;
    }

    .why-choose-heading h2 {
        font-size: 27px;
    }

    .why-choose-heading p {
        font-size: 14px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        min-height: auto;
        padding: 23px 20px;
    }

    .why-card h3 {
        font-size: 17px;
    }

    .why-card p {
        font-size: 13px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .why-choose-heading h2 {
        font-size: 24px;
    }

    .why-card {
        padding: 20px 17px;
    }

    .why-icon {
        width: 46px;
        height: 46px;
        font-size: 19px;
    }

}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, #0f2b5c 0%, #1e40af 100%);
  color: #fff;
  padding: 40px 0 50px 0;
}

.hero-container {
  display: grid;
  /*grid-template-columns: 1fr 1fr;*/
  gap: 40px;
  align-items: center;
}

.tagline {
  background-color: rgba(249, 115, 22, 0.2);
  color: #fdba74;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-text h1 span {
  color: #f97316;
}

.hero-text p {
  color: #cbd5e1;
  margin-bottom: 25px;
  font-size: 15px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary {
  background-color: #f97316;
  color: #fff;
}

.btn-primary:hover {
  background-color: #ea580c;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Box Right */
.hero-categories-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
}

.hero-categories-box h3 {
  font-size: 12px;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 15px;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.category-tags a {
  background-color: rgba(255, 255, 255, 0.15);
  color: #f1f5f9;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  transition: 0.2s;
}

.category-tags a:hover {
  background-color: #f97316;
}

.hero-highlights {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  font-size: 12px;
  color: #cbd5e1;
}



/* --- Floating Info Strip --- */
.info-strip {
  background-color: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 15px 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.info-strip-content {
  display: flex;
  justify-content: space-around;
  font-weight: 600;
  color: #475569;
}

.info-strip i {
  color: #10b981;
  margin-right: 8px;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin: 60px 0 40px 0;
}

.sub-heading {
  color: #f97316;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.section-header h2 {
  font-size: 28px;
  color: #0F2547;
  margin: 5px 0 10px 0;
}

.section-header p {
  color: #64748b;
  font-size: 14px;
}

/* --- Category Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.cat-card {
  height: 250px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.cat-card:hover {
  transform: translateY(-5px);
}

/* Placeholder gradients to simulate background images */
/* --- Updated Background Images / Gradients for Category Cards --- */
.bg-stationery   { background-image: linear-gradient(to top, rgba(15,23,42,0.92), rgba(15,23,42,0.25)), url('https://images.pexels.com/photos/33738528/pexels-photo-33738528.jpeg?w=500'); }
.bg-peripherals  { background-image: linear-gradient(to top, rgba(15,23,42,0.92), rgba(15,23,42,0.25)), url('https://images.pexels.com/photos/37148217/pexels-photo-37148217.jpeg?w=500'); }
.bg-housekeeping { background-image: linear-gradient(to top, rgba(15,23,42,0.92), rgba(15,23,42,0.25)), url('https://images.pexels.com/photos/34516664/pexels-photo-34516664.jpeg?w=500'); }
.bg-packaging    { background-image: linear-gradient(to top, rgba(15,23,42,0.92), rgba(15,23,42,0.25)), url('https://images.pexels.com/photos/3846183/pexels-photo-3846183.jpeg?w=500'); }
.bg-pantry       { background-image: linear-gradient(to top, rgba(15,23,42,0.92), rgba(15,23,42,0.25)), url('https://images.pexels.com/photos/35285854/pexels-photo-35285854.jpeg?w=500'); }
.bg-tools        { background-image: linear-gradient(to top, rgba(15,23,42,0.92), rgba(15,23,42,0.25)), url('https://images.pexels.com/photos/30486958/pexels-photo-30486958.jpeg?w=500'); }
.bg-spares       { background-image: linear-gradient(to top, rgba(15,23,42,0.92), rgba(15,23,42,0.25)), url('https://images.unsplash.com/photo-1612815154858-60aa4c59eaa6?w=500'); }
.bg-hardware     { background-image: linear-gradient(to top, rgba(15,23,42,0.92), rgba(15,23,42,0.25)), url('https://images.pexels.com/photos/28867253/pexels-photo-28867253.jpeg?w=500'); }

/* Newly Added Categories */
.bg-cctv        { background-image: linear-gradient(to top, rgba(15,23,42,0.92), rgba(15,23,42,0.25)), url('https://images.pexels.com/photos/4740157/pexels-photo-4740157.jpeg?w=500'); }
.bg-gadgets     { background-image: linear-gradient(to top, rgba(15,23,42,0.92), rgba(15,23,42,0.25)), url('https://images.pexels.com/photos/17689342/pexels-photo-17689342.jpeg?w=500'); }
.bg-electronics { background-image: linear-gradient(to top, rgba(15,23,42,0.92), rgba(15,23,42,0.25)), url('https://images.pexels.com/photos/4044797/pexels-photo-4044797.jpeg?w=500'); }

.bg-electrical  { background-image: linear-gradient(to top, rgba(15,23,42,0.92), rgba(15,23,42,0.25)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=500'); }
.card-overlay {
  position: absolute;
  bottom: 0;
  padding: 20px;
  color: #fff;
}

.card-overlay h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.card-overlay p {
  font-size: 12px;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.card-link {
  font-size: 13px;
  font-weight: 600;
  color: #f97316;
}

/* --- Services Section --- */
.services-section {
  background-color: #F3F4F6;
  padding: 10px 0 40px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background-color: #fff;
  padding:5px 25px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  position: relative;
}

.service-icon {
  font-size: 24px;
  color: #0f2b5c;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 16px;
  color: #0F2547;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 15px;
}

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  background-color: #fff7ed;
  color: #c2410c;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #ffedd5;
}

/* --- Testimonials Section --- */
/* --- Testimonials Slider Styles --- */
.testimonials-section {
  padding: 20px 0 30px 0;
  position: relative;
}

.testimonial-slider-container {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-slider-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 10px 5px; /* Prevent box-shadow cropping */
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}

/* Individual Card Sizing for Slider (Shows 3 cards at a time on desktop) */
.testimonial-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #f59e0b;
  margin-bottom: 12px;
  font-size: 16px;
}

.quote {
  font-size: 13.5px;
  color: #475569;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  background-color: #0f2b5c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.client-info h4 {
  font-size: 14px;
  color: #0F2547;
  margin: 0;
}

.client-info span {
  font-size: 11px;
  color: #94a3b8;
  display: block;
}

/* --- Slider Arrow Buttons --- */
.slider-btn {
  background-color: #fff;
  border: 1px solid #cbd5e1;
  color: #0f2b5c;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background-color: #f97316;
  color: #fff;
  border-color: #f97316;
}

.prev-btn {
  left: -22px;
}

.next-btn {
  right: -22px;
}

/* --- Dots Navigation --- */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #f97316;
  width: 24px;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 20px) / 2); /* 2 cards on tablet */
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%; /* 1 card on mobile */
  }
}
/* --- Footer --- */
footer {
  background: #060E1E;
  color: #7A90B0;
  font-size: 13px;
}

.footer-main {
  max-width: 1280px;
  margin: auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  line-height: 1.7;
  max-width: 260px;
  font-size: 13px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #7A90B0;
  text-decoration: none;
  transition: color .2s;
  font-size: 13px;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  max-width: 1280px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a {
  color: #7A90B0;
  text-decoration: none;
  font-size: 12px;
  transition: color .2s;
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* --- WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
}
/* --- Dropdown Menu Styling --- */

/* Parent item position */
.nav-links li.dropdown {
  position: relative;
}

/* Chevron Icon spacing */
.dropdown-toggle i {
  font-size: 11px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

/* Rotate icon on hover */
.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

/* Hide menu by default */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background-color: #0f2b5c;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Show menu on hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown link styling */
.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #e2e8f0;
  font-size: 13.5px;
  font-weight: 400;
  transition: background-color 0.2s, color 0.2s, padding-left 0.2s;
}

/* Hover state for sub-items */
.dropdown-menu a:hover {
  background-color: rgba(249, 115, 22, 0.15);
  color: #f97316;
  padding-left: 25px; /* Subtle slide effect */
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-tooltip {
  background: white;
  color: #1A2340;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  pointer-events: none;
  border: 1px solid #eee;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
}

.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.wa-pulse {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: #FF6B1A;
  border-radius: 50%;
  border: 2px solid white;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: .7;
  }
}

@media(max-width:600px) {
  .wa-float {
    bottom: 18px;
    right: 18px;
  }
  .wa-btn {
    width: 52px;
    height: 52px;
  }
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero h1 {
    font-size: 30px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .topbar-left {
    display: none;
  }
  .header-inner {
    height: 60px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-num {
    font-size: 22px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .offer-inner {
    flex-direction: column;
  }
  .steps::before {
    display: none;
  }
}

/* ── BULK ORDER PAGE ── */
.bulk-order-grid {
  display: grid;

  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  padding: 40px 24px;
}

@media(max-width: 800px) {
  .bulk-order-grid {
    grid-template-columns: 1fr;
  }
}

.bulk-benefits-card {
  background: var(--navy-dark);
  color: white;
  border-radius: 16px;
  padding: 40px;
}

.bulk-benefits-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.benefit-list-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 107, 26, 0.2);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.benefit-content strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.benefit-content p {
  font-size: 13px;
  color: #89A8CC;
  line-height: 1.5;
}
.bulk-form-container {
  background: white;
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.bulk-form-container h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 24px;
}

/* ── SUBPAGE EXTRAS ── */
.page-banner {
  background:linear-gradient(135deg, #0f2b5c 0%, #1e40af 100%);
  border-top: 1px solid #F58020; 
  padding: 40px 24px;
  color: white;
  text-align: center;
}

.page-banner h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.breadcrumbs {
  font-size: 13px;
  color: #89A8CC;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.breadcrumbs a {
  color: #89A8CC;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: white;
}

.breadcrumbs span {
  opacity: 0.6;
}


/* ── CONTACT CTA ── */
.contact-cta {
  background: var(--navy-dark);
  padding: 64px 24px;
}

.contact-inner {
  max-width: 860px;
  margin: auto;
  text-align: center;
}

.contact-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.contact-inner p {
  color: #89A8CC;
  font-size: 16px;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.contact-form input, .contact-form select {
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: white;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  min-width: 220px;
  flex: 1;
  max-width: 260px;
  outline: none;
  transition: var(--transition-smooth);
}

.contact-form input::placeholder {
  color: #89A8CC;
}

.contact-form input:focus, .contact-form select:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,.12);
}

.contact-form select option {
  background: var(--navy);
  color: white;
}

.contact-form .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #89A8CC;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}

.contact-link:hover {
  color: var(--orange);
}

.contact-link-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
/* ── CUSTOM PROPERTIES / DESIGN SYSTEM ── */
:root {
  --navy: #0F2547;
  --navy-dark: #091A35;
  --navy-mid: #1A3A6B;
  --orange: #FF6B1A;
  --orange-dark: #E85A0A;
  --orange-light: #FFF0E8;
  --grey-bg: #F5F7FA;
  --grey-light: #EEF1F6;
  --grey-border: #DDE3ED;
  --text-dark: #1A2340;
  --text-mid: #4A5568;
  --text-light: #718096;
  --white: #FFFFFF;
  --green: #18A96A;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── BASE RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}
.site-logo img{
    max-height:80px;
    width:auto;
}
/* ── TOPBAR ── */
.topbar {
  background: var(--navy-dark);
  color: #B8C8E0;
  font-size: 13px;
  padding: 7px 0;
}

.topbar-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  gap: 20px;
}

.topbar-left span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.topbar-right {
  display: flex;
  gap: 16px;
}

.topbar-right a {
  color: #B8C8E0;
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-right a:hover {
  color: var(--orange);
}

/* ── HEADER ── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.header-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 18px;
  letter-spacing: -1px;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  color: white;
  line-height: 1.1;
}

.logo-text strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
}

.logo-text span {
  font-size: 10px;
  color: #89A8CC;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.search-bar {
  flex: 1;
  display: flex;
  max-width: 620px;
  height: 42px;
}

.search-bar input {
  flex: 1;
  border: none;
  padding: 0 16px;
  font-size: 14px;
  outline: none;
  border-radius: 6px 0 0 6px;
  background: white;
  color: var(--text-dark);
}

.search-bar button {
  background: var(--orange);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
  color: white;
  font-size: 18px;
  transition: background .2s;
}

.search-bar button:hover {
  background: var(--orange-dark);
}

.header-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.hdr-btn {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
}

.hdr-btn:hover {
  background: rgba(255,255,255,.2);
}

.hdr-btn.primary {
  background: var(--orange);
  border-color: var(--orange);
}

.hdr-btn.primary:hover {
  background: var(--orange-dark);
}

/* ── NAV ── */
nav {
  background: var(--navy-mid);
  position: relative;
}

.nav-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  gap: 4px;
  overflow-x: visible;
  position: relative;
}

.nav-inner::-webkit-scrollbar {
  display: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #B8D0F0;
  text-decoration: none;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover, .nav-link.active {
  color: white;
  border-bottom-color: var(--orange);
}

.nav-caret {
  font-size: 9px;
  margin-left: 2px;
  opacity: .7;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 16px 40px rgba(15,37,71,.22);
  border-radius: 0 0 12px 12px;
  min-width: 680px;
  padding: 24px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  z-index: 200;
  border-top: 3px solid var(--orange);
}

.nav-item:hover .mega-menu {
  display: grid;
}

.mega-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-col ul {
  list-style: none;
}

.mega-col ul li {
  margin-bottom: 9px;
}

.mega-col ul li a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
  display: block;
}

.mega-col ul li a:hover {
  color: var(--orange);
  padding-left: 3px;
}

.mega-footer {
  grid-column: 1/-1;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--grey-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mega-footer-text {
  font-size: 12px;
  color: var(--text-light);
}

.mega-footer a {
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

@media(max-width:900px) {
  .mega-menu {
    display: none !important;
  }
}




/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1A4A8A 100%);
  padding: 56px 24px 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255,107,26,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  left: 40%;
  bottom: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,107,26,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,26,.15);
  border: 1px solid rgba(255,107,26,.3);
  color: #FFAA70;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 .accent {
  color: var(--orange);
}

.hero-sub {
  color: #89A8CC;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: white;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-smooth);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 26, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,.35);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-smooth);
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: white;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.stat {
  color: white;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
}

.stat-label {
  font-size: 12px;
  color: #89A8CC;
  margin-top: 2px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 16px 20px;
  backdrop-filter: blur(8px);
}

.hero-card-title {
  color: #89A8CC;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-tag {
  background: rgba(255,255,255,.1);
  color: #D0E3FF;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.product-tag:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-1px);
}

.delivery-card {
  background: rgba(24,169,106,.12);
  border: 1px solid rgba(24,169,106,.25);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.delivery-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.delivery-text strong {
  color: white;
  display: block;
  font-size: 13px;
}

.delivery-text span {
  color: #89A8CC;
  font-size: 12px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--grey-bg);
  border-bottom: 1px solid var(--grey-border);
}

.trust-inner {
  max-width: 1280px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 500;
}

.trust-icon {
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ── SECTION BASE ── */
/*section {
  padding: 24px 10px;
}*/

.section-inner {
  max-width: 1280px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.section-sub {
  color: var(--text-mid);
  font-size: 16px;
  max-width: 520px;
  margin: auto;
}

/* ── PRODUCTS ── */
.products {
  background: var(--grey-bg);
}

.product-tabs {
  display: flex;
  gap: 4px;
  background: var(--grey-light);
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 32px;
}

.ptab {
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  color: var(--text-mid);
  font-family: 'Inter', sans-serif;
  transition: var(--transition-smooth);
}

.ptab.active {
  background: white;
  color: var(--navy);
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.product-card {
  background: white;
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 8px 28px rgba(15,37,71,.12);
  transform: translateY(-2px);
}

.product-img {
  height: 160px;
  background: var(--grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .4px;
}

.product-badge.green {
  background: var(--green);
}

.product-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
  min-height: 36px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
  margin-top: auto;
}

.price-main {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.price-unit {
  font-size: 11px;
  color: var(--text-light);
}

.price-old {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-moq {
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 10px;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.btn-cart {
  flex: 1;
  background: var(--navy);
  color: white;
  border: none;
  padding: 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition-smooth);
}

.btn-cart:hover {
  background: var(--orange);
}

.btn-wish {
  width: 32px;
  border: 1px solid var(--grey-border);
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

/* ── WHY US ── */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 28px;
  border: 1px solid var(--grey-border);
  border-radius: 14px;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background .25s;
}

.why-card:hover {
  box-shadow: 0 8px 28px rgba(15,37,71,.1);
}

.why-card:hover::before {
  background: var(--orange);
}

.why-num {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--grey-border);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.why-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-desc {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.how::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,26,.1) 0%, transparent 70%);
  pointer-events: none;
}

.how .section-title {
  color: white;
}

.how .section-sub {
  color: #89A8CC;
}

.how .section-eyebrow {
  color: var(--orange);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255,255,255,.1);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 24px 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
  transition: var(--transition-smooth);
}

.step:hover .step-num {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  transform: scale(1.05);
}

.step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.step-desc {
  color: #89A8CC;
  font-size: 13px;
  line-height: 1.6;
}

/* ── OFFER BANNER ── */
.offer-banner {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  padding: 48px 24px;
}

.offer-inner {
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.offer-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.offer-text p {
  color: rgba(255,255,255,.85);
  font-size: 15px;
}

.offer-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.offer-pill {
  background: rgba(255,255,255,.2);
  color: white;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.offer-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--orange-dark);
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.btn-ghost-white {
  background: transparent;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,.5);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,.15);
  border-color: white;
  transform: translateY(-2px);
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--grey-bg);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testi-card {
  background: white;
  border: 1px solid var(--grey-border);
  border-radius: 14px;
  padding: 28px;
  transition: var(--transition-smooth);
}

.testi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,37,71,.08);
}

.testi-stars {
  color: #F6C000;
  font-size: 14px;
  margin-bottom: 12px;
}

.testi-text {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.testi-role {
  font-size: 12px;
  color: var(--text-light);
}

/* ── BRANDS ── */
.brands {
  background: white;
  padding: 40px 24px;
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
}

.brands-label {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.brand-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-logo {
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: .5px;
  transition: var(--transition-smooth);
}

.brand-logo:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--white);
}

/* ── CONTACT CTA ── */
.contact-cta {
  background: var(--navy-dark);
  padding: 64px 24px;
}

.contact-inner {
  max-width: 860px;
  margin: auto;
  text-align: center;
}

.contact-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.contact-inner p {
  color: #89A8CC;
  font-size: 16px;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.contact-form input, .contact-form select {
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: white;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  min-width: 220px;
  flex: 1;
  max-width: 260px;
  outline: none;
  transition: var(--transition-smooth);
}

.contact-form input::placeholder {
  color: #89A8CC;
}

.contact-form input:focus, .contact-form select:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,.12);
}

.contact-form select option {
  background: var(--navy);
  color: white;
}

.contact-form .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #89A8CC;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}

.contact-link:hover {
  color: var(--orange);
}

.contact-link-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* ── FOOTER ── */
footer {
  background: #060E1E;
  color: #7A90B0;
  font-size: 13px;
}

.footer-main {
  max-width: 1280px;
  margin: auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  line-height: 1.7;
  max-width: 260px;
  font-size: 13px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #7A90B0;
  text-decoration: none;
  transition: color .2s;
  font-size: 13px;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  max-width: 1280px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a {
  color: #7A90B0;
  text-decoration: none;
  font-size: 12px;
  transition: color .2s;
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

.gstin-badge {
  background: rgba(24,169,106,.1);
  border: 1px solid rgba(24,169,106,.25);
  color: #5ECA9A;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

/* ── MAPS SECTION ── */
.maps-section {
  background: var(--navy-dark);
  padding: 0;
}

.maps-wrapper {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.maps-info {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.maps-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.maps-info p {
  color: #89A8CC;
  font-size: 14px;
  line-height: 1.7;
}

.maps-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
}

.maps-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.maps-detail-text strong {
  display: block;
  color: white;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.maps-detail-text span {
  color: #89A8CC;
  font-size: 12px;
  line-height: 1.5;
}

.maps-detail-text a {
  color: var(--orange);
  text-decoration: none;
  font-size: 12px;
}

.maps-detail-text a:hover {
  text-decoration: underline;
}

.map-embed {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
  filter: grayscale(20%);
}

@media(max-width:900px) {
  .maps-wrapper {
    grid-template-columns: 1fr;
  }
  .map-embed {
    height: 280px;
  }
  .maps-info {
    padding: 32px 24px;
  }
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-tooltip {
  background: white;
  color: #1A2340;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  pointer-events: none;
  border: 1px solid #eee;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
}

.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.wa-pulse {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: #FF6B1A;
  border-radius: 50%;
  border: 2px solid white;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: .7;
  }
}

@media(max-width:600px) {
  .wa-float {
    bottom: 18px;
    right: 18px;
  }
  .wa-btn {
    width: 52px;
    height: 52px;
  }
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero h1 {
    font-size: 30px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .topbar-left {
    display: none;
  }
  .header-inner {
    height: 60px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-num {
    font-size: 22px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .offer-inner {
    flex-direction: column;
  }
  .steps::before {
    display: none;
  }
}

/* ── SUBPAGE EXTRAS ── */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 70%);
  padding: 40px 24px;
  color: white;
  text-align: center;
}

.page-banner h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.breadcrumbs {
  font-size: 13px;
  color: #89A8CC;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.breadcrumbs a {
  color: #89A8CC;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: white;
}

.breadcrumbs span {
  opacity: 0.6;
}

.store-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  max-width: 1280px;
  margin: auto;
  padding: 40px 24px;
}

@media(max-width: 900px) {
  .store-layout {
    grid-template-columns: 1fr;
  }
}

.store-sidebar {
  background: white;
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 90px;
}

.sidebar-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}

.filter-group {
  margin-bottom: 24px;
}

.filter-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.filter-list {
  list-style: none;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-dark);
  cursor: pointer;
}

.filter-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
  cursor: pointer;
}

.store-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background: white;
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  padding: 12px 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.results-count {
  font-size: 13px;
  color: var(--text-light);
}

.sort-select {
  padding: 6px 12px;
  font-size: 13px;
  border: 1px solid var(--grey-border);
  border-radius: 4px;
  outline: none;
  background: white;
}

/* ── BULK ORDER PAGE ── */
.bulk-order-grid1 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  padding: 40px 24px;
}
.bulk-order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 24px;
}

@media(max-width: 800px) {
  .bulk-order-grid {
    grid-template-columns: 1fr;
  }
}

.bulk-benefits-card {
  background: var(--navy-dark);
  color: white;
  border-radius: 16px;
  padding: 40px;
}

.bulk-benefits-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.benefit-list-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 107, 26, 0.2);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.benefit-content strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.benefit-content p {
  font-size: 13px;
  color: #89A8CC;
  line-height: 1.5;
}

.bulk-form-container {
  background: white;
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.bulk-form-container h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 24px;
}

