/* --- Global Style Adjustments --- */
body {
    max-width: 100%;
    background-color: #f8f9fa;
    font-family: "Mulish", sans-serif;
    color: #000000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
* {
    box-sizing: border-box;
    max-width: 100%;
}

/* --- Top Bar Custom Styling --- */
.top-bar {
    background-color: #1c1d24;
    color: #a4a6b2;
    font-size: 13px;
    padding: 12px 0;
}

/* Inherited Link configuration structures */
.email-link {
    color: #a4a6b2 !important;
    transition: color 0.3s ease;
}
.email-link:hover {
    color: #ffffff !important;
}

/* Custom Primary Corporate Visual Accent Colors System */
.icon-primary {
    color: #e63c23; /* Set to custom brand color */
    margin-right: 6px;
}

.live-clock {
    color: #ffffff;
    font-weight: 500;
    background-color: #262832;
    padding: 6px 14px;
    border-radius: 4px;
    white-space: nowrap;
}

.top-bar-right a {
    color: #a4a6b2;
    transition: color 0.3s ease;
}

.top-bar-right a:hover {
    color: #ffffff;
}

.top-bar .social-icons {
    display: inline-flex;
    border-left: 1px solid #333541;
}

.top-bar .social-icons a {
    font-size: 14px;
}

/* --- Main Header Navigation Override --- */
.main-header {
    background-color: #ffffff !important;
    min-height: 100px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 100;
    transition: all 0.3s ease-in-out;
}

/* Class injected dynamically during view scroll interaction loop execution */
.fixed-top-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 80px !important;
    /* ENHANCED SHADOW: Stronger bottom shadow definition */
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12) !important;
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Diagonal Background architectural feature configuration layout */
.logo-container {
    background-color: #ffffff;
    padding-left: 40px;
    padding-right: 60px;
    position: relative;
    z-index: 2;
    height: 100%;
}

@media (min-width: 1400px) {
    /* FIXED: Adjusted pseudo-element to have top/bottom padding constraints */
    .logo-container::after {
        content: '';
        position: absolute;
        top: 20px;            /* FIXED: Padding space away from top boundary */
        bottom: 20px;         /* FIXED: Padding space away from bottom boundary */
        right: -25px;
        width: 50px;
        background-color: #ffffff;
        transform: skewX(-25px);
        z-index: -1;
        border-right: 5px solid #e63c23; /* Custom Brand Red Accent Line */
    }
    
    /* Adjusted sticky compression sizes to maintain padding aspect proportions */
    .fixed-top-header .logo-container::after {
        top: 15px;
        bottom: 15px;
    }

    .logo-container, .header-actions {
        height: 100px;
    }
    .fixed-top-header .logo-container, 
    .fixed-top-header .header-actions {
        height: 80px;
    }
}

.company-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Navigation Menu Container Area */
.nav-container {
    padding: 0 40px;
}

.nav-links .nav-link {
    color: #686a73 !important;
    font-size: 15px;
    font-weight: 500;
    padding: 38px 0 !important;
    margin: 0 12px;
    position: relative;
    transition: color 0.3s ease;
}

/* Slim layout modification execution configurations */
.fixed-top-header .nav-links .nav-link {
    padding: 28px 0 !important;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
    color: #e63c23 !important; /* Set to custom brand color */
}

/* Active bottom line indicator for Large Screens */
@media (min-width: 1400px) {
    .nav-links .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 25px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #e63c23; /* Set to custom brand color */
    }
    .fixed-top-header .nav-links .nav-link.active::after {
        bottom: 15px;
    }
}

/* --- Custom Dropdown Menu Design --- */
.custom-dropdown .dropdown-menu {
    border: none;
    border-top: 3px solid #e63c23; /* Set to custom brand color */
    border-radius: 0;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
    padding: 0;
}

