/* --- Professional Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* --- CSS Variables & Root --- */
:root {
    --bg-dark-slate: #2b3541;
    --color-green: #0fa958;
    --color-gold: #cca64f;
    --text-white: #ffffff;
    --navbar-height: 90px;
    --shadow-sm: 0 2px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(15, 169, 88, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    
    /* Professional Font Families */
    --font-heading: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* --- Global Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* --- Navbar Base Styling --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

/* --- Branding Logo (प्रतिमा आणि मजकुरामधील अंतर कमी केले आहे) --- */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1px; /* अंतर १२px वरून कमी करून ६px केले आहे */
    text-decoration: none !important;
}

.nav-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-green { color: var(--color-green); }
.logo-gold { color: var(--color-gold); }

/* --- Desktop Menu --- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none !important;
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-green);
}

/* Hover Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-green);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* --- Right Controls --- */
.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-link {
    text-decoration: none !important;
    color: var(--color-green);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.phone-link:hover {
    transform: translateY(-1px);
    color: #0d944d;
}

/* --- Professional Button Style (No Decoration) --- */
.btn-apply-nav {
    text-decoration: none !important;
    border: none;
    outline: none;
    font-family: var(--font-heading);
    background-color: var(--color-green);
    color: var(--text-white) !important;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    display: inline-block;
    text-align: center;
}

.btn-apply-nav:hover {
    background-color: #0d944d;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(15, 169, 88, 0.45);
    text-decoration: none !important;
}

.mobile-only-info {
    display: none;
}

/* --- Hamburger Icon Animation --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--bg-dark-slate);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* --- Advanced Green Message Icon (Bottom Right) --- */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 8px 30px rgba(15, 169, 88, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-widget:hover {
    transform: scale(1.15) rotate(8deg);
    background-color: #0d944d;
    box-shadow: 0 12px 35px rgba(13, 148, 77, 0.5);
}

/* Floating Radial Pulse Animation Effect */
.pulse-ring {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-green);
    border-radius: 50%;
    z-index: -1;
    animation: radialPulse 2s infinite ease-out;
}

@keyframes radialPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* --- Responsive Media Queries (Mobile & Tablet View) --- */
@media (max-width: 1024px) {
    .nav-container { padding: 0 24px; }
    .nav-menu { gap: 20px; }
}

@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }

    .nav-right {
        display: none; 
    }

    /* मोबाईल मेनू ओव्हेरले पॅनेल (Smooth Slide and Fade System) */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 120px 40px 40px 40px;
        gap: 28px;
        transition: var(--transition-smooth);
        opacity: 0;
    }

    .nav-menu.active {
        right: 0;
        opacity: 1;
    }

    .nav-link {
        font-family: var(--font-heading);
        font-size: 18px;
        width: 100%;
        font-weight: 600;
    }

    /* मोबाईल मेनूच्या आत कॉल आणि अप्लाय बटण लेआउट */
    .mobile-only-info {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
        margin-top: 20px;
        border-top: 1px solid #e5e7eb;
        padding-top: 24px;
    }

    .mobile-only-info .phone-link {
        font-size: 16px;
    }

    .mobile-only-info .btn-apply-nav {
        text-align: center;
        width: 100%;
        padding: 14px 24px;
        text-decoration: none !important;
    }
}

@media (max-width: 480px) {
    .navbar { height: 80px; }
    .logo-text { font-size: 20px; }
    .nav-logo-img { height: 46px; }
    
    /* लहान मोबाईल स्क्रीनवर मेसेज आयकॉनची साईझ योग्य करणे */
    .chat-widget {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 24px;
    }
}


/* --- Hero Banner Section Styles --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh; /* पूर्ण स्क्रीन व्यापेल */
    display: flex;
    align-items: center;
    justify-content: center;
    /* खालील लिंकवर तुम्ही तुमची स्वतःची इमेज बदलू शकता */
    background-image: url('Images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* पॅरालेक्स स्क्रोल इफेक्ट */
    padding: 120px 20px 80px 20px;
    overflow: hidden;
}

