:root {
    --primary: #1A1A1A;
    --secondary: #2D2D2D;
    /* --accent: #FF6B00; */
    --accent: #fffaf6;
    --text: #FFFFFF;
    --text-light: #CCCCCC;
}

* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
    /* font-family: 'Inter', sans-serif; */
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Inter:wght@400;500;600&display=swap');

body {
    background-image: url("Body_IMAGE.png") ;
    background-repeat: no-repeat;
    background-size: cover;   /* Or contain, depending on fit */
    background-position: center;
    background-attachment: fixed;

 overflow-x: hidden;
    color: var(--text);
   
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}






.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
}

/* Header Styles */
header {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgb(2 2 2 / 90%));


    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    padding: 11px 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 70px;

}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      background-color: #182C2E;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 27px;
}

#cname h1 {

    font-family: 'Poppins', sans-serif !important;
    font-size: 35px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: white !important;
    text-shadow: 0 0 5px #e05d00 !important;
    letter-spacing: 2px;

}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    z-index: 1002;
}

.logo span {
    color: var(--accent);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    margin: 0px ;
   
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
      padding: 12px 20px; /* keep size same on all items */
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    background: transparent; /* default */
    box-sizing: border-box;
}

nav ul li a:hover {
   
    transform: translateY(-2px);
   
    padding: 12px 20px ;

     background: linear-gradient(rgb(65 153 171 / 70%), rgba(0, 0, 0, 0.7));

    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(255, 255, 255); /* Softer shadow */
   
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.active {
    color: white !important;
   
}

nav ul li a.active::after {
    width: 100%;
}

.ourbrand-wrapper {
  position: relative;
}

/* Hide dropdown by default */
.ourbrand-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  /* background: linear-gradient(rgba(7, 12, 14, 0.7), rgba(0, 0, 0, 0.7)); */
    background: linear-gradient(#070c0e, #000000);
  min-width: 180px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 9999;
  border-radius: 4px;
}

/* Dropdown links */
.ourbrand-dropdown li a {
  display: block;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/*  Hover styles for dropdown links */
.ourbrand-dropdown li a:hover {
     background: linear-gradient(rgb(65 153 171 / 70%), rgba(0, 0, 0, 0.7));

    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(255, 255, 255); /* Softer shadow */
  
}

/* Show dropdown on hover */
.ourbrand-wrapper:hover .ourbrand-dropdown {
  display: block;
}





/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    min-width: 44px;
    min-height: 44px;
}

.cart-icon {
    position: relative;

    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 40px;
}


.mobile-menu.active .mobile-nav li {
    opacity: 0;
    transform: translateX(20px);
    animation: fadeSlideIn 0.4s forwards;
}

.mobile-menu.active .mobile-nav li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-nav li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-nav li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu.active .mobile-nav li:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 
.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent);
    color: var(--text);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    font-weight: bold;
} */
.cart-icon  a{
      color: #fff9f9;
  font-size: 24px;
  padding: 0 13px;
   display: inline-block;
    transition: all 0.3s ease;
  text-decoration: none;
   box-sizing: border-box;
  /* transition: color 0.3s; */
}
.cart-icon a:hover i{
  color: #034349; /* Gold tone */
    transform: scale(1.2) rotate(5deg); /* Slight zoom & tilt */
    filter: brightness(1.3) drop-shadow(0 0 5px rgba(2, 73, 81, 0.8));
    transition: transform 0.3s ease, filter 0.3s ease, color 0.3s ease;

  
    /* 
transform: translateY(-2px);
   
    padding: 0px 10px ;

   background: linear-gradient(45deg, #924307, #0c606b);
    transform: translateY(-2px);
    text-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    */
} 
/* ====================== */
/* MOBILE MENU STYLES (FIXED) */
/* ====================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 210px;
    height: 100vh;
    background: linear-gradient(180deg, #0c606b, #000); /* Gradient preserved */
    color: white;
    z-index: 1001;
    transition: right 0.4s ease;
    padding: 0px 20px;
    box-shadow: -2px 0 15px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile nav list */
.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin: 15px 0;
    opacity: 0;
    transform: translateX(20px);
}

/* Fade-in after menu slide */
.mobile-menu.active .mobile-nav li {
    animation: fadeSlideIn 0.4s forwards ease;
}

.mobile-menu.active .mobile-nav li:nth-child(1) { animation-delay: 0.15s; }
.mobile-menu.active .mobile-nav li:nth-child(2) { animation-delay: 0.25s; }
.mobile-menu.active .mobile-nav li:nth-child(3) { animation-delay: 0.35s; }
.mobile-menu.active .mobile-nav li:nth-child(4) { animation-delay: 0.45s; }
.mobile-menu.active .mobile-nav li:nth-child(5) { animation-delay: 0.55s; }

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav li a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px;
    display: block;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.mobile-nav li a:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

