/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

      .navbar {
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #2c3e50;
      padding: 12px 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      flex-wrap: wrap;
    }
    

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
    }

    .logo a {
      display: flex;
      align-items: center;
      text-decoration: none;
      font-size: 34px;
      font-weight: bold;
      color: white;
    }

    .logo a:hover {
      color: #f39c12;
    }

    .logo-img {
      width: 100px;
      height: 50px;
      margin-right: 10px;
      border-radius: 8px; /* square logo */
      object-fit: cover;
      border: 2px solid white;
    }

    /* Search Bar */
    .search-bar {
      display: flex;
      align-items: center;
      background: white;
      border-radius: 30px;
      padding: 5px;
      width: 25%;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .search-bar input {
      border: none;
      outline: none;
      padding: 10px;
      width: 90%;
      font-size: 16px;
      border-radius: 30px 0 0 30px;
    }

    .search-bar button {
      background: #f39c12;
      border: none;
      cursor: pointer;
      padding: 10px 15px;
      border-radius: 0 30px 30px 0;
      transition: background 0.3s;
    }

    .search-bar button i {
      font-size: 18px;
      color: white;
    }

    .search-bar button:hover {
      background: #e67e22;
    }

    /* Navigation Links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 18px;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 10px;
      border-radius: 5px;
      transition: background 0.3s, color 0.3s;
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, 0.2);
      color: #f39c12;
    }

    /* Hamburger Icon */
    .hamburger {
      display: none;
      font-size: 28px;
      color: white;
      cursor: pointer;
      border: none;
      background: none;
    }

    /* Responsive Styling */
    @media (max-width: 768px) {
      .search-bar {
        width: 90%;
        margin: 10px auto;
      }

      .hamburger {
        display: block;
      }

      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
        gap: 15px;
      }

      .nav-links.show {
        display: flex;
      }

      .nav-links a {
        padding: 10px 20px;
        width: 100%;
        font-size: 18px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      }
    }

.category-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
    padding: 40px 30px;
    background: linear-gradient(to right, #fdfbfb, #ebedee);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.category-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.category-box img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #f0f0f0;
}

.category-box span {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    text-transform: capitalize;
}

/* 📱 Responsive Mobile View */
@media (max-width: 768px) {
    .category-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 15px;
        gap: 20px;
    }

    .category-box {
        padding: 12px;
    }

    .category-box img {
        width: 60px;
        height: 60px;
    }

    .category-box span {
        font-size: 13px;
    }
}

/* 📱 Extra Small Devices */
@media (max-width: 480px) {
    .category-container {
        grid-template-columns: 1fr;
    }
}

.containers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
}

/* Brand Header Styles */
.brand-header {
    background-color: #ff6b00;
    color: white;
    padding: 15px 0;
    text-align: center;
    margin-bottom: 20px;
}

