<style>
    /* Ensure Poppins font */
        body {
            font-family: 'Poppins', Arial, sans-serif;
        }
    
        body {
        font-family: 'Poppins', Arial, sans-serif; /* same as main page */
        margin: 0;
        padding: 0;
        line-height: 1.6;
    }
    
        /* Ensure hero text uses the same */
        .hero-text,
        .hero-text h1,
        .hero-text .category,
        .hero-text .description,
        .info-section,
        .full-width-content {
            font-family: inherit;
        }
    
    
       header {
            background: #1c244b;
            color: #fff;
            padding: 15px clamp(15px, 5vw, 40px);
        }
    
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            
        }
    
        /* Desktop Navigation */
        nav {
            flex: 2;
        }
    
        nav ul {
            display: flex;
            justify-content: center; /* center nav items */
            gap: 20px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
    
        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: clamp(12px, 2vw, 15px);
            font-weight: 500;
        }
    
        /* ✅ Mobile Navigation Overrides */
        @media (max-width: 768px) {
            nav ul {
                display: none; /* hidden by default */
                flex-direction: column;
                background: #1c244b;
                position: absolute;
                top: 60px;
                right: 15px;
                width: 200px;
                padding: 15px;
                border-radius: 8px;
                gap: 15px;
            }
    
            nav ul.active {
                display: flex; /* show when toggled */
            }
        }
    
        .menu-toggle {
            display: none; /* hidden by default */
            font-size: 28px;
            cursor: pointer;
            color: #fff;
        }
    
        /* ✅ Show only on mobile */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block; /* show hamburger on small screens */
            }
        }
    
    
        .site-title {
            font-size: clamp(24px, 4vw, 36px);
            margin: 0;
            font-weight: 700;
            text-align: left;
            flex-shrink: 0; /* prevents logo from being pushed */
        }
    
        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(25px, 4vw, 30px);
            font-weight: 800;
            background: linear-gradient(90deg, #4facfe, #00f2fe, #4facfe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: left;
            margin: 0;
        }
    
    
        .hero {
            background: linear-gradient(90deg, #1c244b, #f2295b); /* purple to red */
            color: #fff;
            text-align: center;
            padding: 5px 3px; /* much smaller padding for less height */
            margin-top: 20px;   /* space after header */
        }
    
        .hero h3 {
            font-size: clamp(12px, 3vw, 18px); /* balanced size for h3 */
            margin: 0;
            font-weight: 400; /* not too bold */
        }
    
        .hero .highlight {
            color: #FFD700; /* gold/yellow for strong contrast */
        }
    
    
    
        /* Tabs Section */
        .products-section {
            text-align: center;
            padding: 20px 15px;
        }
        .tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
            gap: 10px;
        }
        .tab {
            padding: 10px 20px;
            cursor: pointer;
            border: 2px solid #f75609;
            border-radius: 25px;
            font-weight: bold;
            color: #f75609;
            background: #fff;
            font-size: clamp(14px, 4vw, 18px);
            transition: background 0.3s, color 0.3s;
        }
        .tab.active {
            background: #f75609;
            color: #fff;
        }
    
        /* Grid for products */
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 equal columns desktop */
            justify-content: center;
            gap: 15px;
            width: 70%; /* desktop width */
            margin: 0 auto; /* ✅ centers the grid container */
            padding: 10px;
            box-sizing: border-box;
        }
    
        /* Mobile: 2 columns */
        @media (max-width: 768px) {
            .tab-content.active {
                width: 90%; /* narrower on mobile */
                grid-template-columns: repeat(2, 1fr);
                margin: 0 auto; /* ✅ keep centered */
                padding: 10px;
            }
        }
    
    
         .product-box {
            position: relative;
            width: clamp(250px, 40vw, 400px);   /* Fixed but responsive width */
            height: clamp(200px, 30vw, 300px);  /* Fixed but responsive height */
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            color: #fff;
            font-weight: bold;
            text-transform: uppercase;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 300; /* lighter than normal (400) */
            font-size: clamp(18px, 3vw, 32px); /* large and responsive */
            text-shadow: 1px 1px 4px rgba(0,0,0,0.0.4); /* readability */
            text-decoration: none; /* ✅ remove underline */
            font-family: 'Poppins', Arial, sans-serif; /* custom font */
    
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.3s ease;
    
            background-color: rgba(0, 0, 0, 0.25); /* semi-transparent overlay */
            background-blend-mode: darken; /* blends overlay with image */
        }
    
        /* ✅ Mobile: 10% smaller */
        @media (max-width: 768px) {
            .product-box {
                width: clamp(100%, 100vw, 100%);   /* 10% smaller */
                height: clamp(180px, 27vw, 270px);  /* 10% smaller */
                font-size: clamp(16px, 3vw, 28px);  /* Adjust text size proportionally */
            }
        }
    
        .product-box:hover {
            transform: scale(1.05);
        }
    
        /* Global fix */
        body, html {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
    
    
        .image-row {
            display: grid;
            grid-template-columns: repeat(7, 1fr); /* 7 columns on large screens */
            gap: 15px;
            width: 90%;
            padding: 10px 15px;
        }
    
        .image-row img {
            width: 100%;
            border-radius: 10px;
            object-fit: cover;
        }
    
        /* Tablet adjustment */
        @media (max-width: 1024px) {
            .image-row {
                grid-template-columns: repeat(4, 1fr);
            }
        }
    
        /* Mobile: 3 per row, hide 7th image */
        @media (max-width: 768px) {
            .image-row {
                grid-template-columns: repeat(3, 1fr);
            }
            .hide-mobile {
                display: none;
            }
        }
    
    
        .intro-text {
            max-width: 1200px;
            margin: 30px auto;
            padding: 10px 15px;
            font-family: 'Poppins', sans-serif;
            font-size: clamp(15px, 5vw, 30px); /* 3x bigger than before */
            color: #666;
            line-height: 1.3;
            text-align: center;
            font-weight: 300; /* keep it light for elegance */
        }
    
        .discover-text {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(18px, 5vw, 33px);
            font-weight: 600;
            background: linear-gradient(90deg, #7b68b1, #e6a8d7, #7b68b1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            margin: 0;
        }

        .discover-text_about1 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(18px, 5vw, 33px);
            font-weight: 600;
            background: linear-gradient(90deg, #7b68b1, #e6a8d7, #7b68b1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: left;
            margin: 0;
        }

        .discover-text_about2 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(14px, 4vw, 25px);
            font-weight: 400;
            background: linear-gradient(to right, #4ca3dd, #1e87d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: left;
            margin: 0;
        }
    
        .underline-link {
          color: #e67ab0; /* optional hover color */
          text-decoration-color: #e67ab0;
        }

        .underline-link:hover {
          color: green; /* optional hover color */
          text-decoration-color: green;
        }
    

        .about-section {
          margin-left: 10%;
          margin-right: 10%;
          padding: 30px 0;
          font-family: 'Poppins', sans-serif;
        }

        .discover-text_about1 {
          font-size: clamp(20px, 5vw, 38px);
          font-weight: 700;
          background: linear-gradient(90deg, #7b68b1, #e6a8d7, #7b68b1);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          text-align: left;
          margin-bottom: 15px;
        }

        .discover-text_about1 i {
          margin-right: 10px;
          color: #7b68b1;
        }

        .discover-text_about2 {
          font-size: clamp(14px, 4vw, 20px);
          font-weight: 400;
          color: #333;
          line-height: 1.8;
          text-align: left;
          margin: 0;
        }

        .about-cta {
          margin-top: 15px;
          font-size: 16px;
          color: #222;
        }

        @media (max-width: 600px) {
          .about-section {
            margin-left: 5%;
            margin-right: 5%;
          }
          .discover-text_about1 {
            text-align: center;
          }
          .discover-text_about2 {
            text-align: justify;
          }
        }
        /* about us end*/
      
        footer {
            background: #1c244b;
            color: #fff;
            text-align: center;
            padding: 15px;
            font-size: clamp(12px, 3vw, 14px);
        }
    
        /* Mobile adjustments */
        @media (max-width: 600px) {
            .hero {
                padding: 30px 10px;
            }
            .tabs {
                gap: 8px;
            }
        }
    
        /* Special box styling */
    .special-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: center;
        text-align: center;
    }
    
    .special-content {
        position: relative;
        z-index: 2;
        color: #fff;
        text-align: center;
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        font-size: clamp(18px, 3vw, 28px);
        line-height: 1.4;
    }
    
    .download-btn {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 20px;
        font-size: clamp(14px, 2vw, 18px);
        color: #fff;
        background: #f75609;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: background 0.3s ease;
    }
    
    .download-btn:hover {
        background: #d94400;
    }
    .product-box.special-box {
        cursor: default; /* no hand icon for entire box */
    }
    
    .download-btn {
        cursor: pointer; /* only button inside special box gets hand icon */
    }
    .special-box span {
        font-size: clamp(14px, 2vw, 20px); /* smaller than other boxes */
        font-weight: 300; /* keep it light */
        line-height: 1.3;
    }
    .double-size {
      font-size: 5.5rem;
      font-family: 'Poppins', sans-serif;
    }

    .double-size_less {
      font-size: 3.5rem;
      font-family: 'Poppins', sans-serif;
    }
    
    @media (max-width: 768px) {
      .double-size {
        font-size: 3rem;
        font-family: 'Poppins', sans-serif;
      }
      .double-size_less {
        font-size: 2.5rem;
        font-family: 'Poppins', sans-serif;
      }
    }
    
    .register-btn,
    .login-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        border-radius: 6px;
        transition: background 0.3s ease;
        font-size: 16px;
        margin-top: 10px;
    }
    
    /* Register Button */
    .register-btn {
        background: #28a745; /* green */
    }
    
    .register-btn:hover {
        background: #218838;
    }
    
    /* Login Button */
    .login-btn {
        background: #007bff; /* blue */
        margin-left: 10px;
    }
    
    .login-btn:hover {
        background: #0056b3;
    }
    
    /* Icon size */
    .register-btn i,
    .login-btn i {
        font-size: 16px;
    }
    
    .info-buy-btn {
      background: linear-gradient(to right, #4ca3dd, #1e87d4); /* light blue gradient */
      color: white;
      border: none;
      padding: 12px 20px;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      transition: background 0.3s ease;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .info-buy-btn:hover {
      background: linear-gradient(to right, #d4af37, #b8860b); /* darker gold on hover */
      color: #fff;
    }







.main-menu_header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu_header > ul > li {
  display: inline-block;
  position: relative;
}

.main-menu_header a {
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  display: inline-block;
  transition: background 0.3s;
  cursor: pointer;
}

.main-menu_header a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* Dropdown container */
.sub-menu_header {
  display: none;
  position: absolute;
  background: #fff;
  color: #333;
  min-width: 220px;
  top: 100%;
  left: 0;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  z-index: 9999;
}

.sub-menu_header li {
  position: relative;
}

.sub-menu_header a {
  color: #333;
  padding: 10px 15px;
  display: block;
}

.sub-menu_header a:hover {
  background: #f0f0f0;
}

/* Show first-level dropdown on hover */
.main-menu_header li:hover > .sub-menu_header {
  display: block;
}

/* Second-level dropdown positioning */
.sub-menu_header .sub-menu_header {
  top: 0;
  left: 100%;
  margin-left: 2px;
  border-radius: 6px;
}

/* Fix hover propagation for nested menus */
.sub-menu_header li:hover > .sub-menu_header {
  display: block;
}

/* --- Mobile view: open submenu to the left --- */
@media (max-width: 768px) {
  .main-menu_header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sub-menu_header {
    position: absolute;
    left: auto;
    right: 100%; /* open to the left side */
    top: 0;
    max-width: 40% !important;
  }
.sub-menu_header1 {
   text-align: right;
  }
  .main-menu_header li:hover > .sub-menu_header {
    display: block;
  }
}

</style>