<style>

    :root {
      --primary:#0f2a44;
      --secondary:#f4b400;
      --light:#f5f7fa;
      --dark:#222;
    }

    * { margin:0; padding:0; box-sizing:border-box; font-family:'Poppins',sans-serif; }
    body { background:var(--light); color:var(--dark); line-height:1.6; }

    header {
      background:linear-gradient(to right,#0f2a44,#173d63);
      color:#fff;
      padding:20px 60px;
      display:flex;
      align-items:center;
      justify-content:space-between;
    }

    header .brand {
      display:flex;
      align-items:center;
      gap:15px;
    }

    header img { height:55px; }

    nav a {
      color:#fff;
      text-decoration:none;
      margin-left:25px;
      font-weight:500;
    }
    nav a:hover { color:var(--secondary); }

    /* Discount banner */
    #discount-banner {
      background:#f4b400;
      color:#000;
      padding:10px 0;
      overflow:hidden;
      white-space:nowrap;
    }
    #discount-banner div {
      display:inline-block;
      animation:scroll 15s linear infinite;
    }
    @keyframes scroll {
      from { transform:translateX(100%); }
      to { transform:translateX(-100%); }
    }

    section { padding:70px 60px; }

    .hero {
      height:85vh;
      background:url('https://images.unsplash.com/photo-1581091215367-59ab6b1b0b77') center/cover no-repeat;
      display:flex;
      align-items:center;
      color:#fff;
    }

    .hero-box {
      max-width:650px;
      background:rgba(0,0,0,0.6);
      padding:40px;
      border-radius:15px;
    }

    .hero-box h1 { font-size:42px; margin-bottom:15px; }
    .hero-box p { margin-bottom:25px; }

    .btn {
      background:var(--secondary);
      color:#000;
      padding:12px 30px;
      border-radius:25px;
      text-decoration:none;
      font-weight:600;
    }

    .title { text-align:center; margin-bottom:50px; }
    .title h2 { font-size:32px; color:var(--primary); }

    .grid {
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
      gap:30px;
    }

    .card {
      background:#fff;
      padding:30px;
      border-radius:15px;
      box-shadow:0 10px 25px rgba(0,0,0,0.08);
      transition:.3s;
    }
    .card:hover { transform:translateY(-8px); }

    /* Search */
    .search-box {
      background:#fff;
      padding:40px 60px;
      text-align:center;
    }
    .search-box input {
      width:100%;
      max-width:500px;
      padding:12px;
      border-radius:8px;
      border:1px solid #ccc;
    }
    #results { list-style:none; margin-top:15px; }

    /* CEO */
    .ceo {
      display:flex;
      gap:20px;
      align-items:center;
    }
    .ceo img {
      width:120px;
      height:120px;
      border-radius:50%;
      object-fit:cover;
    }

    /* Partners */
    .partners img {
      height:50px;
    }

    footer {
      background:#111;
      color:#aaa;
      padding:50px 20px;
    }

    .footer-grid {
      max-width:1200px;
      margin:auto;
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
      gap:30px;
    }

    .footer-bottom {
      text-align:center;
      margin-top:30px;
      font-size:14px;
    }

    @media(max-width:768px){
      header { flex-direction:column; text-align:center; }
      nav { margin-top:15px; }
    }
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f4f4f4;
    }
    header {
      background: #0078D7;
      color: white;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .header-center {
      flex: 1;
      text-align: center;
    }
    .header-text {
      flex: 1;
      text-align: center;
    }
    .header-text h1 {
      margin: 0;
      font-size: 40px;
    }
    .header-text p {
      margin: 5px 0 0;
      font-size: 14px;
    }
    .logo {
      height: 160px;
    }
.logo-text {
  font-size: 22px;        /* 🔑 increase size */
  font-weight: 700;      /* make it bolder */
  white-space: nowrap;
}

.logo img {
  height: 56px;          /* match text size */
}

/* Colors */
.red    { color: #e53935; }
.blue   { color: #1e88e5; }
.green  { color: #43a047; }
.orange { color: #fb8c00; }

.logo-text span {
  margin-right: 6px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: background: linear-gradient(to right, #0a3d62, #1e5799);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar ul {
  list-style: none;
  margin: 0;                   /* VERY IMPORTANT */
  padding: 0;
}

.navbar > ul > li {
    float: left;
    position: relative;
  }

  .navbar li a {
    display: block;
    color: #1e88e5;
    padding: 10px 20px;
    text-decoration: none;
  }

  .navbar li a:hover {
    background-color: background: linear-gradient(to right, #0a3d62, #1e5799);

  }

  /* Dropdown content */
  .navbar li ul {
    display: none;
    position: absolute;
    background-color: background: linear-gradient(to right, #0a3d62, #1e5799);
    min-width: 180px;
    z-index: 1;
  }

  .navbar li:hover > ul {
    display: block;
  }

  /* Submenu for nested dropdown */
  .navbar li ul li {
    position: relative;
  }

  .navbar li ul li ul {
    top: 0;
    left: 100%;
  }

.nav-item {
  position: relative;
}

.submenu {
  left: 50%;
  transform: translateX(-50%);
}

.submenu {
  position: absolute;
  top: 100%;
  right: 0;     /* 🔑 instead of left: 0 */
  left: auto;
  min-width: 220px;
  z-index: 9999;
}

.nav-item:last-child .submenu {
  right: 0;
  left: auto;
}




  /* Clear floats */
  .navbar::after {
    content: "";
    clear: both;
    display: table;
  }

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #0a66c2;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0a66c2;
}


    .content {
      padding: 20px;
    }
    .section {
      background: white;
      margin: 20px;
      padding: 20px;
      border-radius: 8px;
    }
    .section h2 {
      color: #0078D7;
    }
    footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 10px;
    }
 
    .product {
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 10px;
      width: 100%;
      max-width: 250px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      position: relative;
    }
    .discount {
      position: absolute;
      top: 10px;
      left: 10px;
      background: red;
      color: white;
      padding: 5px;
      font-size: 12px;
      border-radius: 5px;
    }
   /* Add this to your style.css file */
.product img {
    /* Existing styles */
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
    /* New styles for zoom effect */
    transition: transform 0.3s ease-in-out; /* Smooth transition */
}

.product img:hover {
    transform: scale(2.1); /* Zooms in to 110% of its original size */
}
    .product h4 {
      margin: 10px 0;
      font-size: 16px;
    }
    .product a {
      display: inline-block;
      padding: 8px 15px;
      background-color: #0078D7;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      margin-top: 10px;
      cursor: pointer;
    }
    .product a:hover {
      background-color: #005A9E;
    }
    h1 a {
      color: #0078D7;
      text-decoration: none;
    }
    h1 a:hover {
      text-decoration: underline;
    }
 
    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.7);
      justify-content: center;
      align-items: center;
      z-index: 1000; /* Ensure modal is on top */
    }
    .modal-content {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      width: 400px;
      max-width: 90%;
      text-align: center;
      position: relative;
    }
    .close-btn {
      background: red;
      color: white;
      border: none;
      padding: 5px 10px;
      cursor: pointer;
      float: right;
      border-radius: 5px;
      position: absolute; /* Position relative to modal-content */
      top: 10px;
      right: 10px;
    }
button {
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #25D366; /* WhatsApp green */
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease; /* Smooth hover effect */
    }
    button:hover {
      background-color: #1DA851; /* Darker green on hover */
    }
    footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 10px;
      margin-top: 30px;
    }
    .back-button {
      text-align: center;
      margin: 20px 0;
    }
    .back-button a {
      display: inline-block;
      padding: 10px 20px;
      background-color: #0078D7;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease; /* Smooth hover effect */
    }
    .back-button a:hover {
      background-color: #005A9E;
    }

        /* Base Styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background: #f4f4f4;
            color: #333;
        }

        /* Header */
        header {
            background: #0078D7;
            color: white;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            position: relative; /* For positioning home button */
            gap: 15px; /* Spacing between header elements */
        }
        .header-content {
            flex-grow: 1; /* Allows text to take available space */
            text-align: center;
        }
        .header-content h1 {
            margin: 0;
            font-size: 40px;
        }
        .header-content h1 a {
            color: white; /* Changed to white for better contrast */
            text-decoration: none;
        }
        .header-content h1 a:hover {
            text-decoration: underline;
        }
        .header-content p {
            margin: 5px 0 0;
            font-size: 14px;
        }
        .logo {
            height: 160px; /* Kept original logo size */
            flex-shrink: 0; /* Prevent logo from shrinking */
        }
        .home-button {
            position: absolute; /* Positioned relative to header */
            top: 20px;
            left: 20px;
            background: #005A9E; /* Darker blue for button */
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            display: flex;
            align-items: center;
            transition: background-color 0.3s ease;
            z-index: 10;
        }
        .home-button:hover {
            background-color: #004578;
        }
        .home-button i {
            margin-right: 8px;
        }

        /* Navigation Bar */
        
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-weight: bold;
            padding: 5px 0;
            transition: color 0.3s ease;
        }
       

        /* Hero Section (Main Banner/Carousel Placeholder) */
        .hero-section {
            background: linear-gradient(to right, #0078D7, #005A9E);
            color: white;
            text-align: center;
            padding: 60px 20px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            position: relative; /* For any internal elements if needed */
            overflow: hidden; /* For images */
        }
        .hero-section h2 {
            font-size: 3em;
            margin-bottom: 10px;
            animation: fadeInDown 1s ease-out; /* Simple animation */
        }
        .hero-section p {
            font-size: 1.2em;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease-out;
        }
        .hero-section .hero-btn {
            display: inline-block;
            background-color: #25D366; /* WhatsApp green */
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.1em;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s ease;
            animation: zoomIn 1s ease-out;
        }
        .hero-section .hero-btn:hover {
            background-color: #1DA851;
            transform: scale(1.05);
        }

        /* Main Content Layout */
        .main-wrapper {
            display: grid;
            grid-template-columns: 250px 1fr; /* Sidebar fixed width, main content fluid */
            gap: 20px;
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }

        /* Sidebar - Category Navigation */
        .sidebar {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            height: fit-content; /* Adjust height to content */
            position: sticky; /* Sticky sidebar */
            top: 20px; /* Distance from top when scrolled */
        }
        .sidebar h3 {
            color: #0078D7;
            margin-top: 0;
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar ul li {
            margin-bottom: 10px;
        }
        .sidebar ul li a {
            color: #555;
            text-decoration: none;
            display: block;
            padding: 8px 10px;
            border-radius: 5px;
            transition: background-color 0.2s ease, color 0.2s ease;
        }
        .sidebar ul li a:hover {
            background-color: #e0f0ff;
            color: #0078D7;
        }

        /* Main Content Area */
        .main-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Search Bar */
        .search-bar {
            text-align: center;
            margin-bottom: 20px; /* Adjusted margin */
            background: #27C8F5;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .search-bar input {
            padding: 12px;
            width: calc(100% - 40px); /* Adjust width */
            max-width: 500px;
            font-size: 16px;
            border-radius: 25px; /* Rounded corners */
            border: 1px solid #ccc;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .search-bar input:focus {
            border-color: bl;
            box-shadow: 0 0 8px rgba(0, 120, 215, 0.2);
        }

        /* Product Container */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Responsive grid */
            gap: 20px;
        }
        .product {
            background-color: #fff;
            border: 1px solid #eee; /* Lighter border */
            border-radius: 10px;
            padding: 15px; /* Increased padding */
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08); /* More prominent shadow */
            position: relative;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .product:hover {
            transform: translateY(-5px); /* Lift effect on hover */
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }
        .discount {
            position: absolute;
            top: 10px;
            left: 10px;
            background: red;
            color: white;
            padding: 5px 8px;
            font-size: 12px;
            border-radius: 5px;
            font-weight: bold;
        }
        .product img {
            width: 100%;
            height: 150px;
            object-fit: contain;
            margin-bottom: 10px;
        }
        .product h4 {
            margin: 10px 0;
            font-size: 17px; /* Slightly larger heading */
            color: #005A9E; /* Blue title */
        }
        .product .price-tag { /* Added price tag for consistency */
            font-size: 1.2em;
            color: #E60000;
            font-weight: bold;
            margin-bottom: 15px;
        }
        .product a {
            display: inline-block;
            padding: 10px 20px;
            background-color: #0078D7;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .product a:hover {
            background-color: #005A9E;
        }

        /* Why Use Genuine License Section */
        .why-use-genuine {
            background: white;
            padding: 5px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            text-align: center;
        }
        .why-use-genuine h2 {
            color: #0078D7;
            margin-bottom: 10px;
            font-size: 2em;
        }
        .why-use-genuine p {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .why-use-genuine a {
            display: inline-block;
            padding: 5px 10px;
            background-color: #0078D7;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .why-use-genuine a:hover {
            background-color: #005A9E;
        }

        /* Contact Us Section */
        .contact-section {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .contact-section h2 {
            color: #0078D7;
            margin-bottom: 20px;
            font-size: 2em;
            text-align: Center;
        }
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 500px;
            margin: auto;
        }
        .contact-info p {
            margin: 0;
            font-size: 1.1em;
            display: flex;
            align-items: center;
        }
        .contact-info p strong {
            min-width: 80px; /* Align labels */
        }
        .contact-info p i {
            margin-right: 10px;
            color: #0078D7;
            font-size: 1.2em;
        }

        /* Footer */
        footer {
            background: #222; /* Darker footer */
            color: white;
            padding: 40px 20px;
            margin-top: 40px;
            text-align: left; /* Align text to left in columns */
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-column h4 {
            color: #0078D7;
            margin-bottom: 15px;
            font-size: 1.2em;
        }
        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-column ul li {
            margin-bottom: 8px;
        }
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-column ul li a:hover {
            color: white;
            text-decoration: underline;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9em;
            color: #bbb;
        }

        /* Modal (kept as is, but consider redesign if needed) */
        .modal {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .modal-content {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            width: 400px;
            max-width: 90%;
            text-align: center;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .close-btn {
            background: red;
            color: white;
            border: none;
            padding: 5px 10px;
            cursor: pointer;
            float: right;
            border-radius: 5px;
            position: absolute;
            top: 10px;
            right: 10px;
        }

        /* Animations */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes zoomIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .main-wrapper {
                grid-template-columns: 1fr; /* Stack sidebar and content */
            }
            .sidebar {
                position: static; /* Remove sticky behavior on small screens */
                margin-bottom: 20px;
            }
            .header-content h1 {
                font-size: 32px;
            }
            .logo {
                height: 120px;
            }
            .home-button {
                position: static;
                margin-top: 15px;
                width: fit-content;
                align-self: center;
            }
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }
            .header-content {
                order: 2; /* Put text below logo */
            }
            .logo {
                order: 1;
                margin: 15px 0 0;
            }
           
            .hero-section {
                padding: 40px 15px;
            }
            .hero-section h2 {
                font-size: 2.2em;
            }
            .hero-section p {
                font-size: 1em;
            }
            .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Smaller cards */
            }
            .footer-content {
                grid-template-columns: 1fr; /* Stack footer columns */
                text-align: center;
            }
            .footer-column h4 {
                margin-top: 20px;
            }
            .contact-info p {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 10px;
            }
            .contact-info p strong {
                min-width: unset;
                margin-bottom: 5px;
            }
        }
        @media (max-width: 480px) 
/* Example: If your Software.html uses a structure like this: */
/*
<div class="software-detail-container">
    <div class="software-image-wrapper"> <img ...> </div>
    <div class="software-info"> ... </div>
</div>
*/
.software-detail-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px;
    align-items: flex-start; /* Align items to the top */
    max-width: 1000px; /* Or whatever fits your design */
    margin: 20px auto; /* Center the container */
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.software-image-wrapper {
    flex: 1; /* Allows it to take available space */
    min-width: 300px; /* Minimum width before wrapping */
    text-align: center;
}

.software-info {
    flex: 2; /* Allows info to take more space than image */
    min-width: 300px; /* Minimum width before wrapping */
}

@media (max-width: 768px) {
    .software-detail-container {
        flex-direction: column; /* Stack image and info on small screens */
        align-items: center;
    }
}
         /* General Body & Header Styles (kept from your previous code for consistency) */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background: #f4f4f4;
            color: #333;
        }
        header {
            background: #0078D7;
            color: white;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            position: relative;
        }
        .header-content {
            flex: 1;
            text-align: center;
        }
        .header-content h1 {
            margin: 0;
            font-size: clamp(24px, 5vw, 40px);
        }
        .header-content h1 a {
            color: white;
            text-decoration: none;
        }
        .header-content h1 a:hover {
            text-decoration: underline;
        }
        .header-content p {
            margin: 5px 0 0;
            font-size: 14px;
        }
        .logo {
            height: 160px;
            margin-left: 20px;
        }
        .home-button {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #005A9E;
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            display: flex;
            align-items: center;
            transition: background-color 0.3s ease;
            z-index: 10;
        }
        .home-button:hover {
            background-color: #004578;
        }
        .home-button i {
            margin-right: 8px;
        }
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 10px;
            margin-top: 30px;
        }

        /* Styles for Product Detail Page (from your example) */
        .container {
       
            padding: 0 20px;
        }

        .breadcrumbs {
            background: #fff;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            font-size: 0.9em;
        }
        .breadcrumbs a {
            color: #0078D7;
            text-decoration: none;
        }
        .breadcrumbs a:hover {
            text-decoration: underline;
        }
        .breadcrumbs span {
            color: #666;
        }

        .product-detail-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .product-gallery {
            flex: 1 1 400px; /* Allows it to grow/shrink, min-width 400px */
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .main-image-container {
            width: 100%;
            padding-bottom: 75%; /* 4:3 aspect ratio (height is 75% of width) */
            position: relative;
            background: #f0f0f0; /* Placeholder background */
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden; /* Ensure image doesn't overflow */
        }
        .main-image-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain; /* Keeps image aspect ratio, fits within container */
            padding: 10px; /* Small padding inside for visual comfort */
        }
        .thumbnails {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            justify-content: center;
        }
        .thumbnail {
            width: 80px;
            height: 60px;
            border: 2px solid #eee;
            border-radius: 5px;
            cursor: pointer;
            overflow: hidden;
            transition: border-color 0.2s ease;
        }
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Crops image to fit thumbnail area */
        }
        .thumbnail.active, .thumbnail:hover {
            border-color: #0078D7;
        }

        .product-info {
            flex: 1 1 500px; /* Allows it to grow/shrink, min-width 500px */
        }
        .product-info h2 {
            font-size: 2.2em;
            margin-top: 0;
            color: #333;
        }
        .product-info .brand-model {
            font-size: 0.9em;
            color: #666;
            margin-bottom: 15px;
        }
        /* Price display */
        .product-info .price-container {
            margin-bottom: 10px;
        }
        .product-info .current-price {
            font-size: 2.5em;
            color: #E60000; /* Red for price, similar to iDream */
            font-weight: bold;
            display: inline-block; /* Allows side-by-side with original price */
            margin-right: 15px; /* Space between current and original price */
        }
        .product-info .original-price {
            font-size: 1.5em; /* Smaller than current price */
            color: #888; /* Grayed out */
            text-decoration: line-through; /* Strikethrough effect */
            display: inline-block;
            vertical-align: middle; /* Align vertically with current price */
        }
        .product-info .availability {
            color: #28a745; /* Green for in stock */
            font-weight: bold;
            margin-bottom: 20px;
            font-size: 1.1em;
        }
        .product-info ul {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
            font-size: 0.95em;
        }
        .product-info ul li {
            margin-bottom: 8px;
            color: #555;
        }
        .product-info ul li strong {
            color: #333;
        }
        .product-info .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        .action-buttons button {
            padding: 12px 25px;
            font-size: 1.1em;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .action-buttons .buy-now {
            background-color: #0078D7;
            color: white;
        }
        .action-buttons .buy-now:hover {
            background-color: #005A9E;
            transform: translateY(-2px);
        }
        .action-buttons .whatsapp-enquire {
            background-color: #25D366; /* WhatsApp green */
            color: white;
        }
        .action-buttons .whatsapp-enquire:hover {
            background-color: #1DA851;
            transform: translateY(-2px);
        }
        .action-buttons .whatsapp-enquire i {
            margin-right: 8px;
        }

        .product-tabs {
            margin-top: 30px;
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .tab-buttons {
            display: flex;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
        }
        .tab-button {
            padding: 12px 20px;
            cursor: pointer;
            font-size: 1.1em;
            font-weight: bold;
            color: #555;
            border: none;
            background: none;
            border-bottom: 3px solid transparent;
            transition: color 0.2s ease, border-bottom-color 0.2s ease;
        }
        .tab-button.active {
            color: #0078D7;
            border-bottom-color: #0078D7;
        }
        .tab-button:hover:not(.active) {
            color: #0078D7;
        }
        .tab-content {
            line-height: 1.6;
            color: #444;
        }
        .tab-content h3 {
            color: #0078D7;
            margin-top: 0;
            font-size: 1.5em;
        }
        .tab-content ul {
            list-style: disc; /* Default bullet points */
            margin-left: 20px;
            padding: 0;
        }
        .tab-content ul li {
            margin-bottom: 5px;
        }

        /* Responsive Adjustments (from your example) */
        @media (max-width: 900px) {
            .product-detail-wrapper {
                flex-direction: column;
            }
            .product-gallery, .product-info {
                flex: 1 1 100%; /* Take full width on smaller screens */
            }
            .action-buttons {
                flex-direction: column;
            }
            .action-buttons button {
                width: 100%;
            }
            .logo {
                height: 120px; /* Adjust logo size */
            }
            .header-content h1 {
                font-size: 32px; /* Adjust header title size */
            }
        }

        @media (max-width: 600px) {
            header {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }
            .home-button {
                position: static; /* Remove absolute positioning */
                margin-top: 15px;
                width: fit-content;
                align-self: center; /* Center the button in flex column */
            }
            .logo {
                margin: 15px 0 0; /* Center logo */
            }
            .header-content {
                order: 2; /* Put text below logo for better mobile header */
            }
            .logo {
                order: 1;
            }
          
            .breadcrumbs, .product-detail-wrapper, .product-tabs {
                padding: 15px;
            }
            .tab-button {
                padding: 10px 15px;
                font-size: 1em;
            }
            .product-info .current-price {
                font-size: 2em; /* Smaller current price on small screens */
            }
            .product-info .original-price {
                font-size: 1.2em; /* Smaller original price on small screens */
            }
        } 
        /* Back to Home Button */
        .back-to-home {
            text-align: center;
            margin: 30px 0;
        }
        .back-to-home a {
            display: inline-block;
            padding: 10px 20px;
            background-color: #0078D7;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .back-to-home a:hover {
            background-color: #005A9E;
        }
        .back-to-home a i {
            margin-right: 8px;
        }
  .marquee-banner {
    background-color: #03a9f4;
    color: yellow;
    font-weight: bold;
    padding: 10px 0;
    text-align: center;
    font-size: 1.2rem;
    z-index: 999;
  }
.chat-support-box {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 260px;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  border-radius: 8px;
  z-index: 1000;
}

.chat-header {
  background-color: #0078D7;
  color: white;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-body {
  padding: 10px;
  display: block;
}

.chat-body p {
  margin-bottom: 10px;
}

.chat-body a {
  text-decoration: none;
  background-color: #25D366;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  display: inline-block;
  font-size: 14px;
}

#chatToggle {
  font-size: 18px;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 28px;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.whatsapp-float:hover {
    background-color: #1DA851;
    transform: scale(1.1);
}

.our-brands {
    background-color: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
}

.our-brands h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.brand-marquee {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.brand-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  will-change: transform;
}

.brand-track img {
  height: 60px;
  object-fit: contain;
}

/* Our Services Section */
.our-services {
    padding: 40px 20px;
    text-align: center;
}

.our-services h2 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: bold;
}


/* Keyframe Animation */
@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Responsive: smaller screens */
@media (max-width: 768px) {
    .brand-track img {
        height: 40px;
        gap: 30px;
    }
}


/* Infinite scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .brand-track img {
        height: 40px;
        gap: 30px;
    }
}


/* Marquee banner container */
.marquee-banner {
  overflow: hidden;
  white-space: nowrap;
}

/* Moving text track */
.brand-track {
  display: inline-flex;
  align-items: center;
  animation: marquee-scroll 18s linear infinite;
}

/* Marquee animation */
@keyframes marquee-scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Pause animation on hover (optional but recommended) */
.marquee-banner:hover .brand-track {
  animation-play-state: paused;
}

/* Slower speed on mobile */
@media (max-width: 768px) {
  .brand-track {
    animation-duration: 25s;
  }
}

  marquee {
    font-family: 'Segoe UI', sans-serif;
  }

.marquee-banner {
  background: linear-gradient(to right, #2196f3, #0d47a1); /* or use any option above */
  color: yellow;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  font-size: 1.2rem;
  z-index: 999;
}
  :root {
      --primary: #0a3d62;
      --secondary: #38ada9;
      --light: #f5f7fa;
      --dark: #222;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Poppins', sans-serif; }
    body { background: var(--light); color: var(--dark); line-height: 1.6; }

    header {
      background: linear-gradient(to right, #0a3d62, #1e5799);
      color: #fff;
      padding: 20px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    header img { height: 55px; }
   

    .hero {
      height: 85vh;
      background: url('https://images.unsplash.com/photo-1531297484001-80022131f5a1') center/cover no-repeat;
      display: flex;
      align-items: center;
      padding: 60px;
      color: #fff;
    }

    .hero-box {
      max-width: 650px;
      background: rgba(0,0,0,0.6);
      padding: 40px;
      border-radius: 15px;
    }

    .hero-box h1 { font-size: 42px; margin-bottom: 15px; }
    .hero-box p { margin-bottom: 25px; }

    .btn {
      background: var(--secondary);
      color: #000;
      padding: 12px 30px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
    }

    section { padding: 70px 60px; }
    .title { text-align: center; margin-bottom: 50px; }
    .title h2 { font-size: 32px; color: var(--primary); }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .card {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      transition: 0.3s;
    }

    .card:hover { transform: translateY(-8px); }

    .highlight {
      background: var(--primary);
      color: #fff;
      text-align: center;
      padding: 50px 20px;
    }

    footer {
      background: #111;
      color: #aaa;
      padding: 50px 20px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    footer a { color: #aaa; text-decoration: none; }
    footer a:hover { color: #fff; }

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      font-size: 14px;
    }

    @media (max-width: 768px) {
      header { flex-direction: column; text-align: center; }
    
@media (max-width: 768px) {
  .submenu {
    position: static;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .logo-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) { ... }
@media (max-width: 480px) { ... }
@media (max-width: 600px) { ... }



  </style>