.brand-logo {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.brand-tagline {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Main Auction Container */
.auction-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 30px;
    width: 110%;
    margin: 20px auto;
}

.auction-header {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 2.2em;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 3px solid #eee;
}

/* Item Details */
.item-details {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fefefe;
}

.item-info {
    padding: 20px;
    line-height: 1.8;
    color: #555;
}

.item-title {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.item-description {
    color: #4d565e;
    margin-bottom: 25px;
    font-size: 1.1em;
}

/* Bid Info Section */
.bid-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.current-bid-section, .time-left-section {
    text-align: center;
    margin: 10px 0;
    flex: 1;
    min-width: 150px;
}

.current-bid-label, .time-left-label {
    color: #555;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 600;
}

.current-bid-value {
    color: #27ae60;
    font-weight: bold;
    font-size: 2em;
}

.time-left-value {
    color: #e74c3c;
    font-weight: bold;
    font-size: 2em;
}

/* Bid Form */
.bid-form {
    background-color: #f4f4f4;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #ddd;
}

.bid-form-title {
    color: #34495e;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.4em;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
    padding-bottom: 12px;
}

.bid-input-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.bid-label {
    margin-right: 20px;
    color: #2c3e50;
    font-weight: bold;
    width: 120px;
    text-align: right;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.bid-input {
    padding: 12px;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    flex-grow: 1;
    font-size: 1.1em;
    transition: border-color 0.2s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    min-width: 200px;
}

.bid-input:focus {
    border-color: #3498db;
    outline: none;
}

.place-bid-button {
    background-color: #e67e22;
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: block;
    width: 100%;
    text-align: center;
}

.place-bid-button:hover {
    background-color: #d35400;
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bid-message-area {
    margin-top: 20px;
    font-size: 1em;
    font-style: italic;
    color: #2c3e50;
    font-weight: 500;
    text-align: center;
}

/* Auction Details */
.auction-details {
    border-top: 2px solid #ddd;
    padding-top: 25px;
    font-size: 1em;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 30px;
}

.auction-details p {
    margin-bottom: 15px;
}

/* Bidder List */
.bidder-list {
    margin-top: 30px;
    border-top: 2px solid #ddd;
    padding-top: 20px;
}

.bidder-list-title {
    color: #34495e;
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
}

.bidder-item {
    padding: 12px 0;
    border-bottom: 1px dotted #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1em;
}

.bidder-item:last-child {
    border-bottom: none;
}

.bidder-name {
    color: #2c3e50;
    font-weight: 600;
    flex: 1;
    text-align: left;
}

.bidder-amount {
    color: #27ae60;
    font-weight: bold;
    flex: 1;
    text-align: right;
}

/* Comment Section */
.comment-section {
    margin-top: 30px;
    border-top: 2px solid #ddd;
    padding-top: 20px;
}

.comment-title {
    color: #34495e;
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
}

.comment {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    line-height: 1.6;
}

.comment-author {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1em;
    display: block;
}

.comment-text {
    color: #4d565e;
    font-size: 1em;
}

/* Social Share */
.social-share {
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.social-share a {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 5px;
    transition: opacity 0.2s ease;
}

.social-share a:hover {
    opacity: 0.9;
}

/* Additional Info */
.additional-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #eee;
    line-height: 1.7;
}

.additional-info h6 {
    color: #34495e;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: bold;
}

.additional-info p {
    margin-bottom: 15px;
}

/* Mobile Auction Grid */
.mobile-auction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.auction-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px;
    transition: transform 0.3s ease;
}

.auction-card:hover {
    transform: translateY(-5px);
}

.auction-card img {
    width: 70px;
    height: 70px;
    display: block;
    margin: 0 auto 15px;
    object-fit: contain;
}

.auction-card h3 {
    margin: 10px 0;
    font-size: 1.3em;
    color: #2c3e50;
    text-align: center;
}

.auction-card p {
    margin: 8px 0;
    font-size: 0.95em;
    text-align: center;
}

.auction-card input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.auction-card button {
    margin-top: 10px;
    width: 100%;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auction-card button:hover {
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .auction-container {
        padding: 20px 15px;
    }
    
    .bid-info {
        flex-direction: column;
        text-align: center;
    }
    
    .current-bid-section, .time-left-section {
        margin: 15px 0;
    }
    
    .bid-input-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bid-label {
        text-align: left;
        margin-bottom: 8px;
        width: auto;
    }
    
    .bid-input {
        width: 100%;
    }
    
    .mobile-auction-grid {
        grid-template-columns: 1fr;
    }
    
    .social-share {
        flex-direction: column;
        align-items: center;
    }
    
    .social-share a {
        width: 80%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        font-size: 2em;
    }
    
    .brand-tagline {
        font-size: 1em;
    }
    
    .auction-header {
        font-size: 1.8em;
    }
    
    .item-title {
        font-size: 1.5em;
    }
    
    .current-bid-value, .time-left-value {
        font-size: 1.8em;
    }
}

/* Container */
.container {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 20px;
}

/* Products Section */
.products {
  flex: 3;
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Product Title */
.products h2 {
  margin-bottom: 15px;
  text-align: left;
}

/* Scroll Container */
.scroll-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Product List Container */
.product-list-container {
  overflow-x: auto;
  max-width: 100%;
  scroll-behavior: smooth;
  white-space: nowrap;
}

/* Hide scrollbar */
.product-list-container::-webkit-scrollbar {
  display: none;
}

/* Product List */
.product-list {
  display: flex;
  gap: 15px;
  padding-bottom: 10px;
}

/* Individual Product */
.product {
  text-align: center;
  width: 180px;
  flex-shrink: 0;
}

.product img {
  width: 180px;
  height: 180px;
  border-radius: 5px;
}

/* Scroll Buttons */
.scroll-button {
  background-color: #0f0777;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  transition: background 0.3s;
}

.scroll-button:hover {
  background-color: #09054d;
}

/* Advertisement Section */
.ad-section {
  flex: 1;
  margin-left: 20px;
  background: #0052cc;
  color: white;
  padding: 20px;
  width: 100px;
  height: 350px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ad-section img {
  width: 90%;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
}


 .contain {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .products h2 {
            font-size: 28px;
            color: #333;
            margin-bottom: 25px;
            font-weight: 600;
            text-align: center;
            position: relative;
            padding-bottom: 10px;
        }
        
        .products h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #ff6b00;
        }
        
        .product-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .product {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-align: center;
            padding-bottom: 15px;
        }
        
        .product:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .product img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-bottom: 1px solid #eee;
        }
        
        .product p {
            font-size: 16px;
            color: #333;
            margin: 15px 0 5px;
            font-weight: 500;
        }
        
        .product strong {
            color: #ff6b00;
            font-size: 18px;
            display: block;
            margin-bottom: 10px;
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .product-list {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .products h2 {
                font-size: 24px;
            }
            
            .product-list {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                gap: 15px;
            }
            
            .product img {
                height: 150px;
            }
        }
        
        @media (max-width: 576px) {
            .contain {
                padding: 15px;
            }
            
            .products h2 {
                font-size: 22px;
                margin-bottom: 20px;
            }
            
            .product-list {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .product p {
                font-size: 15px;
                margin: 10px 0 5px;
            }
            
            .product strong {
                font-size: 16px;
            }
        }
        
        @media (max-width: 400px) {
            .product-list {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .product img {
                height: 180px;
            }
        }

.footer {
      background: #181818;
      color: #ffffff;
      padding: 20px 0;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      max-height: 400px;
      margin: 0 auto;
      padding: 20px;
    }

    .footer-section {
      flex: 1;
      min-width: 200px;
      margin: 10px;
    }

    .footer-section h3 {
      font-size: 14px;
      color: #b0b0b0;
      margin-bottom: 10px;
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
    }

    .footer-section ul li {
      margin: 5px 0;
    }

    .footer-section ul li a {
      text-decoration: none;
      color: white;
      font-size: 14px;
    }

    .footer-section p {
      font-size: 14px;
      color: #b0b0b0;
      line-height: 1.5;
    }

    .footer-bottom {
      text-align: center;
      padding: 10px;
      border-top: 1px solid #333;
    }

    .social-icons a {
      color: white;
      margin: 0 10px;
      font-size: 20px;
      text-decoration: none;
    }

    .social-icons a:hover {
      color: #ffcc00;
    }

    /* ✅ Mobile View Styling */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        max-height: none;
        padding: 10px;
      }

      .footer-section {
        margin: 15px 0;
        padding: 10px;
        background-color: #222;
        border-radius: 10px;
      }

      .footer-section h3 {
        font-size: 16px;
        margin-bottom: 8px;
        color: #ffcc00;
        border-bottom: 1px solid #444;
        padding-bottom: 4px;
      }

      .footer-section ul li a {
        font-size: 15px;
        color: #dddddd;
      }

      .footer-section p {
        font-size: 14px;
        color: #cccccc;
      }

      .footer-bottom {
        padding: 20px 10px;
        font-size: 14px;
      }

      .social-icons {
        margin-bottom: 10px;
      }

      .social-icons a {
        font-size: 24px;
        margin: 0 8px;
      }
    }

 #auth-section {
            padding: 50px 0;
            max-width: 600px; /* Wider for background image visibility */
            width: 100%;
            margin: 0 auto;
        }

        .wrapper {
            background: url('img/luxury_pattern.jpg') no-repeat center center/cover; /* Luxury background */
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
            z-index: 0;
        }

        .title-text {
            display: flex;
            width: 200%;
            perspective: 1000px; /* For book-like effect */
            position: relative;
            z-index: 1;
        }

        .title {
            width: 50%;
            font-size: 28px;
            font-weight: 500;
            text-align: center;
            color: #f9e4b7; /* Light cream for contrast */
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .slide-controls {
            display: flex;
            position: relative;
            margin: 30px 0;
            height: 50px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1); /* Semi-transparent */
            overflow: hidden;
            z-index: 1;
        }

        .slide-controls .slide {
            width: 50%;
            line-height: 50px;
            text-align: center;
            cursor: pointer;
            z-index: 1;
            font-weight: 500;
            font-size: 16px;
            color: #f9e4b7;
            transition: color 0.3s ease;
        }

        .slider-tab {
            position: absolute;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, #f39c12, #f39c12); /* Burgundy gradient */
            border-radius: 8px;
            z-index: 0;
            transition: all 0.4s ease;
            left: 0;
            box-shadow: 0 0 10px rgba(128, 0, 32, 0.5);
        }

        input[type="radio"] {
            display: none;
        }

        #signup:checked ~ label.signup {
            color: #ffffff;
        }

        #signup:checked ~ label.login {
            color: #f9e4b7;
        }

        #signup:checked ~ .slider-tab {
            left: 50%;
        }

        #login:checked ~ label.signup {
            color: #f9e4b7;
        }

        #login:checked ~ label.login {
            color: #ffffff;
        }

        .form-container {
            overflow: hidden;
            perspective: 1000px;
            position: relative;
            z-index: 1;
        }

        .form-inner {
            display: flex;
            width: 200%;
            transition: transform 0.6s ease;
            transform-style: preserve-3d;
        }

        #signup:checked ~ .form-inner {
            transform: translateX(-50%) rotateY(-10deg); /* Book page flip */
        }

        #login:checked ~ .form-inner {
            transform: translateX(0) rotateY(10deg);
        }

        .form-inner form {
            width: 50%;
            padding: 0 15px;
            background: rgba(255, 255, 255, 0.05); /* Slight transparency */
            border-radius: 8px;
        }

        .field {
            margin-top: 20px;
            width: 100%;
        }

        .field input {
            width: 100%;
            padding: 14px 16px;
            font-size: 16px;
            border: 1px solid #a3a3a3;
            border-radius: 6px;
            outline: none;
            background: rgba(255, 255, 255, 0.1);
            color: #f9e4b7;
            font-family: 'Roboto', sans-serif;
        }

        .field input:focus {
            border-color: #f39c12; /* Burgundy on focus */
            box-shadow: 0 0 6px rgba(10, 10, 10, 0.774);
        }

        .show-pass {
            margin-top: 12px;
            font-size: 14px;
            color: #d1d5db;
            display: flex;
            align-items: center;
            gap: 10px;
            user-select: none;
        }

        .show-pass input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: #f39c12;
            cursor: pointer;
        }

        .show-pass label {
            cursor: pointer;
            font-family: 'Roboto', sans-serif;
        }

        .pass-link,
        .signup-link {
            margin-top: 12px;
            font-size: 14px;
            text-align: center;
        }

        .pass-link a,
        .signup-link a {
            text-decoration: none;
            color: #f39c12;
            transition: color 0.3s ease;
        }

        .pass-link a:hover,
        .signup-link a:hover {
            color: #f39c12;
        }

        .btn {
            margin-top: 25px;
            position: relative;
            overflow: hidden;
            border-radius: 6px;
        }

        .btn-layer {
            position: absolute;
            width: 300%;
            height: 100%;
            left: -100%;
            background: linear-gradient(to right, #f39c12, #f39c12, #f39c12);
            transition: all 0.4s ease;
            border-radius: 6px;
        }

        .btn:hover .btn-layer {
            left: 0;
        }

        .btn input[type="submit"] {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            background: none;
            border: none;
            font-size: 18px;
            color: #ffffff;
            font-weight: 600;
            cursor: pointer;
            padding: 16px 0;
            border-radius: 6px;
            font-family: 'Roboto', sans-serif;
        }


        .features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background-color: #3a1d0f;
}

