        :root {
            --primary-color: #2563eb;
            --secondary-color: #f59e0b;
            --success-color: #10b981;
            --danger-color: #ef4444;
            --dark-color: #1f2937;
            --light-color: #f8fafc;
        }

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

        .bg-gradient-primary {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
        }

        .hero-section {
            padding-top: 100px;
        }

        .animate-fade-in {
            animation: fadeIn 1s ease-in;
        }

        .animate-fade-in-delay {
            animation: fadeIn 1s ease-in 0.3s both;
        }

        .animate-pulse {
            animation: pulse 2s infinite;
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

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

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

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .navbar {
            transition: all 0.3s ease;
        }

        .hero-stats .stat-item {
            padding: 1rem;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            margin-bottom: 1rem;
        }

        .why-us-card, .service-card, .testimonial-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
        }

        .why-us-card:hover, .service-card:hover, .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        }

        .icon-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.1);
        }

        .accordion-button {
            font-weight: 600;
            background: #f8fafc;
        }

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

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

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

        .btn {
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

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

        .stars i {
            font-size: 1.2rem;
        }

        html {
            scroll-behavior: smooth;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding-top: 80px;
            }
            
            .display-4 {
                font-size: 2rem;
            }
            
            .hero-stats .row {
                text-align: center;
            }
        }
.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;
}