/* बॅकग्राउंड इमेज अंधुक करून टेक्स्ट ठळक करण्यासाठी ओव्हरले */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 27, 38, 0.92) 0%, rgba(43, 53, 65, 0.85) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* टेक्स्ट ओव्हरलेच्या वर आणण्यासाठी */
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* लहान बॅज स्टाईल */
.hero-badge {
    background-color: rgba(15, 169, 88, 0.15);
    border: 1px solid rgba(15, 169, 88, 0.3);
    color: var(--color-green);
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 11px;
    animation: rotateBadge 4s linear infinite;
}

@keyframes rotateBadge {
    100% { transform: rotate(360deg); }
}

/* मुख्य टायटल (Premium Typography) */
.hero-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

/* टेक्स्ट ग्रेडियंट इफेक्ट (हिरवा आणि गोल्डन शेड) */
.gradient-text {
    background: linear-gradient(90deg, #12c26e 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* उपमाहिती (Subtitle) */
.hero-subtitle {
    font-size: 19px;
    color: #cbd5e1;
    max-width: 800px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
}

/* बटण ग्रुप */
.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* बटन्सची कॉमन स्टाईल (No underline, clean) */
.btn-hero {
    text-decoration: none !important;
    border: none;
    outline: none;
    font-family: var(--font-heading);
    padding: 15px 34px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* १. About Us बटण (Premium Green Button) */
.btn-about-us {
    background-color: var(--color-green);
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(15, 169, 88, 0.35);
}

.btn-about-us:hover {
    background-color: #0d944d;
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(15, 169, 88, 0.5);
}

.btn-about-us i {
    transition: transform 0.3s ease;
}

.btn-about-us:hover i {
    transform: translateX(5px);
}

/* २. Explore Services बटण (Elegant Outline Button) */
.btn-explore-services {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
}

.btn-explore-services:hover {
    background-color: #ffffff;
    color: var(--bg-dark-slate) !important;
    border-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* ॲनिमेटेड स्क्रोल डाऊन माउस */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse-wheel {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
}

.mouse-wheel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--color-green);
    border-radius: 2px;
    animation: scrollMouse 1.6s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0.4; }
    100% { top: 8px; opacity: 1; }
}

/* --- Responsive Media Queries --- */
@media (max-width: 991px) {
    .hero-title { font-size: 42px; }
    .hero-subtitle { font-size: 17px; max-width: 700px; }
    .hero-section { background-attachment: scroll; } /* मोबाईलवर पॅरालेक्स बंद केला स्मूथनेससाठी */
}

@media (max-width: 576px) {
    .hero-section { padding-top: 140px; }
    .hero-title { font-size: 32px; line-height: 1.3; }
    .hero-subtitle { font-size: 15px; margin-bottom: 30px; }
    .hero-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}


/* --- Services Section Base Styling --- */
.services-section {
    padding: 40px 0;
    background-color: #f8fafc; /* हलका प्रिमियम बॅकग्राउंड */
    width: 100%;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Section Header --- */
.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.services-badge {
    color: var(--color-green); /* #0fa958 */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.services-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: #162c22; /* स्क्रीनशॉट मधील डार्क ग्रीनिश-ब्लॅक शेड */
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.services-subtitle {
    font-size: 17px;
    color: #64748b; /* म्यूटेड ग्रे टेक्स्ट */
    line-height: 1.6;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* डेस्कटॉपवर ३ कॉलम्स */
    gap: 30px;
}

/* --- Service Card Base --- */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

/* --- Card Image Wrapper & Overlay --- */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-img {
    transform: scale(1.08); /* होव्हर केल्यावर इमेज झूम इफेक्ट */
}

/* स्क्रीनशॉट सारखा प्रिमियम ग्रे-ब्लॅक ग्रेडियंट ओव्हरले */
.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(240, 240, 240, 0.1) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

/* --- Floating Icon Box --- */
.icon-box {
    position: absolute;
    bottom: 16px;
    left: 20px;
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-box i {
    color: var(--color-green); /* #0fa958 */
    font-size: 20px;
}

/* --- Card Content --- */
.card-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.card-description {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* --- Apply Now Link (No Decoration) --- */
.btn-card-apply {
    text-decoration: none !important; /* अंडरलाईन नको */
    color: var(--color-green) !important;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    width: max-content;
}

.btn-card-apply .arrow {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.btn-card-apply:hover .arrow {
    transform: translateX(6px); /* होव्हर केल्यावर बाण पुढे सरकणार */
}

/* --- Responsive Media Queries --- */
@media (max-width: 1120px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* टॅब्लेटवर २ कॉलम्स */
        gap: 24px;
    }
    .services-container { padding: 0 24px; }
    .services-title { font-size: 36px; }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* मोबाईलवर १ कॉलम */
    }
    .services-section { padding: 70px 0; }
    .services-title { font-size: 30px; }
    .services-subtitle { font-size: 15px; }
}

/* --- About Section Styling --- */
.about-section {
    padding: 40px 0;
    background-color: #ffffff;
    width: 100%;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* डावी बाजू थोडी मोठी */
    gap: 80px;
    align-items: center;
}

/* --- Left Column Elements --- */
.about-badge {
    color: var(--color-green); /* #0fa958 */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.about-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: #162c22; /* स्क्रीनशॉट मधील ओरिजिनल हेडिंग कलर */
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Features Checklist */
.about-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-features-list .check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-features-list .check-icon i {
    color: var(--color-green);
    font-size: 20px;
    font-weight: 600;
}

.about-features-list .feature-text {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

/* Divider line */
.about-divider {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin-bottom: 30px;
}

/* --- Counters Grid --- */
.about-counters {
    display: flex;
    align-items: center;
    gap: 60px;
}

.counter-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--color-green);
    line-height: 1;
}

.counter-label {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

/* --- Right Column: Image Frame with Soft Shape --- */
.about-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-img-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 400px;
}

/* स्क्रीनशॉट सारखा फिकट रंगाचा तिरपा कर्व बॅकग्राउंड पॅनेल */
.about-shape-bg {
    position: absolute;
    top: 20px;
    left: -30px;
    width: 110%;
    height: 90%;
    background: #fbf6eb; /* फिकट क्रीमी गोल्ड शेड स्क्रीनशॉट मधून */
    border-radius: 40px;
    transform: rotate(-3deg);
    z-index: 1;
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: transform 0.5s ease;
}

/* होव्हर केल्यावर हलका पॅरालेक्स मोशन इफेक्ट */
.about-image-col:hover .about-main-img {
    transform: translateY(-8px) scale(1.02);
}

/* --- Responsive Layout (Mobile & Tablet) --- */
@media (max-width: 1120px) {
    .about-container {
        gap: 40px;
        padding: 0 24px;
    }
    .about-title { font-size: 36px; }
    .about-counters { gap: 40px; }
    .counter-number { font-size: 34px; }
}

@media (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr; /* सिंगल कॉलम लेआउट */
        gap: 60px;
    }
    .about-image-col {
        order: -1; /* मोबाईलवर इमेज आधी वर दिसेल */
    }
    .about-img-frame {
        height: 350px;
        max-width: 100%;
    }
    .about-shape-bg {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 576px) {
    .about-section { padding: 60px 0; }
    .about-title { font-size: 28px; line-height: 1.3; }
    .about-description { font-size: 15px; }
    .about-counters {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .about-img-frame { height: 260px; }
}

/* --- EMI Calculator Section Styling --- */
.emi-section {
    padding: 40px 0;
    background-color: #0f172a; /* डार्क प्रिमियम बॅकग्राउंड */
    width: 100%;
    color: #ffffff;
}

.emi-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Section Header --- */
.emi-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.emi-badge {
    color: #cca64f; /* गोल्डन शेड */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.emi-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.emi-subtitle {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
}

/* --- Main Workspace Card --- */
.calculator-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Left Input Panel --- */
.calc-inputs-panel {
    padding: 40px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.input-group-wrapper {
    display: flex;
    flex-direction: column;
}

.input-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.input-label-row label {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

/* Input Digital Field Boxes */
.input-field-box {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    width: 160px;
}

.input-field-box input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

/* Default Spin Arrows Hide */
.input-field-box input::-webkit-outer-spin-button,
.input-field-box input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.text-right-box input {
    text-align: right;
    padding-right: 4px;
}

.unit-text {
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
}

/* --- Custom Range Sliders --- */
.range-slider-container {
    width: 100%;
    display: flex;
    align-items: center;
}

input[type="range"].slider-progress {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 10px;
    outline: none;
    background: #e2e8f0;
    cursor: pointer;
}

/* Custom Knob/Thumb (White circle with green border) */
input[type="range"].slider-progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #0fa958; /* मॅचिंग ग्रीन */
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.1s ease;
}

input[type="range"].slider-progress::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-limit-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

/* --- Right Results Panel --- */
.calc-results-panel {
    background-color: #f4f9f6; /* हलका फिकट हिरवा बॅकग्राउंड */
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.monthly-emi-display {
    text-align: center;
    margin-bottom: 35px;
}

.emi-label {
    font-size: 15px;
    color: #475569;
    font-weight: 600;
    margin-bottom: 6px;
}

#displayEmi {
    font-size: 46px;
    font-weight: 800;
    color: #0fa958; /* मॅचिंग ग्रीन ईएमआय हायलाईट */
    letter-spacing: -0.5px;
}

/* Breakdown List Layout */
.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.breakdown-label {
    color: #475569;
    font-weight: 500;
}

.breakdown-value {
    color: #0f172a;
    font-weight: 700;
}

.breakdown-divider {
    height: 1px;
    background-color: #cbd5e1;
    margin: 4px 0;
}

.total-payment-row {
    font-size: 17px;
}

.total-payment-row .breakdown-label {
    color: #0f172a;
    font-weight: 700;
}

.total-payment-row .breakdown-value {
    font-size: 20px;
    color: #0f172a;
    font-weight: 800;
}

/* Screen 5 Disclaimer Text Styling */
.calc-disclaimer {
    font-size: 13px;
    color: #15803d; /* सॉफ्ट ग्रीनिश-ग्रे शेड */
    text-align: center;
    margin-top: 30px;
    line-height: 1.5;
    font-weight: 500;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .calculator-card { grid-template-columns: 1fr; }
    .calc-results-panel { padding: 40px; }
    .emi-title { font-size: 34px; }
}

@media (max-width: 576px) {
    .emi-container { padding: 0 24px; }
    .calc-inputs-panel { padding: 24px; gap: 28px; }
    .calc-results-panel { padding: 32px 24px; }
    #displayEmi { font-size: 36px; }
    .input-label-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .input-field-box { width: 100%; }
}

/* --- Testimonials Section Base --- */
.testimonials-section {
    padding: 40px 0;
    background-color: #ffffff; /* प्रिमियम क्लीन व्हाईट बॅकग्राउंड */
    width: 100%;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Section Header --- */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-badge {
    color: var(--color-green); /* #0fa958 */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
    font-family: var(--font-heading);
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: #162c22; /* स्क्रीनशॉट मधील डार्क फॉरेस्ट ग्रीन हेडिंग शेड */
    letter-spacing: -0.5px;
}

/* --- Testimonials Grid Layer --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* डेस्कटॉपवर ३ कॉलम्स */
    gap: 30px;
}

/* --- Testimonial Card Individual Structure --- */
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0; /* फिकट बॉर्डर लाईन */
    border-radius: 18px; /* सॉफ्ट कर्व कॉर्नर्स */
    padding: 40px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

/* होव्हर केल्यावर स्मूथ वर येणारा लिफ्ट इफेक्ट */
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(22, 44, 34, 0.06);
    border-color: rgba(15, 169, 88, 0.2); /* होव्हर झाल्यावर फिकट हिरवी बॉर्डर */
}

/* Star Ratings Styling */
.star-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.star-rating i {
    color: #eab308; /* स्क्रीनशॉट मधील गोल्ड/पिवळा स्टार कलर */
    font-size: 19px;
}

.star-rating i.empty-star {
    color: #cbd5e1; /* शेवटचा रिकाम्या स्टारचा फिकट ग्रे रंग */
}

/* Review Text Paragraph */
.client-quote {
    font-size: 16px;
    font-style: italic; /* स्क्रीनशॉट सारखा इटॅलिक टेक्स्ट लुक */
    color: #475569; /* डार्क ग्रे रिव्ह्यू फॉन्ट */
    line-height: 1.7;
    margin-bottom: 32px;
    flex-grow: 1;
}

/* Client Detail Layout */
.client-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.client-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    font-family: var(--font-heading);
}

.client-designation {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-green); /* तुमच्या ब्रँडचा मुख्य हिरवा रंग */
}

/* --- Responsive Media Queries --- */
@media (max-width: 1120px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr); /* टॅब्लेटवर २ कॉलम्स */
        gap: 24px;
    }
    .testimonials-container { padding: 0 24px; }
    .testimonials-title { font-size: 36px; }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr; /* मोबाईलवर १ सिंगल कॉलम */
    }
    .testimonials-section { padding: 70px 0; }
    .testimonial-card { padding: 32px 24px; }
    .testimonials-title { font-size: 30px; }
}

