/* ================= GLOBAL ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --orange:#FF7B20;
  --blue:#233E69;
  --text:#565656;
  --cream:#FAF5E4;
  --white:#ffffff;
  --black:#000000;
  --border:#eeeeee;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
}

img,
picture{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

button{
  font:inherit;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:70px 20px;
}

/* ================= BASE ================= */

.nav-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 20px;
}

/* ================= TOP NAV ================= */

.top-nav{
position:sticky;
top:0;
z-index:1000;
background:#fff;
border-bottom:1px solid #eee;
padding:14px 0;
margin-bottom: 0;
}

.logo{
height:85px;
}

.nav-right{
display:flex;
align-items:center;
gap:16px;
}

/* BUTTONS */

.corporate-btn,
.supplier-btn{
padding:10px 16px;
border-radius:8px;
border:none;
cursor:pointer;
font-weight:500;
transition:.3s;
white-space:nowrap;
}

.corporate-btn{
background:#e8eef7;
}

.corporate-btn:hover{
background:#233E69;
color:#fff;
}

.supplier-btn{
background:#f3f5f7;
}

.supplier-btn:hover{
background:#FF7B20;
color:#fff;
}

/* SIGNIN */

.signin{
display:flex;
align-items:center;
gap:6px;
padding:8px 12px;
border-radius:6px;
cursor:pointer;
transition:.3s;
}

.signin{
  display:flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
}

.signin:hover{
background:rgba(0,0,0,0.06);
}