.feature-card {
  background-color: #4a2a1a;
  color: white;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 calc(25% - 20px); /* Desktop: 4 cards in a row */
  min-width: 260px;
  max-width: 300px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.icon {
  font-size: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
}

/* Tablet View */
@media (max-width: 991px) {
  .feature-card {
    flex: 1 1 calc(50% - 20px); /* 2 per row */
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .feature-card {
    flex: 1 1 100%; /* 1 per row */
    max-width: 100%;
  }

  .features-container {
    padding: 20px 10px;
  }

  .feature-card {
    padding: 15px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
  }
}



.category-carousel {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background-color: #fefefe;
}

.categories-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 10px 20px;
  scrollbar-width: none;
}

.categories-wrapper::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 100px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.category-item:hover {
  transform: scale(1.08);
  border-color: #ff5e57;
}

.category-item .icon {
  font-size: 26px;
  margin-bottom: 6px;
  color: #444;
}

.category-item span {
  font-size: 12px;
  color: #333;
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Navigation buttons */
.nav-btn {
  border: none;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  width: 35px;
  height: 35px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s ease;
}

.nav-btn.left {
  left: 5px;
}
.nav-btn.right {
  right: 5px;
}

.nav-btn:hover {
  background: #ff5e57;
  color: white;
}

/* 🔄 Mobile Responsive */
@media (max-width: 768px) {
  .category-item {
    min-width: 80px;
    height: 80px;
  }

  .category-item .icon {
    font-size: 22px;
  }

  .category-item span {
    font-size: 11px;
  }

  .nav-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

  
/* Main section */
.factory-section {
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fafafa;
}

.factory-section h2 {
  font-size: 2rem;
  text-align: center;
  color: #111;
  margin-bottom: 30px;
}

/* Cards container */
.factory-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Individual card */
.factory-card {
  position: relative;
  width: 400px;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.factory-card:hover {
  transform: scale(1.03);
}

/* Overlay content */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  color: #fff;
}

.card-label {
  font-size: 1.2rem;
  font-weight: 600;
}

.card-link {
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
  text-decoration: none;
  width: fit-content;
  transition: 0.3s;
}

.card-link:hover {
  color: #ff9a00;
  border-color: #ff9a00;
}

/* ✅ Mobile Responsive Design */
@media screen and (max-width: 768px) {
  .factory-section {
    padding: 20px 15px;
  }

  .factory-card {
    width: 100%;
    height: 280px;
  }

  .card-label {
    font-size: 1rem;
  }

  .card-link {
    font-size: 0.9rem;
  }
}

  
  a {
    color: white;
    text-decoration: underline;
    font-size: 1rem;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .cards-container {
      flex-direction: column;
    }
  
    .card {
      width: 100%;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  }

  /* General Hero Section Styling */
.hero {
  background-color: #f5f5f5;
  padding: 60px 40px;
  text-align: center;
}

.hero h1 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.4;
}

/* Cards container */
.cards-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* Each Card */
.card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  text-align: left;
}

/* Highlighted letters/icons */
.highlight,
.icon {
  color: #ff6600;
  font-weight: bold;
}

/* Card text elements */
.card h2 {
  font-size: 1.8rem;
  margin: 10px 0;
}

.card h3 {
  font-size: 1.2rem;
  color: #666;
}

.card p {
  font-size: 1rem;
  color: #444;
  margin: 20px 0;
}

/* Card buttons container */
.card-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Button Styling */
.btn {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e65c00;
}

.card-buttons a {
  color: #ff6600;
  font-weight: 500;
  text-decoration: underline;
}

/* -------------------------- */
/* ✅ Responsive - Mobile View */
/* -------------------------- */
@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    margin-bottom: 30px;
    text-align: left;
    padding: 25px;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .card h2 {
    font-size: 1.4rem;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.95rem;
  }

  .card-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

  .container {
    display: flex;
    gap: 20px;
    padding: 20px;
  }
  
  /* Left Section */
  .left-section {
    flex: 1;
  }
  
  .product-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .product-image {
    width: 300%;
    border-radius: 10px;
  }
  
  .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
  }
  
  .thumbnail-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  .thumbnail {
    width: 30%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .thumbnail:hover {
    transform: scale(1.05);
  }
  
  .middle-section {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  /* Styling individual cards */
  .small-product {
    width: 200px;
    height:auto;
    background: #ffffff; /* White background */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Soft shadow */
    padding: 10px;
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
  }
  
  /* Hover effect */
  .small-product:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  
  .new-this-week {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .new-this-week h4 {
    margin: 0;
    font-size: 1.1rem;
  }
  
  .new-this-week p {
    margin: 0;
    color: gray;
    font-size: 0.9rem;
  }
  
  /* Right Section */
  .right-section {
    flex: 0.8;
  }
  
  .right-section h3 {
    margin-bottom: 10px;
  }
  
  .deal-card {
    position: relative;
    background: white;
    padding: 10px;
    width: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff5722;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
  }
  
  .deal-image {
    width: 100%;
    border-radius: 8px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
  
    .small-product, .thumbnail {
      width: 100%;
    }
  }

/* Supplier Section */
.supplier-section {
  width: 100%;
  max-width: 1400px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  padding: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header */
.supplier-header {
  text-align: center;
  margin-bottom: 20px;
}

.supplier-header h2 {
  font-size: 26px;
  font-weight: bold;
  margin: 0;
  color: #333;
}

/* Supplier Container */
.supplier-container {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  gap: 10px;
}

/* Navigation Buttons */
.nav-button {
  background-color: #0056b3;
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
  position: absolute;
  z-index: 10;
}

.nav-button.left {
  left: -30px;
}

.nav-button.right {
  right: -30px;
}

.nav-button:hover {
  background-color: #003d80;
}

/* Supplier List */
.supplier-list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 15px 0;
  gap: 20px;
  white-space: nowrap;
  max-width: 90%;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.supplier-list::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome & Safari */
}

/* Supplier Item */
.supplier-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 130px;
  background: #ffffff;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.supplier-item:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Flag Icon */
.flag-icon {
  width: 70px;
  height: 50px;
  border-radius: 50%;
  background-color: #f5f5f5;
  padding: 10px;
  object-fit: contain;
  margin-bottom: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Country Name */
.supplier-item span {
  font-size: 16px;
  font-weight: bold;
  color: #0056b3;
}
  
.carousel-section {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f6 100%);
    font-family: 'Roboto', sans-serif;
    
  }

  .carousel-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2b49;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .carousel-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff5555, #ff8080);
    border-radius: 2px;
  }

  .carousel {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .carousel-inner {
    position: relative;
  }

  .carousel-item {
    position: relative;
    width: 100%;
    height: 400px; /* Fixed height for consistency */
  }

  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }

  .carousel-item:hover img {
    transform: scale(1.05);
  }

  /* Fallback for broken images */
  .carousel-item img:not([src])::before,
  .carousel-item img[src=""]::before {
    content: '';
    display: block;
    width: 100%;
    height: 400px;
    background: url('https://via.placeholder.com/1200x400?text=Image+Not+Found') no-repeat center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .carousel-caption {
    background: rgba(26, 43, 73, 0.7);
    border-radius: 8px;
    padding: 15px;
    bottom: 20px;
    text-align: center;
  }

  .carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
  }

  .carousel-caption p {
    font-size: 1rem;
    color: #ffd700;
    margin-bottom: 10px;
  }

  .carousel-caption .btn {
    background: linear-gradient(45deg, #ff5555, #ff8080);
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .carousel-caption .btn:hover {
    background: linear-gradient(45deg, #ff8080, #ff5555);
    transform: scale(1.03);
  }

  /* Carousel Controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
  }

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.5);
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 50%;
  }

  /* Mobile Responsive Styles */
  @media (max-width: 768px) {
    .carousel-section {
      padding: 1.5rem 0.5rem;
    }

    .carousel-heading {
      font-size: 2rem;
    }

    .carousel-item {
      height: 300px;
    }

    .carousel-item img:not([src])::before,
    .carousel-item img[src=""]::before {
      height: 300px;
    }

    .carousel-caption {
      padding: 10px;
      bottom: 15px;
    }

    .carousel-caption h5 {
      font-size: 1.2rem;
    }

    .carousel-caption p {
      font-size: 0.9rem;
    }

    .carousel-caption .btn {
      padding: 8px 15px;
      font-size: 0.85rem;
    }
  }

  @media (max-width: 480px) {
    .carousel-item {
      height: 250px;
    }

    .carousel-item img:not([src])::before,
    .carousel-item img[src=""]::before {
      height: 250px;
    }

    .carousel-caption {
      padding: 8px;
      bottom: 10px;
    }

    .carousel-caption h5 {
      font-size: 1rem;
    }

    .carousel-caption p {
      font-size: 0.8rem;
    }

    .carousel-caption .btn {
      padding: 6px 12px;
      font-size: 0.8rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 8%;
    }
  }

/* 99metros Deals Section */
  .deals-section {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f6 100%);
    font-family: 'Roboto', sans-serif;
    min-height: auto;
  }
  
  .deals-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2b49;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .deals-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff5555, #ff8080);
    border-radius: 2px;
  }
  
  .deals-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Exactly 4 columns for one row */
    gap: 20px;
    max-width: 1200px; /* Reduced max-width for 4 cards */
    margin: 0 auto;
    padding: 0 10px;
  }
  
  .deal-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e8ecef;
  }
  
  .deal-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .deal-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff5555, #ff8080);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
  }
  
  .deal-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
  }
  
  .deal-item:hover .deal-image {
    transform: scale(1.06);
  }
  
  /* Fallback for broken images */
  .deal-image::after {
    content: '';
    display: block;
    width: 100%;
    height: 180px;
    background: url('https://via.placeholder.com/300x180?text=Image+Not+Found') no-repeat center;
    background-size: cover;
  }
  
  .deal-content {
    padding: 1rem;
  }
  
  .deal-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2b49;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .deal-description {
    font-size: 0.85rem;
    color: #5a6a85;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .deal-price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  
  .deal-price {
    font-size: 1.2rem;
    color: #ff5555;
    font-weight: 700;
  }
  
  .deal-original-price {
    font-size: 0.9rem;
    color: #8a94a6;
    text-decoration: line-through;
  }
  
  .deal-discount {
    font-size: 0.8rem;
    background: #ffd700;
    color: #1a2b49;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 600;
  }
  
  .deal-link {
    display: block;
    text-align: center;
    padding: 10px;
    background: linear-gradient(45deg, #ff5555, #ff8080);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .deal-link:hover {
    background: linear-gradient(45deg, #ff8080, #ff5555);
    transform: scale(1.03);
  }
  
  /* Mobile Responsive Styles */
  @media (max-width: 1024px) {
    .deals-container {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Flexible columns for smaller screens */
      gap: 15px;
    }
    
    .deal-image {
      height: 160px;
    }
    
    .deal-content {
      padding: 0.8rem;
    }
    
    .deal-title {
      font-size: 0.95rem;
    }
    
    .deal-description {
      font-size: 0.8rem;
    }
    
    .deal-price {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 768px) {
    .deals-section {
      padding: 2rem 0.5rem;
    }
    
    .deals-heading {
      font-size: 2rem;
    }
    
    .deals-container {
      grid-template-columns: 1fr; /* Stack cards vertically on mobile */
      gap: 15px;
      padding: 0 8px;
    }
    
    .deal-item {
      max-width: 350px;
      margin: 0 auto;
    }
    
    .deal-image {
      height: 180px;
    }
    
    .deal-content {
      padding: 0.9rem;
    }
    
    .deal-title {
      font-size: 1rem;
    }
    
    .deal-description {
      font-size: 0.85rem;
    }
    
    .deal-price {
      font-size: 1.15rem;
    }
    
    .deal-link {
      padding: 8px;
      font-size: 0.85rem;
    }
  }
  
  @media (max-width: 480px) {
    .deals-container {
      gap: 12px;
    }
    
    .deal-item {
      max-width: 320px;
    }
    
    .deal-image {
      height: 160px;
    }
    
    .deal-title {
      font-size: 0.95rem;
    }
    
    .deal-description {
      font-size: 0.8rem;
    }
    
    .deal-price-container {
      gap: 6px;
    }
    
    .deal-price {
      font-size: 1.1rem;
    }
    
    .deal-original-price {
      font-size: 0.85rem;
    }
    
    .deal-discount {
      font-size: 0.75rem;
      padding: 2px 6px;
    }
  }

 .coupons-section {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f6 100%);
    font-family: 'Roboto', sans-serif;
    min-height: auto;
  }

  .coupons-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2b49;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .coupons-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff5555, #ff8080);
    border-radius: 2px;
  }

  .coupons-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Exactly 4 columns for one row */
    gap: 20px;
    max-width: 1200px; /* Adjusted for 4 cards */
    margin: 0 auto;
    padding: 0 10px;
  }

  .coupon-card {
    background-color: #fff;
    border: 2px dashed #ff5555;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .coupon-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .discount {
    font-size: 1.5rem;
    color: #ff5555;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .discount::before {
    content: '🎉';
    font-size: 1.2rem;
  }

  .coupon-details {
    font-size: 0.9rem;
    color: #5a6a85;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .coupon-code {
    font-size: 1rem;
    font-weight: 600;
    background-color: #f9f9f9;
    border: 1px dashed #ff8080;
    padding: 8px 12px;
    margin: 10px 0;
    display: inline-block;
    border-radius: 5px;
  }

  .copy-btn {
    background: linear-gradient(45deg, #ff5555, #ff8080);
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .copy-btn:hover {
    background: linear-gradient(45deg, #ff8080, #ff5555);
    transform: scale(1.03);
  }

  .expiry {
    font-size: 0.85rem;
    color: #8a94a6;
    margin-top: 8px;
  }

  /* Mobile Responsive Styles */
  @media (max-width: 1024px) {
    .coupons-container {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Flexible columns */
      gap: 15px;
    }

    .coupon-card {
      padding: 15px;
    }

    .discount {
      font-size: 1.3rem;
    }

    .coupon-details {
      font-size: 0.85rem;
    }

    .coupon-code {
      font-size: 0.95rem;
    }

    .copy-btn {
      font-size: 0.85rem;
      padding: 7px 10px;
    }
  }

  @media (max-width: 768px) {
    .coupons-section {
      padding: 2rem 0.5rem;
    }

    .coupons-heading {
      font-size: 2rem;
    }

    .coupons-container {
      grid-template-columns: 1fr; /* Stack vertically on mobile */
      gap: 15px;
      padding: 0 8px;
    }

    .coupon-card {
      max-width: 350px;
      margin: 0 auto;
    }

    .discount {
      font-size: 1.2rem;
    }

    .coupon-details {
      font-size: 0.8rem;
    }

    .coupon-code {
      font-size: 0.9rem;
    }

    .copy-btn {
      padding: 6px 10px;
    }

    .expiry {
      font-size: 0.8rem;
    }
  }

  @media (max-width: 480px) {
    .coupons-container {
      gap: 12px;
    }

    .coupon-card {
      max-width: 320px;
      padding: 12px;
    }

    .discount {
      font-size: 1.1rem;
    }

    .coupon-details {
      font-size: 0.75rem;
    }

    .coupon-code {
      font-size: 0.85rem;
      padding: 6px 10px;
    }

    .copy-btn {
      font-size: 0.8rem;
      padding: 6px 8px;
    }

    .expiry {
      font-size: 0.75rem;
    }
  }



.section-title {
  font-size: 29px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab {
  background: #ffffff;
  border: 2px solid #000;
  padding: 12px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
}

.tab.active {
  background: #000;
  color: white;
}

.tab:hover {
  background: black;
  color: white;
}


/* Add padding to the left side */
.product-list-container {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding-left: 20px; /* Adds left padding */
}


.product-list {
  display: flex;
  gap: 15px;
  padding-bottom: 10px;
}

.product1 {
  background: rgb(255, 255, 255);
  border-radius: 5px;
  padding: 10px;
  width: 280px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.product1 img {
  width: 150px;
  height: 150px;
  border-radius: 5px;
}

.product1 p {
  font-size: 11px;
  margin: 10px 0;
}

.product1 strong {
  display: block;
  font-size: 16px;
  color: black;
}

.product1 small {
  font-size: 12px;
  color: gray;
}


.auction-container {
  max-width: 1400px; /* Wider layout */
  margin: 0 auto;
  padding: 20px; /* Added padding */
  text-align: center;
  background: linear-gradient(135deg, #f0f4f8, #d9e2ec); /* Gradient background */
}

.auction-container h1 {
  margin-bottom: 30px;
  font-size: 3.5rem; /* Larger font for prominence */
  color: #1a1a1a; /* Darker color */
  font-weight: 700;
  text-align: left; /* Keep left alignment */
  padding-left: 10px;
  text-transform: uppercase; /* For a premium feel */
}

/* Auction Grid */
.auction-grid {
  display: grid; /* Switched to grid for better responsiveness */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px; /* Increased spacing */
  justify-content: center;
}

/* Auction Card */
.auction-card {
  background-color: #fff;
  border-radius: 12px;
  width: 100%; /* Full width in grid */
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative; /* For potential overlays */
}

.auction-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Auction Image */
.auction-img {
  width: 100%;
  height: 180px; /* Larger images */
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e0e0e0; /* Subtle border */
}

/* Auction Info */
.auction-card h3 {
  font-size: 1.3rem;
  margin: 12px 0;
  color: #1a1a1a;
  font-weight: 600;
}

.current-bid {
  color: #d32f2f; /* Vibrant red */
  font-weight: 700;
  margin: 8px 0;
  font-size: 1.2rem;
}

.timer {
  color: #616161;
  font-size: 1rem;
  margin-bottom: 12px;
}

/* Bid Button */
.bid-btn {
  background-color: #0288d1; /* Bright blue */
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.bid-btn:hover {
  background-color: #01579b;
  transform: scale(1.05);
}

/* General Styles */
.tabs {
  background: #eceff1;
  padding: 60px 0;
}

/* New: 99 Metros Badge */
.metro-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ffd700; /* Gold for premium feel */
  color: #1a1a1a;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.container {
  max-width: 1300px; /* Wider layout for modern displays */
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f7fa; /* Light, neutral background */
  border-radius: 10px; /* Subtle rounding */
}

/* Products Section */
.products {
  margin-bottom: 40px;
}

.products h2 {
  font-size: 2.2rem; /* Prominent heading */
  color: #1a1a1a; /* Dark color for contrast */
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase; /* Modern, bold feel */
}

/* Scroll Container */
.scroll-container {
  position: relative; /* For positioning scroll buttons */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.product-list-container {
  overflow-x: auto; /* Enable horizontal scrolling */
  scroll-behavior: smooth; /* Smooth scrolling */
  max-width: 100%;
  padding: 10px 0;
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.product-list-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.product-list {
  display: flex;
  gap: 20px; /* Space between products */
  padding: 10px;
}

/* Product Card */
.product {
  background-color: #ffffff;
  border-radius: 12px; /* Rounded corners */
  width: 200px; /* Fixed width for consistency */
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  flex-shrink: 0; /* Prevent shrinking in scroll container */
}

.product:hover {
  transform: translateY(-5px); /* Lift effect on hover */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

.product img {
  width: 100%;
  height: 150px; /* Consistent image height */
  object-fit: cover; /* Ensure images fit nicely */
  border-radius: 8px; /* Rounded image corners */
  margin-bottom: 10px;
}

.product p {
  font-size: 1rem;
  color: #333333; /* Darker text for readability */
  margin: 5px 0;
}

.product strong {
  font-size: 1.1rem;
  color: #d81b60; /* Vibrant pink for call-to-action */
  font-weight: 600;
}

/* Scroll Buttons */
.scroll-button {
  background-color: #0288d1; /* Bright blue */
  color: #ffffff;
  border: none;
  border-radius: 50%; /* Circular buttons */
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 10; /* Ensure buttons are above content */
}

.scroll-button:hover {
  background-color: #01579b; /* Darker blue on hover */
  transform: scale(1.1); /* Slight scale-up effect */
}

.scroll-button.left {
  position: absolute;
  left: 0;
}

.scroll-button.right {
  position: absolute;
  right: 0;
}

/* Advertisement Section */
.ad-section {
  background: linear-gradient(135deg, #0288d1, #26a69a); /* Gradient for vibrancy */
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #ffffff; /* White text for contrast */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ad-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.ad-section img {
  width: 100%;
  max-width: 300px; /* Limit image size */
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.ad-section p {
  font-size: 1.1rem;
  margin: 8px 0;
}

.ad-section strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffeb3b; /* Bright yellow for emphasis */
}


/* ----------------------------------
   #checkout
------------------------------------- */
 .checkout-container {
    display: flex;
    max-width: 1600px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.checkout-form {
    width: 50%;
    padding: 20px;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

input, select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.city-state {
    display: flex;
    gap: 10px;
}

.city-state input, .city-state select {
    flex: 1;
}

label {
    font-size: 14px;
    display: block;
    margin: 10px 0;
}

.order-summary {
    width: 50%;
    padding: 20px;
    background: #fafafa;
    border-left: 1px solid #ddd;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cart-item img {
    width: 100px;
    height: 100px;
    border-radius: 5px;
}

.cart-item p {
    flex-grow: 1;
}

.apply-btn {
    width: 100%;
    background: #ddd;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.price-details p {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: 5px 0;
}

.price-details h3 {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.buy-now {
    width: 100%;
    background: #0073e6;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    border-radius: 5px;
}
.shipping-box, .payment-box, .billing-box {
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  padding-left: 20px; /* Added */
}

p.secure-text {
  font-size: 14px;
  color: gray;
  padding-left: 20px; /* Added */
}

.payment-option, .billing-option {
  display: block;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 5px;
  background-color: #eef4ff;
  cursor: pointer;
  padding-left: 20px; /* Added */
}

.payment-option input, .billing-option input {
  margin-right: 10px;
}

.complete-order {
  width: 100%;
  padding: 12px;
  background-color: #0d6efd;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding-left: 20px; /* Added */
}

.complete-order:hover {
  background-color: #025ce2;
}
/*-------------------------
#collections
---------------------------*/

/* Product Grid */
.product2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusts column width dynamically */
  gap: 20px; /* Increased gap between products */
  padding-left: 50px; /* Added left padding */
  padding-right:50px; /* Added right padding */
}

/* Product Card */
.product2 {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  position: relative;
  width: 280px;  /* Increased width */
  height:400px;/*creased height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Product Image */
.image img {
  width: 100%;
  height: 150px; /* Fixed height for image */
  object-fit: cover; /* Ensures proper image fitting */
  border-radius: 8px;
}

/* Sale Badge */
.sale-badge {
  position:absolute;
  top: 10px;
  left: 10px;
  background: black;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}

/* Product Text */
.title {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.brand {
  color:black;
  font-size: 20px;
}

.price {
  font-size: 20px;
  font-weight: bold;
  color: #e60000;
}

.old-price {
  text-decoration: line-through;
  color: gray;
  font-size: 14px;
  margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjusting for smaller screens */
  }

  .product {
      width: 220px;  /* Reduce width for mobile */
      height: 350px; /* Reduce height for mobile */
  }

  .image img {
      height: 160px; /* Adjust image height */
  }
}
.pagination {
  display: flex;
  justify-content: center; /* Centers the pagination */
  align-items: center;
  list-style: none;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px; /* Increase box roundness */
  gap: 12px;
}

.pagination li {
  display: inline-block;
  padding: 12px 18px; /* Increase padding to make buttons bigger */
  font-size: 20px; /* Increase font size */
  cursor: pointer;
  border-radius: 6px; /* Rounded corners */
  color: blue;
  transition: background 0.3s ease;
}

.pagination li.active {
  font-weight: bold;
  border-bottom: 3px solid black; /* Thicker bottom border */
  color: black;
}

.pagination li:hover {
  background: #ddd;
}

.pagination li.disabled {
  color: blue;
  cursor: not-allowed;
}


/* General Styling */
.contain {
  text-align: center;
  padding: 20px;
}

h5 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Earphone Section */
.earphone-section {
  border-top: 2px solid #ccc;
  padding-top: 20px;
}

.earphone-list {
  display: flex;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
}

/* Earphone Items */
.earphone-item {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.earphone-item img {
  width: 170px;
  height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effects */
.earphone-item:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}

.earphone-item img:hover {
  transform: scale(1.05);
}
/* Container styling */
.contain {
  width: 90%;
  max-width: 1700px;
  margin: 30px auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Heading style */
h5 {
  font-size: 26px;
  font-weight: bold;
  color: #333;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 3px solid #ff5722;
  display: inline-block;
  padding-bottom: 5px;
}

/* Section background */
.appliance-section {
  padding: 20px 0;
  background: #ffffff;
  border-radius: 10px;
}

/* Flexbox for appliances */
.appliance-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px;
}

/* Individual appliance item */
.appliance-item {
  width: 200px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s ease-in-out;
  border: 1px solid #ddd;
}

.appliance-item img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

/* Name below appliance */
.appliance-item p {
  font-size: 16px;
  font-weight: 600;
  color: #444;
  margin-top: 10px;
}

/* Hover effects */
.appliance-item:hover {
  transform: translateY(-5px);
  border-color: #ff5722;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

.appliance-item img:hover {
  transform: scale(1.1);
}

.contact-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Left Side Styles */
.contact-left {
    flex: 1;
    padding: 40px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-left h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-left .subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 350px;
}

.contact-graphic {
    position: relative;
    margin: 40px 0;
    width: 250px;
    height: 250px;
}

.contact-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.circle.pulse {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 0.4; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: white;
    color: #6a11cb;
    transform: translateY(-5px);
}

/* Right Side Styles */
.contact-right {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    width: 100%;
}

.contact-form h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 4px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    border-radius: 2px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #999;
    transition: all 0.3s;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group textarea {
    resize: none;
    padding-top: 20px;
}

.form-group label {
    position: absolute;
    left: 45px;
    top: 15px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    left: 35px;
    font-size: 0.8rem;
    background: white;
    padding: 0 5px;
    color: #6a11cb;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #6a11cb;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
    outline: none;
}

.form-group input:focus ~ i,
.form-group textarea:focus ~ i {
    color: #6a11cb;
}

.textarea-group i {
    top: 20px;
    transform: none;
}

.submit-btn {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.2);
}

.direct-contact {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #555;
}

.contact-item i {
    font-size: 1.2rem;
    color: #6a11cb;
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-left, 
    .contact-right {
        padding: 30px;
    }
    
    .contact-left {
        border-radius: 20px 20px 0 0;
    }
    
    .contact-right {
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .contact-left h1 {
        font-size: 2rem;
    }
    
    .contact-form h2 {
        font-size: 1.5rem;
    }
    
    .form-group input, 
    .form-group textarea {
        padding: 12px 12px 12px 40px;
    }
}
.contai {
    width: 100%;
    padding: 30px 15px;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.products h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

/* ✨ Make product list horizontal scroll */
.product-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

/* Optional: Hide scrollbar */
.product-list::-webkit-scrollbar {
    display: none;
}

.product {
    min-width: 200px;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 15px 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    flex-shrink: 0; /* Prevent shrinking on scroll */
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

.product strong {
    color: #e74c3c;
    font-size: 15px;
    font-weight: 600;
}

/* 📱 Mobile Tweaks */
@media (max-width: 768px) {
    .products h2 {
        font-size: 20px;
    }

    .product {
        min-width: 160px;
        padding: 12px 8px;
    }

    .product img {
        height: 100px;
    }

    .product p {
        font-size: 13px;
    }

    .product strong {
        font-size: 13.5px;
    }
}

.social-media-container {
    text-align: center;
    margin: 30px auto;
    padding: 0 20px;
    max-width: 1200px;
    padding-left: 800px;
}

.social-media-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Social Media Colors */
.facebook { background-color: #3b5998; color: white; }
.twitter { background-color: #1DA1F2; color: white; }
.instagram { background-color: #E1306C; color: white; }
.linkedin { background-color: #0077B5; color: white; }
.youtube { background-color: #FF0000; color: white; }
.whatsapp { background-color: #25D366; color: white; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .social-media-links {
        gap: 10px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .social-media-links {
        gap: 8px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .social-media-container {
        margin: 20px auto;
        padding: 0 15px;
    }
}

    
        /* Contact Section */
        .contact-section {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .section-header p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* Contact Container */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        /* Contact Form */
        .contact-form {
            background: black;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        /* Base form group */
.form-group {
    margin-bottom: 1.5rem;
}

/* Label default style */
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* Required field label */
.form-group label.required::after {
    content: " *";
    color: var(--error);
    font-weight: bold;
}

/* Disabled label */
.form-group label.disabled {
    color: #999;
    font-style: italic;
}

/* Error label */
.form-group label.error {
    color: var(--error);
    font-weight: 600;
}

/* Focused label */
.form-group label.focused {
    color: var(--primary);
    font-weight: 600;
}

/* Label with icon (flex alignment) */
.form-group label.with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Input field styling */
.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Focus state */
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

/* Error state */
.form-control.error {
    border-color: var(--error);
    background-color: #ffe5e5;
}

/* Success state */
.form-control.success {
    border-color: var(--success);
    background-color: #e6fffa;
}

/* Placeholder styling */
.form-control::placeholder {
    color: #aaa;
    font-style: italic;
}

/* Responsive form (mobile friendly) */
@media (max-width: 600px) {
    .form-group label {
        font-size: 0.95rem;
    }

    .form-control {
        font-size: 0.95rem;
        padding: 0.7rem 0.9rem;
    }
}

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .submit-btn:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }

        /* Contact Info */
        .contact-info {
            display: grid;
            gap: 1.5rem;
        }

        .info-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .info-content h3 {
            color: var(--dark);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .info-content p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 1.5rem;
            }

            .info-card {
                padding: 1.25rem;
            }
        }

        @media (max-width: 480px) {
            .contact-section {
                padding: 3rem 1rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .form-control {
                padding: 0.7rem 1rem;
            }

            .submit-btn {
                padding: 0.8rem 1.5rem;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
    