/* --- Contact Section Base Layout --- */
.contact-section {
    padding: 40px 0;
    background-color: #f8fafc; /* फिकट म्यूटेड बॅकग्राउंड */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* परफेक्ट ५०-५० ग्रिड स्प्लिट */
    gap: 60px;
    align-items: center;
}

/* --- Left Column Info Content --- */
.contact-badge {
    color: #0fa958; /* मुख्य ब्राइट ग्रीन */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: #162c22; /* स्क्रीनशॉट मधील डार्क ग्रीन फॉरेस्ट शेड */
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-subtitle {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 45px;
}

/* Detail Rows Wrapper */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* स्क्रीनशॉट सारखे फिकट बॅकग्राउंड वर्तुळ असलेले आयकॉन्स */
.contact-icon {
    width: 46px;
    height: 46px;
    background-color: #e6f6ee; /* फिकट हिरवी शेड */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #0fa958;
    font-size: 20px;
}

.contact-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.contact-text p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

.highlight-green-text {
    color: #0fa958 !important;
    font-weight: 700;
    font-size: 17px !important;
    margin-bottom: 2px;
}

.highlight-green-link {
    color: #0fa958 !important;
    font-weight: 600;
}

/* --- Right Column: Apply Form Card Styling --- */
.apply-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.form-card-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
}

