/* CSS Variables for Theming */
        :root {
            /* Dark Theme (Default) */
            --bg-primary: #0a0e2a;
            --bg-secondary: #1a1f49;
            --bg-card: rgba(255, 255, 255, 0.05);
            --text-primary: #ffffff;
            --text-secondary: #e0e0e0;
            --text-accent: #38b6ff;
            --gradient-primary: linear-gradient(45deg, #4a6bff, #38b6ff);
            --gradient-secondary: linear-gradient(135deg, #0a0e2a 0%, #1a1f49 100%);
            --border-color: rgba(255, 255, 255, 0.1);
            --shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            --nav-bg: rgba(10, 14, 42, 0.95);
            --top-nav-bg: #050721;
        }

        .light-theme {
            --bg-primary: #f8f9fa;
            --bg-secondary: #ffffff;
            --bg-card: rgba(0, 0, 0, 0.03);
            --text-primary: #2d3436;
            --text-secondary: #636e72;
            --text-accent: #4a6bff;
            --gradient-primary: linear-gradient(45deg, #4a6bff, #38b6ff);
            --gradient-secondary: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            --border-color: rgba(0, 0, 0, 0.1);
            --shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            --nav-bg: rgba(248, 249, 250, 0.95);
            --top-nav-bg: #e9ecef;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            transition: background-color 0.3s, color 0.3s;
        }
                
        body {
            background: var(--gradient-secondary);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
            padding-top: 100px;
        }
                
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
                
        section {
            padding: 80px 0;
        }
                
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
                
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
                
        .section-title p {
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
                
        /* Top Navigation */
        .top-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1001;
            background: var(--top-nav-bg);
            padding: 0.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
            height: 40px;
        }
                
        .top-nav-contact {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }
                
        .top-nav-contact span {
            margin-right: 1.5rem;
            display: flex;
            align-items: center;
            color: var(--text-secondary);
        }
                
        .top-nav-contact i {
            margin-right: 0.5rem;
            color: var(--text-accent);
            font-size: 0.8rem;
        }
                
        .top-nav-social {
            display: flex;
            gap: 0.8rem;
        }
                
        .top-nav-social a {
            color: var(--text-secondary);
            font-size: 0.9rem;
            transition: color 0.3s;
        }
                
        .top-nav-social a:hover {
            color: var(--text-accent);
        }
                
        /* Main Navigation */
        .navbar {
            position: fixed;
            top: 40px;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--nav-bg);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem !important;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid var(--border-color);
            height: 140px; /* Reduced from 200px */
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            width: 300px; /* Reduced from 350px */
            height: auto;
            transition: width 0.3s ease;
        }
                
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }
                
        .nav-links li {
            margin: 0 1rem;
            position: relative;
        }
                
        .nav-links li:last-child {
            margin-left: 1.5rem;
        }
                
        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
            font-size: 0.95rem;
        }
                
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }
                
        .nav-links a:hover:after {
            width: 100%;
        }
                
        .dropdown {
            position: relative;
        }
                
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--bg-secondary);
            min-width: 200px;
            padding: 1rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1;
        }
                
        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
                
        .dropdown-content a {
            display: block;
            padding: 0.5rem 0;
            color: var(--text-primary);
        }
                
        .cta-button {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(74, 107, 255, 0.4);
            font-size: 0.9rem;
        }
                
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(74, 107, 255, 0.6);
        }
                
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
                
        .theme-toggle {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            width: 50px;
            height: 26px;
            border-radius: 50px;
            position: relative;
            cursor: pointer;
        }
                
        .theme-toggle:after {
            content: '\f185';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            top: 2px;
            left: 3px;
            background: var(--gradient-primary);
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 12px;
            transition: all 0.3s ease;
        }
                
        .light-theme .theme-toggle:after {
            content: '\f186';
            left: calc(100% - 25px);
        }
                
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1002;
        }

        /* --- Mobile Responsiveness --- */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
                    
            .top-nav-contact span {
                margin-right: 1rem;
            }
            
            .logo img {
                width: 200px;
            }
        }
                
        @media (max-width: 768px) {
            .top-navbar {
                display: none;
            }
                    
            .navbar {
                top: 0;
                height: 80px; /* Fixed height for mobile */
                padding: 0 1rem;
            }
                    
            body {
                padding-top: 80px; /* Adjusted to match navbar height */
            }
            
            .logo img {
                width: 180px;
            }
                    
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background: var(--bg-secondary);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 100px 2rem 2rem;
                transition: left 0.4s ease;
                z-index: 1000;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
            }
                    
            .nav-links.active {
                left: 0;
            }
                    
            .nav-links li {
                margin: 1rem 0;
                width: 100%;
            }
            
            .nav-links li:last-child {
                margin-left: 0;
                margin-top: 2rem;
            }

            .nav-actions {
                gap: 0.5rem;
            }
                    
            .mobile-menu-btn {
                display: block;
            }

            .theme-toggle {
                margin: 0;
            }
            
            /* Mobile menu close button */
            .mobile-close-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
                background: none;
                border: none;
                color: var(--text-primary);
                font-size: 1.5rem;
                cursor: pointer;
                z-index: 1001;
            }
                    
            .hero-title {
                font-size: 2.2rem;
            }
                    
            .parallelogram-container {
                flex-wrap: wrap;
            }
            
            /* Dropdown menu adjustments for mobile */
            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: transparent;
                padding: 0.5rem 0 0.5rem 1rem;
                display: none;
            }
            
            .dropdown.active .dropdown-content {
                display: block;
            }
            
            .dropdown > a::after {
                content: '\f078';
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                margin-left: 5px;
                font-size: 0.8rem;
            }
            
            .dropdown.active > a::after {
                content: '\f077';
            }
        }
                
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
                    
            .section-title h2 {
                font-size: 2rem;
            }
            
            .logo img {
                width: 150px;
            }
            
            .nav-links {
                width: 85%;
            }
        }
                
        /* Hero Section with Arc and Particles */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-top: 1rem;
        }
                
        .hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
                
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
                
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }
                
        .hero-arc {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: var(--bg-primary);
            border-radius: 100% 100% 0 0;
            z-index: 1;
        }
                
        /* Particles Container */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }
                
        /* Parallelogram Animation */
        .parallelogram-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
                
        .parallelogram {
            width: 120px;
            height: 60px;
            background: var(--gradient-primary);
            transform: skew(-20deg);
            animation: parallelogramMove 3s infinite ease-in-out;
            opacity: 0.7;
        }
                
        .parallelogram:nth-child(2) {
            animation-delay: 0.5s;
        }
                
        .parallelogram:nth-child(3) {
            animation-delay: 1s;
        }
                
        @keyframes parallelogramMove {
            0%, 100% {
                transform: skew(-20deg) translateX(0);
            }
            50% {
                transform: skew(-20deg) translateX(40px);
            }
        }
                
        .features {
            margin-top: -200px;
        }
        
        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
                
        .feature-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
                
        .feature-card:hover {
            transform: translateY(-10px);
        }
                
        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
                
        .feature-card:hover:before {
            transform: scaleX(1);
        }
                
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: white;
        }
                
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }
                
        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }
                
        /* Pricing Section */
        .pricing-container {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
                
        .pricing-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            transition: transform 0.3s ease;
        }
                
        .pricing-card:hover {
            transform: translateY(-10px);
        }
                
        .pricing-card.featured {
            border: 2px solid;
            border-image: var(--gradient-primary);
            border-image-slice: 1;
            position: relative;
            overflow: hidden;
        }
                
        .pricing-card.featured:before {
            content: 'Most Popular';
            position: absolute;
            top: 15px;
            right: -30px;
            background: var(--gradient-primary);
            color: white;
            padding: 5px 30px;
            font-size: 0.8rem;
            transform: rotate(45deg);
        }
                
        .price {
            font-size: 3rem;
            font-weight: 700;
            margin: 1.5rem 0;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
                
        .pricing-features {
            list-style: none;
            margin: 2rem 0;
        }
                
        .pricing-features li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
        }
                
        .pricing-features li:last-child {
            border-bottom: none;
        }
                
        /* Testimonials */
        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
                
        .testimonial-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
                
        .testimonial-text {
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            position: relative;
        }
                
        .testimonial-text:before {
            content: '"';
            font-size: 4rem;
            color: var(--text-accent);
            opacity: 0.3;
            position: absolute;
            top: -1rem;
            left: -1rem;
            line-height: 1;
        }
                
        .testimonial-author {
            display: flex;
            align-items: center;
        }
                
        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
            border: 2px solid var(--text-accent);
        }
                
        .author-details h4 {
            color: var(--text-primary);
            margin-bottom: 0.2rem;
        }
                
        .author-details p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
                
        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
                
        .blog-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }
                
        .blog-card:hover {
            transform: translateY(-10px);
        }
                
        .blog-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
                
        .blog-content {
            padding: 1.5rem;
        }
                
        .blog-date {
            color: var(--text-accent);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }
                
        .blog-title {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }
                
        .blog-excerpt {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
                
        .read-more {
            color: var(--text-accent);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }
                
        .read-more i {
            margin-left: 0.5rem;
            transition: transform 0.3s;
        }
                
        .read-more:hover i {
            transform: translateX(5px);
        }
                
        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 6rem 2rem;
            background: var(--gradient-secondary);
            position: relative;
        }
                
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
                
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
                
        .cta-text {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
                
        /* Footer */
        .footer {
            background: var(--bg-secondary);
            padding: 4rem 0 2rem;
            color: var(--text-primary);
        }
                
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
                
        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
                
        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gradient-primary);
        }
                
        .footer-col p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1rem;
        }
                
        .footer-contact li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
                
        .footer-contact i {
            margin-right: 1rem;
            color: var(--text-accent);
        }
                
        .footer-links li {
            margin-bottom: 0.8rem;
        }
                
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }
                
        .footer-links a:hover {
            color: var(--text-accent);
        }
                
        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
                
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-card);
            color: var(--text-primary);
            transition: all 0.3s;
        }
                
        .footer-social a:hover {
            background: var(--gradient-primary);
            transform: translateY(-3px);
        }
                
        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
        }
                
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Mobile menu overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

    /* Call Now Button Specific Styles */
.call-now-container {
    display: none; /* Hide by default on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    background: #0f172a; /* Match the body background */
}

.call-now-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(90deg, #4c6bff, #748ffc);
    color: white;
    font-weight: 600;
    border-radius: 9999px; /* Full pill shape */
    text-decoration: none;
    transition: all 0.3s;
}

.call-now-btn:hover {
    box-shadow: 0 5px 15px rgba(74, 107, 255, 0.4);
    transform: translateY(-2px);
}

.call-now-btn .fas {
    margin-right: 0.5rem;
}

/* Show only on mobile devices */
@media (max-width: 768px) {
    .call-now-container {
        display: block;
    }
}