/* Close button */
.close-menu {
    font-size: 1.8rem;
    cursor: pointer;
    background: transparent;
    border: none;
    color: white;
    align-self: flex-end;
}

/* Overlay (dim background) */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
}
.product-card.show-info .category-info {
    opacity: 1;
    visibility: visible;
}

  /*  Heroo Section */
/* Hero Section */
.slider-container {
    position: relative;
    width: 100%;
    height: 95vh;
    min-height: 400px;
    overflow: hidden;
}

.slider-card {
    position: absolute;
    top: 115px;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* Use cover to fill the space, adjust if needed */
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.slider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay with 50% opacity */
    z-index: 1;
}

.slider-card.active {
    display: flex;
    opacity: 1;
}

.hero-content {
    text-align: center;
    padding: 20px;
    color: #FFFFFF; /* White text for contrast */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Add shadow for readability over images */
    position: relative; /* Ensure content is above overlay */
    z-index: 2; /* Place content above the overlay */
}

.hero-content h1 {
    font-size: 3.5rem; /* Larger title like in the image */
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem; /* Smaller description */
    margin-bottom: 30px;
    color: #E0E0E0; /* Lighter text for contrast */
    max-width: 600px; /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
}


#hero_brand{
     height: 40vh; 
      padding-top: 151px;
       min-height: 237px;
}
#about_hero{
    height: 40vh;
      padding-top: 151px;
       min-height: 237px;
}
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(rgb(0 0 0), rgb(21 57 63 / 90%));
    color: #FFFFFF; /* Red button like in the image */
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase; /* Match the bold "VIEW PRODUCTS" style */
}

.btn-primary:hover {
    background: linear-gradient(rgb(0 0 0), rgb(21 57 63 / 90%));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(243, 243, 243);
}

/* Ensure existing btn styles don't override */
.btn {
    min-width: 44px;
    min-height: 44px;
}


/* About Section */
.about {
    padding: 100px 0;
   /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgb(65 153 171 / 70%)); */
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 1s ease;
}

