* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* border: #111 solid; */
        }


section {
  width: 100vw;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-color: lightblue;
}

        
        body {
            font-family: "Open Sans", sans-serif;
            font-optical-sizing: auto;
            font-weight: 300;
            font-style: normal;
            font-variation-settings:"wdth" 100;
            height: auto;
            overflow-y: auto;
            overflow-x: hidden;
            line-height: 1.6;

        }
        
        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 15px 20px;
            padding-left: 15%;
            padding-right: 15%;
            padding-bottom: 15px;
            padding-top: 15px;
            display: flex;
            flex-direction: row-reverse;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            margin: 0;
            /* padding: 0; */
            /* margin-left: -10px; */
        }
        
        .logo img {
            height: 110px;
        }
        
        .nav-container {
            display: flex;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #092238;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #a5702a;
        }
        
        .language-btn {
            margin-left: 30px;
            padding: 8px 15px;
            background-color: #f8f9fa;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        
        .language-btn img {
            width: 16px;
            margin-right: 5px;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            padding: 5px;
        }
        
        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 5px 0;
            transition: all 0.3s;
        }
        
        /* Hero Slider Styles */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            margin-top: 70px;
            direction: ltr;
            /*overflow: visible !important;*/
        }
/*        .hero-slider img{*/

/*  max-width: 100%;*/
/*  height: auto;*/
/*  display: block !important;*/
/*  visibility: visible !important;*/
/*  opacity: 1;*/
/*  object-fit: contain;*/
/*}*/
        
        .slider-container {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 0 20px;
            background-size: cover;
            background-position: center;
        }
        
        /* Individual Slide Background Images */
        .slide-1 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/hero-1.jpg');
        }
        
        .slide-2 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/hero-2.jpg');
        }
        
        .slide-3 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/hero-3.jpg');
        }
        
        .slide-4 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/hero-4.jpg');
        }

        .slide-content {
            max-width: 800px;
            padding: 40px;
            border-radius: 10px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .slide h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .slide p {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #ff6b6b;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s;
            margin: 0 auto;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #ff5252;
            transform: translateY(-3px);
        }
        
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .slider-dot.active {
            background-color: white;
            transform: scale(1.2);
        }
        
        /* Main Content Styles */
        .main-content {
            /* padding: 60px 20px; */
            background-color: #ffffff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Contact Form Styles */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border 0.3s;
        }
        
        .form-control:focus {
            border-color: #007bff;
            outline: none;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 12px;
            font-size: 16px;
        }
        
        .form-message {
            text-align: center;
            margin-top: 20px;
            padding: 10px;
            border-radius: 4px;
            display: none;
        }
        
        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            display: block;
        }
        
        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            display: block;
        }
        
        /* Footer Styles */
        .footer {
            background-color: #222;
            color: #fff;
            padding: 60px 0 0;
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            flex-wrap: wrap;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 0 15px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            /* background-color: #a5702a; */
        }
        
        .footer-column p {
            margin-bottom: 15px;
            color: #bbb;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #a5702a;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a img {
            transition: transform 0.3s;
        }
        
        .social-links a:hover img {
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            background-color: #111;
            margin-top: 40px;
        }
        
        .footer-bottom p {
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #fff;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                opacity: 0;
                transition: all 0.3s;
                z-index: 100;
            }
            
            .img1{
              height: 380px;
              width: 100%;
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .hamburger {
                display: block;
                order: -1;
            }
            
            .hamburger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .hamburger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .logo {
                order: -2;
            }
            
            .hero-slider {
                margin-top: 60px;
                
            }
            
            .slide-content {
                padding: 30px;
                gap: 20px;
            }
            
            .slide h1 {
                font-size: 2rem;
            }
            
            .slide p {
                font-size: 1rem;
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-column {
                margin-bottom: 40px;
            }
            
            .footer-column:last-child {
                margin-bottom: 0;
            }
        }
        
        @media (max-width: 480px) {
            .hero-slider {
                margin-top: 50px;
            }
            
            .slide-content {
                padding: 20px;
                gap: 15px;
            }
            
            .slide h1 {
                font-size: 1.5rem;
            }
        }

        /* Text-Image Section Styles */
        .text-image-section {
            padding: 80px 20px;
            background-color: #fff;
        }

        .text-image-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .text-content {
            flex: 1;
        }

        .text-content h2 {
            font-size: 40px;
            margin-bottom: 20px;
        }

        .text-content p {
            font-size: 25;
            margin-bottom: 30px;
            line-height: 1.6;
            font-weight: 500;
        }

        .image-content {
            flex: 1;
            position: relative;
        }

        .image-content img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .text-image-container {
                flex-direction: column;
                gap: 30px;
            }

            .text-content, .image-content {
                flex: none;
                width: 100%;
            }

            .text-content h2 {
                font-size: 1.8rem;
            }
        }

        .image-text-section {
            padding: 80px 20px;
        }

        .image-text-section:nth-child(odd) {
            background-color: #f9f9f9;
        }

        .image-text-section:nth-child(even) {
            background-color: #fff;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 50px;
        }

        /* Default layout (image right, text left) */
        .text-content {
            flex: 1;
        }

        .image-content {
            flex: 1;
        }

        /* Alternate layout (image left, text right) */
        .image-left .section-container {
            flex-direction: row-reverse;
        }

        .section-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #333;
        }

        .section-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .image-content img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .section-container,
            .image-left .section-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .image-text-section {
                padding: 60px 15px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
        }

        /* .sec1 .section-title{
          color: #a5702a;
          font-size: 50px;
        } */


        .sec1 .text-content h2 {
            /* font-size: 70px; */
            margin-bottom: 20px;
            color: #a5702a;
        }

        .sec1 .text-content p {
            /* font-size: 60px; */
            color: #a5702a;
            margin-bottom: 30px;
            line-height: 1.6;
            font-weight: 500;
        }

        .sec2 .text-content h2 {
            /* font-size: 70px; */
            margin-bottom: 20px;
            color: #092238;
        }

        .sec2 .text-content p {
            /* font-size: 60px; */
            color: #092238;
            margin-bottom: 30px;
            line-height: 1.6;
            font-weight: 500;
        }

        .product-section {
            padding: 80px 20px;
            background-color: #f9f9f9;
            width: 100%;
            overflow-x: hidden;
            word-wrap: break-word;
            overflow-y: visible;
            
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            overflow-x: hidden;
        }

        .section-header h2 {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 15px;
        }

        .products-container {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .product-card {
            display: flex;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .product-image {
            flex: 0 0 165px;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .product-info {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .product-title {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 8px;
        }

        .product-price {
            font-size: 1.1rem;
            color: #ff6b6b;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .product-description {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .product-rating {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .add-to-cart {
            align-self: flex-start;
            padding: 8px 20px;
            background-color: #ff6b6b;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .products-container {
                grid-template-columns: 1fr;
            }
            
            .product-card {
                flex-direction: column;
            }
            
            .product-image {
                flex: 0 0 200px;
            }
        }

        @media (max-width: 480px) {
            .product-section {
                padding: 60px 15px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .product-title {
                font-size: 1.1rem;
            }
        }


        .filter-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .filter-btn {
            padding: 8px 20px;
            background-color: #f0f0f0;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .filter-btn.active {
            background-color: #299bd7;
            color: white;
        }

        /* Product Color Classes */
        /* .product-black {

        }

        .product-white {

        } */

        /* Hide filtered products */
        .products-container.hide-black .product-black {
            display: none;
        }

        .products-container.hide-white .product-white {
            display: none;
        }

        a i {
  font-size: 28px;
  color: #a5702a;
  margin: 0 10px;
  transition: color 0.3s ease;
}

a i:hover {
  color: #1877F2; /* Facebook blue */
}

a i.fa-instagram:hover {
  color: #E1306C; /* Instagram pink */
}

 .contact-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info {
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .contact-info h2 {
            font-size: 28px;
            margin-bottom: 30px;
            color: #222;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-info h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #a5702a;
        }

        .contact-info p.subtitle {
            color: #666;
            margin-bottom: 30px;
            font-size: 16px;
        }

        .info-group {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .info-icon {
            font-size: 20px;
            color: #a5702a;
            margin-top: 3px;
            min-width: 25px;
            text-align: center;
        }

        .info-content h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: #444;
        }

        .info-content p {
            color: #666;
        }

        .contact-form {
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .contact-form h2 {
            font-size: 28px;
            margin-bottom: 30px;
            color: #222;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-form h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #a5702a;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #a5702a;
            box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: #a5702a;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .submit-btn:hover {
            background-color: #a5702a;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
        }

        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .contact-info, .contact-form {
                padding: 30px 20px;
            }
            
            .contact-info h2, .contact-form h2 {
                font-size: 24px;
            }
            
            .info-group {
                flex-direction: column;
                gap: 8px;
            }
            
            .submit-btn {
                width: 100%;
                justify-content: center;
            }
        }

        .sticky-contact {
            position: fixed;
            right: 20px;
            bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }

        .sticky-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .sticky-icon:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }

        .whatsapp-icon {
            background-color: #25D366;
        }

        .phone-icon {
            background-color: #ff6b6b;
        }

        /* Animation */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .sticky-icon.pulse {
            animation: pulse 1.5s infinite;
        }
        

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .sticky-contact {
                right: 30px;
                bottom: 15px;
            }
            
            .sticky-icon {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
        }
@media (max-width: 768px) {
  .container,
  .header,
  .footer-container,
  .text-image-container,
  .main-content,
  .section-container,
  .products-container,
  .contact-container {
    width: 100% !important;
    max-width: 100% !important;
        /* padding-left: 15px;
        padding-right: 15px; */
    margin-left: auto;
    margin-right: auto;
    /* border: #111 solid; */
    overflow-x: hidden;
  }
}
.main, .wrapper {
  position: relative;
  height: auto;
  overflow: visible;
}


