body {
    font-family: 'Plus Jakarta Sans', sans-serif;

    color: #334155;
}
:root {
    --primary: #2563eb;
    --warning: #facc15;
}

.fw-800 { font-weight: 800; }
.bg-soft-primary { background: #eff6ff; }

/* Logo Size Control */
.navbar-logo {
    height: 50px; /* Aap isse bada ya chota kar sakte hain */
    width: auto;
    display: block;
}

@media (max-width: 991px) {
    .navbar-logo {
        height: 40px; /* Mobile par thoda chota logo */
        margin: 0 auto;
    }
    
    .navbar-brand {
        padding: 0;
        margin-bottom: 15px !important;
        display: flex;
        justify-content: center;
        width: 100%;
    }
}
.hero-image-wrapper img {
    border-radius: 40px;
    transform: rotate(2deg);
    transition: 0.5s;
}
.hero-image-wrapper img:hover { transform: rotate(0deg) scale(1.02); }


.hero-image-wrapper {
    width: 100%;
    max-width: 500px; 
    margin: 0 auto;
}

.custom-hero-img {
    width: 100%;
    height: 450px; 
    object-fit : cover; 
    display: block;
}


@media (max-width: 768px) {
    .custom-hero-img {
        height: 300px;
    }
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 4px solid var(--primary);
}
.stat-box {
    padding: 10px;
    border-left: 3px solid var(--primary);
}


.service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 2.5rem 2rem;
    border-radius: 32px;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    background: #2563eb;
    color: #fff;
    transform: scale(1.1);
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #475569;
}

.service-list li i {
    font-size: 0.7rem;
    margin-right: 12px;
    color: #2563eb;
    transition: 0.3s;
}

.service-card:hover .service-list li i {
    transform: translateX(5px);
}


.card-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 8rem;
    color: rgba(37, 99, 235, 0.03);
    z-index: -1;
    transform: rotate(-15deg);
    transition: 0.5s;
}

.service-card:hover .card-bg-icon {
    color: rgba(37, 99, 235, 0.08);
    transform: rotate(0deg) scale(1.1);
}

.bg-circle {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.bg-primary-soft { background: #e0e7ff; color: #4338ca; }
.bg-warning-soft { background: #fef3c7; color: #b45309; }
.bg-success-soft { background: #dcfce7; color: #15803d; }


.form-control, .form-select {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
}
.form-select option {
    color: #000000 !important; 
   
}

.form-control::placeholder { color: rgba(255,255,255,0.6); }

.bg-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
}

.custom-range::-webkit-slider-thumb {
    background: #2563eb;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}


.border-blue-custom {
    border: 1px solid #2563eb !important; 
    background-color: #f8faff !important; 
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.05); 
    transition: all 0.3s ease;
}


#emi-result {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -1px;
}


.form-control:focus, .form-select:focus {
    background: rgba(255,255,255,0.2);
    border-color: #facc15;
    box-shadow: none;
    color: white;
}



@media (max-width: 991px) {

    .hero-bg {
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-top: 0px !important;
    }
    .hero-bg h1 {
        font-size: 2.2rem !important;
        margin-top: 20px;
        text-align: center;
    }
    .badge{
        margin-bottom: 0px !important;
    }
    .hero-bg .lead {
        font-size: 1rem;
        text-align: center;
    }

   .feature-card-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .custom-hero-img {
        transform: rotate(0deg) !important; 
        border-radius: 25px !important; 
        height: auto !important;
        aspect-ratio: 16 / 10;
     
           margin-top: 20px;
    }
.badge-wrapper {
        text-align: center !important;
        width: 100%;
        display: block;
    }

    .badge-wrapper .badge {
        display: inline-block !important;
        margin: 0 auto !important;
        float: none !important;
    }
      .stat-box {
        margin: 0 auto 15px auto;
        max-width: 120px;
    }
}
   
  


@media (max-width: 480px) {
    .hero-bg h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-bg {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}.footer-section {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}


.footer-links a:hover {
    color: #2563eb !important;
}

.btn-success {
    background-color: #25D366 !important; /* WhatsApp Green */
    border: none;
}



/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

 
}