:root {
            --primary-orange: #FF6B35;
            --primary-darkblue: #1A2B4A;
            --secondary-orange: #FF8C5A;
            --light-bg: #F8F9FA;
            --text-dark: #333333;
            --text-light: #FFFFFF;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            font-family: 'Poppins', sans-serif;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }

        /* Loader Styles */
        #loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-darkblue);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loader-logo {
            width: 120px;
            height: 120px;
            margin-bottom: 20px;
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            background: url('favicon1.png') center/contain no-repeat;
            background-color: white;
        }

        .loader-text {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }

        .loader-bar {
            width: 200px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            overflow: hidden;
        }

        .loader-progress {
            height: 100%;
            width: 0%;
            background: var(--primary-orange);
            border-radius: 4px;
            transition: width 3s ease;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 1200px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 15px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: var(--shadow);
            z-index: 1000;
            transition: var(--transition);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-darkblue);
            font-family: 'Montserrat', sans-serif;
        }

        .logo span {
            color: var(--primary-orange);
        }

        .logo-img {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: url('favicon1.png') center/contain no-repeat;
            background-color: white;
        }

        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--primary-darkblue);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-orange);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-orange);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-order-btn {
            background: var(--primary-orange);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
            margin-left: 10px;
        }

        .nav-order-btn:hover {
            background: var(--secondary-orange);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            color: var(--primary-darkblue);
            cursor: pointer;
            z-index: 1001;
        }

        /* Bottom Mobile Navigation */
        .mobile-nav {
            position: fixed;
            bottom: -100%;
            left: 0;
            width: 100%;
            background: white;
            z-index: 1002;
            padding: 25px 20px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
            transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            display: flex;
            flex-direction: column;
            gap: 20px;
            border-radius: 20px 20px 0 0;
        }

        .mobile-nav.active {
            bottom: 0;
        }

        .mobile-nav a {
            text-decoration: none;
            color: var(--primary-darkblue);
            font-size: 1.2rem;
            font-weight: 500;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mobile-nav a i {
            width: 24px;
            text-align: center;
        }

        .mobile-nav a:hover {
            color: var(--primary-orange);
            padding-left: 10px;
        }

        .mobile-order-btn {
            background: var(--primary-orange);
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            margin-top: 10px;
            transition: var(--transition);
        }

        .mobile-order-btn:hover {
            background: var(--secondary-orange);
        }

        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            color: var(--primary-darkblue);
            cursor: pointer;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero {
            min-height: 70vh;
            background: linear-gradient(rgba(26, 43, 74, 0.8), rgba(26, 43, 74, 0.9)), url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            padding: 0 20px;
        }

        .hero-content {
            max-width: 800px;
            padding-top: 80px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-tagline {
            font-size: 1.5rem;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .cta-buttons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            max-width: 400px;
            margin: 0 auto;
        }

        .btn {
            padding: 14px 20px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            cursor: pointer;
            border: none;
            font-size: 1rem;
            text-align: center;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary {
            background: var(--primary-orange);
            color: white;
        }

        .btn-primary:hover {
            background: var(--secondary-orange);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-darkblue);
            transform: translateY(-3px);
        }

        /* Services Section */
        .section {
            padding: 80px 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-orange);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-orange);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-orange);
            font-size: 2rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-darkblue);
        }

        /* Stats Section */
        .stats {
            background: var(--primary-darkblue);
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }

        .stat-item {
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary-orange);
            font-family: 'Montserrat', sans-serif;
        }

        .stat-text {
            font-size: 1.1rem;
        }

        /* Pricing Section */
        .pricing {
            background: var(--light-bg);
        }

        .pricing-table-container {
            max-width: 800px;
            margin: 0 auto;
            overflow-x: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        .pricing-table th, .pricing-table td {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .pricing-table th {
            background: var(--primary-darkblue);
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            font-family: 'Montserrat', sans-serif;
        }

        .pricing-table tr:last-child td {
            border-bottom: none;
        }

        .pricing-table tr:nth-child(even) {
            background: rgba(248, 249, 250, 0.5);
        }

        .pricing-zone {
            font-weight: 700;
            color: var(--primary-darkblue);
            font-size: 1.2rem;
            font-family: 'Montserrat', sans-serif;
        }

        .pricing-price {
            font-size: 1.2rem;
            color: var(--primary-orange);
            font-weight: 600;
        }

        .coming-soon {
            background: rgba(255, 107, 53, 0.1);
            color: var(--primary-orange);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Why Choose Us Section */
        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            padding: 0 40px;
        }

        .features-scroll {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 25px;
            padding: 20px 10px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .features-scroll::-webkit-scrollbar {
            display: none;
        }

        .feature-card {
            min-width: 300px;
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary-orange);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(26, 43, 74, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-darkblue);
            font-size: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-darkblue);
        }

        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: var(--primary-orange);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            z-index: 10;
        }

        .scroll-btn:hover {
            background: var(--secondary-orange);
            transform: translateY(-50%) scale(1.1);
        }

        .scroll-left {
            left: 0;
        }

        .scroll-right {
            right: 0;
        }

        /* Floating Order Button */
        .floating-order {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--primary-orange);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
            cursor: pointer;
            z-index: 999;
            transition: var(--transition);
        }

        .floating-order:hover {
            background: var(--secondary-orange);
            transform: scale(1.1);
        }

        /* Footer */
        footer {
            background: var(--primary-darkblue);
            color: white;
            padding: 60px 20px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary-orange);
            font-family: 'Montserrat', sans-serif;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-orange);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links 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: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary-orange);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .footer-logo-img {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: url('favicon1.png') center/contain no-repeat;
            background-color: white;
        }

        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            font-family: 'Montserrat', sans-serif;
        }

        .footer-logo-text span {
            color: var(--primary-orange);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .scroll-btn {
                display: flex;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 12px 20px;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero {
                min-height: 60vh;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-tagline {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 12px 15px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-grid-mobile {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .cta-buttons {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features-container {
                padding: 0 20px;
            }
            
            .scroll-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                min-height: 70vh;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero-tagline {
                font-size: 1.1rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .stat-item {
                padding: 20px 15px;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .pricing-table th, .pricing-table td {
                padding: 15px 10px;
            }
            
            .features-container {
                padding: 0 10px;
            }
            
            .footer-grid-mobile {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }