:root {
            --primary: #2a4af5;
            --secondary: #6c757d;
            --success: #28a745;
            --dark: #1a1d2b;
            --light: #f8f9fa;
            --gradient: linear-gradient(135deg, #2a4af5 0%, #6a11cb 100%);
        }

        /* Enable smooth scrolling globally */
        html {
            scroll-behavior: smooth;
            scroll-snap-type: y mandatory;
            overflow-y: scroll;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
            margin: 0;
        }

        /* Ensure sections snap to the top */
        section, footer {
            scroll-snap-align: start;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Adjust footer to avoid excessive height */
        footer {
            min-height: auto;
            padding-bottom: 20px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
        }

        .btn-primary {
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(42, 74, 245, 0.3);
        }

        .btn-outline-primary {
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 500;
            transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
        }

        .btn-outline-primary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .navbar {
            padding: 20px 0;
			// background:#444eef;
            transition: all 0.3s ease;
        }
		.navbar .btn-primary {
			color: black;
			background: white;
		}
		.navbar #dark-logo{
			display:none;
		}
		.navbar #white-logo{
			display:block;
		}
		.navbar .nav-link,.navbar .language-option{
            color: white;
		}
		.navbar .nav-link:hover {
            color: black;
		}
        .navbar.scrolled {
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }
		.navbar.scrolled .btn-primary,#navbarNav.collapse.show .btn-primary {
			color:white;
            background: var(--gradient);
		}
		.navbar.scrolled #dark-logo{
			display:block;
		}
		.navbar.scrolled #white-logo{
			display:none;
		}
		.navbar.scrolled .nav-link,.navbar.scrolled .language-option{
            color: black;
		}
		.navbar.scrolled .nav-link:hover {
            color: var(--primary) !important;
		}
		#navbarNav.collapse.show{
			background:white;
			border-radius:10px;
			padding-top:1rem;
			padding-bottom:1rem;
			text-align: center;
			color:black;
		}
		#navbarNav.collapse:not(.show){
			background:unset;
			border-radius:unset;
			text-align: unset;
		}
		#navbarNav.collapse.show .nav-link,#navbarNav.collapse.show .language-option{
			color:black;
			border-bottom:1px solide black;
		}
        .navbar-brand {
            font-weight: 700;
            font-size: 28px;
            color: var(--primary) !important;
        }
		.navbar-brand img{
            width:100px;
        }
		

        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }


        .language-switcher {
            display: flex;
			position:relative;
			right:0;
            align-items: center;
            margin-left: 20px;
        }

        .language-option {
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 5px;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .language-option.active {
            background: var(--primary);
            color: white!important;
        }

        .language-option:not(.active):hover {
            background: rgba(42, 74, 245, 0.1);
        }

        .hero-section {
            background: var(--gradient);
            color: white;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTIwMCA4MDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTIwMCAwSDB2ODBoMTIwMFYweiIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIi8+PHBhdGggZD0iTTEyMDAgMTYwSDB2ODBoMTIwMHYtODB6IiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDgpIi8+PHBhdGggZD0iTTEyMDAgMzIwSDB2ODBoMTIwMHYtODB6IiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDYpIi8+PHBhdGggZD0iTTEyMDAgNDgwSDB2ODBoMTIwMHYtODB6IiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDQpIi8+PHBhdGggZD0iTTEyMDAgNjQwSDB2ODBoMTIwMHYtODB6IiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDIpIi8+PC9nPjwvc3ZnPg==');
            opacity: 0.1;
        }

		.hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .section-title p {
            color: var(--secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-section {
            padding: 80px 0;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            margin-bottom: 20px;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .about-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .about-content h2 {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .about-content p {
            color: var(--secondary);
            margin-bottom: 25px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .feature-list li i {
            color: var(--success);
            margin-right: 8px;
            font-size: 16px;
        }

        .stats-section {
            padding: 60px 0;
            background: var(--gradient);
            color: white;
            min-height: 50vh; /* Reduced height for stats section */
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .stat-text {
            font-size: 1rem;
            opacity: 0.9;
        }

        .testimonials-section {
            padding: 80px 0;
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
            color: var(--secondary);
            font-size: 0.95rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            margin-right: 12px;
            font-size: 0.9rem;
        }

        .author-info h5 {
            margin-bottom: 0;
            font-size: 1rem;
        }

        .author-info p {
            margin-bottom: 0;
            color: var(--secondary);
            font-size: 0.85rem;
        }

        .contact-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .contact-form {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .form-control {
            padding: 10px 12px;
            border-radius: 8px;
            border: 1px solid #e1e5ee;
            margin-bottom: 15px;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            box-shadow: none;
            border-color: var(--primary);
        }

        .form-label {
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .form-loading {
            display: none;
            text-align: center;
            font-size: 0.9rem;
            color: var(--secondary);
        }

        .form-loading.active {
            display: block;
        }

        .footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 0;
        }

        .footer h5 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            margin-right: 8px;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px 0;
            margin-top: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Disable scroll snapping on mobile for better UX */
        @media (max-width: 768px) {
            html {
                scroll-snap-type: none;
            }

            section, footer {
                min-height: auto;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .language-switcher {
                margin-left: 0;
                margin-top: 8px;
                justify-content: center;
            }

            .services-section, .about-section, .testimonials-section, .contact-section {
                padding: 60px 0;
            }

            .service-card, .testimonial-card, .contact-form {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-text {
                font-size: 0.9rem;
            }
        }