
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    
    color: #0A1F44;
  }

  
  /* Glassmorphism Fixed Navbar */
/* .glass-navbar {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
transition: background-color 0.4s ease, box-shadow 0.4s ease;
} */


/* Premium navbar styles (as earlier) */
/* .navbar-brand {
font-size: 1.8rem;
font-weight: 700;
color: black !important;
transition: color 0.3s ease;
letter-spacing: 1px;
}

.navbar-brand:hover {
color: #ff6b6b !important;
}

.nav-link {
font-size: 1rem;
font-weight: 500;
color: black !important;
padding: 0.7rem 1rem;
position: relative;
transition: color 0.3s ease;
}

.nav-link::before {
content: "";
position: absolute;
width: 0%;
height: 2px;
bottom: 10px;
left: 50%;
background-color: #ff6b6b;
transition: all 0.3s ease;
transform: translateX(-50%);
}

.nav-link:hover {
color: #232121 !important;
}

.nav-link:hover::before {
width: 80%;
}

/* Dropdown */
/* .nav-item.dropdown:hover .dropdown-menu {
display: block;
margin-top: 0;
opacity: 1;
visibility: visible;
}

.dropdown-menu {
background-color: rgba(34, 34, 34, 0.9);
border: none;
border-radius: 10px;
padding: 0.5rem 0;
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item {
color: #ddd;
padding: 0.6rem 1.5rem;
transition: background 0.3s, color 0.3s;
}

.dropdown-menu .dropdown-item:hover {
background-color: #444;
color: #fff;
border-left: 3px solid #ff6b6b;
} */ 




.product-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.product-hero-content {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  position: relative;
  /* margin-bottom: 2rem; */
}

/* .section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #f2592a;
  display: block;
  margin: 0.5rem 0 0;
  border-radius: 2px;
} */

.feature-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212,175,55,0.15);
}

.feature-icon {
  font-size: 2.5rem;
  color: #f2592a;
  margin-bottom: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
}

.benefit-icon {
  font-size: 1.5rem;
  color: #f2592a;
  margin-right: 1rem;
  flex-shrink: 0;
}

.highlight-badge {
  display: inline-block;
  background: #f2592a;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-card {
  background: linear-gradient(135deg, #f2592a, #ff8c66);
  color: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(242,89,42,0.3);
  transition: all 0.4s ease;
}

.price-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(242,89,42,0.4);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

.spec-item {
  padding: 15px 0;
  border-bottom: 1px dashed #ddd;
}

.spec-item:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .product-hero {
    padding: 60px 0;
    text-align: center;
  }
}


 /* Footer */
 footer {
  background: #003366;
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary);
}

.footer-col p {
  margin-bottom: 15px;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
  padding-left: 0px !important;
}

.footer-links li {
  margin-bottom: 10px;
  padding-left: 0rem !important;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}



/* new navbar */


   /* Main Navbar */
   .main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    /* background-color: #ff6c3f; */
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo {
    font-weight: bold;
    font-size: 1.2rem;
}

/* Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    padding: 10px;
    display: flex;
    align-items: center;
}

/* Dropdown Icon */
.dropdown-icon {
    margin-left: 6px;
    font-size: 12px;
    color: #000000;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    /* background-color: #ff764c; */
    border: 1px solid #ddd;
    border-radius: 5px;
    min-width: 160px;
    z-index: 10;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
    padding: 3px;
    list-style: none;
}

.dropdown-menu li a {
    color: #000000;
    display: block;
    font-size: 14px;
}

.dropdown-menu li:hover {
    background-color: #ff764c;
}

/* Open Dropdown Class */
.dropdown.active .dropdown-menu {
    display: block;
    width: 250px;

}

/* Rotate icon when dropdown is open */
.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}


/* call button  */
.cta-buttonn {
    background-color: #003cff;
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    
}

.cta-button:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.cta-button.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    /* margin-left: 15px; */
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: white;
}



/* Secondary Navbar */
.secondary-navbar {
    display: flex;
    justify-content: center;
    background: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.secondary-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.secondary-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive Design */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

@media screen and (max-width: 992px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgb(255, 255, 255);
        border-top: 1px solid #ddd;
        padding: 10px 0;
        height: auto;
    }

    .nav-links.active {
        display: flex;
    }


    /* Apply scroll to dropdown in .dropdown.mob */
.dropdown.mob .dropdown-menu {
    max-height: 200px; /* Adjust as needed */
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin; /* for Firefox */
}

/* Optional: WebKit scrollbar customization */
.dropdown.mob .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown.mob .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}


    .dropdown-menu {
        position: static;
        display: none;
        background: #f8f8f8;
        border: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .cta-buttonn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .secondary-navbar {
        display: none;
    }
}


