<style>
    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;
    }
    nav {
      background: #005A9E;
      padding: 10px;
      text-align: center;
    }
    nav a {
      color: white;
      text-decoration: none;
      margin: 0 15px;
      font-weight: bold;
    }
    .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;
    }
    .search-bar {
      text-align: center;
      margin: 20px;
    }
    .search-bar input {
      padding: 10px;
      width: 300px;
      font-size: 16px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }
    .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 {
            background: #005A9E;
            padding: 10px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-weight: bold;
            padding: 5px 0;
            transition: color 0.3s ease;
        }
        nav a:hover {
            color: #d4e8ff; /* Lighter blue on hover */
        }

        /* 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: white;
            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: #0078D7;
            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: 0 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;
            }
            nav a {
                margin: 0 8px;
                font-size: 0.9em;
            }
            .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) {
            nav {
                flex-direction: column;
                display: flex;
                align-items: center;
            }
            nav a {
                margin: 5px 0;
            }
            .product {
                width: 100%; /* Full width cards */
            }
            .search-bar input {
                width: calc(100% - 20px);
            }
        }
/* 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);
}


 /* Navbar container */
  .navbar {
    background-color: #2c3e50;
  }

  .navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  .navbar > ul > li {
    float: left;
    position: relative;
  }

  .navbar li a {
    display: block;
    color: white;
    padding: 14px 20px;
    text-decoration: none;
  }

  .navbar li a:hover {
    background-color: #34495e;
  }

  /* Dropdown content */
  .navbar li ul {
    display: none;
    position: absolute;
    background-color: #34495e;
    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%;
  }

  /* Clear floats */
  .navbar::after {
    content: "";
    clear: both;
    display: table;
  }
  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;
}
@media (max-width: 768px) { ... }
@media (max-width: 480px) { ... }
@media (max-width: 600px) { ... }



  </style>