/* Form Grid System */
#loanApplyForm {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group, .form-group-full {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#loanApplyForm label {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

/* Inputs, Dropdowns, Textarea Fields Base */
#loanApplyForm input, 
#loanApplyForm select, 
#loanApplyForm textarea {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    color: #334155;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* इनपुट व्हॅल्यू प्लेसहोल्डर स्टाईल */
#loanApplyForm input::placeholder,
#loanApplyForm textarea::placeholder {
    color: #94a3b8;
}

/* फोकस झाल्यावर येणारी स्मूथ ग्रीन बॉर्डर */
#loanApplyForm input:focus, 
#loanApplyForm select:focus, 
#loanApplyForm textarea:focus {
    border-color: #0fa958;
    box-shadow: 0 0 0 3px rgba(15, 169, 88, 0.1);
}

/* Dropdown Arrow Wrapper */
.select-wrapper {
    position: relative;
}

/* Submit Form Button (स्क्रीनशॉट मधील सेम ग्रीन कलर) */
.btn-submit-application {
    background-color: #0fa958;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit-application:hover {
    background-color: #129650;
}

.btn-submit-application:active {
    transform: scale(0.98);
}

/* --- Form Success Animation Overlay --- */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-message-box {
    text-align: center;
    padding: 30px;
}

