      :root {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --success-color: #198754;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --info-color: #0dcaf0;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
        }

        .navbar {
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .navbar-brand {
            font-size: 1.5rem;
        }

        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
        }

        .stat-card {
            transition: transform 0.3s ease;
        }

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

        .floating-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            text-align: center;
        }

        .about-image {
            position: relative;
        }

        .stats-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            padding: 1rem;
            border-radius: 10px;
        }

        .why-card,
        .service-card,
        .testimonial-card {
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .why-card:hover,
        .service-card:hover,
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .urgency-banner {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .trust-indicators {
            opacity: 0.9;
        }

        .accordion-button {
            font-weight: 600;
        }

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

        .social-links a {
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--primary-color) !important;
        }

        .disclaimer {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 2rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            
            .display-4 {
                font-size: 2rem;
            }
            
            .floating-badge {
                position: static;
                margin-top: 2rem;
            }
            
            .stats-overlay {
                position: static;
                margin-top: 1rem;
            }
            
            .why-card,
            .service-card,
            .testimonial-card {
                margin-bottom: 2rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation */
        .fade-in {
            animation: fadeIn 1s ease-in;
        }

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

        /* Button hover effects */
        .btn {
            transition: all 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #0056b3;
        }
.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;
}