/* ================= SUB NAV ================= */
.sub-nav{
position:fixed;
/* top:112px;  */
left:0;
width:100%;
z-index:999;
transition:transform 0.3s ease;
background:linear-gradient(to right,#f7f9fc,#ffffff);
border-bottom:1px solid #eee;
padding:10px 0;
}

/* .sub-nav{
position:sticky;
top:0;
z-index:998;
background:linear-gradient(to right,#f7f9fc,#ffffff);
border-bottom:1px solid #eee;
padding:10px 0;
margin:0;
} */

.tagline{
font-size:20px;
font-weight:700;
color:#233E69;
}

/* LINKS */

.sub-right{
display:flex;
align-items:center;
gap:30px;
}

.sub-right{
margin-right:20px;
}

.sub-right a,
.sub-right span{
color:#233E69;
font-weight:500;
cursor:pointer;
position:relative;
}

/* underline */

.sub-right a::after,
.sub-right span::after{
content:"";
position:absolute;
left:0;
bottom:-5px;
width:0;
height:2px;
background:#FF7B20;
transition:.25s;
}

.sub-right a:hover::after,
.dropdown:hover span::after{
width:100%;
}

/* ================= SUB NAV ANIMATION ================= */

.sub-nav{
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}
/* ================= DROPDOWN ================= */

.dropdown{
position:relative;
}

.dropdown-menu{
position:absolute;
top:100%;
left:0;
background:#fff;
border-radius:10px;
box-shadow:0 15px 30px rgba(0,0,0,0.1);
display:none;
flex-direction:column;
min-width:220px;
padding:8px 0;
}

.dropdown:hover .dropdown-menu{
display:flex;
}

.dropdown-menu a{
padding:12px 18px;
font-size:14px;
color:#333;
}

.dropdown-menu a:hover{
background:#f4f6f8;
color:#FF7B20;
}

/* ================= BURGER ================= */

.burger{
display:none;
font-size:22px;
cursor:pointer;
}

/* ================= BURGER LINK HOVER ================= */

.side-links a{
padding:10px 12px;
border-radius:6px;
transition:.25s;
display:block;
}

/* HOVER EFFECT */
.side-links a:hover{
background:#f3f5f7;
color:#FF7B20;
transform:translateX(4px);
}

/* ================= SIDE MENU ================= */

.side-menu{
position:fixed;
right:-320px;
top:0;
width:320px;
height:100%;
background:#fff;
transition:.4s;
z-index:1000;
overflow-y:auto;
}

.side-menu.active{
right:0;
}

.side-header{
background:#233E69;
color:#fff;
padding:16px 20px;
display:flex;
align-items:center;
justify-content:space-between;
}

/* LEFT GROUP (ICON + TEXT) */
.side-user{
display:flex;
align-items:center;
gap:12px;
}

.side-user i{
font-size:26px;
}

.side-user span{
font-size:16px;
font-weight:500;
}

/* CLOSE BUTTON */
.side-header button{
margin-left:20px; /* GAP FROM TEXT */
background:rgba(255,255,255,0.15);
border:none;
color:#fff;
width:34px;
height:34px;
border-radius:50%;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:.3s;
}

.side-header button:hover{
background:#fff;
color:#233E69;
}

.side-header{
background:#233E69;
color:#fff;
padding:18px 20px;
display:flex;
justify-content:space-between;
align-items:center;
}

.side-header span{
display:flex;
align-items:center;
gap:10px;
font-size:16px;
}

.side-header i{
font-size:26px; /* BIGGER ICON */
}
.side-links{
padding:20px;
display:flex;
flex-direction:column;
gap:14px;
}

.side-links a{
color:#233E69;
text-decoration:none;
font-size:16px;
}

.side-header button{
background:rgba(255,255,255,0.15);
border:none;
color:#fff;
font-size:16px;
width:32px;
height:32px;
border-radius:50%;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:.3s;
}

.side-header button:hover{
background:#fff;
color:#233E69;
}

.mobile-category-dropdown{
display:none;
flex-direction:column;
margin-top:10px;
border-left:2px solid #e5e7eb;
padding-left:12px;
gap:6px;
}

/* ACTIVE */
.mobile-category.active .mobile-category-dropdown{
display:flex;
}

/* CATEGORY ITEMS */
.mobile-category-dropdown a{
font-size:14px;
color:#555;
padding:8px 10px;
border-radius:6px;
transition:.25s;
}

/* HOVER LIKE NAVBAR */
.mobile-category-dropdown a:hover{
background:#f3f5f7;
color:#FF7B20;
transform:translateX(4px);
}

.mobile-category-dropdown{
display:none;
flex-direction:column;
gap:10px;
}

.mobile-category.active .mobile-category-dropdown{
display:flex;
}

.mobile-category-toggle{
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
font-weight:500;
padding:6px 0;
transition:.2s;
}

.mobile-category-toggle:hover{
color:#FF7B20;
}

.mobile-category-toggle{
padding:10px 12px;
border-radius:6px;
transition:.25s;
}

.mobile-category-toggle:hover{
background:#f3f5f7;
color:#FF7B20;
}


.mobile-category-dropdown{
animation:fadeIn .3s ease;
}

@keyframes fadeIn{
from{
opacity:0;
transform:translateY(-5px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.mobile-signin{
display:flex;
align-items:center;
justify-content:center;
gap:8px;
padding:10px;
border-radius:8px;
cursor:pointer;
transition:.3s;
margin-top:10px;
}

.mobile-signin:hover{
background:#f3f5f7;
}

/* ================= MOBILE BUTTON INTERACTION ================= */

.side-links button{
width:100%;
transition:.25s;
}

/* HOVER (for tablet/mouse devices) */
.side-links button:hover{
transform:translateY(-2px);
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

/* ACTIVE (for mobile touch) */
.side-links button:active{
transform:scale(0.97);
}

/* TOUCH FEEDBACK */

.side-links a:active,
.mobile-category-toggle:active{
background:#f3f5f7;
color:#FF7B20;
}

/* ================= MOBILE INTERACTION FIX ================= */

/* FORCE CLICK FEEDBACK */
.side-links a,
.mobile-category-toggle,
.side-links button{
-webkit-tap-highlight-color: transparent;
}

/* TOUCH FEEDBACK (MAIN FIX) */
.side-links a:active,
.mobile-category-toggle:active,
.mobile-category-dropdown a:active{
background:#f3f5f7 !important;
color:#FF7B20 !important;
transform:scale(0.98);
}

/* BUTTON TOUCH */
.side-links button:active{
transform:scale(0.96);
box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

@media (hover: none) {

.side-links a:active,
.mobile-category-toggle:active,
.mobile-category-dropdown a:active{
background:#f3f5f7;
color:#FF7B20;
transform:scale(0.98);
}

.side-links button:active{
transform:scale(0.96);
box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

}

.side-links a,
.mobile-category-toggle,
.mobile-category-dropdown a,
.side-links button{
-webkit-tap-highlight-color: transparent;
transition:all 0.2s ease;
}

/* ================= MOBILE INTERACTION FIX ================= */

/* FORCE CLICK FEEDBACK */
.side-links a,
.mobile-category-toggle,
.side-links button{
-webkit-tap-highlight-color: transparent;
}

/* TOUCH FEEDBACK (MAIN FIX) */
.side-links a:active,
.mobile-category-toggle:active,
.mobile-category-dropdown a:active{
background:#f3f5f7 !important;
color:#FF7B20 !important;
transform:scale(0.98);
}

/* BUTTON TOUCH */
.side-links button:active{
transform:scale(0.96);
box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.side-links a,
.mobile-category-toggle,
.mobile-category-dropdown a{
transition:all 0.2s ease;
}

/* FORCE ACTIVE STATE CLASS */
.touch-active{
background:#f3f5f7 !important;
color:#FF7B20 !important;
transform:scale(0.98);
}

/* BUTTON */
.touch-active-btn{
transform:scale(0.96);
box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

/* ================= ABOUT VIDEO SECTION ================= */

.about-video-section{
position:relative;
width:100%;
height:520px;
overflow:hidden;
background:#fff;
}

/* FULL BACKGROUND VIDEO */

.about-video-section video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:1;
}

/* OVERLAY CONTENT */

.about-overlay{
position:relative;
z-index:2;
height:100%;
display:flex;
align-items:center;
}

/* CONTENT BLOCK (FIXED WIDTH LEFT SIDE) */

/* ================= ABOUT CONTENT FINAL ================= */

.about-content{
max-width:820px; /* ✅ as you wanted */
padding-left:40px;
}

/* HEADING */

.about-content h2{
font-size:42px;
font-weight:700;
color:#233E69;
margin-bottom:18px;
}

/* PARAGRAPHS */

.about-content p{
font-size:15.5px;
line-height:1.75;
color:#5f6f85;
margin-bottom:18px;
max-width:720px; /* ✅ better readability */
}

/* HIGHLIGHT LINE */

.about-highlight{
font-size:18px;
font-weight:600;
color:#233E69;
margin-top:10px;
margin-bottom:22px;
max-width:700px;
}

/* BUTTON */

.orange-btn{
background:#FF7B20;
color:#fff;
padding:12px 20px;
border:none;
border-radius:6px;
font-size:14px;
cursor:pointer;
transition:.3s;
}

.orange-btn:hover{
transform:translateY(-2px);
box-shadow:0 6px 12px rgba(0,0,0,0.2);
}

/* ================= ANIMATION ================= */

.about-anim{
opacity:0;
transform:translateY(30px);
transition:all .6s ease;
}

.about-anim.show{
opacity:1;
transform:translateY(0);
}

/* ================= ABOUT CONTENT FINAL ================= */

.about-content{
max-width:820px; /* ✅ as you wanted */
padding-left:40px;
}

/* HEADING */

.about-content h2{
font-size:42px;
font-weight:700;
color:#233E69;
margin-bottom:18px;
}

/* PARAGRAPHS */

.about-content p{
font-size:15.5px;
line-height:1.75;
color:#5f6f85;
margin-bottom:18px;
max-width:720px; /* ✅ better readability */
}

/* HIGHLIGHT LINE */

.about-highlight{
font-size:18px;
font-weight:600;
color:#233E69;
margin-top:10px;
margin-bottom:22px;
max-width:700px;
}

/* BUTTON */

.orange-btn{
background:#FF7B20;
color:#fff;
padding:12px 20px;
border:none;
border-radius:6px;
font-size:14px;
cursor:pointer;
transition:.3s;
}

.orange-btn:hover{
transform:translateY(-2px);
box-shadow:0 6px 12px rgba(0,0,0,0.2);
}


/* ================= RESPONSIVE ================= */

/* Ultra Large Screens (1440px+) */
@media (min-width: 1440px) {
  .about-video-section {
    height: 600px;
  }

  .about-content {
    max-width: 900px;
    padding-left: 80px;
  }

  .about-content h2 {
    font-size: 48px;
  }

  .about-content p {
    font-size: 17px;
  }

  .about-highlight {
    font-size: 20px;
  }
}


/* Laptops (1024px - 1439px) */
@media (max-width: 1439px) {
  .about-video-section {
    height: 500px;
  }

  .about-content {
    padding-left: 40px;
  }

  .about-content h2 {
    font-size: 38px;
  }
}


/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
  .about-video-section {
    height: 480px;
  }

  .about-content {
    max-width: 100%;
    padding: 0 30px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 15px;
  }

  .about-highlight {
    font-size: 17px;
  }
}


/* Mobile (480px - 767px) */
@media (max-width: 767px) {
  .about-video-section {
    height: 420px;
  }

  .about-overlay {
    align-items: flex-end; /* better mobile UX */
    padding-bottom: 30px;
  }

  .about-content {
    padding: 0 20px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-highlight {
    font-size: 15px;
  }

  .orange-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}


/* Small Mobile (<480px) */
@media (max-width: 480px) {
  .about-video-section {
    height: 380px;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-content p {
    font-size: 13px;
  }

  .about-highlight {
    font-size: 14px;
  }

  .orange-btn {
    padding: 9px 14px;
    font-size: 12px;
  }
}

/* ================= TABLET FIX ONLY ================= */

@media (min-width: 768px) and (max-width: 1024px) {

  /* Reduce section width */
  .about-content {
    max-width: 600px;   /* 🔥 smaller content width */
    margin: 0 auto; 
    margin-left: 0px !important;    /* center it */
    padding: 0 20px;
  }

  /* Reduce overall section height slightly */
  .about-video-section {
    height: 460px;
  }

  /* Keep text inside nicely */
  .about-overlay {
    justify-content: center;
  }

  /* Add spacing below so it doesn't touch next section */
  .about-video-section {
    margin-bottom: 40px;  /* 🔥 IMPORTANT */
  }

  /* Slight font adjustment */
  .about-content h2 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 14.5px;
  }
}

/* ================= ANIMATION ================= */

.about-anim{
opacity:0;
transform:translateY(30px);
transition:all .6s ease;
}

.about-anim.show{
opacity:1;
transform:translateY(0);
}

/* OVERLAY */

.menu-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
backdrop-filter:blur(6px);
background:rgba(0,0,0,0.1);
display:none;
z-index:999;
}

.menu-overlay.active{
display:block;
}

/* ================= RESPONSIVE ================= */

/* DESKTOP */

.desktop-only{
display:flex;
}

.desktop-tablet{
display:flex;
}

.mobile-only{
display:none;
}

/* TABLET */

@media (max-width:1024px){

.desktop-only{
display:none !important;
}

.side-links a{
display:block !important;
}

.burger{
display:block;
}

}

/* MOBILE */

@media (max-width:768px){

.desktop-tablet{
display:none;
}

.mobile-only{
display:flex;
flex-direction:column;
gap:10px;
}

.logo{
height:60px;
}

.tagline{
font-size:16px;
text-align:center;
}

}

/* ================= HERO SLIDER ================= */

.hero-slider{
  position:relative;
  height:260px;
  overflow:hidden;
}

.hero-slider picture,
.hero-slider img{
  width:100%;
  height:100%;
}

.hero-slider{
position:relative;
overflow:hidden;
}

/* bottom shade */

.hero-slider::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:120px;

background:linear-gradient(
to bottom,
rgba(0,0,0,0) 0%,
rgba(0,0,0,0.08) 60%,
rgba(0,0,0,0.18) 100%
);

pointer-events:none;
}

.slide{
  width:100%;
  height:260px;
  object-fit:cover;
  display:none;
}

.slide.active{
  display:block;
}

.slider-dots{
  position:absolute;
  bottom:15px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:5;
}

.slider-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.5);
  cursor:pointer;
  transition:all .2s ease;
}

.slider-dots span.active{
  background:var(--white);
  transform:scale(1.2);
}

/* ================= ABOUT ================= */


.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-text h2{
  font-size:36px;
  color:var(--blue);
  margin-bottom:20px;
}

.about-text p{
  font-size:15px;
  margin-bottom:20px;
  max-width:520px;
}

.about-img{
  display:flex;
  justify-content:flex-end;
}

.about-img img{
  width:90%;
  max-width:480px;
  border-radius:8px;
}

.about-text.aos-init.aos-animate {
    justify-self: center;
}

/* ================= OFFERINGS SECTION ================= */

.offerings-section{
padding:50px 20px;
background:#fff;
}

/* CENTERED CONTAINER */
.offerings-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
position:relative;
}

/* CENTER LINE (visual balance) */
.offerings-container::before{
content:"";
position:absolute;
top:0;
left:50%;
width:1px;
height:100%;
background:#eee;
}

/* COLUMN */
.offerings-col{
padding:0 20px;
}

/* TITLE */
.section-title{
font-size:30px;
color:#233E69;
margin-bottom:25px;
position:relative;
}

/* ORANGE ACCENT */
.section-title::after{
content:"";
width:40px;
height:3px;
background:#FF7B20;
display:block;
margin-top:8px;
}

/* ITEM */
.offer-item{
display:flex;
gap:14px;
margin-bottom:20px;
align-items:flex-start;
transition:.3s;
}

/* ICON */
.offer-item i{
color:#FF7B20;
font-size:18px;
min-width:24px;
margin-top:4px;
}

/* TEXT */
.offer-item h4{
margin:0;
font-size:16px;
color:#233E69;
}

.offer-item p{
margin:4px 0 0;
font-size:14px;
color:#666;
}

/* HOVER EFFECT */
.offer-item:hover{
transform:translateX(6px);
}

/* REMOVE HUGE GAP */
@media (max-width:1024px){
.offerings-container{
gap:30px;
}
}

/* MOBILE */
@media (max-width:768px){

.offerings-container{
grid-template-columns:1fr;
}

.offerings-container::before{
display:none;
}

}

.offer-item{
opacity:0;
transform:translateY(30px);
transition:all .5s ease;
}
/* ================= STRENGTH ICONS ================= */

/* .strengths{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  text-align:center;
  margin-top:40px;
}

.strength{
  flex:1;
}

.strength img{
  width:85px;
  margin:auto;
  margin-bottom:12px;
  transition:transform .25s ease;
}

.strength:hover img{
  transform:translateY(-5px);
}

.strength p{
  font-size:14px;
  font-weight:500;
  color:var(--blue);
} */

/* ================= ICON REVEAL ================= */

/* .strength{
opacity:0;
transform:translateY(40px);
transition:all .6s ease;
}

.strength.visible{
opacity:1;
transform:translateY(0);
} */

/* ================= TRENDING PRODUCTS ================= */

/* .trending h2{
  text-align:center;
  font-size:32px;
  color:var(--blue);
  margin-bottom:40px;
}

#product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.product{
  border:1px solid var(--border);
  padding:22px;
  border-radius:8px;
  background:var(--white);
  text-align:center;
  transition:transform .25s ease, box-shadow .25s ease;
}

.product img{
  height:140px;
  object-fit:contain;
  margin-bottom:12px;
  margin-left:auto;
  margin-right:auto;
}

.product h4{
  margin-bottom:4px;
  font-size:16px;
}

.product:hover{
  box-shadow:0 12px 25px rgba(0,0,0,.08);
  transform:translateY(-4px);
} */


/* ================= MID BANNER ================= */

/* .full-banner,
.mid-banner{
width:100%;
height:420px;
overflow:hidden;
margin:60px 0;
position:relative;
}

.mid-banner video{
pointer-events:none;
}

.full-banner img,
.full-banner video,
.mid-banner img,
.mid-banner picture,
.mid-banner video{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* subtle zoom animation for image banner */

/* .full-banner img{
animation:bannerZoom 12s ease-in-out infinite alternate;
}

@keyframes bannerZoom{
0%{transform:scale(1);}
100%{transform:scale(1.06);}
} */


/* ================= CATEGORIES ================= */

.categories{
  text-align:center;
}

.categories h2{
  font-size:32px;
  color:var(--blue);
  margin-bottom:40px;
}

.category-grid,
.category-scroll{
  display:grid;
  gap:40px;
}

.category{
  text-align:center;
}

.category img{
  width:130px;
  margin:auto;
  margin-bottom:14px;
  transition:transform .25s ease;
}

.category:hover img{
  transform:scale(1.05);
}

.category p{
  font-weight:500;
  color:var(--blue);
  font-size:15px;
}

.category{
opacity:0;
transform:scale(.82);
filter:blur(6px);
transition:
transform .6s cubic-bezier(.22,.61,.36,1),
opacity .5s ease,
filter .5s ease;
}

.category.show{
opacity:1;
transform:scale(1);
filter:blur(0);
}

/* ================= BRAND STORE ================= */

.brands,
.brand-store{
  overflow:hidden;
  padding:60px 0;
  background:var(--white);
}

.brands h2,
.brand-store h2{
  text-align:center;
  font-size:32px;
  color:var(--blue);
  margin-bottom:35px;
}

.brand-track{
  display:flex;
  gap:80px;
  align-items:center;
  width:max-content;
  animation:scroll 25s linear infinite;
}

.brand-track img{
  height:40px;
  opacity:.6;
}

@keyframes scroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* ================= STATS ================= */

.stats{
  background:var(--cream);
  padding:70px 0;
 margin-top: 70px;
}

.stats-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
}

.stats-image img {
    width: 100%;
    max-width: 580px;
    max-height: 330px;
    border-radius: 8px;
}

.stats-content{
  max-width:480px;
}

.stats-content h2{
  font-size:36px;
  color:var(--blue);
  margin-bottom:14px;
}

.stats-content p{
  font-size:15px;
}

.stat-numbers{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
margin-top:30px;
}

.stat h3{
font-size:34px;
font-weight:700;
color:#233E69;
margin-bottom:6px;
}

.stat p{
font-size:14px;
color:#555;
}

@media(max-width:768px){

.stat-numbers{
grid-template-columns:repeat(2,1fr);
gap:25px;
text-align:center;
}

}

/* ================= CTA BANNER ================= */

/* .cta-banner-final,
.cta{
  position:relative;
  width:100%;
  height:420px;
  margin-top:60px;
  overflow:hidden;
}

.cta-bg{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cta-overlay,
.cta-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:var(--blue);
  max-width:700px;
  width:100%;
  padding:20px;
}

.cta-overlay h2,
.cta-content h2{
  font-size:34px;
  margin-bottom:15px;
}

.cta-overlay p,
.cta-content p{
  margin-bottom:25px;
  font-size:16px;
}

.final-cta{
  text-align:center;
  padding:110px 20px;
  background:#f4f7fb;
}

.final-cta h2{
  font-size:34px;
  color:var(--blue);
  margin-bottom:15px;
}

.final-cta p{
  margin-bottom:25px;
} */

/* ================= CTA REVEAL ================= */

/* .cta-title{
opacity:0;
transform:translateY(40px);
transition:all .7s cubic-bezier(.22,.61,.36,1);
}

.cta-sub{
opacity:0;
transform:translateY(30px);
transition:all .6s ease;
}

.cta-btn{
opacity:0;
transform:translateY(20px);
transition:all .5s ease;
}

/* visible state */

/* .cta-visible .cta-title{
opacity:1;
transform:translateY(0);
}

.cta-visible .cta-sub{
opacity:1;
transform:translateY(0);
transition-delay:.25s;
}

.cta-visible .cta-btn{
opacity:1;
transform:translateY(0);
transition-delay:.45s;
} */

/* button recurring animation */

/* @keyframes ctaPulse{

0%{transform:scale(1);}
50%{transform:scale(1.05);}
100%{transform:scale(1);}

}

.cta-visible .cta-btn{
animation:ctaPulse 2s ease-in-out infinite;
} */ */


/* ================= FOOTER BASE ================= */


.footer {
  background: #233E69;
  color: white;
  font-family: sans-serif;
}

.footer-col li i{
  color:#fff;
  margin-right:8px;
  width:16px;
}

/* ================= TOP SECTION ================= */

.footer-top {
  padding: 70px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ================= CURVE ================= */

/* ================= CURVED SHAPE ================= */

.footer-curve {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 550px;

  background: white;

  /* THIS creates curve instead of circle */
  border-top-right-radius: 200px;
  border-bottom-right-radius: 200px;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

/* LOGO */
.footer-logo {
  width: 350px;
}

/* ================= CTA ================= */

.footer-cta {
  text-align: right;
  max-width: 600px;
}

.footer-cta h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.footer-cta p {
  margin-bottom: 20px;
  opacity: 0.9;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

/* NAVBAR STYLE BUTTONS */
.btn {
  padding: 12px 22px;
  border-radius: 8px;
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background: #ff7b2b;
  color: #fff;
}

/* ================= MAIN ================= */

.footer-main {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  gap: 100px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* COLUMNS */
.footer-col {
  min-width: 180px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  text-decoration: none;
  color: white;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-col a:hover {
  opacity: 1;
}

/* HEADINGS */
.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

/* ================= BOTTOM ================= */

.footer-bottom {
  text-align: center;
  padding: 18px;
  font-size: 13px;
  opacity: 0.7;
}
.footer-curve.show {
  transform: translateX(0);
}

/* ================= ANIMATION ================= */

.footer-curve,
.footer-logo,
.footer-cta,
.footer-col {
  opacity: 0;
  transition: all 0.8s ease;
}

.footer-curve { transform: translateX(-60px); }
.footer-logo { transform: translateX(-30px) scale(0.9); }
.footer-cta { transform: translateX(60px); }
.footer-col { transform: translateY(30px); }

.show {
  opacity: 1;
  transform: translate(0,0) scale(1);
}

/* LOGO BREATH */
/* .footer-logo.show {
  animation: breathe 2.5s infinite ease-in-out;
} */

@keyframes breathe {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .footer-top-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
 padding-top:0;
  }

  .footer-cta {
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }
}
/* ================= TOP SECTION ================= */

.footer-top {
  padding: 60px 0 40px; /* reduced height */
}

.footer-top-inner {
  display: flex;
  margin-left: 0;
  align-items: center;
  justify-content: flex-end;
  margin-left:0 !important;
  max-width: 1100px; /* tighter container */
  margin: 0 auto;
  padding: 0 20px;
}

/* CURVE */
/* .footer-curve {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
} */

/* CTA */
.footer-cta {
  max-width: 520px;
}

.footer-cta h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.footer-cta p {
  margin-bottom: 16px;
}

/* BUTTONS */
.cta-buttons {
  gap: 12px;
}

.inner-btn{
  padding:12px 22px;
  border-radius:8px;
  font-size:14px;
  text-decoration:none;
  transition:0.3s;
}

/* PRIMARY */
.btn.primary{
  border:1px solid rgba(255,255,255,0.5);
  color:#fff;
  font-weight: 500;
}

.btn.primary:hover{
  background:#fff;
  color: #000;
  transform:translateY(-2px);
}

/* OUTLINE */
.btn.outline{
  background:#f3f5f7;
  color:#000;
  font-weight: 500;
}

.btn.outline:hover{
  background:#FF7B20;
  color:#fff;
}

/* ================= MAIN FOOTER ================= */

.footer-main {
  padding: 40px 0; /* reduced */
  display: flex;
  justify-content: center;
  gap: 80px; /* tighter spacing */
  max-width: 1000px;
  margin: 0 auto;
}

/* COLUMNS */
.footer-col {
  min-width: 160px;
}

/* TEXT */
.footer-col ul li {
  margin-bottom: 10px;
}

/* ================= BOTTOM ================= */

.footer-bottom {
  padding: 14px;
}

/* ================= DIVIDER ================= */

.footer-top {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-main {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-col h4 {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
}

.footer,
.footer-top,
.footer-main,
.footer-bottom {
  background: #233E69;
  color: white;
}

.footer-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* .footer-curve {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-30%, -50%);
  width: 180px;
  height: 180px;
  background: white;
  border-radius: 50%;
  z-index: 2;
} */

.footer-top-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.footer-cta {
  text-align: right;
  max-width: 600px;
}

.footer-main {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 50px 0;
}

.footer-top {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-main {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}


/* ================= CHAT BUTTON ================= */

.chat-btn{
position:fixed;
bottom:25px;
right:25px;
background:#FF7B20;
color:#fff;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:22px;
cursor:pointer;
box-shadow:0 6px 16px rgba(0,0,0,0.2);
z-index:1001;
}
/* ================= CHATBOT ================= */

.chatbot{
position:fixed;
bottom:95px;
right:25px;
width:340px;
height:480px;
background:#fff;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,0.2);
display:none;
flex-direction:column;
overflow:hidden;
z-index:1000;
animation:chatSlide .25s ease;
}
/* HEADER */

.chatbot-header{
background:#233E69;
color:#fff;
padding:14px 16px;
display:flex;
align-items:center;
justify-content:space-between;
font-weight:600;
}

.chatbot-title{
display:flex;
align-items:center;
gap:8px;
font-size:15px;
}

.chatbot-header button{
background:none;
border:none;
color:#fff;
font-size:18px;
cursor:pointer;
}

/* BODY */

.chatbot-body{
flex:1;
padding:16px;
overflow-y:auto;
display:flex;
flex-direction:column;
gap:10px;
min-height:120px;
}
/* BOT MESSAGE */

.bot-bubble{
background:#f3f5f7;
padding:10px 14px;
border-radius:10px;
font-size:14px;
max-width:80%;
line-height:1.4;
}

/* USER MESSAGE */

.user-bubble{
background:#FF7B20;
color:#fff;
padding:10px 14px;
border-radius:10px;
align-self:flex-end;
max-width:80%;
font-size:14px;
}

/* OPTIONS */

.chat-options{
display:flex;
flex-direction:column;
gap:8px;
margin-top:10px;
}

.chat-option{
border:none;
padding:10px;
border-radius:6px;
background:#f3f5f7;
cursor:pointer;
font-size:14px;
text-align:left;
transition:.2s;
}

.chat-option:hover{
background:#FF7B20;
color:#fff;
}

@keyframes chatSlide{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.chat-option:disabled{
cursor:not-allowed;
}

.chat-option{
transition:0.25s;
}

.chat-input{
display:flex;
gap:8px;
margin-top:8px;
}

.chat-input input{
flex:1;
padding:8px;
border:1px solid #ddd;
border-radius:6px;
}

.chat-input button{
background:#FF7B20;
border:none;
color:#fff;
padding:8px 14px;
border-radius:6px;
cursor:pointer;
}

.chatbot-body::-webkit-scrollbar{
width:6px;
}

.chatbot-body::-webkit-scrollbar-thumb{
background:#ddd;
border-radius:4px;
}

.chat-option:disabled{
opacity:0.4;
pointer-events:none;
}
/* ================= SECTION ANIMATIONS ================= */
/* SCROLL WRAPPER BASE (DESKTOP LAYOUT) */

.scroll-wrapper{
display:flex;
justify-content:space-between;
align-items:center;
gap:40px;
flex-wrap:nowrap;
}

/* DESKTOP ICON LAYOUT */

.strengths .scroll-wrapper{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:40px;
width:100%;
}

.strength{
flex:1;
text-align:center;
}

/* DESKTOP BURGER CONTENT */

@media (min-width:769px){

.side-links > a{
display:none;
}

.side-links > h4{
display:none;
}

}

@media (max-width:768px){

.scroll-wrapper{
overflow-x:auto;
gap:20px;
scroll-snap-type:x mandatory;
padding-bottom:10px;
}

.scroll-wrapper > *{
min-width:140px;
flex:0 0 auto;
scroll-snap-align:start;
}

.scroll-wrapper::-webkit-scrollbar{
display:none;
}

}

section{
  animation:fadeUp .6s ease both;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= LARGE DESKTOP ================= */

@media (min-width:1440px){
  .container{
    max-width:1400px;
    padding:40px 30px;
  }

  .navbar{
    padding:20px 60px;
  }
}

/* ================= TABLET / SMALL LAPTOP ================= */

@media (max-width:1024px){
  .container{
    padding:50px 20px;
  }

  .navbar{
    padding:14px 24px;
  }

  .nav-center{
    gap:20px;
  }

  .nav-right{
    gap:14px;
  }

  .logo{
    height:44px;
  }

  .signin{
    display:none;
  }

  #product-grid{
    grid-template-columns:repeat(2,1fr);
    gap:24px;
  }

  .category-grid,
  .category-scroll{
    grid-template-columns:repeat(5, minmax(120px,1fr));
    gap:24px;
  }

  .about{
    gap:40px;
  }

  .stats-wrapper{
    gap:40px;
  }

  .full-banner,
  .mid-banner,
  .cta-banner-final,
  .cta{
    height:340px;
  }
}

/* ================= TABLET ================= */

@media (max-width:768px){
  .container{
    padding:40px 16px;
  }

  .navbar{
    padding:12px 18px;
  }

  .nav-center,
  .quote-btn{
    display:none;
  }

  .burger{
    display:flex;
    font-size:22px;
  }

  .logo{
    height:42px;
  }

  .side-menu{
    width:280px;
    right:-300px;
  }

  .hero-slider,
  .slide{
    height:220px;
  }

  .about{
    grid-template-columns:1fr;
    gap:30px;
  }

  .about-img{
    justify-content:center;
  }

  .about-img img{
    width:100%;
    max-width:420px;
  }

  .strengths{
    display:flex;
    overflow-x:auto;
    gap:20px;
    flex-wrap:nowrap;
    justify-content:flex-start;
    padding-bottom:8px;
  }

  .strength{
    flex:0 0 auto;
    min-width:140px;
  }

  .strengths::-webkit-scrollbar{
    display:none;
  }

  #product-grid{
    display:flex;
    overflow-x:auto;
    gap:18px;
    scroll-snap-type:x proximity;
  }

  .product{
    flex:0 0 auto;
    min-width:230px;
    scroll-snap-align:start;
  }

  #product-grid::-webkit-scrollbar{
    display:none;
  }

  .category-grid,
  .category-scroll{
    display:flex;
    overflow-x:auto;
    gap:18px;
    scroll-snap-type:x proximity;
  }

  .category{
    flex:0 0 auto;
    min-width:140px;
    scroll-snap-align:start;
  }

  .category-grid::-webkit-scrollbar,
  .category-scroll::-webkit-scrollbar{
    display:none;
  }

  .brand-track{
    gap:40px;
  }

  .brand-track img{
    height:34px;
  }

  .stats-wrapper{
    grid-template-columns:1fr;
    text-align:center;
  }

  .stats-image{
    display:none;
  }

  .stats-content{
    max-width:none;
  }

  .stat-numbers{
    justify-content:center;
  }

  .cta-banner-final,
  .cta,
  .full-banner,
  .mid-banner{
    height:260px;
  }

  .cta-overlay,
  .cta-content{
    max-width:92%;
  }

  .cta-overlay h2,
  .cta-content h2{
    font-size:26px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:30px;
  }

  .footer-logo{
    margin:auto;
  }
}

/* ================= MOBILE ================= */

@media (max-width:600px){
  .container{
    padding:32px 14px;
  }

  .navbar{
    padding:10px 14px;
  }

  .logo{
    height:38px;
  }

  .side-menu{
    width:260px;
    right:-280px;
  }

  .hero-slider,
  .slide{
    height:190px;
  }

  .about-text h2,
  .trending h2,
  .categories h2,
  .brands h2,
  .brand-store h2{
    font-size:28px;
  }

  .about-img{
    display:none;
  }

  .strength img{
    width:76px;
  }

  .product{
    min-width:210px;
    padding:18px 16px;
  }

  .product img{
    height:120px;
  }

  .category img{
    width:105px;
  }

  .stats{
    padding:50px 0;
  }

  .stat h2,
  .stat h3{
    font-size:32px;
  }

  .full-banner,
  .mid-banner,
  .cta-banner-final,
  .cta{
    height:220px;
  }

  .cta-overlay h2,
  .cta-content h2{
    font-size:24px;
  }

  .cta-overlay p,
  .cta-content p{
    font-size:14px;
    margin-bottom:18px;
  }

  .chat-btn{
    width:54px;
    height:54px;
    bottom:18px;
    right:18px;
    font-size:20px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width:420px){
  .container{
    padding:28px 12px;
  }

  .navbar{
    padding:10px 12px;
  }

  .logo{
    height:36px;
  }

  .hero-slider,
  .slide{
    height:170px;
  }

  .about-text h2,
  .trending h2,
  .categories h2,
  .brands h2,
  .brand-store h2{
    font-size:24px;
  }

  .product{
    min-width:200px;
    padding:16px 14px;
  }

  .product img{
    height:110px;
  }

  .category{
    min-width:132px;
  }

  .category img{
    width:92px;
  }

  .full-banner,
  .mid-banner,
  .cta-banner-final,
  .cta{
    height:200px;
  }

  .cta-overlay h2,
  .cta-content h2{
    font-size:22px;
  }

  .footer-map iframe{
    min-height:150px;
  }
}

@media (max-width:1024px){

  /* ===== FOOTER FIX ===== */

  .footer-curve{
    width:350px;
  }

  .footer-logo{
    width:220px;
  }

  .footer-top-inner{
    justify-content:right;
  }

  .footer-cta{
    max-width:500px;
  }

  .footer-main{
    gap:60px;
  }

  /* ===== ABOUT VIDEO FIX ===== */

  .about-video-section{
    height:450px;
  }

  /* .about-content{
      padding-right: 160px;
  } */

  .about-content h2{
    font-size:34px;
  }

}

@media (max-width:768px){

  /* ===== FOOTER TOP ===== */

  .footer-top-inner{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:30px;
      padding-top:0;
  }

  .footer-curve{
    position:relative;
    width:260px;
    height:160px;
    border-radius:0 0 120px 120px;
  }

  .footer-logo{
    width:180px;
  }

  .footer-cta{
    text-align:center;
  }

  .cta-buttons{
    justify-content:center;
    flex-wrap:wrap;
  }

  /* ===== FOOTER MAIN ===== */

  .footer-main{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:30px;
  }

  /* ===== ABOUT VIDEO ===== */

  .about-video-section{
    height:auto;
  }

  .about-overlay{
    padding:40px 20px;
  }

  .about-content{
    padding-left:0;
    text-align:left;
  }

  .about-content h2{
    font-size:28px;
  }

  .about-content p{
    max-width:100%;
  }

}

@media (max-width:480px){

  /* ===== FOOTER ===== */

  .footer-top{
    padding:0px 0 30px;
  }

  .footer-curve{
    width:200px;
    height:120px;
  }

  .footer-logo{
    width:140px;
  }

  .footer-cta h2{
    font-size:22px;
  }

  .footer-cta p{
    font-size:14px;
  }

  .btn{
    padding:10px 16px;
    font-size:13px;
  }

  /* ===== ABOUT ===== */

  .about-content h2{
    font-size:24px;
  }

  .about-content p{
    font-size:14px;
  }

}

@media (max-width:380px){

  .footer-logo{
    width:120px;
  }

  .footer-cta h2{
    font-size:20px;
  }

  .cta-buttons{
    flex-direction:column;
    gap:10px;
  }

}