.success-check-anim i {
    font-size: 60px;
    color: #0fa958;
    margin-bottom: 16px;
    animation: scaleInCheck 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-message-box h4 {
    font-size: 24px;
    font-weight: 800;
    color: #162c22;
    margin-bottom: 10px;
}

.success-message-box p {
    font-size: 15px;
    color: #64748b;
}

@keyframes scaleInCheck {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr; /* सिंगल कॉलम मध्ये शिफ्ट */
        gap: 60px;
    }
    .contact-title { font-size: 36px; }
}

@media (max-width: 576px) {
    .contact-container { padding: 0 24px; }
    .apply-form-card { padding: 30px 20px; }
    .form-row-grid { grid-template-columns: 1fr; gap: 22px; }
    .contact-title { font-size: 30px; }
    .contact-section { padding: 70px 0; }
}

/* --- Footer Section Styling --- */
.main-footer {
    background-color: #0f172a; /* स्क्रीनशॉट मधील ओरिजिनल डार्क थीम */
    color: #94a3b8; /* म्यूटेड टेक्स्ट कलर */
    padding: 80px 0 0 0;
    width: 100%;
    font-family: sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr; /* ४ कॉलम्स परफेक्ट डिस्ट्रिब्युशन */
    gap: 40px;
}

/* Column 1: Brand Layout */
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.footer-logo-img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.footer-brand-name h2 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.footer-brand-name .gold-text {
    color: #cca64f; /* स्क्रीनशॉट मधील सोनेरी अक्षरांचा शेड */
}