.about-img img {
    width: 100%;
    height: 330px;
    display: block;
    transition: transform 0.5s ease;

   
    object-fit: cover; /* Keeps aspect ratio & crops overflow */
  
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
    animation: fadeInRight 1s ease;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Products Section */
.products {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgb(65 153 171 / 70%)) !important;
    padding: 10px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: var(--text);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-btn.active,
.filter-btn:hover {
    color: black;
    background-color: var(--accent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--secondary);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-category {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-weight: 700;
    font-size: 1.2rem;
}

.add-to-cart {
    background-color: var(--accent);
    color: var(--text);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: #e05d00;
    transform: rotate(15deg);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

/* Testimonials Section */
.testimonials {
    padding: 70px 0;
   /* background: linear-gradient(rgb(65 153 171 / 70%), rgba(0, 0, 0, 0.7)); */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
   background: linear-gradient( rgba(0, 0, 0, 0.7), rgb(65 153 171 / 70%));
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    padding: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Footer */
footer {
    /* background-image: url("eaf90e93-3c67-4d0f-823c-1740ef266375.png"); */
  /* background: linear-gradient(rgb(65 153 171 / 70%), rgba(0, 0, 0, 0.7)); */
    padding: 70px  30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.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: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
    list-style: none;
}

.footer-links a {
    color: var(--text-light);
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    padding-bottom: 40px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
    color:black;
}
.social-links a:hover i{
    color: black;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 40px ;
}

/* Page Hero Styles */
.page-hero {
    height: 60vh;
    min-height: 400px;
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover; */
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* About Page Specific */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}


.about-card {
    background: linear-gradient(rgba(24, 44, 46, 0.7), rgba(0, 0, 0, 0.7));
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Contact Page Specific */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin: 50px 0;
}

.contact-container .contact-info{
    order: 2;  /* moves left div to the right */
}

.contact-container .contact-form {
    order: 1; 
}

.contact-item {
    display: flex;
    gap: 8px;
    /* margin-bottom: 30px; */
    align-items: center;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 5px;
}

.contact-hours {
    margin-top: 40px;
    padding: 20px;
   background: linear-gradient(rgba(24, 44, 46, 0.7), rgba(0, 0, 0, 0.7));
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
   background: linear-gradient(rgba(24, 44, 46, 0.7), rgba(0, 0, 0, 0.7));
    border: 1px solid #444;
    border-radius: 4px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.form-group select{
   color: white; 
   background-color: linear-gradient(rgba(24, 44, 46, 0.7), rgba(0, 0, 0, 0.7));
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.map-container {
    margin: 50px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.hrl{
     margin: 0px 80px; 
      color:#cad0d5;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
}


@media (max-width: 420px) {

body {
   background-image: url("Body_IMAGE_com.png") !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: scroll !important;
    min-height: 100vh !important; 
    overflow-x: hidden;
}
}
/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }

    .about-img,
    .about-content {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
          
@media (max-width: 768px) {

    body {
    background-image: url("Body_IMAGE_com.png") ;
      background-repeat: no-repeat;
    background-size: cover;   /* Or contain, depending on fit */
    background-position: center;
    background-attachment: fixed;

 overflow-x: hidden;
    }
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .cart-icon {
        margin-left: 15px;
    }

    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

   

    .page-hero {
        height: 50vh;
        min-height: 300px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
    /* .info_footer {
     grid-template-columns: 545px 100px !important;
   } */
}


@media (max-width: 576px) {

     body {
    background-image: url("Body_IMAGE_com.png") !important ;
      background-repeat: no-repeat;
    background-size: cover;   /* Or contain, depending on fit */
    background-position: center;
    background-attachment: fixed;

 overflow-x: hidden;
    }

    /* .menue{
        display: none;
    } */
    .desktop-nav {
        display: none
    }

    .container {
        width: 95%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

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

    .logo {
        font-size: 1.5rem;
    }

    .mobile-menu {
        width: 85%;
        /* max-width: 300px; */
    }

    .section-title {
        font-size: 1rem;
    }

    .section-title::after {
        width: 40px;
        height: 3px;
    }

    .testimonial-card {
        padding: 20px;
    }
 
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px ;
        height: 100vh;
        background-color: var(--secondary);
        z-index: 1000;
        transition: right 0.3s ease;
        padding-top: 0px ;
        padding-bottom: 0px;
        padding-left: 15px;
        padding-right: 5px;
        overflow-y: auto;
         max-width: 280px;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: center;
        align-items: center;
       
       
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .close-menu {
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .mobile-nav ul {
        list-style: none;
    }

    .mobile-nav ul li {
        margin-bottom: 20px;
    }


   
    .mobile-nav ul li a {
        color: white;
        font-size: 1.1rem;
        transition: color 0.3s ease;
        display: block;
        padding: 10px 0;
    }

    .mobile-nav ul li a.active {
        color: var(--accent);
        pointer-events: none;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    body.menu-open {
        overflow: hidden;
    }

     .mobile-nav ul:hover li a{
        color: #000;
    
     }
     .mobile-search{
    display: block;
    display: contents !important;
}

#product-search {
   
          width: 100%;
        padding: 8px;
     background: linear-gradient(rgb(21 57 63 / 90%), rgb(0 0 0));
        color: #ffffff;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
        max-height: 200px;
        overflow-y: auto;
        margin: 10px;
        padding: 3px 10px;
}
#product-search  option{
 background-color: #010404;
    color: white;
}
header-container {
  flex-direction: column; /* Stack items vertically on mobile */
  align-items: stretch; /* Stretch items to full width */
}

.social-links { /* If social icons are in this div, adjust layout */
  display: flex;
  justify-content: center;
  margin-bottom: 10px; /* Space before search */
}
 .close-menu{
            padding-bottom: 80px;
           
         
        }
}



/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000;
    display: none;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-bottom-nav.active {
    display: flex;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    position: relative;
    padding: 5px 0;
}

.nav-item i {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.nav-item.active {
    color: var(--accent);
}

.nav-item .nav-text {
    display: block;
}

.nav-dropdown {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #111;
    border-radius: 8px;
    padding: 10px;
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1001;
}

.nav-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease forwards;
}

.nav-dropdown a {
    display: block;
    color: #fff;
    padding: 8px 15px;
    text-align: center;
    border-radius: 4px;
    margin: 3px 0;
}

.nav-dropdown a:hover {
    background-color: #222;
}

/* Slide animation for content */
.content-section {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.content-section.slide-in {
    transform: translateX(0);
    opacity: 1;
}

.content-section.slide-out {
    transform: translateX(-100%);
    opacity: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 768px) {
    .menue {
        display: none;
    }

    .mobile-bottom-nav {
        display: flex;
    }

    /* Hide desktop nav on mobile */
    .desktop-nav {
        display: none;
    }

    /* Adjust content padding to account for bottom nav */
    body {
        padding-bottom: 70px;
    }
    .cart-icon{
    display: none;
}


}

@media (max-width: 480px) {
    .nav-text {
        font-size: 0.7rem;
    }

    .nav-item i {
        font-size: 1rem;
    }
}
@media (min-width: 426px) and (max-width: 768px){
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 400px !important;
        height: 150vh;
        background-color: var(--secondary);
        z-index: 1000;
        transition: right 0.3s ease;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 15px;
        padding-right: 5px;
        overflow-y: auto;
        max-width: 400px !important;
    }
    .info_footer{
     grid-template-columns: 421px 250px !important;
}
.bfooter{
     grid-template-columns: 1fr 1fr   !important;
}
body {
        padding-bottom: 0px; 
    background-image: url("Body_IMAGE_com.png")  !important;
    }

}


.footer-section {
   /* background: linear-gradient(rgb(65 153 171 / 70%), rgba(0, 0, 0, 0.7)); */
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* grid-template-columns: 1fr 1fr 2fr; */
    gap: 40px;
}


.footer-container .footer-col:nth-child(1) { order: 3; } /* JESR Al SEYOUH goes last */
 .footer-container .footer-col:nth-child(2) { order: 3; } /* Quick Links second last */
  .footer-container .footer-col:nth-child(3) { order: 2; } /* Products second */
  
  

.bfooter{
     grid-template-columns: 1fr 1fr 1fr ;
}
.footer-col {
    min-width: 250px;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white ;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
 color: #fff; /* bright text for contrast */
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8); /* glowing effect */
    transform: scale(1.05); /* slight zoom */
}

/* Product Tags styling */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list a {
    font-size: 13px;
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(rgb(65 153 171 / 70%), rgba(0, 0, 0, 0.7));
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tag-list a:hover {
    background: #333;
    color: #fff;
}


/* Dropdown parent */
.menue .dropdown {
    position: relative;
}

/* Hide dropdown initially */
.menue .dropdown-menu {
   
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    /* background: linear-gradient(#011f24, #022a31); */
    background: linear-gradient(#070c0e, #000000);

    /* z-index: 2000; */
    min-width: 220px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index:999;
    padding: 10px 0;
}

/* Show dropdown on hover */
.menue .dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown links */
.menue .dropdown-menu li {
    list-style: none;
}

.menue .dropdown-menu li a {
    display: block;
    padding: 8.2px 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
    font-weight: 600;
}

.menue .dropdown-menu li a:hover {
    
      /* background: linear-gradient(rgb(65 153 171 / 70%), rgba(0, 0, 0, 0.7));

  
    box-shadow: 0 5px 15px rgb(255, 255, 255);  */
 background: linear-gradient(rgb(65 153 171 / 70%), rgba(0, 0, 0, 0.7));

    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(255, 255, 255); /* Softer shadow */

}


.myc a {
    color: white !important;
}

.myc h3 {
    color: white !important;
}




.mnav{
   
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background: linear-gradient(rgba(24, 44, 46, 0.7), rgba(0, 0, 0, 0.7));
     z-index: 2000; 
     padding: 20px  20px;

}
.mnav.scrolled {
    background-color: #182C2E; 
}

.plc{
  
    display: flex;
    height: 100%;
    width: 100%;
   justify-content: left;
   align-items: center;

}
.clogo {
   width: 120px;
  height: 120px;
 
  border-radius: 50%;
}
.clogo img{
width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.cheading h1{
     font-family: 'Poppins', sans-serif !important;
    font-size: 25px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    color: white !important;
    text-shadow: 0 0 5px #e05d00 !important;
   margin: 0 !important;
   padding-top: 10px;
   
}
.brand-image img{
    height: 390px;
    width: 360px;
}

.P_heading{
    color: white !important;
}

/* Product section styles */
.as-products-section {
    color: white;
   /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgb(65 153 171 / 70%)); */
}

.as-products-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #222222;
    margin-bottom: 10px;
}

.as-products-subtitle {
    color: #666666;
    font-size: 1rem;
}

.as-product-card {
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 6px;


   

box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(8.2px);
-webkit-backdrop-filter: blur(8.2px);
/* 
   background-color: #0d191e; */
       background: linear-gradient(rgb(110 24 24 / 70%), #0a282e);
   
 /* background: linear-gradient(rgb(229 209 209 / 70%),rgba(24, 44, 46, 0.7)); */
     
    border-radius: 8px;
    height: 100%;
}

.as-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgb(250, 248, 248);
}

.as-product-img {
    max-height: 320px;
    object-fit: contain;
}

.as-product-name {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    min-height: 50px;
    margin-bottom: 1px !important;
}


ol, ul {
     padding-left: 0 !important ;
}

@media (max-width: 1024px) {
  nav ul li a {
    padding: 0px 4px !important;
  }
/* 
  .info_footer {
    display: grid;
    grid-template-columns: 250px 251px !important;
    gap: 70px;
  }

  .info_footer .footer-col:nth-child(3) {
    grid-column: span 2;
  } */
  /* .bfooter {
    grid-template-columns: 300px 250px 250px  !important;
  } */
  .footer-section {
    /* background: linear-gradient(rgb(65 153 171 / 70%), rgba(0, 0, 0, 0.7)); */
    padding: 60px 45px;
}
.info_footer{
     grid-template-columns: 1.7fr  1fr ;
     
}
.bfooter {
    grid-template-columns: 236px 156px 219px 174px !important;
}
}
.mobile-search{
    display: none;
}

/* NEW  FRON CHAT GPT  */

@media (max-width: 426px) {
.mnav{
    padding: 0px 10px;
}
.brand-short {
    display: none !important; /* Ensure this works */
  }
.cheading h1 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 22px !important;
    font-weight: 600 !important;
   
}
.clogo{
 height: 100px;
    width: 100px;
}
.clogo .brand_logo{
    height: 100px;
    width: 100px;
    
}
.slider-container{

}
.hero-content{
        padding-bottom: 149px;
}
.p_section_mobile {
    padding-top: 3.5rem !important;
    padding-bottom: 2rem !important;

}
.info_footer {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
}
.footer-section {
    padding-bottom: 30px !important;
    padding-top: 13px !important;
    padding-left: 30px !important;
    padding-right: 26px !important;
}
.hrl{
    
    margin: 0px  15px !important;
}
.brand-image img {
    height: 332px;
    width: 250px;
}

.bfooter {
    grid-template-columns: 1fr !important;
}
 .bfooter .footer-col:nth-child(1) { order: 4; } /* JESR Al SEYOUH goes last */
  .bfooter .footer-col:nth-child(2) { order: 1; } /* Quick Links second last */
  .bfooter .footer-col:nth-child(3) { order: 2; } /* Products second */
  .bfooter .footer-col:nth-child(4) { order: 3; } /* Contact Us first  footer-col */

  .social-links {
    padding-bottom: 10px !important;
}

social-links a {
  
    background-color: #222;
}
.cart-icon{
    display: none;
}
.mobile-search{
    display: block;
    display: contents !important;
}

#product-search {
   
          width: 100%;
        padding: 8px;
     background: linear-gradient(rgb(21 57 63 / 90%), rgb(0 0 0));
        color: #ffffff;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
        max-height: 200px;
        overflow-y: auto;
        margin: 10px;
        padding: 3px 10px;
}
#product-search  option{
 background-color: #010404;
    color: white;
}
header-container {
  flex-direction: column; /* Stack items vertically on mobile */
  align-items: stretch; /* Stretch items to full width */
}

.social-links { /* If social icons are in this div, adjust layout */
  display: flex;
  justify-content: center;
  margin-bottom: 10px; /* Space before search */
}
.page-hero h1{
    margin-bottom: 5px;
    margin-top: 10px;
    font-size: 24px;
}
.brand-logos img{
    height: 50px;
    width: 200px;
}
#about_hero{
           height: 34vh;
        padding-top: 82px;
        min-height: 150px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
    gap: 37px;
    margin: 0px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.hrl{
     margin: 0px 30px; 
      color:#cad0d5;
}
 body {
        padding-bottom: 20px;
    }
    .clogo{
   height: 80px;
   width: 62px;
    }
    .clogo .brand_logo{
        height: 100%;
        width: 100%;
        
    }
    .logo {
        font-size: 21px;
        font-family: system-ui;
        text-shadow: 0 0 5px #e05d00 !important;
        padding-top: 10px;
       
    }
     
    
        .close-menu{
            padding-bottom: 50px;
           
         
        }
        .contact-icon{
            text-shadow: 0 0 5px #e05d00 !important;
        }
        .contact-container {
    grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
        }
 .bfooter {
    grid-template-columns: 1fr  !important;
}
}

@media (min-width: 1025px) {
    
    .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid
;
    grid-template-columns: 2fr 1fr ;
    gap: 40px;
}
.bfooter {
    grid-template-columns: 250px 170px 230px 200px !important;
}


.bfooter .footer-col:nth-child(1) { order: 1; } /* JESR Al SEYOUH goes last */
 .bfooter .footer-col:nth-child(2) { order: 2; } /* Quick Links second last */
  .bfooter .footer-col:nth-child(3) { order: 3; } /* Products second */
  .bfooter .footer-col:nth-child(4) { order: 4; } /* Products second */
  

}