.containerr {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar {
  background-color: #ff6c3f;
  padding: 10px 0;
  font-size: 14px;
  color: white;
}

.contact-info span {
  margin-right: 15px;
}

.top-options a {
  margin: 0 5px;
  text-decoration: none;
  color: #333;
}

.top-options select {
  margin-left: 10px;
}


.logo {
  font-size: 20px;
  font-weight: bold;
}


/* AOS Animation */
[data-aos="fade-down"] {
opacity: 0;
transform: translateY(-30px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos="fade-down"].aos-animate {
opacity: 1;
transform: translateY(0);
}

  /* Hero Section */
.hero {
min-height: 100vh;
background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(40, 40, 40, 0.9)),
            url('photo-1585313736086-9a10c24f30dc.avif') center/cover no-repeat;
color: #fff;
padding-top: 100px;
padding-bottom: 100px;
position: relative;
backdrop-filter: blur(6px);
}

/* Button styles */
.btn-gold {
background-color: #f2592a;
color: #1a1a1a;
border-radius: 50px;
padding: 0.75rem 2rem;
font-weight: 600;
box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
transition: all 0.3s ease;
}

.btn-gold:hover {
background-color: #b78b2d;
color: #fff;
box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

.btn-outline-light {
border-radius: 50px;
font-weight: 600;
padding: 0.75rem 2rem;
transition: all 0.3s ease;
}

.btn-outline-light:hover {
background-color: #fff;
color: #1a1a1a;
}

/* Hero Image */
.hero-image img {
max-width: 100%;
border: 2px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(4px);
transition: transform 0.4s ease;
}
.lead {
  font-size: 16px;
}
.hero-image img:hover {
transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
.hero h1 {
  font-size: 2.2rem;
}

/* .hero p.lead {
  font-size: 1.1rem;
} */

.hero-image {
  margin-top: 3rem;
}
}

  /* Background */
#products {
background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

/* Section Title */
.section-title {
font-size: 2.5rem;
font-weight: 700;
color: #111;
position: relative;
}

/* .section-title::after {
content: '';
width: 80px;
height: 4px;
background: #f2592a;
display: block;
margin: 0.5rem auto 0;
border-radius: 2px;
} */

/* White Glass Cards */
.light-card {
background: rgba(255, 255, 255, 0.85);
border: 1px solid #e0e0e0;
border-radius: 16px;
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.light-card:hover {
transform: translateY(-10px);
box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
}

/* Text Colors */
.text-dark {
color: #111 !important;
}

.text-muted {
color: #555 !important;
}

/* Responsive */
@media (max-width: 768px) {
.section-title {
  font-size: 2rem;
}
}

 
  .why-choose-us {
background: #fefefe;
}

.feature-card {
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 16px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.feature-card h5 {
color: #111;
}

.feature-card p {
color: #555;
}

.feature-icon {
width: 60px;
height: 60px;
object-fit: contain;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.section-title {
font-size: 2.5rem;
font-weight: 700;
color: #111;
position: relative;
}

/* .section-title::after {
content: '';
width: 80px;
height: 4px;
background: #f2592a;
display: block;
margin: 0.5rem auto 0;
border-radius: 2px;
} */
.process-section {
background: #fffefb;
position: relative;
}

.process-icon {
width: 80px;
height: 80px;
background: #f2592a;
color: white;
font-size: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
margin: 0 auto;
box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
transition: transform 0.3s ease;
}

.process-step:hover .process-icon {
transform: scale(1.1);
}

.progress-line {
position: absolute;
top: 40px;
left: 1%;
right: 12%;
height: 2px;
background: #f2592a;
z-index: 0;
}

@media (max-width: 767px) {
.progress-line {
  display: none;
}
}


.why-packaging {
background: #fafafa;
}

.icon-box {
background: white;
padding: 30px;
border-radius: 20px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}

.icon-box i {
font-size: 36px;
color: #f2592a;
margin-bottom: 15px;
}

.icon-box:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

  @keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  .material-card {
padding: 60px 20px;
border-radius: 12px;
text-align: center;
font-weight: bold;
font-size: 1.1rem;
color: #fff;
background-size: cover;
background-position: center;
transition: transform 0.3s;
}

.material-card:hover {
transform: scale(1.05);
}

.cardboard { background-image: url('photo-1585313736086-9a10c24f30dc.avif'); }
.kraft     { background-image: url('photo-1585313736086-9a10c24f30dc.avif'); }
.corrugated{ background-image: url('photo-1585313736086-9a10c24f30dc.avif'); }
.recycled  { background-image: url('photo-1585313736086-9a10c24f30dc.avif'); }
.innovation-section-white {
background: #fdfdfd;
}

.fancy-white-card {
position: relative;
background: #ffffff;
border-radius: 16px;
overflow: hidden;
padding: 40px 25px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
transition: transform 0.4s ease, box-shadow 0.4s ease;
cursor: pointer;
}

.fancy-white-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.fancy-white-card .card-content {
position: relative;
z-index: 2;
text-align: center;
}

.fancy-white-card h5 {
font-size: 1.3rem;
color: #111;
margin-bottom: 10px;
}

.fancy-white-card p {
font-size: 0.95rem;
color: #555;
}






/* logo on nav  */
.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: #fff; /* or whatever background */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 50px; /* adjust size as needed */
  max-height: 60px;
  width: auto;
  display: block;
}




/* Magic Background Glow on Hover */
.fancy-white-card .hover-bg {
position: absolute;
top: 50%;
left: 50%;
width: 300px;
height: 300px;
background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2), transparent 70%);
transform: translate(-50%, -50%) scale(0);
transition: transform 0.6s ease;
z-index: 1;
pointer-events: none;
}

.fancy-white-card:hover .hover-bg {
transform: translate(-50%, -50%) scale(1.5);
}
.stats-premium-section {
background: linear-gradient(to bottom right, #ffffff, #f9f9f9);
}

.section-heading {
font-size: 2.5rem;
font-weight: 700;
color: #111;
position: relative;
display: inline-block;
}

.stat-card {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 40px 25px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
transition: all 0.4s ease;
border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 25px 60px rgba(255, 193, 7, 0.2);
}

.stat-card h3 {
font-size: 2.8rem;
color: #111;
font-weight: 800;
background: linear-gradient(90deg, #f6d365, #fda085);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.stat-card p {
margin-top: 10px;
font-size: 1rem;
font-weight: 500;
color: #666;
}

.premium-gallery-section {
background: linear-gradient(135deg, #ffffff, #f9f9f9);
position: relative;
overflow: hidden;
}

.section-heading {
font-size: 2.8rem;
font-weight: 700;
color: #111;
position: relative;
}

.gallery-box {
position: relative;
overflow: hidden;
border-radius: 25px;
box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
transition: transform 0.5s ease;
}

.gallery-img {
width: 100%;
height: auto;
transition: transform 0.6s ease;
border-radius: 25px;
}

.gallery-box:hover .gallery-img {
transform: scale(1.05) rotate(-0.5deg);
filter: brightness(1.1);
}

.overlay {
position: absolute;
bottom: 0;
width: 100%;
padding: 20px;
background: rgba(255, 255, 255, 0.75);
backdrop-filter: blur(10px);
transition: all 0.5s ease;
transform: translateY(100%);
opacity: 0;
border-bottom-left-radius: 25px;
border-bottom-right-radius: 25px;
}

.gallery-box:hover .overlay {
transform: translateY(0);
opacity: 1;
}

.overlay h5 {
font-size: 1.25rem;
font-weight: 600;
margin: 0;
color: #222;
}

.overlay p {
margin: 5px 0 0;
color: #555;
font-size: 0.95rem;
}

/* Carousel Custom Arrows */
.carousel-control-icon {
display: inline-block;
width: 50px;
height: 50px;
background-color: rgba(255, 215, 0, 0.3);
backdrop-filter: blur(6px);
border-radius: 50%;
position: relative;
transition: all 0.3s ease;
}

.carousel-control-icon:hover {
background-color: rgba(255, 215, 0, 0.6);
box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
}

.left-icon::before,
.right-icon::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 12px;
height: 12px;
border-top: 2px solid #000;
border-left: 2px solid #000;
transform: translate(-50%, -50%) rotate(-45deg);
}

.right-icon::before {
transform: translate(-50%, -50%) rotate(135deg);
}

.faq-section {
  margin-bottom: 40px;
background-color: #ffffff;
}

.accordion-button {
background-color: #fff;
color: #222;
font-weight: 600;
border: none;
box-shadow: none;
padding: 1rem 1.25rem;
transition: all 0.3s ease;
border-left: 5px solid transparent;
}

.accordion-button:not(.collapsed) {
color: black;
background-color: #fdf9ee;
border-left-color: #f7c948;
box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.accordion-button:hover {
background-color: #fff6e3;
}

.accordion-body {
background-color: #fdfdfd;
border-top: 1px solid #eee;
color: #444;
font-size: 0.95rem;
padding: 1rem 1.25rem;
line-height: 1.7;
}

.text-gold {
color: #f7c948;
}




.cta-enhanced-section {
position: relative;
padding: 100px 20px;
background: linear-gradient(145deg, #1c1c1c, #0e0e0e);
overflow: hidden;
}
.cta-bg-overlay {
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,215,0,0.05), transparent);
animation: pulseGlow 6s infinite;
z-index: 0;
}
.cta-enhanced-section .container {
z-index: 1;
position: relative;
}
.animate-bounce {
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
@keyframes pulseGlow {
0%, 100% {
  transform: scale(1);
  opacity: 0.6;
}
50% {
  transform: scale(1.1);
  opacity: 0.2;
}
}



     
.store-section {
  background-color: #e8f7ff;
  padding: 40px 20px;
  border-radius: 20px;
  max-width: 1200px;
  margin: 40px auto;
}

.store-banner {
  display: flex;
  flex-wrap: wrap;
  background-color:#ff6c3f;
  border-radius: 20px;
  overflow: hidden;
}

.store-text {
  flex: 1 1 300px;
  padding: 40px;
  color: white;
}

.store-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.store-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.store-text .btn {
  background-color: #fff;
  color: #4CAF50;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.store-text .btn:hover {
  background-color: #f1f1f1;
}

.store-image {
  flex: 1 1 300px;
align-items: center;
margin: auto;
  /* min-height: 320px; */
}

.location-slider {
  margin-top: 30px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 0;
}

.location-card {
  display: inline-block;
  background: #fff;
  margin: 0 10px;
  padding: 20px;
  width: 140px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  vertical-align: top;
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
}

.location-card img {
  height: 40px;
  margin-bottom: 10px;
}

.location-card p {
  font-weight: 600;
  font-size: 14px;
}

/* Scrollbar hidden but functional */
.location-slider::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .store-banner {
    flex-direction: column;

  }

  .store-image {
    height: 300px;
    text-align: center;
  }

  .store-text {
    padding: 20px;
  }

  .location-card {
    width: 120px;
    padding: 16px;
  }
}



  
  .faq-section {
    background-color: #fff2e0;
    padding: 40px 20px;
    border-radius: 0 0 80px 0;
    position: relative;
  }
  
  .faq-container {
    max-width: 900px;
    margin: auto;
  }
  
  .faq-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #222;
  }
  
  .faq-container .intro {
    font-size: 16px;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.6;
  }
  
  .faq-container .intro a {
    color: #007acc;
    text-decoration: underline;
  }
  
  .accordion {
    border-top: 1px solid #90e0ef;
  }
  
  .accordion-item {
    border-bottom: 1px solid #90e0ef;
  }
  
  .accordion-button {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    padding: 20px;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    position: relative;
  }
  
  .accordion-button::after {
    /* content: '+'; */
    position: absolute;
    right: 20px;
    font-size: 24px;
    transition: transform 0.3s;
  }
  
  .accordion-button.active::after {
    /* content: '−'; */
    transform: rotate(360deg);
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
  }
  
  .accordion-content p {
    margin: 15px 0;
    font-size: 15px;
    color: #555;
  }
  
  @media (max-width: 600px) {
    .faq-container h2 {
      font-size: 26px;
    }
  
    .accordion-button {
      font-size: 16px;
    }
  }
  


  .collection-section {
    background: #fff2e0;
    padding: 40px 20px;
    text-align: center;
  }
  
  .collection-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
  }
  
  .collection-top img {
    width: 70px;
    margin-bottom: 10px;
  }
  
  .collection-top p {
    font-size: 16px;
    color: #000;
    margin: 0;
    font-weight: 500;
  }
  
  .collection-title span {
    font-size: 14px;
    color: #555;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .collection-title h2 {
    font-size: 28px;
    margin-top: 5px;
    color: #000;
  }
  
  .collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .collection-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: center;
  }
  
  .collection-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  
  .tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
  }
  
  .tag.blue {
    background: #1e90ff;
  }
  
  .tag.sky {
    background: #4db8ff;
  }
  
  .tag.dark {
    background: #2c3e50;
  }
  
  .collection-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .reviews {
    font-size: 14px;
    color: #f39c12;
    margin-bottom: 10px;
  }
  
  .desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
  }
  
  .price {
    font-size: 14px;
    color: #111;
    margin-bottom: 15px;
  }
  
  .btn {
    background: #003366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #00509e;
  }

  

  .comfort-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #b6e5a6, #a4e6de);
    padding: 40px 5%;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
  }
  
  .comfort-banner::before {
    content: '';
    background-image: url('https://www.transparenttextures.com/patterns/green-leaves.png');
    opacity: 0.1;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .comfort-text {
    z-index: 1;
    max-width: 50%;
    color: #111;
  }
  
  .comfort-text h1 {
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: 500;
  }
  
  .highlight {
    font-weight: 700;
    color: #111;
  }
  
  .comfort-image {
    z-index: 1;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .comfort-image img {
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 768px) {
    .comfort-banner {
      flex-direction: column;
      text-align: center;
    }
  
    .comfort-text {
      max-width: 100%;
      margin-bottom: 20px;
    }
  
    .comfort-text h1 {
      font-size: 1.8rem;
    }
  }
  

  .container-hex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }

  .center-hex {
    background-color: #b4ff3b;
    color: #000;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    clip-path: polygon(
      50% 0%, 93% 25%, 93% 75%, 50% 100%,
      7% 75%, 7% 25%
    );
    text-align: center;
    font-size: 1rem;
  }

  .hex {
    width: 230px;
    height: 230px;
    background-color: #e8e8e8;
    clip-path: polygon(
      50% 0%, 93% 25%, 93% 75%, 50% 100%,
      7% 75%, 7% 25%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s;
  }

  .hex:hover {
    transform: scale(1.05);
    background-color:rgb(129, 129, 129);
  }

  .hex h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: black;
  }

  .hex p {
    font-size: 0.85rem;
    color: black;
    line-height: 1.4;
  }

  @media (max-width: 600px) {
    .hex, .center-hex {
      width: 200px;
      height: 200px;
      font-size: 0.85rem;
    }

    .hex p {
      font-size: 0.75rem;
    }
  }

  .product-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(40,40,40,0.1)), 
                url('../images/bg.jpg') center/cover no-repeat;
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
  }



  .product-attributes {
    max-width: 700px;
    margin: auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
  }

  .attribute-header {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: #fafafa;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
  }

  .attribute-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
  }

  .attribute-row:last-child {
    border-bottom: none;
  }

  @media (max-width: 600px) {
    .attribute-header, .attribute-row {
      flex-direction: column;
      gap: 6px;
    }

    .attribute-header {
      font-size: 1rem;
    }

    .attribute-row {
      font-size: 0.95rem;
    }
  }


  /* popup */
  .cookie-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .cookie-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    position: relative;
  }
  
  .cookie-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1e1e2f;
  }
  
  .cookie-content p {
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .cookie-actions {
    display: flex;
    gap: 15px;
  }
  
  .cookie-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  #acceptCookies {
    background-color: #ff6c3f;
    color: #fff;
  }
  
  #preferencesCookies {
    background-color: #f2f2f2;
    color: #1e1e2f;
  }
  
  .close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  #prom-enquiry-forms .fixed-icons {
    position: fixed;
    left: 10px;
    bottom: 40%;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#prom-enquiry-forms .fixed-icons a {
    margin: 5px 0;
    color: #fff;
    padding: 10px 10px;
    line-height: 0px !important;
    border-radius: 10px;
    text-align: center;
    font-size: 26px;
    transition: background-color 0.3s ease;
    /*border: 2px solid #fff;*/
    border-radius:40px;
}  

#prom-enquiry-forms .fixed-icons .phone-icon {
    background-color: #1321a6;
}
#prom-enquiry-forms .fixed-icons .whatsapp-icon {
    background-color: #27d648;
}
#prom-enquiry-forms .fixed-icons .mail-icon {
    background-color: #d90000;
}

#prom-enquiry-forms .fixed-icons a:hover {
    background-color: #000;
}

/* Popup Form Styles */
#prom-enquiry-forms .popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}
.popup-form p {
  color: white;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}
#prom-enquiry-forms .form-content {
    background-color: #00000094;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
    margin: 0 10px;
    width: 100%;
}

#prom-enquiry-forms .form-content h2 {
    color: #fff;
}

#prom-enquiry-forms .close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
    color: #fff;
}

#prom-enquiry-forms .popup-form form input,
#prom-enquiry-forms .popup-form form textarea {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#prom-enquiry-forms .popup-form form button {
    width: 100%;
    padding: 10px;
    background-color: #61c467;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 18px;
    transition: background-color 0.4s ease;
}

#prom-enquiry-forms .popup-form form button:hover {
    background-color: #48914d;
}

/*Side fixed iocns ends*/

  