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

        body {
            font-family: 'Rajdhani', sans-serif;
            background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 50%, #ffd0d0 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(255, 100, 100, 0.1);
        }

        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 150, 150, 0.2);
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .contact-info a {
            color: #c44;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }

        .contact-info a:hover {
            color: #ff6666;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff8888, #ff6666);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
        }

        .social-icons a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 100, 100, 0.4);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
        }

        .nav-container .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo img {
            height: 45px;
            width: auto;
        }

        .logo strong {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            color: #c44;
            font-weight: 700;
            letter-spacing: 1px;
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 5px;
        }

        nav > ul > li {
            position: relative;
        }

        nav > ul > li > a {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s;
            border-radius: 5px;
        }

        nav > ul > li > a:hover,
        nav > ul > li.active > a {
            color: #ff6666;
            background: rgba(255, 100, 100, 0.1);
        }

        /* Dropdown Menu */
        nav > ul > li > ul {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border-radius: 10px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s;
            display: grid;
            flex-direction: column;
             grid-template-columns: repeat(2,1fr);
              width: 550px;
        }

        nav > ul > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        nav > ul > li > ul > li {
            display: block;
        }

        nav > ul > li > ul > li > a {
            display: block;
            padding: 10px 25px;
            color: #555;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        nav > ul > li > ul > li > a:hover {
            color: #ff6666;
            background: rgba(255, 100, 100, 0.1);
            padding-left: 30px;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: #c44;
            transition: all 0.3s;
        }

        /* Banner Styles */
        .banner-section {
            margin-top: 120px;
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .banner-slider {
            position: relative;
            height: 100%;
        }

        .banner-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: all 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .banner-slide.active {
            opacity: 1;
            visibility: visible;
        }

        .banner-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
           
        }

        .banner-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-layout {
            display: flex;
            align-items: center;
            gap: 60px;
            max-width: 1280px;
            padding: 0 40px;
        }

        .banner-slide:nth-child(1) .banner-layout {
            flex-direction: row;
        }

        .banner-slide:nth-child(2) .banner-layout {
            flex-direction: row-reverse;
        }

        .banner-slide:nth-child(3) .banner-layout {
            flex-direction: column;
        }

        .banner-images {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .banner-img-wrap {
            width: 200px;
            height: 200px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.5s;
        }

        .banner-slide.active .banner-img-wrap {
            animation: slideIn 0.8s ease-out forwards;
        }

        .banner-img-wrap:nth-child(1) { animation-delay: 0.1s; }
        .banner-img-wrap:nth-child(2) { animation-delay: 0.2s; }
        .banner-img-wrap:nth-child(3) { animation-delay: 0.3s; }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .banner-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 10px;
        }

        .banner-info {
            text-align: center;
            color: white;
        }

        .banner-slide:nth-child(1) .banner-info,
        .banner-slide:nth-child(2) .banner-info {
            text-align: left;
            max-width: 500px;
        }

        .banner-info h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .banner-link {
            display: inline-block;
            padding: 15px 40px;
            background: white;
            color: #c44;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 50px;
            transition: all 0.3s;
            margin-top: 20px;
        }

        .banner-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .banner-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .banner-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .banner-dot.active {
            background: white;
            transform: scale(1.3);
        }

        .banner-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
        }

        .banner-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c44;
            font-size: 20px;
            transition: all 0.3s;
        }

        .banner-arrow:hover {
            background: white;
            transform: scale(1.1);
        }

        /* Content Section */
        .content-section {
            background: white;
            min-height: 300px;
        }

        /* Product Section */
        .product-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #fff8f8, #ffe8e8);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 36px;
            color: #333;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #ff6666, #ff8888);
        }

        .slider-controls {
            display: flex;
            gap: 10px;
        }

        .slider-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff8888, #ff6666);
            border: none;
            cursor: pointer;
            color: white;
            font-size: 18px;
            transition: all 0.3s;
        }

        .slider-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(255, 100, 100, 0.4);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(255, 100, 100, 0.1);
            transition: all 0.4s;
            text-decoration: none;
            display: block;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(255, 100, 100, 0.2);
        }

        .product-img {
            position: relative;
            padding-top: 100%;
            overflow: hidden;
        }

        .product-img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 20px;
            transition: transform 0.5s;
        }

        .product-card:hover .product-img img {
            transform: scale(1.1);
        }

        .product-overlay {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ff8888, #ff6666);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .product-overlay svg {
            width: 20px;
            height: 20px;
            stroke: white;
        }

        .product-title {
            padding: 20px;
            font-size: 15px;
            color: #333;
            line-height: 1.5;
            font-weight: 500;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* News Section */
        .news-section {
            padding: 80px 0;
            background: white;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .news-card {
            background: linear-gradient(135deg, #fff8f8, #ffe8e8);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.4s;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 100, 100, 0.15);
        }

        .news-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .news-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }

        .news-title a:hover {
            color: #ff6666;
        }

        .news-text {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #ff6666;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: gap 0.3s;
        }

        .news-link:hover {
            gap: 12px;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-contact a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            transition: color 0.3s;
        }

        .footer-contact a:hover {
            color: #ff8888;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: linear-gradient(135deg, #ff8888, #ff6666);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-bottom a {
            color: #ff8888;
            text-decoration: none;
        }

        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff8888, #ff6666);
            border: none;
            cursor: pointer;
            color: white;
            font-size: 20px;
            box-shadow: 0 5px 20px rgba(255, 100, 100, 0.4);
            transition: all 0.3s;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .banner-info h1 {
                font-size: 32px;
            }
        }

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

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                display: none;
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
            }

            nav > ul > li > ul {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding-left: 20px;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .banner-layout {
                flex-direction: column !important;
                padding: 20px;
            }

            .banner-img-wrap {
                width: 150px;
                height: 150px;
            }

            .banner-info h1 {
                font-size: 24px;
            }

            .banner-info {
                text-align: center !important;
            }

            .section-header {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .top-bar .container {
                flex-direction: column;
                gap: 10px;
            }

            .footer-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
            }

            .banner-img-wrap {
                width: 120px;
                height: 120px;
            }

            .logo strong {
                font-size: 16px;
            }
        }