.brand-description {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
}

/* General Column Titles */
.footer-col-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
}

/* Navigation & Services Lists */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

/* लिंक्सवर माउस नेल्यावर प्रिमियम व्हाईट ग्लो इफेक्ट */
.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* Column 4: Contact Rows */
.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-icon-gold i {
    color: #cca64f; /* सोनेरी आयकॉन्स */
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact-row p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #94a3b8;
}

.footer-numbers p {
    margin-bottom: 4px;
}

/* --- Bottom Copyright Bar --- */
.footer-bottom-bar {
    margin-top: 60px;
    border-top: 1px solid rgba(148, 163, 184, 0.1); /* फिकट बॉर्डर लाईन */
    padding: 26px 0;
    text-align: center;
}

.footer-bottom-bar p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* टॅब्लेटवर २ कॉलम्स मध्ये डिव्हाइड होईल */
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* मोबाईल स्क्रीनवर १ सिंगल कॉलम लेआउट */
        gap: 36px;
    }
    .main-footer {
        padding: 60px 0 0 0;
    }
    .footer-container {
        padding: 0 24px;
    }
    .footer-col-title {
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   Company Leadership Section Styling (Updated with Bigger Names)
   ========================================================================== */
:root {
    --primary-color: #28a745; /* तुमच्या थीमचा मुख्य रंग (उदा. हिरवा/गोल्डन) */
    --text-muted: #666666;
    --card-bg: rgba(255, 255, 255, 0.05); /* डार्क थीमसाठी फिकट बॅकग्राउंड */
    --title-color: #111111; /* लाईट थीमसाठी, डार्क थीम असल्यास #ffffff करा */
}

.about-directors-container {
    margin-top: 30px;
    padding-top: 10px;
}

.directors-heading {
    font-size: 1.15rem;
    color: var(--title-color);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.directors-heading i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.directors-flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* मोबाईल स्क्रीनवर एकाखाली एक येथे येण्यासाठी */
}

.director-card {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    padding: 20px 26px; /* कार्ड थोडे मोठे दिसण्यासाठी पॅडिंग वाढवले आहे */
    border-radius: 12px;
    border-left: 5px solid var(--primary-color); /* बॉर्डर जाड केली आहे */
    min-width: 240px;
    flex: 1; /* दोन्ही कार्ड्स समान रुंदीचे दिसतील */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* होव्हर केल्यावर कार्ड किंचित वर येईल */
.director-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.director-info {
    display: flex;
    flex-direction: column;
}

/* हे नावं मोठे करण्यासाठी बदलले आहे */
.director-name {
    font-size: 1.4rem; /* आधी 1.15rem होते, आता मोठे केले आहे */
    font-weight: 700; /* नावे जास्त ठळक (Bold) केली आहेत */
    margin: 0 0 4px 0;
    color: var(--title-color);
    letter-spacing: 0.3px;
}

.director-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* मोबाईल रिस्पॉन्सिव्हनेससाठी मिडिया क्वेरी */
@media (max-width: 576px) {
    .directors-flex {
        flex-direction: column;
        gap: 15px;
    }
    .director-card {
        width: 100%;
    }
    .director-name {
        font-size: 1.25rem; /* मोबाईलवर नावं जास्त अस्ताव्यस्त दिसू नयेत म्हणून किंचित ॲडजस्ट केली आहेत */
    }
}