
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #3b82f6;
            --primary-dark: #2563eb;
            --primary-light: #dbeafe;
            --secondary: #64748b;
            --light: #f8fafc;
            --dark: #1e293b;
            --white: #ffffff;
            --accent: #f59e0b;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --whatsapp: #25D366;
            --success: #10b981;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            --gradient-accent: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        }

        body {
            font-family: "Poppins", sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            background: var(--light);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header Styles */
        .header {
            width: 100%;
            background: var(--white);
            height: 80px;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .header.scrolled {
            height: 70px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--dark);
            z-index: 1001;
        }

        .logo-img { 
            width: 40px; 
            height: 40px;
            margin-right: 12px; 
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient);
            border-radius: 8px;
            color: var(--white);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .logo:hover .logo-img {
            transform: rotate(5deg);
        }

        .logo-text { 
            font-size: 1.4rem; 
            font-weight: 700; 
        }
        .logo-text strong { 
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Navigation */
        .nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links {
            display: flex;
            gap: 25px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--primary);
            border-radius: 2px;
        }

        /* Dropdown Menu Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            cursor: pointer;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 200px;
            box-shadow: var(--shadow-lg);
            border-radius: 8px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1000;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 20px;
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
        }

        .dropdown-menu a:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .btn-nav {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .btn-nav-primary {
            background: var(--gradient);
            color: var(--white);
        }

        .btn-nav-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
        }

        .btn-whatsapp {
            background: var(--whatsapp);
            color: var(--white);
        }

        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
        }

        /* Mobile Toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            z-index: 1001;
            transition: var(--transition);
        }

        .mobile-toggle:hover {
            color: var(--primary);
        }

        /* MOBILE MENU DESIGN – ATTRACTIVE */
        .mobile-menu {
            display: none;
            flex-direction: column;
            padding: 20px;
            background: #ffffff;
            border-top: 1px solid #eee;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 999;
            transform: translateY(-20px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .mobile-menu.active {
            display: flex;
            transform: translateY(0);
            opacity: 1;
            animation: fadeSlide 0.3s ease;
        }

        @keyframes fadeSlide {
            from { opacity: 0; transform: translateY(-10px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* Mobile links look attractive */
        .mobile-menu a,
        .mobile-dd-toggle {
            padding: 14px 16px;
            margin-bottom: 10px;
            font-size: 16px;
            font-weight: 500;
            color: #333;
            text-decoration: none;
            background: #f7f9fc;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: 0.2s;
        }

        /* Hover effect */
        .mobile-menu a:hover,
        .mobile-dd-toggle:hover {
            background: #eef2ff;
            border-color: #c7d2fe;
        }

        /* Services dropdown inside mobile */
        .mobile-dd-menu {
            display: none;
            flex-direction: column;
            padding-left: 20px;
        }

        .mobile-dd-menu.active {
            display: flex;
        }

        .mobile-dd-menu a {
            background: #ffffff;
            border-radius: 10px;
            margin: 8px 0;
            border: 1px solid #eee;
            padding: 12px 16px;
            font-size: 15px;
        }

        /* Buttons (WhatsApp + Quote) */
        .mobile-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }

        .mobile-actions .btn {
            width: 100%;
            justify-content: center;
        }

        .mobile-actions .btn-whatsapp,
        .mobile-actions .btn-primary {
            padding: 14px 18px;
            margin-top: 10px;
            border-radius: 12px;
            color: white !important;
            font-size: 16px;
            text-align: center;
            font-weight: 600;
        }

        .mobile-actions .btn-whatsapp {
            background: #22c55e;
        }

        .mobile-actions .btn-primary {
            background: #2563eb;
        }

        /* Center dropdown arrow */
        .mobile-dd-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Enhanced Home Section */
        .home {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
            position: relative;
            overflow: hidden;
            padding: 100px 0 80px;
        }

        .home-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.05);
            animation: float 6s ease-in-out infinite;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
            animation-delay: 2s;
        }

        .circle-3 {
            width: 150px;
            height: 150px;
            top: 50%;
            right: 10%;
            animation-delay: 4s;
        }

        .circle-4 {
            width: 180px;
            height: 180px;
            bottom: 20%;
            left: 5%;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .home-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }

        .home-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e0f2fe;
            color: #0369a1;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 25px;
            animation: pulse 2s infinite;
            box-shadow: 0 4px 10px rgba(3, 105, 161, 0.1);
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
            100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
        }

        .home-title {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
        }

        .home-title span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .home-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(59, 130, 246, 0.2);
            z-index: -1;
            border-radius: 4px;
        }

        .home-subtitle {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 35px;
            line-height: 1.6;
            position: relative;
            padding-left: 20px;
            border-left: 3px solid var(--primary);
        }

        .home-stats {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            position: relative;
            background: var(--white);
            padding: 20px 15px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            min-width: 120px;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 30px;
            background: #e2e8f0;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--secondary);
        }

        .home-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary);
            border: 2px solid #e2e8f0;
        }

        .btn-secondary:hover {
            background: var(--light);
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .btn-whatsapp-large {
            background: var(--whatsapp);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

        .btn-whatsapp-large:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
        }

        /* Home Layout with Character Image */
        .home-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            width: 100%;
        }

        .home-left {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

/* Existing CSS (Do NOT change) */
.character-image img {
    width: 137%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: floatCharacter 6s ease-in-out infinite;
    transform-origin: center bottom;
    margin-top: 30px;
    margin-left: -150px;
    margin-right: -150px;
    margin-bottom: -300px;
    z-index: 2;
}

/* --- NEW RESPONSIVE CODE BELOW --- */

/* 💻 Medium Screens (e.g., tablets, up to 992px) */
@media (max-width: 992px) {
    .character-image img {
        /* Reduce width/height slightly */
        width: 350%;
        height: 300%;
        
        /* Adjust margins to center it better on medium screens */
        margin-left: -200px;
        margin-right: -200px;
        margin-top: -20px;
        margin-bottom: -66px;
    }
}

/* 📱 Small Screens (e.g., large phones, up to 768px) */
@media (max-width: 768px) {
    .character-image img {
        /* Further reduce width/height */
        width: 150%;
        height: 150%;
        
        /* Adjust margins for smaller screens */
        margin-left: -120px;
        margin-right: -120px;
        margin-top: 10px;
    }
}

/* XS Screens (e.g., standard phones, up to 576px) */
@media (max-width: 576px) {
    .character-image img {
        /* Set to a more reasonable size for mobile view */
        width: 120%;
        height: 120%;
        
        /* Center and minimize negative margins */
        margin-left: -10%;
        margin-right: -10%;
        margin-top: 0px;
    }
}

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            width: 60px;
            height: 60px;
            background: var(--white);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            animation: floatElement 8s ease-in-out infinite;
            z-index: 3;
        }

        .floating-element:nth-child(1) {
            top: -20px;
            right: -20px;
            background: var(--primary);
            color: white;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            bottom: 40px;
            left: -30px;
            background: var(--success);
            color: white;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: -20px;
            right: 30px;
            background: var(--white);
            color: var(--primary);
            animation-delay: 4s;
        }

        @keyframes floatElement {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-10px) rotate(5deg); }
            66% { transform: translateY(5px) rotate(-5deg); }
        }

        .home-right {
            padding-left: 20px;
        }

        .trusted-by {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .trusted-label {
            font-size: 0.9rem;
            color: var(--secondary);
            white-space: nowrap;
        }

        .trusted-logos {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .mini-logo {
            width: 30px;
            height: 30px;
            background: var(--white);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            font-weight: bold;
            font-size: 0.7rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .mini-logo:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
            display: none;
        }

        .section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--gradient);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Why Choose Us Section */
        .home-section {
            padding: 80px 0;
        }

        .home-section:nth-child(even) {
            background: var(--white);
        }

        .home-section:nth-child(odd) {
            background: var(--light);
        }

        .why-choose-us {
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 1.8rem;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: var(--gradient);
            color: var(--white);
            transform: rotateY(180deg);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .feature-card p {
            color: var(--secondary);
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials {
            text-align: center;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            text-align: left;
            position: relative;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-card::before {
            content: "“";
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 4rem;
            color: rgba(59, 130, 246, 0.1);
            font-family: Georgia, serif;
        }

        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
            color: var(--secondary);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .author-info h4 {
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--secondary);
            font-size: 0.9rem;
        }

        /* Client Logos */
        .client-logos {
            text-align: center;
            padding: 90px 0;
            background: linear-gradient(120deg, #f2f6ff, #ffffff);
        }

        .client-logos .section-title h2 {
            font-size: 34px;
            font-weight: 800;
            text-align: center;
        }

        .client-logos .section-title p {
            text-align: center;
            color: #6b7280;
            font-size: 16px;
            margin-bottom: 50px;
        }

        /* Responsive auto-fit grid */
        .logos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
            gap: 30px;
            justify-items: center;
        }

        /* LOGO CARD */
        .logo-item {
            width: 100%;
            padding: 32px 25px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 18px;
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.4);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            text-align: center;
            position: relative;
            overflow: hidden;
            animation: floatCard 4s ease-in-out infinite;
            animation-delay: calc(var(--i) * 0.3s);
            transition: all 0.35s ease;
        }

        /* Floating effect */
        @keyframes floatCard {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        /* SHINE SWEEP EFFECT */
        .logo-item::before {
            content: "";
            position: absolute;
            top: -120%;
            left: -120%;
            width: 250%;
            height: 250%;
            background: linear-gradient(
                120deg,
                rgba(255,255,255,0.2) 0%,
                rgba(255,255,255,0.55) 50%,
                rgba(255,255,255,0.2) 100%
            );
            transform: rotate(25deg);
            transition: 0.7s ease;
            opacity: 0;
        }

        /* Hover effects – scale + glow + shine swipe */
        .logo-item:hover {
            transform: translateY(-15px) scale(1.04);
            box-shadow: 0 18px 40px rgba(0,0,0,0.16);
            border-color: rgba(255,255,255,0.6);
        }

        .logo-item:hover::before {
            top: -20%;
            left: -20%;
            opacity: 1;
        }

        /* LOGO TEXT */
        .logo-item div {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

        /* ===== Get Started Section ===== */
        .get-started-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(135deg, #e3f2ff 0%, #ffffff 50%, #eef7ff 100%);
            overflow: hidden;
        }

        /* Main Content */
        .get-started {
            text-align: center;
            padding: 50px;
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            animation: fadeUp 1s ease forwards;
        }

        .get-started h2 {
            font-size: 36px;
            font-weight: 800;
            color: #1d3557;
            margin-bottom: 15px;
        }

        .get-started p {
            font-size: 18px;
            color: #555;
            margin-bottom: 25px;
        }

        .get-started .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #2d89ef;
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s ease;
            box-shadow: 0 6px 20px rgba(45,137,239,0.25);
        }

        .get-started .btn:hover {
            background: #1c6cd5;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(45,137,239,0.35);
        }

        /* ===== Particle Styling ===== */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            font-size: 30px;
            opacity: 0.25;
            animation: floatParticles 6s linear infinite;
        }

        .particle:nth-child(1) { top: 15%; left: 10%; animation-duration: 7s; }
        .particle:nth-child(2) { top: 45%; left: 80%; animation-duration: 5s; }
        .particle:nth-child(3) { top: 75%; left: 20%; animation-duration: 8s; }
        .particle:nth-child(4) { top: 25%; left: 60%; animation-duration: 6s; }
        .particle:nth-child(5) { top: 60%; left: 40%; animation-duration: 7.5s; }

        /* Particle Animation */
        @keyframes floatParticles {
            0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-25px) rotate(10deg); opacity: 0.6; }
            100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
        }

        /* Fade Up Animation */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Footer */
        .footer {
            background: #f5f7fb;
            padding: 50px 0 30px;
            border-top: 1px solid #dce3ee;
            margin: 0 !important;
        }

        /* Footer container grid */
        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding-bottom: 10px;
        }

        /* Headings */
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1a2b4c;
            font-weight: 700;
            position: relative;
        }

        /* Small colored underline */
        .footer-column h3::after {
            content: "";
            width: 40px;
            height: 3px;
            background: #2563eb;
            position: absolute;
            left: 0;
            bottom: -6px;
            border-radius: 2px;
        }

        /* Paragraph */
        .footer-column p {
            font-size: 14px;
            color: #4b5563;
            line-height: 1.6;
            margin: 15px 0 18px;
        }

        /* Links */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links li a {
            text-decoration: none;
            color: #374151;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s ease;
        }

        .footer-links li a:hover {
            color: #2563eb;
            padding-left: 4px;
        }

        /* Bottom Bar */
        .footer-bottom-bar {
            background: #e9edf3;
            padding: 15px 10px;
            text-align: center;
            border-top: 1px solid #cfd6e0;
            margin: 0 !important;
        }

        /* Bottom text */
        .footer-bottom-bar p {
            margin: 0 !important;
            font-size: 14px;
            color: #374151;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: var(--shadow);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(59, 130, 246, 0.2);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Animation classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (min-width: 993px) {
            .nav-links, .nav-actions {
                display: flex;
            }
            
            .mobile-toggle {
                display: none;
            }
            
            .mobile-menu {
                display: none !important;
            }
        }

        @media (max-width: 992px) {
            .nav-links, .nav-actions {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .home-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .home-left {
                order: 2;
            }
            
            .home-right {
                order: 1;
                padding-left: 0;
                text-align: center;
            }
            
            .home {
                text-align: center;
                padding: 100px 0 60px;
            }
            
            .home-content {
                max-width: 100%;
            }
            
            .home-stats {
                justify-content: center;
            }
            
            .home-actions {
                justify-content: center;
            }

            .trusted-by {
                justify-content: center;
            }

            .home-subtitle {
                padding-left: 0;
                border-left: none;
                border-top: 3px solid var(--primary);
                padding-top: 10px;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .home-title {
                font-size: 2.5rem;
            }
            
            .home-stats {
                gap: 20px;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }

            .floating-element {
                width: 50px;
                height: 50px;
            }

            .get-started {
                padding: 60px 20px;
            }

            .get-started h2 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-links li a {
                justify-content: center;
            }

            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 576px) {
            .header {
                height: 70px;
            }
            
            .logo-img { 
                width: 35px; 
                height: 35px;
                font-size: 1rem;
            }
            
            .logo-text { 
                font-size: 1.2rem;
            }
            
            .home-title {
                font-size: 2rem;
            }
            
            .home-subtitle {
                font-size: 1.1rem;
            }
            
            .home-stats {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .stat-item {
                flex: 1;
                min-width: 100px;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            
            .home-actions {
                flex-direction: column;
                align-items: center;
            }

            .trusted-by {
                flex-direction: column;
                gap: 10px;
            }

            .get-started h2 {
                font-size: 1.8rem;
            }

            .get-started p {
                font-size: 1rem;
            }

            .section {
                padding: 60px 0;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 400px) {
            .home-title {
                font-size: 1.8rem;
            }
            
            .home-subtitle {
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.85rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .logos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
