        :root {
            --primary: #4361ee;
            --secondary: #3a0ca3;
            --accent: #f72585;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #4cc9f0;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --header-height: 80px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: #495057;
            overflow-x: hidden;
            padding-top: var(--header-height);
            background-color: #f9fafb;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Preloader Styles */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--light);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease-out;
        }
        
        .loader {
            width: 60px;
            height: 60px;
            position: relative;
        }
        
        .loader:before {
            content: "";
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 6px solid var(--light);
            border-top-color: var(--primary);
            border-bottom-color: var(--secondary);
            animation: spin 1.5s linear infinite;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .loader:after {
            content: "";
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 6px solid transparent;
            border-top-color: var(--accent);
            border-bottom-color: var(--success);
            animation: spinReverse 1s linear infinite;
            position: absolute;
            top: 10px;
            left: 10px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes spinReverse {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(-360deg); }
        }
        
        /* Fixed Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
        }
        
        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .header .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .header .logo img {
            max-height: 45px;
            margin-right: 10px;
        }
        
        .header .sitename {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin: 0;
        }
        
        .navmenu {
            display: flex;
            align-items: center;
        }
        
        .navmenu ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .navmenu ul li {
            margin: 0 5px;
        }
        
        .navmenu ul li a {
            font-weight: 500;
            color: var(--dark);
            padding: 10px 15px;
            border-radius: 6px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
        }
        
        .navmenu ul li a:hover, 
        .navmenu ul li a.active {
            color: var(--primary);
            background: rgba(67, 97, 238, 0.1);
        }
        
        .btn-getstarted {
            background: var(--gradient);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-getstarted:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
            color: white;
        }
        
        .mobile-nav-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--dark);
        }
        
        /* Hero Section - Enhanced */
        .hero {
            padding: 180px 0 320px;
            background: var(--gradient);
            position: relative;
            overflow: hidden;
            color: white;
            text-align: center;
            margin-top: 0;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCAwIEwxMDAgMCBMMTAwIDEwMCBMMCAxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIiBzdHJva2Utd2lkdGg9IjEiLz48L3N2Zz4=');
            opacity: 0.1;
        }
        
        .hero .container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .hero h1 span {
            background: linear-gradient(120deg, #f7ce68, #fbab7e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 35px;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.1;
        }
        
        .btn-get-started {
            background: white;
            color: var(--primary);
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
            text-decoration: none;
            display: inline-block;
            font-size: 1.1rem;
        }
        
        .btn-get-started:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
            background: #f8f9fa;
            color: var(--primary);
        }
        
        .btn-watch-video {
            color: white;
            margin-left: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            font-size: 1.1rem;
        }
        
        .btn-watch-video:hover {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .btn-watch-video i {
            margin-right: 8px;
            font-size: 1.3rem;
        }
        
        .hero-img {
            max-width: 85%;
            margin-top: 60px;
            border-radius: 15px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            display: block;
            margin-left: auto;
            margin-right: auto;
            transition: transform 0.5s ease;
        }
        
        .hero-img:hover {
            transform: translateY(-10px);
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background: #f8f9fa;
        }
        
        .section-title {
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 15px;
            font-size: 2.5rem;
            color: var(--dark);
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
        .section-title p {
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border-left: 4px solid var(--primary);
            text-align: left;
        }
        
        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .service-item .icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .service-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .service-item p {
            margin-bottom: 20px;
            color: #6c757d;
        }
        
        .read-more {
            color: var(--primary);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            text-decoration: none;
        }
        
        .read-more:hover {
            color: var(--secondary);
        }
        
        /* More Features Section */
        .more-features {
            padding: 100px 0;
            background: white;
        }
        
        .more-features .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 50px;
        }
        
        .more-features-content {
            flex: 1;
            min-width: 300px;
        }
        
        .more-features h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .more-features p {
            margin-bottom: 30px;
            color: #6c757d;
        }
        
        .icon-box {
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            background: #f8f9fa;
            transition: all 0.3s ease;
            display: flex;
        }
        
        .icon-box:hover {
            background: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateX(5px);
        }
        
        .icon-box i {
            font-size: 1.8rem;
            color: var(--primary);
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .icon-box-content h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .icon-box-content p {
            margin-bottom: 0;
            color: #6c757d;
        }
        
        .features-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .features-image img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        /* Stats Section */
        .stats {
            background: var(--gradient);
            padding: 80px 0;
            color: white;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }
        
        .stats-item {
            padding: 20px;
        }
        
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }
        
        .stats-text {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .footer-about .sitename {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            display: block;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            opacity: 0.8;
        }
        
        .footer-links h4 {
            position: relative;
            padding-bottom: 12px;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .footer-links ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-newsletter h4 {
            position: relative;
            padding-bottom: 12px;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-newsletter h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }
        
        .footer-newsletter p {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px;
            outline: none;
            min-width: 0;
        }
        
        .newsletter-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .newsletter-form button:hover {
            background: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 10px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }
        
        .copyright p {
            margin-bottom: 0;
            opacity: 0.8;
        }
        
        .credits {
            margin-top: 10px;
            opacity: 0.7;
            font-size: 0.9rem;
        }
        
        .credits a {
            color: var(--primary);
            text-decoration: none;
        }
        
        /* Scroll Top Button */
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }
        
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            color: white;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .navmenu ul {
                display: none;
                position: absolute;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }
            
            .navmenu ul.show {
                display: flex;
            }
            
            .navmenu ul li {
                margin: 5px 0;
                width: 100%;
            }
            
            .navmenu ul li a {
                padding: 12px 15px;
                border-radius: 6px;
            }
            
            .mobile-nav-toggle {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            :root {
                --header-height: 70px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 160px 0 300px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .btn-get-started {
                margin-bottom: 15px;
                padding: 12px 30px;
            }
            
            .btn-watch-video {
                margin-left: 0;
            }
            
            .hero-img {
                max-width: 100%;
                margin-top: 40px;
            }
            
            .more-features .container {
                flex-direction: column;
            }
            
            .stats-number {
                font-size: 2.5rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form button {
                padding: 12px;
                margin-top: 10px;
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .header .sitename {
                font-size: 1.2rem;
            }
            
            .btn-getstarted {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn-get-started, .btn-watch-video {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 400px) {
            .hero h1 {
                font-size: 1.9rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }