        :root {
            --hermes-orange: #F37021;
            --hermes-orange-dark: #D85A10;
            --hermes-orange-light: #FF8C42;
            --dark-bg: #1a1a2e;
            --light-bg: #f8f9fa;
            --text-dark: #222222;
            --text-light: #ffffff;
            --accent-glow: rgba(243, 112, 33, 0.5);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
        }
        a {
            text-decoration: none;
        }

        .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(0, 0, 0, 0.1);
        }

        .header-top {
            background: linear-gradient(135deg, var(--hermes-orange), var(--hermes-orange-dark));
            padding: 8px 0;
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .contact-info a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.3s;
        }

        .contact-info a:hover {
            opacity: 0.8;
        }

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

        .social-icons a {
            color: var(--text-light);
            font-size: 16px;
            transition: transform 0.3s, opacity 0.3s;
        }

        .social-icons a:hover {
            transform: translateY(-2px);
            opacity: 0.8;
        }

        .header-main {
            padding: 15px 0;
        }

        .header-main .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

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

        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--hermes-orange);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Navigation */
        .nav {
            display: flex;
            align-items: center;
        }

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

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 12px 20px;
            color: var(--text-dark);
            text-decoration: none;
            font-family: 'Rajdhani', sans-serif;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s, background 0.3s;
            border-radius: 4px;
        }

        .nav-link:hover,
        .nav-item.active .nav-link {
            color: var(--hermes-orange);
            background: rgba(243, 112, 33, 0.1);
        }

        /* Dropdown Menu */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 250px;
            background: white;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            padding: 15px 0;
            border-top: 3px solid var(--hermes-orange);
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-row {
            
            flex-wrap: wrap;
            padding: 0 15px;
            display: grid;
            flex-direction: column;
             grid-template-columns: repeat(2,1fr);
              width: 550px;
            
        }

        .dropdown-item {
            flex: 1 1 100%;
            padding: 8px 15px;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s;
            border-radius: 4px;
        }

        .dropdown-item:hover {
            background: rgba(243, 112, 33, 0.1);
            color: var(--hermes-orange);
            padding-left: 25px;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--hermes-orange);
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* Banner Slider */
        .banner {
            margin-top: 120px;
            height: 600px;
            position: relative;
            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: opacity 0.8s ease, visibility 0.8s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

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

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

        .banner-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            width: 100%;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        /* Layout variations for different slides */
        .banner-slide:nth-child(1) .banner-content {
            flex-direction: row;
        }

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

        .banner-slide:nth-child(3) .banner-content {
            flex-direction: column;
            text-align: center;
        }

        .banner-info {
            flex: 1;
            animation: slideInLeft 0.8s ease;
        }

        .banner-slide.active .banner-info {
            animation: slideInLeft 0.8s ease forwards;
        }

        .banner-slide:nth-child(2).active .banner-info {
            animation: slideInRight 0.8s ease forwards;
        }

        .banner-slide:nth-child(3).active .banner-info {
            animation: slideInUp 0.8s ease forwards;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .banner-title {
            font-size: 48px;
            color: var(--text-light);
            margin-bottom: 20px;
            text-shadow: 0 0 30px var(--accent-glow);
            line-height: 1.2;
        }

        .banner-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, var(--hermes-orange), var(--hermes-orange-dark));
            color: var(--text-light);
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 5px 30px var(--accent-glow);
        }

        .banner-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px var(--accent-glow);
        }

        .banner-images {
            display: flex;
            gap: 20px;
            animation: fadeInScale 0.8s ease;
        }

        .banner-slide.active .banner-images {
            animation: fadeInScale 0.8s ease 0.3s forwards;
            opacity: 0;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .banner-image-item {
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }

        .banner-image-item:hover {
            transform: scale(1.05);
        }

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

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

        .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: var(--hermes-orange);
            box-shadow: 0 0 20px var(--accent-glow);
            transform: scale(1.2);
        }

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

        .banner-arrow {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid var(--hermes-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            pointer-events: auto;
            color: var(--text-light);
            font-size: 20px;
        }

        .banner-arrow:hover {
            background: var(--hermes-orange);
            box-shadow: 0 0 30px var(--accent-glow);
        }

        /* Spacer Section */
        .spacer-section {
            height: 300px;
            background: white;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--text-dark);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--hermes-orange), var(--hermes-orange-light));
            border-radius: 2px;
        }

        /* Products Section */
        .products-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        }

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

        .products-header h2 {
            font-size: 36px;
            color: var(--text-dark);
            position: relative;
            padding-left: 20px;
        }

        .products-header h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 40px;
            background: var(--hermes-orange);
            border-radius: 3px;
        }

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

        .slider-btn {
            width: 45px;
            height: 45px;
            background: white;
            border: 2px solid var(--hermes-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--hermes-orange);
        }

        .slider-btn:hover {
            background: var(--hermes-orange);
            color: white;
        }

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

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

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

        .product-image {
            position: relative;
            padding-top: 100%;
            overflow: hidden;
            background: #f8f9fa;
        }

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

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

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(243, 112, 33, 0.9), rgba(216, 90, 16, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s;
        }

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

        .product-overlay i {
            font-size: 40px;
            color: white;
            transform: rotate(45deg);
        }

        .product-info {
            padding: 20px;
        }

        .product-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

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

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

        .news-header h2 {
            font-size: 36px;
            color: var(--text-dark);
            position: relative;
            padding-left: 20px;
        }

        .news-header h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 40px;
            background: var(--hermes-orange);
            border-radius: 3px;
        }

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

        .news-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            border: 1px solid #eee;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(243, 112, 33, 0.15);
            border-color: var(--hermes-orange);
        }

        .news-card h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .news-card h3 a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s;
        }

        .news-card h3 a:hover {
            color: var(--hermes-orange);
        }

        .news-excerpt {
            font-size: 14px;
            color: #666;
            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: var(--hermes-orange);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: gap 0.3s;
        }

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

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--dark-bg), #16213e);
            color: var(--text-light);
        }

        .footer-top {
            padding: 40px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-contact {
            display: flex;
            align-items: center;
            gap: 30px;
        }

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

        .footer-contact a:hover {
            color: var(--hermes-orange);
        }

        .footer-contact i {
            color: var(--hermes-orange);
        }

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

        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 18px;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: var(--hermes-orange);
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding: 25px 0;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-bottom a {
            color: var(--hermes-orange);
            text-decoration: none;
            margin-left: 15px;
        }

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

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

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

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

        @media (max-width: 992px) {
            .banner-title {
                font-size: 36px;
            }

            .banner-image-item {
                width: 150px;
                height: 150px;
            }

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

            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-top .container {
                flex-direction: column;
                gap: 10px;
            }

            .menu-toggle {
                display: flex;
            }

            .nav {
                position: fixed;
                top: 120px;
                left: 0;
                right: 0;
                background: white;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transform: translateX(-100%);
                transition: transform 0.3s;
            }

            .nav.active {
                transform: translateX(0);
            }

            .nav-list {
                flex-direction: column;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding-left: 20px;
                display: none;
                  
            }

            .nav-item:hover .dropdown {
                display: block;
            }

            .banner {
                height: 500px;
                margin-top: 150px;
            }

            .banner-content {
                flex-direction: column !important;
                text-align: center;
                padding: 0 20px;
            }

            .banner-title {
                font-size: 28px;
            }

            .banner-images {
                flex-wrap: wrap;
                justify-content: center;
            }

            .banner-image-item {
                width: 120px;
                height: 120px;
            }

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

            .products-header h2::before,
            .news-header h2::before {
                display: none;
            }

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

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

            .footer-top .container {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .footer-contact {
                flex-direction: column;
                gap: 15px;
            }
        }

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

            .banner-image-item {
                width: 100px;
                height: 100px;
            }

            .banner-title {
                font-size: 24px;
            }
        }
