        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* Top Bar */
        .topbar {
            background-color: #111;
            padding: 10px 0;
            position: relative;
            z-index: 1000;
        }

        .topbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-left: 40px;
        }

        .social-icons a {
            color: #fff;
            font-size: 14px;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: #222;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            border: 1px solid #333;
        }

        .social-icons a:hover {
            background-color: #ff0000;
            transform: translateY(-3px);
            border-color: #ff0000;
        }

        .search-icon {
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: color 0.3s;
            margin-right: 40px;
        }

        .search-icon:hover {
            color: #ff0000;
        }

        /* Search Overlay Styles */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 3000;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 100px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .search-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .close-search {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 30px;
            color: #fff;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-search:hover {
            color: #ff0000;
        }

        .search-input-container {
            width: 90%;
            max-width: 600px;
            margin-bottom: 40px;
            position: relative;
        }

        #searchInput {
            width: 100%;
            padding: 20px;
            font-size: 18px;
            border: 2px solid #ff0000;
            background-color: transparent;
            color: #fff;
            border-radius: 5px;
            outline: none;
        }

        #searchInput::placeholder {
            color: #888;
        }

        .search-results-container {
            width: 90%;
            max-width: 600px;
            max-height: 400px;
            overflow-y: auto;
        }

        .search-result-item {
            padding: 15px;
            border-bottom: 1px solid #333;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .search-result-item:hover {
            background-color: #222;
            padding-left: 20px;
        }

        .search-result-item span {
            font-size: 18px;
            color: #fff;
        }

        .search-result-item i {
            color: #ff0000;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .search-result-item:hover i {
            opacity: 1;
        }

        .no-results {
            color: #888;
            font-size: 16px;
            text-align: center;
            margin-top: 20px;
        }

        /* Header */
        header {
            background-color: #0a0a0a;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .menu-left, .menu-right {
            display: flex;
            gap: 100px;
            margin-right: 90px;
        }

        .menu-left a, .menu-right a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
            position: relative;
            margin-left: 50px;
        }

        .menu-left a::after, .menu-right a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff0000;
            transition: width 0.3s;
        }

        .menu-left a:hover, .menu-right a:hover { color: #ff0000; }
        .menu-left a:hover::after, .menu-right a:hover::after { width: 100%; }

        .logo {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #fff;
        }

        .logo img {
            height: 55px;
            width: auto;
        }

        .mobile-menu-icon {
            display: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background-color: #000;
            z-index: 2000;
            transition: right 0.3s ease;
            padding: 20px;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        }

        .mobile-menu.active { right: 0; }

        .close-menu {
            color: #fff;
            font-size: 24px;
            position: absolute;
            top: 20px;
            right: 20px;
            cursor: pointer;
        }

        .mobile-menu ul {
            list-style: none;
            margin-top: 60px;
        }

        .mobile-menu ul li {
            margin-bottom: 25px;
            border-bottom: 1px solid #333;
            padding-bottom: 15px;
            list-style: none;
        }

        .mobile-menu ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            width: 100%;
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 80vh;
            min-height: 500px;
            overflow: hidden;
            background-color: #000;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active { opacity: 1; }

        .slide-content {
            text-align: center;
            color: white;
            z-index: 10;
            padding: 40px;
            max-width: 900px;
        }

        .slide-title {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .slide-subtitle {
            font-size: 18px;
            color: #ccc;
            margin-bottom: 40px;
            letter-spacing: 1px;
        }

        .cta-button {
            display: inline-block;
            background-color: #ff0000;
            color: #fff;
            padding: 15px 40px;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
        }

        .cta-button:hover {
            background-color: #cc0000;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
        }

        /* Slide Backgrounds */
        .slide-1 { background: linear-gradient(hsla(0, 0%, 0%, 0.221), rgba(0, 0, 0, 0.221)), url('images/whr1.jpg'); background-size: cover; background-position: center; }
        .slide-2 { background: linear-gradient(hsla(0, 0%, 0%, 0.221), rgba(0, 0, 0, 0.221)), url('images/whr2.jpg'); background-size: cover; background-position: center; }
        .slide-3 { background: linear-gradient(hsla(0, 0%, 0%, 0.221), rgba(0, 0, 0, 0.221)), url('images/whr3.jpg'); background-size: cover; background-position: center; }
        .slide-4 { background: linear-gradient(hsla(0, 0%, 0%, 0.221), rgba(0, 0, 0, 0.221)), url('images/whr4.jpg'); background-size: cover; background-position: center; justify-content: flex-end; }
        .slide-5 { background: linear-gradient(hsla(0, 0%, 0%, 0.221), rgba(0, 0, 0, 0.221)), url('images/whr5.jpg'); background-size: cover; background-position: center; }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 20;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active { background-color: #ff0000; transform: scale(1.3); }

        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            z-index: 20;
            transition: all 0.3s;
            border: 2px solid #ff0000;
        }

        .prev:hover, .next:hover { background-color: rgba(255, 0, 0, 0.8); transform: translateY(-50%) scale(1.1); }
        .prev { left: 30px; }
        .next { right: 30px; }

        /* Sections */
        .featured-products { padding: 80px 40px; background-color: #0a0a0a; position: relative; }
        .featured-products::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, #ff0000, transparent); }
        .section-header { text-align: center; margin-bottom: 60px; position: relative; }
        .section-title { font-size: 3rem; font-weight: bold; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 20px; position: relative; display: inline-block; }
        .section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 100px; height: 3px; background-color: #ff0000; }
        .section-subtitle { font-size: 1.2rem; color: #888; margin-top: 20px; }

        .specialists-section { padding: 80px 40px; background-color: #111; }
        .specialists-container { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; gap: 60px; }
        .specialists-content { flex: 1; }
        .specialists-title { font-size: 2.5rem; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; color: #fff; }
        .specialists-list { list-style: none; margin-bottom: 30px; }
        .specialists-list li { margin-bottom: 25px; padding-left: 20px; position: relative; color: #ccc; line-height: 1.6; }
        .specialists-list li::before { content: '•'; position: absolute; left: 0; color: #ff0000; font-size: 20px; }
        .specialists-list strong { color: #fff; font-weight: bold; display: block; margin-bottom: 8px; font-size: 1.1rem; }
        .specialists-image { flex: 1; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        .specialists-image img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
        .specialists-image:hover img { transform: scale(1.03); }

        .features-section { padding: 80px 40px; background-color: #000; }
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; max-width: 1400px; margin: 0 auto; }
        .feature-item { text-align: center; padding: 30px; background-color: #111; border-radius: 10px; transition: all 0.3s; border: 1px solid transparent; }
        .feature-item:hover { border-color: #ff0000; transform: translateY(-5px); }
        .feature-icon { font-size: 3rem; color: #ff0000; margin-bottom: 20px; }
        .feature-title { font-size: 1.3rem; font-weight: bold; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }

        /* CTA Section */
        .cta-section { padding: 100px 40px; background: linear-gradient(rgba(0, 0, 0, 0.452), rgba(0, 0, 0, 0.452)), url('ropes.jpg'); background-size: cover; background-position: center; text-align: center; }
        .cta-content { max-width: 800px; margin: 0 auto; }
        .cta-title { font-size: 2rem; font-weight: bold; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
        .cta-description { font-size: 1.2rem; color: #ccc; margin-bottom: 40px; line-height: 1.6; }
        .cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
        .cta-primary, .cta-secondary { padding: 15px 40px; font-size: 16px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.3s; border-radius: 5px; }
        .cta-primary { background-color: #ff0000; color: #fff; border: none; box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3); }
        .cta-primary:hover { background-color: #cc0000; transform: translateY(-3px); }
        .cta-secondary { background-color: transparent; color: #fff; border: 2px solid #fff; }
        .cta-secondary:hover { background-color: #fff; color: #000; transform: translateY(-3px); }

        /* Footer */
        footer { background-color: #0a0a0a; padding: 50px 0 0px; border-top: 1px solid #222; }
        .footer-container { margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
        .footer-menu { display: flex; justify-content: center; gap: 40px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-menu a { color: #fff; text-decoration: none; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; position: relative; }
        .footer-menu a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background-color: #ff0000; transition: width 0.3s; }
        .footer-menu a:hover { color: #ff0000; }
        .footer-menu a:hover::after { width: 100%; }
        .footer-social { display: flex; justify-content: center; gap: 25px; margin-bottom: 40px; margin-top: 25px; }
        .footer-social a { color: #888; font-size: 20px; transition: all 0.3s; display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%; background-color: #111; border: 1px solid #333; }
        .footer-social a:hover { color: #fff; background-color: #ff0000; border-color: #ff0000; transform: translateY(-3px); }
        .footer-image { margin-bottom: 0px; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); max-width: 100%; }
        .footer-image img { width: 100%; height: auto; display: block; transition: transform 0.3s; margin-top: -61px; }
        .footer-image:hover img { transform: scale(1.03); }
        .footer-copyright { padding-top: 30px; border-top: 1px solid #222; color: #666; font-size: 14px; line-height: 1.8; max-width: 600px; }
        .footer-copyright p { margin-bottom: 5px; }
        .footer-copyright p:last-child { margin-bottom: 0; }

        /* Back to Top & WhatsApp */
        .back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background-color: #ff0000; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 998; box-shadow: 0 4px 10px rgba(0,0,0,0.3); cursor: pointer; border: none; font-size: 20px; }
        .back-to-top.show { opacity: 1; visibility: visible; }
        .back-to-top:hover { background-color: #cc0000; transform: translateY(-5px); }
        .whatsapp-float { position: fixed; bottom: 30px; left: 30px; width: 50px; height: 50px; background-color: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; z-index: 998; box-shadow: 0 4px 10px rgba(0,0,0,0.3); transition: transform 0.3s; text-decoration: none; }
        .whatsapp-float:hover { transform: scale(1.1); color: #fff; }

        /* Responsive */
        @media (max-width: 1024px) { .slide-title { font-size: 3rem; } .slide-subtitle { font-size: 1.5rem; } .section-title { font-size: 2.5rem; } .specialists-container { gap: 40px; } .specialists-title { font-size: 2rem; } }
        @media (max-width: 768px) {
            .topbar { padding: 10px 20px; }
            header { padding: 15px 20px; }
            .mobile-menu-icon { display: block; }
            .menu-left, .menu-right { display: none; }
            .logo { font-size: 24px; }
            .hero-slider { height: 60vh; min-height: 400px; }
            .slide-content { padding: 20px; }
            .slide-title { font-size: 2.5rem; }
            .slide-subtitle { font-size: 1.2rem; }
            .cta-button { padding: 12px 30px; font-size: 14px; }
            .slide-4 { justify-content: center !important; }
            .slide-4 .slide-content { text-align: center; margin-right: 0; }
            .prev, .next { width: 40px; height: 40px; font-size: 16px; }
            .prev { left: 15px; } .next { right: 15px; }
            .featured-products { padding: 60px 20px; }
            .section-title { font-size: 2rem; }
            .specialists-section { padding: 60px 20px; }
            .specialists-container { flex-direction: column; gap: 40px; }
            .specialists-title { font-size: 1.8rem; }
            .features-section { padding: 60px 20px; }
            .cta-section { padding: 60px 20px; }
            .cta-title { font-size: 2rem; }
            .footer-menu { gap: 20px; } .footer-menu a { font-size: 14px; }
            .footer-social { gap: 15px; } .footer-social a { width: 40px; height: 40px; font-size: 18px; }
            .footer-copyright { font-size: 12px; }
            .back-to-top, .whatsapp-float { width: 45px; height: 45px; bottom: 20px; font-size: 24px; }
            .back-to-top { right: 20px; } .whatsapp-float { left: 20px; }
        }
        @media (max-width: 480px) {
            .topbar { display: none; }
            .logo { font-size: 20px; letter-spacing: 2px; }
            .hero-slider { height: 50vh; min-height: 350px; }
            .slide-title { font-size: 1.8rem; letter-spacing: 2px; }
            .slide-subtitle { font-size: 1rem; }
            .cta-button { padding: 10px 25px; font-size: 13px; }
            .slider-controls { bottom: 15px; }
            .dot { width: 10px; height: 10px; }
            .section-title { font-size: 1.5rem; }
            .specialists-title { font-size: 1.5rem; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .cta-primary, .cta-secondary { width: 100%; max-width: 300px; }
            .footer-container { padding: 0 15px; }
            .footer-menu { gap: 15px; margin-bottom: 25px; } .footer-menu a { font-size: 13px; }
            .footer-social { gap: 12px; margin-bottom: 30px; } .footer-social a { width: 35px; height: 35px; font-size: 16px; }
            .footer-image { margin-bottom: 25px; }
            .footer-copyright { padding-top: 25px; font-size: 11px; }
        }
