 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        :root {
            --primary: #0d47a1;
            --secondary: #ff6d00;
            --dark: #1a237e;
            --light: #f5f7ff;
            --text: #333333;
            --gray: #e0e0e0;
            --success: #2e7d32;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        body {
            line-height: 1.6;
            color: var(--text);
            background-color: #fff;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        .logo i {
            margin-right: 10px;
            color: var(--secondary);
        }

        /* Navigation with Dropdown */
        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            position: relative;
            margin-left: 30px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            padding: 10px 0;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link i {
            margin-left: 5px;
            font-size: 0.8rem;
        }

        /* Dropdown Styles */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 220px;
            box-shadow: var(--shadow);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1000;
            padding: 10px 0;
        }

        .dropdown-menu .nav-item {
            margin: 0;
            width: 100%;
        }

        .dropdown-menu .nav-link {
            padding: 12px 20px;
            display: block;
            width: 100%;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .dropdown-menu .nav-link:hover {
            background-color: var(--light);
            color: var(--primary);
            padding-left: 25px;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Mobile menu toggle */
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

        /* Hero Section */
        .hero {
    padding: 180px 0 120px;
    background: 
        linear-gradient(135deg, rgba(26, 35, 126, 0.85), rgba(13, 71, 161, 0.9)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 70px;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 109, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: white;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.hero-content h1 span {
    color: #ffcc00;
    background: linear-gradient(90deg, #ffcc00, #ff6d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-content h1 span:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffcc00, #ff6d00);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    position: relative;
    z-index: 2;
    font-weight: 300;
}
  
        .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6d00, #ffcc00);
    color: #1a237e;
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.4);
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.cta-button: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.7s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 109, 0, 0.6);
    color: #1a237e;
}

.cta-button:hover:before {
    left: 100%;
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 80px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 35px 40px;
    border-radius: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffcc00;
    display: block;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Updated color scheme for other sections */
.section-title h2 {
    font-size: 2.8rem;
    color: #1a237e;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6d00, #ffcc00);
    border-radius: 2px;
}

.section-title p {
    color: #5c6bc0;
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 1.2rem;
    line-height: 1.7;
}
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-top-color: var(--primary);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 1.8rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
            text-align: center;
        }

        .service-features {
            list-style: none;
            margin: 20px 0;
        }

        .service-features li {
            margin-bottom: 10px;
            padding-left: 24px;
            position: relative;
        }

        .service-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }

        .service-price {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin: 25px 0 15px;
        }

        .service-price span {
            font-size: 1rem;
            color: #666;
            font-weight: normal;
        }

        /* Results Section */
        .results {
            background-color: var(--light);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .result-item {
            background-color: white;
            padding: 30px 20px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .result-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            display: block;
            margin-bottom: 10px;
        }

        .result-label {
            color: var(--dark);
            font-weight: 600;
        }

        /* Testimonials */
        .testimonials-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonial-item {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            position: relative;
        }

        .testimonial-item:before {
            content: "“";
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 4rem;
            color: rgba(13, 71, 161, 0.1);
            font-family: serif;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--gray);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .client-details h4 {
            color: var(--dark);
            margin-bottom: 5px;
        }

        .client-details p {
            color: #666;
            font-size: 0.9rem;
        }

        .stars {
            color: #ffc107;
            margin-bottom: 10px;
        }

        /* Partners Section */
        .partners {
            background-color: var(--dark);
            color: white;
            padding: 50px 0;
        }

        .partners-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .partner-badge {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .partner-badge i {
            margin-right: 10px;
            font-size: 1.5rem;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-question {
            background-color: var(--light);
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: #e8f0fe;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: white;
        }

        .faq-answer p {
            padding: 20px 0;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
		
		
		/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9ff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 109, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Left Side Styles */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.15);
    transition: transform 0.5s ease;
}

.contact-image:hover {
    transform: translateY(-10px);
}

.contact-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #ff6d00;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(26, 35, 126, 0.1);
    border-left-color: #ffcc00;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: #1a237e;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.info-content p {
    color: #5c6bc0;
    margin: 5px 0;
    font-size: 1rem;
}

/* Right Side: Form Styles */
.contact-right {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(26, 35, 126, 0.1);
    border: 1px solid rgba(26, 35, 126, 0.1);
}

.contact-form h3 {
    color: #1a237e;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-form > p {
    color: #5c6bc0;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #1a237e;
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8eaf6;
    border-radius: 10px;
    font-size: 1rem;
    color: #37474f;
    transition: all 0.3s ease;
    background-color: #f9f9ff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6d00;
    box-shadow: 0 5px 15px rgba(255, 109, 0, 0.1);
    background-color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9fa8da;
}

/* CAPTCHA Styles */
.captcha-container {
    background-color: #f5f7ff;
    padding: 25px;
    border-radius: 12px;
    border: 2px dashed #c5cae9;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.captcha-display {
    flex-grow: 1;
    height: 60px;
    background: linear-gradient(45deg, #1a237e, #3949ab);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.captcha-refresh {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6d00, #ffcc00);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-refresh:hover {
    transform: rotate(90deg);
    background: linear-gradient(135deg, #ffcc00, #ff6d00);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ff6d00, #ffcc00);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 109, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(-2px);
}

/* Success Message */
.form-success {
    display: none;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.form-success i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.form-success p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Error Message */
.error-message {
    color: #f44336;
    font-size: 0.9rem;
    margin-top: 8px;
    min-height: 20px;
    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-right {
        padding: 35px;
    }
    
    .contact-form h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 70px 0;
    }
    
    .contact-right {
        padding: 25px;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .captcha-display {
        font-size: 1.5rem;
        height: 50px;
    }
    
    .captcha-refresh {
        width: 50px;
        height: 50px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
		
		
		
		
		
		
		

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: white;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 15px;
        }

        .footer-col ul li a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: white;
            padding-left: 5px;
        }

        .contact-info li {
            display: flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 10px;
            color: var(--secondary);
            width: 20px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Chat Widget */
        .chat-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .chat-button {
            width: 60px;
            height: 60px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: var(--transition);
        }

        .chat-button:hover {
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hamburger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: var(--shadow);
                flex-direction: column;
                padding: 20px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-20px);
                transition: var(--transition);
                z-index: 999;
            }

            .nav-menu.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .nav-item {
                margin: 0;
                width: 100%;
            }

            .nav-link {
                padding: 15px 0;
                border-bottom: 1px solid var(--gray);
            }

            /* Mobile Dropdown */
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                background-color: var(--light);
                border-radius: 0;
                padding: 0;
            }

            .dropdown.active .dropdown-menu {
                max-height: 500px;
                padding: 10px 0;
            }

            .dropdown-menu .nav-link {
                padding-left: 30px;
                border-bottom: none;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 140px 0 80px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .service-card {
                padding: 30px 20px;
            }
            
            .stats {
                gap: 30px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }