* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #FF9900;
            --secondary: #4169E1;
            --dark: #1a1a1a;
            --light: #f8f9fa;
            --accent: #FFD700;
            --gray: #6c757d;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            color: #333;
            background-color: var(--light);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 15px 50px;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .header.scrolled {
            padding: 10px 50px;
            background: rgba(0, 0, 0, 0.95);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            color: var(--primary);
            font-size: 28px;
            font-weight: bold;
            text-decoration: none;
        }

        .logo i {
            margin-right: 10px;
            font-size: 32px;
        }

        .logo-full {
            display: flex;
        }

        .logo-short {
            display: none;
            
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .cta-button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
        }

        .cta-button:hover {
            background: #ffaa33;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 153, 0, 0.4);
        }

        /* Landing Section with Slider */
        .landing {
            position: relative;
            height: 90vh;
            overflow: hidden;
            margin-top: 80px;
        }

        .slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            opacity: 1;
        }

        .slide1 {
            background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                              url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        }

        .slide2 {
            background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                              url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
        }

        .slide3 {
            background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                              url('https://images.unsplash.com/photo-1544627836-822bfe450209?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
        }

        /* Content overlay */
        .landing-content {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 50px;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
        }

        .landing-left {
            flex: 1;
            max-width: 500px;
            margin-right: 50px;
        }

        .landing-title {
            color: white;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 30px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
            line-height: 1.1;
        }

        .landing-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.5rem;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .features-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .features-list li {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
            font-weight: 500;
        }

        .features-list li i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-right: 15px;
            background: white;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .landing-right {
            flex: 1;
            max-width: 550px;
        }

        .quote-section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.3);
        }

        .quote-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: #ff0000;
            margin-bottom: 30px;
        }

        .quote-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .quote-btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 15px 20px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .quote-btn:hover {
            background: #2C5BF0;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(65, 105, 225, 0.5);
        }

        .full-width-btn {
            grid-column: 1 / -1;
        }

        .compare-section {
            text-align: center;
            margin-top: 30px;
            padding: 25px;
            background: linear-gradient(135deg, var(--secondary) 0%, #5a7de9 100%);
            border-radius: 15px;
            color: white;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        .compare-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        /* Service icons */
        .services-icons {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            z-index: 15;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 15px;
            border-radius: 50px;
        }

        .service-icon {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            border: 2px solid rgba(255,255,255,0.5);
        }

        .service-icon:hover {
            transform: translateY(-10px) scale(1.1);
            background: var(--secondary);
            color: white;
            box-shadow: 0 20px 40px rgba(65, 105, 225, 0.5);
        }

        .service-icon span {
            font-size: 2rem;
            margin-bottom: 2px;
        }

        .service-icon small {
            font-size: 0.55rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #643832;
        }

        /* Slider dots */
        .slider-dots {
            position: absolute;
            bottom: 130px;
            left: 50px;
            display: flex;
            gap: 12px;
            z-index: 12;
        }

        .dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255,255,255,0.6);
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        /* Mobile Navigation Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
            padding: 5px;
            margin-left: 160px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* New Sections */
        .section {
            padding: 80px 50px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
            color: var(--dark);
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .how-it-works {
            background: white;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .step-card {
            background: var(--light);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .step-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .step-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .services {
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .service-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .service-content {
            padding: 25px;
        }

        .service-name {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-description {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-cta {
            display: inline-block;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 2px;
            transition: all 0.3s ease;
        }

        .service-cta:hover {
            color: var(--secondary);
            border-bottom-color: var(--secondary);
        }

        .testimonials {
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--light);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--gray);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-right: 15px;
        }

        .cta-section {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1511919884226-fd3cad34687c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 50px;
        }

        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .footer {
            background: var(--dark);
            color: white;
            padding: 60px 50px 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-heading {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Dropdown Menu Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown-toggle i {
            font-size: 14px;
        }

        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            width: 280px;
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .dropdown:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .submenu li a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            color: #333;
            border-radius: 6px;
            transition: background 0.2s ease;
            text-transform: none;
        }

        .submenu li a:hover {
            background: #f5f5f5;
        }

        .submenu li a i {
            font-size: 18px;
            color: #4a90e2;
            width: 24px;
            text-align: center;
        }

        .submenu li a span {
            display: flex;
            flex-direction: column;
        }

        .submenu li a strong {
            font-size: 14px;
            font-weight: 500;
        }

        .submenu li a small {
            font-size: 12px;
            color: #666;
            margin-top: 2px;
        }

        /* Mobile-specific styles for dropdown */
        @media (max-width: 768px) {
            .dropdown {
                position: static;
            }
            
            .dropdown-toggle {
                padding: 15px 0;
                justify-content: space-between;
                width: 100%;
            }
            
            .dropdown-toggle i.fa-chevron-down {
                transition: transform 0.3s ease;
            }
            
            .dropdown.active .dropdown-toggle i.fa-chevron-down {
                transform: rotate(180deg);
            }
            
            .submenu {
                position: static;
                width: 100%;
                box-shadow: none;
                padding: 0;
                background: transparent;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease, opacity 0.3s ease;
                opacity: 0;
                margin-top: 0;
            }
            
            .dropdown.active .submenu {
                max-height: 500px;
                opacity: 1;
                margin-top: 10px;
            }
            
            .submenu li a {
                padding: 12px 15px;
                color: white;
                border-left: 3px solid transparent;
            }
            
            .submenu li a:hover {
                background: rgba(255, 255, 255, 0.1);
                border-left-color: var(--primary);
            }
            
            .submenu li a i {
                color: var(--primary);
            }
            
            .submenu li a strong {
                color: white;
            }
            
            .submenu li a small {
                color: rgba(255, 255, 255, 0.7);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .landing-content {
                padding: 0 30px;
            }
            
            .landing-left {
                margin-right: 30px;
            }
            
            .landing-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
            }

            .header.scrolled {
                padding: 10px 20px;
            }


            .logo-full {
                display: none;
            }

            .logo-short {
                display: flex;
            }

            .mobile-toggle {
                display: flex;

            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                padding: 20px;
                gap: 0;
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                display: block;
                padding: 15px 0;
                width: 100%;
            }

            .landing {
                height: auto;
                min-height: 100vh;
                margin-top: 70px;
                background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                            url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
                background-size: cover;
                background-position: center;
            }

            .slider {
                display: none;
            }

            .landing-content {
                flex-direction: column;
                padding: 30px 20px;
                gap: 30px;
                top: 50%;
                position: relative;
                transform: translateY(0);
            }

            .landing-left {
                margin-right: 0;
                text-align: center;
                order: 1;
                padding-top: 20px;
            }

            .landing-title {
                font-size: 2.5rem;
                margin-bottom: 20px;
                line-height: 1.2;
            }

            .landing-subtitle {
                font-size: 1.2rem;
                margin-bottom: 30px;
                line-height: 1.4;
            }

            .features-list li {
                font-size: 1.1rem;
                margin-bottom: 15px;
                justify-content: center;
            }

            .landing-right {
                order: 2;
                margin-bottom: 0;
                width: 100%;
            }

            .quote-section {
                padding: 30px 25px;
                background: rgba(255, 255, 255, 0.1);
            }

            .quote-title {
                font-size: 1.8rem;
            }

            .services-icons {
                position: relative;
                bottom: auto;
                left: auto;
                transform: none;
                margin-top: 30px;
                justify-content: center;
                padding: 10px;
                gap: 12px;
                max-width: 100%;
                z-index: 10;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(15px);
                border-radius: 25px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.3);
                flex-wrap: wrap;
            }

            .service-icon {
                width: 65px;
                height: 65px;
                background: rgba(255, 255, 255, 0.9);
            }

            .service-icon span {
                font-size: 1.6rem;
            }

            .service-icon small {
                font-size: 0.6rem;
            }

            .slider-dots {
                display: none;
            }

            .section {
                padding: 60px 20px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .nav {
                justify-content: flex-start;
            }

            .cta-button {
                margin-left: auto;
            }
        }

        @media (max-width: 480px) {
            .landing-content {
                top: 40%;
                padding: 20px 15px;
            }

            .landing-right {
                margin-bottom: 0;
            }

            .landing-title {
                font-size: 2rem;
            }

            .landing-subtitle {
                font-size: 1rem;
            }

            .features-list li {
                font-size: 1rem;
            }

            .quote-buttons {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .quote-btn {
                padding: 15px 20px;
            }

            .services-icons {
                margin-top: 20px;
                padding: 8px;
                gap: 8px;
            }

            .service-icon {
                width: 55px;
                height: 55px;
            }

            .service-icon span {
                font-size: 1.4rem;
            }

            .service-icon small {
                font-size: 0.55rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .landing-left, .landing-right {
            animation: fadeInUp 1.2s ease-out;
        }

        .landing-right {
            animation-delay: 0.3s;
        }

        .step-card, .service-card, .testimonial-card {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .step-card.in-view, .service-card.in-view, .testimonial-card.in-view {
            opacity: 1;
            transform: translateY(0);
        }

