
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: white;
    background: black;
}


  /* Navbar */
  
  .navbar {
    background: black;
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #333;
  }
  

  /* Nav links */

  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color:  rgb(70, 130, 180);
    font-weight: 500;
    font-size: 1.4rem;
  }

  .nav-links a:hover {
    text-decoration: none;
    color: #0896d8;
    font-weight: 500;
  }
  
  
  /* Dropdown */

  .dropdown {
    position: relative;
    margin-left: .2rem;
  }
  
  .dropdown-trigger {
    background: none;
    border: none;
    font: inherit;
    color: rgb(70, 130, 180);
    display: flex;
    align-items: center;
    gap: .3rem;
    cursor: pointer;
}

  .dropdown-trigger::before {
    content: '▼';
    font-size: .75rem;
    transition: 1s;
}

  .dropdown:hover .dropdown-trigger::before {
    transform: rotate(180deg);
}
  
  .dropdown-menu {
    position: absolute;
    top: 2.5rem;
    left: 0;
    display: none;
    flex-direction: row;
    gap: 2rem;
    padding: 1rem 1.5rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    margin-left: -12rem;
}
  
  /* Show on hover */

  .dropdown:hover .dropdown-menu {
    display: flex;
  }
  
  /* Each column */

  .dropdown-column {
    display: flex;
    flex-direction: column;
    min-width: 160px;
  }

  .fa-chevron-down {
    font-size: 1.2rem;
  }
  
  .dropdown-column h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #444;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.25rem;
  }
  
  .dropdown-column a {
    text-decoration: none;
    color: #333;
    margin: .3rem 0;
    font-size: 1rem;
    transition: 1s;
  }
  
  .dropdown-column a:hover {
    color: #007bff;
  }
  
  
  /* Cart icon */
  
  .cart-link i {
    font-size: 1.5rem;
    color: black;
  }

  .cart-icon {
    display: flex;
    font-size: 1.5rem;
    align-items: center;
    padding: 1rem;
    position: relative;
    margin-right: 1rem;
    background: linear-gradient(135deg, #667eea, #1119b3);
    color: white;
    border: none;
    border-radius: 1rem;
    padding: .75rem 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

  
  /* Hamburger */

  .hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
  }
  
 .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
  }
  
  .main-logo {
    font-size: 2.5rem;
    font-weight: bold;
    text-decoration: none;
    color:rgb(70, 130, 180);
  }
  
  .hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  
  /* Responsive view */

  @media (max-width: 768px) {
    .navbar {
        height: 5.5rem;
    }

    .navbar-container {
      justify-content: center;
    }
  
    .hamburger {
      display: block;
      position: absolute;
      left: 1rem;
      margin-top: 1.4rem;
      font-size: 2rem;
    }
  
    .main-logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      margin-top: 1.2rem;
      font-size: 2.5rem;
    }

    .nav-links {
        margin-top: 2rem;
        position: absolute;
        height: 20rem;
        top: 100%;
        left: 50%; /* center the menu */
        transform: translateX(-50%); /* shift back by 50% of width */
        background: black;
        color:rgb(70, 130, 180);
        flex-direction: column;
        width: 28rem; /* make it wider */
        max-width: 480px;
        display: none;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        align-items: center; /* center text/items horizontally */
        text-align: center;
      }
      
      .nav-links.active {
        display: flex;
      }

      .fa-bars {
        color: white;
      }

      .cart-icon {
        margin-left: .5rem;
      }
  }

  @media (max-width: 768px) {
    .dropdown {
        margin-left: -.5rem;
    }
    .dropdown-menu {
      position: static;
      flex-direction: column;
      padding: 1rem;
      margin-left: 1.5rem;
    }
  
    .dropdown-column {
      margin-bottom: 1rem;
    }
    .about-section {
      margin-top: -5rem;
    }
  }


        
        /* Contact Section Styles */

        .contact-section {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #0896d8, #062173);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .contact-info {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px;
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .contact-form {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px;
            border: 1px solid rgba(255,255,255,0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            box-shadow: 0 10px 25px rgba(255,107,107,0.3);
        }

        .contact-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .contact-details h3 {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .contact-details p {
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
            font-family: inherit;
        }

        .form-control:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
            transform: translateY(-1px);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 18px 32px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(102,126,234,0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .quick-contact {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .quick-contact-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .quick-contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .quick-contact-card .icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #4facfe, #00f2fe);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 15px 35px rgba(79,172,254,0.3);
        }

        .quick-contact-card .icon i {
            font-size: 2rem;
            color: white;
        }

        .quick-contact-card h3 {
            color: white;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .quick-contact-card p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 20px;
        }

        .quick-contact-card .btn {
            display: inline-block;
            padding: 12px 24px;
            background: rgba(255,255,255,0.2);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .quick-contact-card .btn:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-elements::before,
        .floating-elements::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            animation: float 6s ease-in-out infinite;
        }

        .floating-elements::before {
            width: 200px;
            height: 200px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-elements::after {
            width: 150px;
            height: 150px;
            bottom: 20%;
            right: 10%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .success-message {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            display: none;
            align-items: center;
            animation: slideIn 0.3s ease;
        }

        .success-message i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .footer {
            background: black;
            color: #ffffff;
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, #6366f1 50%, transparent 100%);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-brand {
            animation: slideInLeft 0.8s ease-out;
        }
        
        .footer-brand h2 {
            font-size: 32px;
            font-weight: 700;
            background: rgb(70, 130, 180);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        
        .footer-brand p {
            color: #a1a1aa;
            line-height: 1.6;
            margin-bottom: 24px;
        }
        
        .social-links {
            display: flex;
            gap: 16px;
        }
        
        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .social-link:hover {
            background: rgba(99, 102, 241, 0.2);
            border-color: #6366f1;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
        }
        
        .footer-column {
            animation: slideInUp 0.8s ease-out;
        }
        
        .footer-column:nth-child(2) { animation-delay: 0.1s; }
        .footer-column:nth-child(3) { animation-delay: 0.2s; }
        .footer-column:nth-child(4) { animation-delay: 0.3s; }
        
        .footer-column h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #a1a1aa;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-links a::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            transition: width 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }
        
        .footer-links a:hover::before {
            width: 100%;
        }
        
        .newsletter {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .newsletter h3 {
            margin-bottom: 12px;
        }
        
        .newsletter p {
            color: #a1a1aa;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .newsletter-form {
            display: flex;
            gap: 8px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: #ffffff;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
        }
        
        .newsletter-input::placeholder {
            color: #71717a;
        }
        
        .newsletter-input:focus {
            border-color: #6366f1;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }
        
        .newsletter-btn {
            padding: 12px 20px;
            background: linear-gradient(135deg, #0896d8, #062173);
            border: none;
            border-radius: 8px;
            color: #ffffff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-bottom p {
            color: #71717a;
            font-size: 14px;
        }
        
        .footer-legal {
            display: flex;
            gap: 24px;
        }
        
        .footer-legal a {
            color: #71717a;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-legal a:hover {
            color: #ffffff;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        
            .footer-brand h2 {
                font-size: 24px;
            }
        
            .newsletter-form {
                flex-direction: column;
            }
        
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        
            .footer-legal {
                justify-content: center;
            }
        }
        
            
        /* Responsive design */
        
         @media (max-width: 768px) {
            .footer-content {
               grid-template-columns: 1fr;
               gap: 24px;
               padding: 40px 16px 32px;
         }
        
            .footer-section {
               padding: 24px;
        }
        
            .social-links {
                justify-content: start
            }
        }
        
        /* Responsive Design */
        
        @media (max-width: 768px) {
            .sidebar {
                transform: translateX(-100%);
            }
        
            .sidebar.show {
                transform: translateX(0);
            }
        
            .main-content {
                margin-left: 0;
                padding: 1rem;
            }
        
            .menu-toggle {
                display: block;
            }
        
            .search-bar {
                width: auto;
                flex: 1;
                margin: 0 1rem;
            }
        
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 1rem;
            }
        
            .header {
                padding: 1rem;
                flex-wrap: wrap;
                gap: 1rem;
            }
        
            .products-header {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
        
            .filter-sort {
                width: 100%;
                justify-content: space-between;
            }
        }
        
        /* Loading Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .product-card {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .product-card:nth-child(2) { animation-delay: 0.1s; }
        .product-card:nth-child(3) { animation-delay: 0.2s; }
        .product-card:nth-child(4) { animation-delay: 0.3s; }
        .product-card:nth-child(5) { animation-delay: 0.4s; }
        .product-card:nth-child(6) { animation-delay: 0.5s; }
        

        /* Mobile Styles */

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                display: none;
            }

            .contact-section {
                padding: 100px 0 60px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

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

            .contact-info,
            .contact-form {
                padding: 30px 20px;
            }

            .contact-item {
                flex-direction: column;
                text-align: center;
                padding: 25px 15px;
            }

            .contact-icon {
                margin: 0 0 15px 0;
            }

            .quick-contact {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .newsletter-form {
                flex-direction: column;
            }
        }