@media (min-width: 1400px) {
    .custom-dropdown .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .custom-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.custom-dropdown .dropdown-item {
    padding: 12px 20px;
    font-size: 14px;
    color: #1c1d24;
    border-bottom: 1px solid #f2f3f5;
}

.custom-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.custom-dropdown .dropdown-item:hover {
    background-color: #fdf3f2; /* Light subtle tint for modern red hover states */
    color: #e63c23; /* Set to custom brand color */
}

/* --- Action Module Right-Side Positioning Rules --- */
.header-actions {
    margin-left: auto; /* Pushes the module to the absolute end edge of the screen space */
    padding-right: 40px; /* Aligns with global screen edge gutters */
    display: flex;
    align-items: center;
}

/* --- Phone Elements & Hover Interactions --- */
.phone-info {
    transition: all 0.3s ease;
}

/* Phone Round Icon Box - Base State */
.phone-icon-box {
    background-color: #fdf3f2; 
    color: #e63c23; /* Set to brand primary */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Continuous minor shake / dynamic wiggle logic on phone icon during link segment hovers */
@keyframes phoneWiggle {
    0% { transform: rotate(0deg) scale(1.1); }
    25% { transform: rotate(-15deg) scale(1.1); }
    50% { transform: rotate(15deg) scale(1.1); }
    75% { transform: rotate(-10deg) scale(1.1); }
    100% { transform: rotate(0deg) scale(1.1); }
}

/* Phone Typography - Base State in Primary Color */
.phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #e63c23; /* Set to brand primary */
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease;
}

.phone-text {
    transition: transform 0.3s ease;
}

.phone-hours {
    font-size: 12px;
    color: #878993;
    white-space: nowrap;
}

/* High Fidelity Hover Feedback interactions for complete phone profile modular arrays */
.phone-info:hover .phone-icon-box {
    background-color: #e63c23;
    color: #ffffff;
    box-shadow: 0px 4px 15px rgba(230, 60, 35, 0.35);
    animation: phoneWiggle 0.5s ease-in-out;
}

.phone-info:hover .phone-number {
    color: #b52914;
}

.phone-info:hover .phone-text {
    transform: translateX(3px); /* Subtle dynamic tracking shift */
}

/* --- Responsive Layout Tweaks for Mobile / Tablets --- */
@media (max-width: 1399.98px) {
    .main-header {
        padding: 15px 0 !important;
        min-height: auto;
    }
    .logo-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .header-actions {
        padding-right: 20px;
        margin-left: auto;
    }
    
    /* Layout dynamic container wrapper fix */
    .navbar-collapse {
        position: relative;
        width: 100%;
        background-color: #ffffff;
        padding: 15px 20px 10px 20px;
        z-index: 999;
        flex-basis: 100%;
        flex-grow: 1;
    }
    .nav-links .nav-link {
        padding: 14px 0 !important;
        margin: 0;
        border-bottom: 1px solid #f2f3f5;
        display: block;
    }
    .nav-links .nav-link.active {
        color: #e63c23 !important;
    }
    .custom-dropdown .dropdown-menu {
        box-shadow: none;
        border-top: none;
        border-left: 2px solid #e63c23;
        padding-left: 15px;
        background-color: #fff;
    }

    /* Modern Responsive Apply Now button specific styling rules with custom hover physics */
    .btn-apply-mobile {
        background-color: #e63c23;
        color: #ffffff !important;
        font-family: 'Rubik', sans-serif;
        font-weight: 500;
        font-size: 16px;
        padding: 13px 20px;
        border-radius: 6px;
        border: 2px solid #e63c23;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        text-align: center;
        display: block;
        box-shadow: 0px 4px 12px rgba(230, 60, 35, 0.15);
        position: relative;
        overflow: hidden;
    }
    
    /* Hover / Focus tactile feedback states for the Apply Now action element */
    .btn-apply-mobile:hover, 
    .btn-apply-mobile:focus {
        background-color: #b52914;
        border-color: #b52914;
        color: #ffffff !important;
        box-shadow: 0px 6px 20px rgba(181, 41, 20, 0.4);
        transform: translateY(-2px); /* Slight raise action */
    }

    .btn-apply-mobile:active {
        transform: translateY(1px); /* Pressed physics interaction click */
        box-shadow: 0px 2px 8px rgba(181, 41, 20, 0.3);
    }
}




























































.max-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   HERO FULLSCREEN LAYOUT STRUCTURE
   ========================================================================== */
.hero-workspace-section-fullscreen {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero-fullscreen-slider-engine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-back-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-back-slide.active {
    opacity: 1;
    
}

.fullscreen-img-element {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    
}

.workspace-foreground-deck {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-asymmetric-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* LEFT COLUMN TYPOGRAPHY SLIDER BLOCKS */
.slider-synchronized-text-hub {
    position: relative !important;
    min-height: 250px; /* Gives plenty of breathing room for multi-line headers */
    display: block !important;
    margin-top: -50px; /* Added negative margin to shift the entire block upwards */
}

.text-caption-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(10px); /* Tighter entrance animation spacing */
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-foreground-text-column {
    margin-bottom: 50px; /* Adjust this number higher if you want it even more upward */
}

.text-caption-card.active {
   position: relative;
    opacity: 1;
    transform: translateY(-10px); /* Shifts active text/button upward slightly */
    pointer-events: auto;
}

.slide-header {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff5722, #ff9800);
    -webkit-background-clip: text; /* For Safari and older Chrome engines */
    background-clip: text;         /* Standard version to clear the VS error */
    -webkit-text-fill-color: transparent;
}

.slide-paragraph {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 540px;
}

.btn-hero-action {
    display: inline-block;
    background-color: #e63c23;
    background: linear-gradient(90deg, #ff5722, #ff9800);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 16px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(230, 60, 35, 0.3);
    transition: all 0.2s ease;
}

.btn-hero-action:hover {
    background-color: #b52914;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 60, 35, 0.4);
}

.slider-dot-indicators {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 28px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(90deg, #ff5722, #ff9800);
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.slider-dot.active {
    background-color: #e63c23;
    width: 45px;
}


/* RIGHT COLUMN FINANCIAL WORKSPACE DECK CARD */
.emi-calculator-card {
   /* Light, clean background with a subtle professional gradient */
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    
    /* Soft border to define the card against the background */
    border: 1px solid rgba(230, 60, 35, 0.15);
    
    
    /* Modern, lifted shadow effect */
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 15px rgba(230, 60, 35, 0.05);
}

.calc-main-title {
    font-size: 24px;
    font-weight: 800; /* Made bolder */
    letter-spacing: 0.0px;
    margin-bottom: 6px;
    
    /* Apply your requested linear gradient */
    background: linear-gradient(90deg, #ff5722, #ff9800);
    
    /* Magic tricks to clip the background to the text characters */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback for older browsers */
    
}

.branding-header-color { color: #e63c23; }

.calc-main-subtitle {
    font-size: 13px;
    color: #64748b; /* Keeps subtitle readable on light backgrounds */
    margin-bottom: 30px;
    line-height: 1.4;
}

.calc-inner-split {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-slider-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 4px;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.input-title {
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.numeric-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0 10px;
    height: 38px;
    transition: border-color 0.2s ease;
}

.numeric-input-wrapper:focus-within {
    border-color: #121212;
}

.currency-prefix, .percentage-suffix {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    user-select: none;
}

.core-numeric-input {
    background: transparent;
    border: none;
    outline: none;
    color: #1e293b; /* Dark text for light background */
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    width: 90px;
    text-align: right;
    padding-left: 4px;
}

.core-numeric-input::-webkit-outer-spin-button,
.core-numeric-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#input-principal { width: 110px; }
.rate-padding { padding-right: 4px; }

.tenure-title-unit-mix {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tenure-unit-toggle {
    display: flex;
    background-color: #e63c23;
    background: linear-gradient(90deg, #ff5722, #ff9800);
    padding: 2px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.unit-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.unit-btn.active {
    background-color: #ffffff;
    color: #1e293b;
}

.core-range-input {
    -webkit-appearance: none; /* For Safari and Chrome/Blink browsers */
    appearance: none;         /* Standard property for modern browsers */
    width: 100%;
    height: 5px;
    background: #e2e8f0;
    border-radius: 3px;
    outline: none;
    margin: 10px 0;
}

.core-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e63c23;
    background: linear-gradient(90deg, #ff5722, #ff9800);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(230, 60, 35, 0.5);
    transition: transform 0.1s ease;
}

.core-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.range-bounds-text {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #475569;
    font-weight: 600;
}

.validation-warning-message {
    color: #ef4444;
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
    display: none;
}

/* CALC OUTPUT METRIC GRIDS VISUAL PIPELINE */
.calc-visual-output-hub {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    background-color: #fcf2ef;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 10px;
    align-items: center;
}

.pie-chart-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.metric-svg-pie {
    transform: rotate(-90deg);
}

.pie-svg-percentage-node {
    font-family: inherit;
    font-weight: 800;
    font-size: 5px;
    text-anchor: middle;
    dominant-baseline: middle;
    transform: rotate(90deg);
    transform-origin: center;
}

.label-principal-color { fill: #40C575; font-size: 4px; }
.label-interest-color { fill: #e63c23; font-size: 4px; }

.chart-data-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-row {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.emi-highlight-row {
    justify-content: space-between;
    background-color: rgba(182, 36, 36, 0.03);
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #e63c23;
}

.emi-label { font-weight: 700; color: #94a3b8; }
.emi-value { font-size: 18px; font-weight: 800; color: #ffffff; }

.legend-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.06);
    margin: 2px 0;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.dot-principal { background-color: #40C575; }
.dot-interest { background-color: #e63c23; }

.legend-text { color: #64748b; font-weight: 500; }
.legend-metric { margin-left: auto; font-weight: 700; color: #e63c23; }

.btn-calc-submit-action {
    width: 100%;
    background-color: #e63c23; /* Applied requested color */
    color: #ffffff;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    padding: 16px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 60, 35, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother animation */
}

.btn-calc-submit-action:hover {
    background-color: #2fa65e;
    transform: translateY(-3px); /* Added lift animation */
}

.btn-calc-submit-action.btn-disabled-state {
    background-color: #334155 !important;
    color: #64748b !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

/* ==========================================================================
   LIGHTBOX OVERLAY INTERFACE & ANIMATION KEYFRAMES
   ========================================================================== */
.lightbox-overlay-shutter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 13, 16, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
}

.lightbox-overlay-shutter.lightbox-visible-state {
    opacity: 1;
    visibility: visible;
}

.lightbox-window-viewport {
    background-color: #ffffff;
    width: 100%;
    max-width: 960px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 30px 70px rgba(0, 0, 0, 0.5);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-overlay-shutter.lightbox-visible-state .lightbox-window-viewport {
    transform: scale(1) translateY(0);
}

.lightbox-close-trigger {
    position: absolute;
    top: 20px;
    right: 24px;
    background: #ffffff;
    border: none;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    color: #4a4c54;
    cursor: pointer;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.lightbox-close-trigger:hover {
    background-color: #e63c23;
    color: #ffffff;
    transform: rotate(90deg);
}

.lightbox-asymmetric-split {
    display: grid;
    grid-template-columns: 360px 1fr;
    min-height: 560px;
}

/* LEFT GRAPHICS BRANDING COMPONENT PANEL */
.lightbox-graphics-branding-panel {
    position: relative;
    padding: 40px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.lightbox-graphics-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 4s ease-out;
}

.lightbox-overlay-shutter.lightbox-visible-state .lightbox-graphics-backdrop {
    transform: scale(1);
}

.lightbox-branding-foreground {
    position: relative;
    z-index: 2;
    width: 100%;
}

.lightbox-badge-node {
    display: inline-block;
    background-color: rgba(230, 60, 35, 0.2);
    border: 1px solid rgba(230, 60, 35, 0.4);
    color: #ff7663;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.lightbox-branding-header {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.lightbox-branding-desc {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.lightbox-embedded-summary-deck {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: rgba(20, 21, 26, 0.75);
    padding: 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.summary-pill {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #94a3b8;
}

.summary-pill strong {
    color: #ffffff;
    font-weight: 600;
}

.summary-pill.emi-pill {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 4px;
    padding-top: 8px;
}

.summary-pill.emi-pill strong {
    color: #ff7663;
    font-size: 15px;
    font-weight: 700;
}

/* RIGHT FORM INPUT PANEL COMPONENTS */
.lightbox-form-capture-panel {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.form-section-title {
    font-size: 20px;
    color: #1c1d24;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.form-section-subtitle {
    font-size: 13px;
    color: #686a73;
    line-height: 1.5;
    margin-bottom: 24px;
}

.form-fields-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 14px;
    margin-bottom: 20px; /* This sets standard item separation */
}

.form-input-element-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-element-label {
    font-size: 11px;
    font-weight: 700;
    color: #4a4c54;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.core-form-input-box {
    width: 100%;
    background-color: #f8f9fa;
    border: 1px solid #dcdfe4;
    border-radius: 6px;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #1c1d24;
    outline: none;
    transition: all 0.2s ease;
}

.core-form-input-box:focus {
    background-color: #ffffff;
    border-color: #e63c23;
    box-shadow: 0 0 0 3px rgba(230, 60, 35, 0.1);
}

.core-form-input-box.field-error-alert {
    border-color: #e63c23 !important;
    background-color: #fff5f5 !important;
}

.custom-select-arrow {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23686a73' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 35px;
}

.custom-select-arrow:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Captcha Verification styling */
.captcha-verification-structural-shield {
    background-color: #f1f3f5;
    padding: 14px;
    border-radius: 8px;
    margin-top: 24px; /* DEFINITIVE FIX: Forces distinct padding between the grid container end (Choose Region) and the Captcha box */
    margin-bottom: 24px;
}

.captcha-flex-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-equation-display-box {
    background-color: #1c1d24;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 9px 16px;
    border-radius: 4px;
    letter-spacing: 1px;
    user-select: none;
}

.captcha-input-width {
    max-width: 85px;
    text-align: center;
    padding: 9px;
}

.captcha-reload-btn {
    border: none;
    background: transparent;
    font-size: 20px;
    color: #686a73;
    cursor: pointer;
    padding: 4px;
}

.captcha-reload-btn:hover { color: #e63c23; }
.field-caption-note { font-size: 11px; color: #878993; margin-top: 6px; }

/* Status Logs Layout rules */
.form-alert-feedback-log {
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    display: none;
    line-height: 1.4;
}

.form-alert-feedback-log.status-success {
    background-color: #e6fcf5;
    color: #0ca678;
    border: 1px solid #96f2d7;
    display: block;
}

.form-alert-feedback-log.status-error {
    background-color: #fff5f5;
    color: #e63c23;
    border: 1px solid #ffc9c9;
    display: block;
}

.btn-lightbox-form-submission {
    width: 100%;
    background-color: #e63c23;
    color: #ffffff;
    border: none;
    padding: 15px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 60, 35, 0.3);
    transition: all 0.2s ease;
}

.btn-lightbox-form-submission:hover { background-color: #b52914; }
.btn-lightbox-form-submission:disabled {
    background-color: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
}

/* RESPONSIVE LAYOUT BREAKPOINTS */
@media (max-width: 1199.98px) {
    .slide-header { font-size: 38px; }
    .hero-asymmetric-split-grid { gap: 40px; }
}

@media (max-width: 991.98px) {
    .hero-asymmetric-split-grid { grid-template-columns: 1fr; gap: 50px; }
    .slider-synchronized-text-hub { min-height: auto; }
    .text-caption-card { position: relative; }
    .hero-workspace-section-fullscreen { padding: 60px 0; }
    .lightbox-window-viewport { max-width: 620px; }
    .lightbox-asymmetric-split { grid-template-columns: 1fr; }
    .lightbox-graphics-branding-panel { display: none; }
}

@media (max-width: 575.98px) {
    .emi-calculator-card { padding: 20px; }
    .calc-visual-output-hub { grid-template-columns: 1fr; justify-content: center; text-align: center; }
    .emi-highlight-row { justify-content: center; gap: 15px; }
    .legend-row { justify-content: center; }
    .legend-metric { margin-left: 10px; }
    .lightbox-form-capture-panel { padding: 30px 20px; }
    .form-fields-grid-layout { grid-template-columns: 1fr; gap: 14px; margin-bottom: 0; }
}

/* ==========================================================================
   PREMIUM HIGH FIDELITY SUCCESS STATE STYLING (Appended Rules)
   ========================================================================== */
.success-screen-wrapper-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    animation: successFadeInTransform 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-animated-badge-icon {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at center, #40C575 0%, #2b9e56 100%);
    box-shadow: 0 10px 25px rgba(64, 197, 117, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.success-main-heading {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.success-main-subtext {
    color: #94a3b8;
    font-size: 15px;
    max-width: 420px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.success-application-id-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #334155;
    border-left: 4px solid #40C575;
    padding: 16px 36px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.app-card-lbl {
    font-size: 10px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 4px;
}

.app-card-id-string {
    font-size: 24px;
    font-weight: 800;
    color: #40C575;
    letter-spacing: 1.5px;
    font-family: monospace, serif;
}

.success-authoritative-paragraph {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 35px;
    padding: 0 10px;
}

.btn-success-close-dismiss {
    background-color: #ffffff;
    color: #0f172a;
    border: none;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255,255,255,0.15);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-success-close-dismiss:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255,255,255,0.2);
}

@keyframes successFadeInTransform {
    0% { opacity: 0; transform: scale(0.96) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Bulletproof Mobile Overlap Fix */
@media (max-width: 991.98px) {
    /* 1. Ensure the parent column wraps neatly around only what is visible */
    .hero-foreground-text-column {
        margin-bottom: 0 !important;
        display: block !important;
    }

    /* 2. Container setup */
    .slider-synchronized-text-hub {
        position: relative !important;
        display: block !important;
        min-height: auto !important;
    }

    /* 3. Strip structural space from hidden cards completely */
    .text-caption-card {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        display: none !important; /* Forces layout machine to treat it as nonexistent */
    }

    /* 4. Resurrect only the active card into normal document flow */
    .text-caption-card.active {
        position: relative !important;
        display: block !important; /* Overrides display: none instantly */
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
    }
}


/* ==========================================================================
   Enquiry light Box UNIFIED MASTER LIGHTBOX LAYOUT & SCROLL ENGINE (DESKTOP & MOBILE FIX)
   ========================================================================== */

/* 1. PRIMARY CONTAINER BACKDROP MASK */
.promo-modal-backdrop {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    background-color: rgba(20, 21, 26, 0.85); 
    z-index: 99999999;
    display: flex; 
    
    /* FIX: Align items to the top edge on ALL screens so content never clips out of reach */
    align-items: flex-start !important; 
    justify-content: center;
    
    /* FIX: Active smooth scrolling container mechanics on the root layout layer */
    padding: 40px 0 !important; 
    overflow-y: auto !important; 
    -webkit-overflow-scrolling: touch !important;
    
    opacity: 0; 
    transition: opacity 0.4s ease; 
    pointer-events: auto;
}

/* 2. ISOLATED WINDOW BODY HOUSING */
.promo-isolated-viewport-window {
    position: relative !important; 
    background: #ffffff !important; 
    padding: 0 !important;
    max-width: 900px !important; 
    width: 95% !important;
    border-radius: 8px !important; 
    box-shadow: 0px 20px 50px rgba(0,0,0,0.5) !important;
    display: block !important; 
    z-index: 99999999 !important;
    
    /* FIX: Prevent window inner constraints from competing with outer scroll trackers */
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    margin: 0 auto !important;
}

/* 3. STRUCTURE AND INTERNAL PANEL DESIGN PARAMETERS */
.promo-isolated-asymmetric-split { 
    display: flex !important; 
    width: 100% !important; 
    height: auto !important; 
}

.promo-graphics-branding-panel { 
    position: relative; 
    z-index: 10; 
    width: 45%; 
    min-height: 560px; /* Maintains beautiful desktop proportions */
    overflow: hidden; 
    display: block; 
}

.promo-graphics-backdrop {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center;
    background-image: linear-gradient(180deg, rgba(64,197,117,0.2) 0%, rgba(20,21,26,0.95) 85%), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=800&q=80');
}

.promo-badge-node { display: inline-block; padding: 4px 10px; font-size: 10px; font-weight: 700; text-transform: uppercase; border-radius: 3px; color: #fff; margin-bottom: 12px; width: max-content; }
.promo-branding-header { font-family: 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.promo-branding-desc { font-family: 'Mulish', sans-serif; font-size: 0.85rem; color: #cdced4; line-height: 1.5; }

/* FIX: Ensure the form panel extends to its full footprint rather than generating nested scrollbars */
.promo-form-capture-panel { 
    padding: 40px 35px 35px 35px !important; 
    display: flex !important; 
    flex-direction: column !important; 
    justify-content: center; 
    background: #ffffff !important; 
    width: 55% !important; 
    max-height: none !important;
    overflow: visible !important;
    position: relative !important; 
    z-index: 20 !important; 
}

/* COMPONENT FORM INPUT ELEMENTS Styles */
.core-form-input-box {
    width: 100%; padding: 10px; border: 1px solid #dcdfe6; border-radius: 4px; color: #14151a; transition: all 0.2s ease;
}
.core-form-input-box:focus {
    outline: none; border-color: #40C575; box-shadow: 0 0 0 2px rgba(64,197,117,0.15);
}
.core-form-input-box.input-error-state {
    border-color: #f56c6c !important; background-color: #fff8f8 !important; box-shadow: 0 0 0 2px rgba(245,108,108,0.15) !important;
}

/* EMBEDDED INLINE TENURE TOGGLE STYLES */
.promo-inline-label-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; width: 100%; }
.promo-toggle-container { display: flex; background: #eef1f5; border-radius: 4px; padding: 2px; border: 1px solid #dcdfe6; height: 22px; width: 95px; }
.promo-toggle-btn { flex: 1; text-align: center; padding: 0; font-size: 9px; font-weight: 800; text-transform: uppercase; color: #7a7e8c; cursor: pointer; border-radius: 2px; transition: all 0.15s ease; border: none; background: transparent; line-height: 18px; }
.promo-toggle-btn.active-unit { background: #ffffff; color: #14151a; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

/* FLOATING CLOSE BUTTON DESIGN SCHEMA */
#close-promo-lightbox-btn {
    position: absolute !important; top: 15px !important; right: 20px !important;
    z-index: 999999999 !important; background: #efefef !important; color: #14151a !important;
    border: none !important; border-radius: 50% !important; font-size: 26px !important;
    font-weight: bold !important; width: 38px !important; height: 38px !important;
    cursor: pointer !important; display: flex !important; align-items: center !important;
    justify-content: center !important; line-height: 1 !important; padding: 0 !important;
    margin: 0 !important; pointer-events: auto !important; box-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
}

#promo-mobile-calculations-container {
    display: none !important;
}

/* ==========================================================================
   enquiry light box MOBILE BREAKPOINT LAYOUT ADAPTATIONS
   ========================================================================== */
@media (max-width: 768px) {
    .promo-modal-backdrop {
        padding: 20px 0 !important; /* Slightly tighter top buffer optimized for smaller smartphone screens */
    }
    .promo-isolated-viewport-window { 
        width: 92% !important; 
    }
    .promo-isolated-asymmetric-split { 
        flex-direction: column !important; 
    }
    .promo-graphics-branding-panel { 
        display: none !important; 
    }
    .promo-form-capture-panel { 
        width: 100% !important; 
        padding: 40px 20px 25px 20px !important; 
    }
    #close-promo-lightbox-btn { 
        top: 10px !important; 
        right: 10px !important; 
        width: 34px !important; 
        height: 34px !important; 
        font-size: 22px !important; 
    }
    #promo-mobile-calculations-container {
        display: block !important;
    }
}






































/* Dotted Background Styling */
        .about-section {
            background-color: #ffffff;
            background-image: radial-gradient(#d1d1d1 1px, transparent 1px);
            background-size: 25px 25px;
            padding: 100px 0;
            overflow: hidden;
        }

        /* Image and Frame Styling */
        .image-wrapper {
            position: relative;
            margin-right: 40px;
            margin-bottom: 40px;
            border: 4px solid #ff7e5f;
            padding: 15px;
            display: inline-block;
        }

        .experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #212529;
    color: #fff;
    padding: 15px 20px;
    width: auto; /* Adjusted to fit content */
    display: flex;
    align-items: center;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    margin-right: 12px; /* Space between 14 and text */
    line-height: 1;
}

.experience-badge .text-small {
    font-size: 0.8rem; /* Smaller text size */
    line-height: 1.2;
    display: block;
    width: 80px; /* Forces text to wrap onto two lines */
    text-align: left;
}

        /* Header styling */
.custom-header {
    color: #000000; /* Force black color */
    font-weight: 800;
}

/* Gradient Link styling */
.gradient-link {
    /* Create the gradient */
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    
    /* Clip the background to the text */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* Make the text transparent so the gradient shows through */
    color: transparent;
    
    /* Remove default link underline */
    text-decoration: none;
    
    /* Transition for hover effects */
    transition: opacity 0.3s ease;
}

.gradient-link:hover {
    opacity: 0.8;
}
        /* Content Styling */
        .accent-line {
            width: 60px;
            border: 3px solid #ff7e5f;
            opacity: 1;
            margin: 15px 0;
        }

        .play-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff7e5f, #feb47b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }





/* our services section start here*/
/* our services section start here*/
/* our services section start here*/

/* Section provides the deep background */
        .services-section {
            background-color: #f5f2f0;
            padding: 80px 0;
        }

        .services-section .section-title-line { width: 50px; height: 3px; background: #ff6b4a; margin-top: 8px; }
        
        .services-section .service-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            padding: 25px;
            height: 240px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        .services-section .service-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

        .services-section .service-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ff6b4a;
            transition: width 0.4s ease;
        }
        .service-card:hover::after { width: 100%; }

        .services-section .icon-box { font-size: 2.5rem; color: #ff6b4a; margin-bottom: 15px; }
        .services-section .service-card h5 { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; color: #000; }
        .services-section .service-card p { color: #666; font-size: 0.85rem; }
        
        .services-section .arrow-icon { font-size: 1.2rem; color: #ff6b4a; align-self: flex-start; }
        
        .services-section .swiper-pagination { text-align: left !important; position: relative !important; margin-top: 25px !important; }
        .services-section .swiper-pagination-bullet-active { background: #ff6b4a !important; }

        .services-section .view-all-btn { background-color: #ff6b4a; color: white; padding: 8px 25px; border-radius: 0; font-weight: 600; border: none; }
        .services-section .view-all-btn:hover { background-color: #e55a3a; color: white; }

    /* our services section end here*/
    /* our services section end here*/
    /* our services section end here*/




    /* Online process section start here*/
    /* Online process section start here*/
    /* Online process section start here*/

        /* Increased padding by 20px (50px -> 70px) */
        .process-section { 
            padding: 70px 0; 
            background: linear-gradient(180deg, #ffffff 0%, #f4f7f6 100%);
        }

        .custom-container { max-width: 1000px; }
        
        .gradient-text {
    background: linear-gradient(90deg, #ff5722, #ff9800);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

        .divider {
            width: 70px;
            height: 3px;
            background-color: #ff5722;
            margin: 10px auto 30px auto;
        }

        .step-container { position: relative; }
        
        .step-circle {
            width: 100px; height: 100px; border: 2px dashed #ff5722;
            border-radius: 50%; display: flex; align-items: center;
            justify-content: center; margin: 0 auto 15px;
            position: relative; background: #ffffff; z-index: 2;
        }

        .icon-bg {
            width: 70px; height: 70px; background-color: #fff0eb;
            border-radius: 50%; display: flex; align-items: center;
            justify-content: center; color: #ff5722; font-size: 1.5rem;
        }

        .step-number {
            position: absolute; top: 0; right: 5px; background: #212529;
            color: white; font-size: 0.75rem; padding: 1px 8px; border-radius: 50%;
        }

        .step-text h5 { font-weight: 700; color: #333; margin-bottom: 5px; }
        .step-text p { color: #6c757d; font-size: 0.9rem; line-height: 1.4; padding: 0 10px; }

        .arrow-wrap {
            position: absolute; top: 40px; left: 75%; width: 50%; height: 80px; z-index: 1; pointer-events: none;
        }

        @media (max-width: 991px) { .arrow-wrap { display: none; } }

/* Online process section end here*/
/* Online process section end here*/
/* Online process section end here*/    




/* Counter section start here*/
/* Counter section start here*/
/* Counter section start here*/
    .stats-section {
        font-family: "Montserrat", sans-serif;
  background: linear-gradient(90deg, #ff5722, #ff9800), 
              url('https://media.licdn.com/dms/image/sync/v2/D5627AQGoFVCybi2MGQ/articleshare-shrink_800/articleshare-shrink_800/0/1716334906946?e=2147483647&v=beta&t=Kh6FMNQeYBD8yqy-UMpKIlbKk3RB21bSDhoqBTf0QJ8');
  background-blend-mode: multiply; /* Blends the gradient with the image */
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  color: white;
}

/* Add shadow to the numbers and text */
.stats-section h2, 
.stats-section p, 
.stats-section i {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.display-3 {
  font-weight: 900; /* Extra bold for impact */
  margin-bottom: 0.2rem;
}

.stats-section p {
  font-weight: 700; /* Bold for the labels */
  font-size: 1.1rem;
}

.stats-section i {
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
}

.stats-section .col-md-3:hover i {
  transform: scale(1.2); /* Subtle hover effect for icons */
}
/* Hide on mobile portrait mode */
@media (max-width: 767px) {
  .stats-section {
    display: none !important;
  }
}

/* Ensure it shows on larger screens */
@media (min-width: 768px) {
  .stats-section {
    display: block;
  }
}
/* Counter section end here*/
/* Counter section end here*/
/* Counter section end here*/



 :root { --accent-color: #ff7f50; }
        
      
        .testimonial-container { max-width: 950px; margin: 80px auto; padding: 0 20px; position: relative; }
        .testimonial-container::before {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-image: url('images/world-map.png'); /* Ensure this path is correct */
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        opacity: 0.3; /* Subtlety control */
        z-index: -1;
        pointer-events: none;
}
        
        /* Header Styling */
        .underline { width: 60px; height: 3px; background: var(--accent-color); margin-top: 10px; margin-bottom:0px; }
        

        /* Card Styling */
        .card-custom { border: 0px solid #eee; padding: 0px; height: 100%; transition: 0.3s; margin:0px; }
        .quote-start { font-size: 3rem; line-height: 0.5; color: var(--accent-color); margin-right: 15px; }
        .rating { color: #ffc107; font-size: 0.9rem; }
        
        /* Swiper Fixes */
        .swiper { padding: 40px 10px; }
        .swiper-pagination-bullet-active { background: var(--accent-color) !important; }

























        /* Increased width for a wider layout */
        .insights-section { max-width: 1200px; margin: 0 auto; }
        
        .insights-section .header-section { margin-bottom: 4rem; }
        .insights-section .section-label { color: #ff5722; font-weight: 700; letter-spacing: 1px; font-size: 0.9rem; text-transform: uppercase; }
        .insights-section .main-heading { font-weight: 800; color: #222; font-size: 2.5rem; margin-top: 10px; }

        .insights-section .insight-cordinator { background: linear-gradient(90deg, #ff5722, #ff9800); width: 50px; height: 3px; margin: 20px 0; }
        /* Larger Image Wrapper */
        .insights-section .image-wrapper { 
            position: relative; 
            width: 100%; 
            padding-top: 100%; 
            overflow: hidden; 
            border: 0px solid #eee;
            border-radius: 0px;
        }
        .insights-section .card-img-top { 
            position: absolute; top: 0; left: 0; 
            width: 100%; height: 100%; 
            object-fit: cover; 
            padding: 60px 20px 0 20px;
        }

        /* Larger Date Badge */
        .insights-section .date-badge {
            position: absolute; top: 20px; left: 0px; width: 75px; height: 75px;
            background: linear-gradient(90deg, #ff5722, #ff9800);
            color: white; text-align: center; padding-top: 15px; font-size: 1.1rem; font-weight: 700; z-index: 10;
        }
        .insights-section .date-badge .month { font-size: 0.8rem; font-weight: 400; display: block; }

        .insights-section  .gradient-dash { display: inline-block; width: 30px; height: 3px; background: linear-gradient(90deg, #ff5722, #ff9800); margin-right: 10px; vertical-align: middle; }
        .insights-section .category { font-size: 0.85rem; font-weight: 700; color: #555; text-transform: uppercase; margin-top: 1.5rem; }
        .insights-section .card-title { font-weight: 700; font-size: 1.3rem; margin-top: 10px; color: #222; line-height: 1.4; padding-left: 20px;  }
        
        .insights-section .read-more {
            display: inline-block; margin-top: 10px; font-weight: 700; font-size: 1rem; text-decoration: none;
            background: linear-gradient(90deg, #ff5722, #ff9800);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; padding-left: 20px;
        }























        /* Logo Slider Styles */
        .logo-marquee { 
            overflow: hidden; 
            width: 100%; 
            background: transparent; 
            padding: 20px 0; 
        }

        .marquee-track { display: flex; gap: 80px; animation: scroll 20s linear infinite; white-space: nowrap; }
        .partner-logo { height: 50px; width: auto; filter: grayscale(100%); opacity: 0.6; transition: 0.3s; }
        .partner-logo:hover { filter: grayscale(0%); opacity: 1; }
        @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
















         .footer {
  background-color: #1a1a1a !important; /* Dark background */
}

.footer a:hover {
  color: #198754 !important; /* Bootstrap success green on hover */
}

.footer input::placeholder {
  color: #444;
}

.footer .btn-success {
  background-color: #198754;
  border: none;
}















/* Gradient background for buttons and icons */
.btn-gradient, .icon-circle {
    background: linear-gradient(90deg, #ff9a44 0%, #fc6076 100%);
}

.icon-circle {
    width: 60px;
    height: 60px;
    min-width: 60px; /* Forces the width to stay 60px */
    flex-shrink: 0;  /* Prevents the circle from squishing */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

/* Input field styling */
.form-control {
    background-color: #f8f9fa;
    border: none;
}

.form-control:focus {
    box-shadow: none;
    border-bottom: 2px solid #fc6076;
}

.btn-gradient {
    border: none;
    font-weight: bold;
}
.contact-box{
    padding-left: 20px;
}

.contact-map {
  width: 100vw;       /* Sets width to 100% of the viewport width */
  margin-left: calc(50% - 50vw); /* Centers it if inside a restricted width parent */
  margin-right: calc(50% - 50vw);
  padding: 0;
}

.contact-map iframe {
  display: block;     /* Removes bottom whitespace gap */
  width: 100%;
}










/* ==========================================================================
   Career Page custome design
   ========================================================================== */
       #ausn-career {
  position: relative;
  overflow: hidden; /* Prevents unwanted scrollbars from the overflow */
  padding-bottom: 0px; 
}



/* Container for the circle */
#ausn-career .circle-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
  background-color: #f0ede5;
  border-radius: 50%;
  margin: 0 auto;
  bottom: -50px; /* Moves the circle down by 50px */
}

/* Position the image to start from the bottom */
#ausn-career .circle-wrapper img {
  position: absolute;
  bottom: 0; /* Aligns image to the bottom of the circle */
  left: 50%;
  transform: translateX(-50%);
  width: 90%; 
  height: auto;
  object-fit: cover;
}
/* Custom button styling */
#ausn-career .btn-success {
  background-color: #2d5a49;
  border: none;
}
@media (max-width: 768px) {
  #ausn-career .circle-wrapper {
    width: 300px;
    height: 300px;
    margin-top: 30px; /* Adds space between text and image on mobile */
  }
}





#career-why {
  padding: 60px 0;
}

/* Remove default button background and border */
#career-why .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: #000 !important;
  box-shadow: none !important;
}

#career-why .accordion-button:focus {
  box-shadow: none !important;
}

/* Ensure consistent borders */
#career-why .accordion-item {
  border: none !important;
  border-bottom: 1px solid #dee2e6 !important;
}
/* Rotate the standard bootstrap arrow */
#career-why .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e");
}

#career-why .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}




#career-form .bg-light {
  background-color: #f8f9fa !important;
}

#career-form .form-control:focus {
  box-shadow: none;
  border: 1px solid #234739;
}

#career-form .cursor-pointer {
  cursor: pointer;
}

/* Ensure the background stays dark throughout the section */
#career-form {
  min-height: 100vh;
}
#career-form label[for="cv-upload"] {
  display: flex !important;
  align-items: center;
  padding: 10px;
  background-color: #f8f9fa;
  border: 1px dashed #ced4da;
  border-radius: 5px;
  width: 100%;
}

#career-form label[for="cv-upload"]:hover {
  background-color: #e9ecef;
}
.form-control-custom {
  background-color: #f8f9fa; /* Light grey background */
  border: 1px solid #ced4da; /* The visible borderline */
  padding: 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Hover effect */
.form-control-custom:hover {
  border-color: #adb5bd;
}

/* Focus effect (When user clicks inside) */
.form-control-custom:focus,
.form-control-custom:active {
  border-color: #234739; /* Matches your brand color */
  box-shadow: 0 0 0 0.25rem rgba(35, 71, 57, 0.15); /* Soft highlight */
  outline: none;
}

/* Ensure the file label reacts to the same focus state as the others */
#cv-upload:focus + label {
  border-color: #234739;
  box-shadow: 0 0 0 0.25rem rgba(35, 71, 57, 0.15);
}


























































@media (max-width: 575.98px) {
    .hero-asymmetric-split-grid {
        gap: 15px !important; /* Reduce gap significantly on smallest screens */
    }
    
    .hero-workspace-section-fullscreen {
        padding: 40px 15px !important; /* Ensure side padding exists */
    }
}