          :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --accent-color: #f59e0b;
            --success-color: #10b981;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --bg-dark: #0f172a;
            --border-color: #e5e7eb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* Header Styles */
        .header-section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .navbar-brand .logo {
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover .logo {
            transform: scale(1.05);
        }

        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            transition: color 0.3s ease;
            position: relative;
        }

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

        .nav-link.cta-nav {
            background: var(--primary-color);
            color: white !important;
            padding: 8px 20px !important;
            border-radius: 25px;
            margin-left: 10px;
        }

        .nav-link.cta-nav:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('<?php echo get_template_directory_uri(); ?>/img/banner1.jpg') center/cover;
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            padding-top: 100px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(245, 158, 11, 0.2);
            color: var(--accent-color);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid var(--accent-color);
        }

        .hero-badge i {
            margin-right: 8px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-title .text-primary {
            color: var(--accent-color) !important;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }

        .feature-item i {
            color: var(--accent-color);
            margin-right: 12px;
            width: 20px;
        }

        .hero-cta .btn {
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .hero-cta .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        /* Hero Form Card */
        .hero-form-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            margin-top: 100px;
        }

        .form-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .form-header h3 {
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 5px;
        }

        .form-header p {
            color: var(--text-light);
            font-size: 14px;
        }

        .qualification-form .form-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .qualification-form .form-select {
            border: 2px solid var(--border-color);
            border-radius: 10px;
            padding: 12px;
            transition: border-color 0.3s ease;
        }

        .qualification-form .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
        }

        .qualification-form .btn {
            padding: 15px;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .qualification-form .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
        }

        .form-disclaimer {
            text-align: center;
            font-size: 12px;
            color: var(--text-light);
            margin-top: 10px;
        }

        /* Section Styles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 30px;
        }

        /* About Section */
        .about-section {
            background: var(--bg-light);
        }

        .about-stats {
            display: flex;
            gap: 30px;
            margin: 30px 0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 500;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .about-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent-color);
            color: white;
            padding: 10px 15px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Why Us Section */
        .why-us-section {
            background: white;
        }

        .why-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .why-card:hover {
            transform: translateY(-10px);
        }

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

        .why-card h4 {
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .cta-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cta-title {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cta-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 25px;
        }

        .cta-features {
            display: flex;
            gap: 30px;
            margin-bottom: 20px;
        }

        .cta-feature {
            color: white;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cta-feature i {
            color: var(--accent-color);
        }

        .btn-cta {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 20px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .btn-cta:hover {
            background: #d97706;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
        }

        .cta-note {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            margin-top: 10px;
        }

        /* Services Section */
        .services-section {
            background: var(--bg-light);
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-header {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .service-title h4 {
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .service-badge {
            background: var(--accent-color);
            color: white;
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 10px;
            font-weight: 600;
        }

        .service-description {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .service-features i {
            color: var(--success-color);
            margin-right: 10px;
            width: 16px;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: white;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
            border-left: 4px solid var(--primary-color);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-rating {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }

        .testimonial-rating i {
            color: #fbbf24;
            font-size: 1.2rem;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

        .author-info h5 {
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .author-info span {
            color: var(--text-light);
            font-size: 14px;
        }

        .debt-eliminated {
            background: var(--success-color);
            color: white;
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 10px;
            font-weight: 600;
            margin-top: 5px;
            display: inline-block;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--bg-light);
        }

        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .accordion-button {
            background: white;
            color: var(--text-dark);
            font-weight: 600;
            padding: 20px;
            border: none;
            box-shadow: none;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-body {
            background: white;
            color: var(--text-light);
            padding: 20px;
        }

        /* Footer */
        .footer-section {
            background: var(--bg-dark);
            color: white;
            padding: 50px 0 20px;
        }

        .footer-logo {
            height: 50px;
            filter: brightness(0) invert(1);
        }

        .footer-title {
            color: white;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.7);
        }

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

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

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

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

        .footer-divider {
            border-color: rgba(255, 255, 255, 0.1);
            margin: 40px 0 30px;
        }

        .footer-disclaimer {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .footer-disclaimer h6 {
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        .footer-disclaimer p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .footer-disclaimer a {
            color: var(--accent-color);
        }

        .footer-bottom {
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

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

            .hero-features {
                gap: 10px;
            }

            .hero-cta .btn {
                display: block;
                margin-bottom: 15px;
            }

            .about-stats {
                flex-direction: column;
                gap: 20px;
            }

            .cta-features {
                flex-direction: column;
                gap: 15px;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-title {
                font-size: 2rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content {
            animation: fadeInUp 1s ease-out;
        }

        .hero-form-card {
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }
.preq, .preq span {
    font-size: 2.25rem;
    margin-bottom: 30px;
    font-weight: 700;
}
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
			.preq, .preq span {
				font-size: 1.8rem;
				margin-bottom: 30px;
				font-weight: 700;
			}
        }


.btn-style-1 {
	min-width:160px;
	width:80%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-style-1:hover {
    background: color-mix(in srgb, var(--primary-color) 80%, black);
    transform: translateY(-2px);
}
/* 3. Outline dugme */
.btn-style-3 {
	min-width:160px;
	width:80%;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-style-3:hover {
    background: var(--primary-color);
    color: white;
}