/* =======================================================
   JINDAL SAXENA FINANCIAL SERVICES
   Luxury Corporate Design System — style.css
   ======================================================= */

/* -------------------------------------------------------
   1. Design Tokens & Root Variables
------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-navy: #0B1F3A;
    /* Midnight Navy */
    --color-steel: #0F5EA8;
    /* Steel Blue */
    --color-gold: #D4AF37;
    /* Metallic Gold */
    --color-gold-dark: #B38728;
    /* Dark Gold */
    --color-slate: #5C6B7C;
    /* Muted Slate */
    --color-bg: #F8FAFC;
    /* Clean Base Bg */
    --color-white: #FFFFFF;

    /* Luxury Gradients */
    --gradient-luxury: linear-gradient(135deg, #0B1F3A 0%, #0F3060 50%, #0F5EA8 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #B38728 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.95) 100%);
    --gradient-glass-dark: linear-gradient(135deg, rgba(11, 31, 58, 0.9) 0%, rgba(15, 48, 96, 0.95) 100%);

    /* Shadows */
    --shadow-premium: 0 20px 50px rgba(11, 31, 58, 0.05);
    --shadow-hover: 0 30px 70px rgba(11, 31, 58, 0.12);
    --shadow-glass: 0 20px 40px rgba(11, 31, 58, 0.08);
    --shadow-inset: inset 0 2px 4px rgba(255, 255, 255, 0.1);

    /* Borders */
    --border-premium: 1px solid rgba(11, 31, 58, 0.06);
    --border-glass: 1px solid rgba(255, 255, 255, 0.6);
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);

    /* Transitions & Radius */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-premium: 1.25rem;
    --radius-pill: 999px;

    /* Bootstrap Overrides */
    --bs-primary: #0B1F3A;
    --bs-primary-rgb: 11, 31, 58;
    --bs-secondary: #0F5EA8;
    --bs-secondary-rgb: 15, 94, 168;
    --bs-body-bg: #F8FAFC;
    --bs-body-font-family: 'Poppins', sans-serif;
}

/* -------------------------------------------------------
   2. Reset & Typography
------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-navy);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-navy);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gold {
    color: var(--color-gold) !important;
}

.lead {
    font-size: 1rem;
    color: #e4e5e7;
    font-weight: 400;
    line-height: 1.8;
}

/* -------------------------------------------------------
   3. Premium Structural Dividers & Spacing
------------------------------------------------------- */
section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.bg-navy-section {
    background: var(--gradient-luxury);
    color: var(--color-white);
}

.bg-navy-section h2,
.bg-navy-section h3,
.bg-navy-section h4,
.bg-navy-section h5,
.bg-navy-section h6 {
    color: var(--color-white);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    display: inline-block;
}

.section-header h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

/* -------------------------------------------------------
   4. Glassmorphism & Luxury Cards
------------------------------------------------------- */
.luxury-card {
    background: var(--color-white);
    border: var(--border-premium);
    border-radius: var(--radius-premium);
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* .luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
} */

/* .luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
} */

.luxury-card:hover::before {
    opacity: 1;
}

/* Glassmorphism version */
.glass-panel {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--border-glass);
    border-radius: var(--radius-premium);
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
}

.glass-panel-dark {
    background: rgba(11, 31, 58, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-premium);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    color: var(--color-white);
    transition: var(--transition-smooth);
}

/* Card Image Wrappers */
.card-img-wrap {
    position: relative;
    border-radius: calc(var(--radius-premium) - 0.25rem);
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 16 / 10;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.luxury-card:hover .card-img-wrap img {
    transform: scale(1.08);
}

/* -------------------------------------------------------
   5. Interactive Buttons & Badges
------------------------------------------------------- */
.btn-premium {
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.95rem 2.25rem;
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-premium-solid {
    background: var(--gradient-luxury);
    color: var(--color-white) !important;
    box-shadow: 0 10px 25px rgba(11, 31, 58, 0.15);
}

.btn-premium-solid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-premium-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
}

.btn-premium-solid:hover::after {
    opacity: 1;
}

.btn-premium-gold {
    background: var(--gradient-gold);
    color: var(--color-navy) !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.btn-premium-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    filter: brightness(1.05);
}

.btn-premium-outline {
    background: transparent;
    border: 2px solid var(--color-navy);
    color: var(--color-navy) !important;
}

.btn-premium-outline:hover {
    background: var(--color-navy);
    color: var(--color-white) !important;
    transform: translateY(-3px);
}

.btn-premium-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--color-white) !important;
}

.btn-premium-outline-light:hover {
    background: var(--color-white);
    color: var(--color-navy) !important;
    border-color: var(--color-white);
    transform: translateY(-3px);
}

/* Feature chips / tags */
.luxury-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.15rem;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-pill);
    color: var(--color-gold-dark);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* -------------------------------------------------------
   6. Navigation Redesign (Header)
------------------------------------------------------- */
.site-header {
    background: rgba(255, 255, 255, 0.993) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(11, 31, 58, 0.05);
    transition: var(--transition-smooth);
    z-index: 1050;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    /* background: #2125295e !important; */

}

.site-header.scrolled {
    padding: 0.35rem 0;
    box-shadow: 0 10px 40px rgba(11, 31, 58, 0.06);
    background: rgba(255, 255, 255, 0.95) !important;
}

.brand-mark {
    width: 48px;
    height: 48px;
    background: var(--gradient-luxury);
    border-radius: 12px !important;
    box-shadow: 0 8px 16px rgba(11, 31, 58, 0.15);
}

.navbar-brand .brand-title {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--color-navy);
}

.navbar-brand small {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-navy) !important;
    padding: 0.75rem 1.15rem !important;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-steel) !important;
    background: rgba(15, 94, 168, 0.05);
}

.dropdown-menu {
    border: 1px solid rgba(11, 31, 58, 0.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 15px 40px rgba(11, 31, 58, 0.08) !important;
    padding: 0.5rem !important;
    background: rgba(255, 255, 255, 0.98);
}

.dropdown-item {
    font-weight: 500;
    padding: 0.65rem 1.25rem !important;
    border-radius: 10px !important;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background-color: rgba(11, 31, 58, 0.04) !important;
    color: var(--color-steel) !important;
}

/* -------------------------------------------------------
   7. Premium Hero Overhauls
------------------------------------------------------- */
.hero-section {
    padding: 10rem 0 8rem;
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
    color: var(--color-white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.94) 0%, rgba(11, 31, 58, 0.8) 50%, rgba(15, 94, 168, 0.65) 100%);
    z-index: 1;
}

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

.hero-section h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.hero-section .eyebrow-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

/* Glowing Ambient Blur Blobs */
.hero-blur-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.25;
}

.blob-blue {
    background: #0056b3;
    top: 15%;
    left: 10%;
}

.blob-gold {
    background: #d4af37;
    bottom: 20%;
    right: 15%;
}

/* Pro UI - Yield Calculator Widget */
.capital-calc-card {
    background: rgba(11, 31, 58, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    color: var(--color-white);
    position: relative;
    z-index: 3;
}

.capital-calc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(212, 175, 55, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.calc-slider-group {
    margin-bottom: 1.75rem;
}

.calc-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.calc-slider-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calc-slider-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.12);
    padding: 0.2rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.calc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    transition: background 0.3s;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-gold);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: transform 0.2s;
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-results-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 2rem;
}

.calc-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-result-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.calc-result-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.calc-result-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-white);
}

.calc-result-value.highlight {
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

/* Floating Layered Badges */
.hero-floating-card {
    position: absolute;
    background: rgba(11, 31, 58, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: heroFloat 6s ease-in-out infinite;
}

.floating-card-1 {
    top: -20px;
    left: -30px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: -15px;
    right: -20px;
    animation-delay: 3s;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Rating Badge Row */
.rating-badge-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    display: none;
}

.rating-stars {
    color: var(--color-gold);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.rating-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}


/* Page Hero Inner Pages */
.page-hero {
    position: relative;
    padding: 9rem 0 2rem;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.85) 100%);
    z-index: 1;
}

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

.page-hero h1 {
    font-size: clamp(1.7rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--color-white);
}

/* -------------------------------------------------------
   8. Icons & Micro-Features
------------------------------------------------------- */
.luxury-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 94, 168, 0.08);
    color: var(--color-steel);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.luxury-card:hover .luxury-icon {
    background: var(--gradient-gold);
    color: var(--color-navy);
    transform: rotateY(180deg);
}

/* -------------------------------------------------------
   9. Statistics Panel & Counters
------------------------------------------------------- */
.counter-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-premium);
    padding: 2.5rem 1.5rem;
    transition: var(--transition-smooth);
    height: 100%;
}

.counter-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.counter-card h3 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--color-gold) !important;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* -------------------------------------------------------
   10. Elegant Timeline Redesign (About Page)
------------------------------------------------------- */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-navy), var(--color-steel), var(--color-gold));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 3.5rem 3rem 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding: 0 0 3rem 3.5rem;
    text-align: left;
}

.timeline-item::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 1.75rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-navy);
    border: 4px solid var(--color-white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.4);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:nth-child(even)::after {
    right: auto;
    left: -12px;
}

.timeline-item:hover::after {
    background: var(--color-gold);
    transform: scale(1.2);
}

.timeline-year {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    margin-bottom: 0.5rem;
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-pill);
}

.timeline-content {
    background: var(--color-white);
    border: var(--border-premium);
    box-shadow: var(--shadow-premium);
    padding: 2rem;
    border-radius: var(--radius-premium);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.25);
}

/* -------------------------------------------------------
   11. Accordion Overhauls (FAQ)
------------------------------------------------------- */
.accordion-item {
    border: var(--border-premium) !important;
    border-radius: var(--radius-premium) !important;
    margin-bottom: 1.25rem;
    overflow: hidden;
    background: var(--color-white);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.accordion-item:hover {
    box-shadow: 0 15px 30px rgba(11, 31, 58, 0.04);
    border-color: rgba(15, 94, 168, 0.2) !important;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.4rem 1.75rem;
    color: var(--color-navy) !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--color-steel) !important;
    background: rgba(15, 94, 168, 0.02) !important;
}

.accordion-body {
    padding: 0 1.75rem 1.5rem;
    font-size: 0.95rem;
    color: var(--color-slate);
    line-height: 1.75;
}

/* -------------------------------------------------------
   12. Testimonial Card Styling
------------------------------------------------------- */
.testimonial-card {
    border-top: 4px solid var(--color-gold) !important;
    padding: 2.5rem !important;
    position: relative;
}

.testimonial-card::after {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 2.5rem;
    color: rgba(11, 31, 58, 0.04);
    pointer-events: none;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-steel);
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(15, 94, 168, 0.15);
    flex-shrink: 0;
}

.testimonials-swiper {
    padding-top: 10px;
}

/* -------------------------------------------------------
   13. Premium Newsletter & Contact Overhauls
------------------------------------------------------- */
.newsletter-section {
    background: #f8fafc;
}

.newsletter-card {
    background: var(--gradient-luxury);
    border-radius: var(--radius-premium);
    padding: 4rem 3rem;
    box-shadow: 2px 4px 20px rgba(11, 31, 58, 0.25);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-card h3 {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.newsletter-form {
    max-width: 550px;
    margin: 2rem auto 0;
}

.newsletter-form .form-control {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white) !important;
    padding: 1.1rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
}

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

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
    box-shadow: none;
}

.newsletter-form .btn-premium {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    padding: 0 1.75rem;
    height: auto;
}



/* -------------------------------------------------------
   14. Premium Footer Overhaul
------------------------------------------------------- */
.site-footer {
    background: #050D1A !important;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    border-top: 4px solid var(--color-gold) !important;
    padding-top: 4rem;
}

.site-footer h5,
.site-footer h6 {
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 1.75rem;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gold) !important;
    transform: translateX(4px);
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links a:hover {
    background: var(--gradient-gold);
    color: var(--color-navy) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: .5rem 0;
    margin-top: 2rem;
}

.footer-bottom p.text-muted {
    color: #ffffff73 !important;
}

/* -------------------------------------------------------
   15. SVG Curves, Badges & Decorative Elements
------------------------------------------------------- */
.svg-divider {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.svg-divider-bottom {
    bottom: -1px;
}

.svg-divider-top {
    top: -1px;
}

.svg-divider fill {
    fill: var(--color-bg);
}

.svg-divider-navy fill {
    fill: #0B1F3A;
}

.badge-premium {
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--color-gold);
    color: var(--color-navy);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Back to Top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    background: var(--color-navy);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white) !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.back-to-top:hover {
    background: var(--color-gold);
    color: var(--color-navy) !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Toast */
.form-toast {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 1050;
    background: var(--color-navy);
    border-left: 5px solid var(--color-gold);
    box-shadow: 0 25px 60px rgba(11, 31, 58, 0.25);
    color: var(--color-white);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-toast.show {
    transform: translateY(0);
}

.form-toast i {
    font-size: 1.25rem;
    color: var(--color-gold);
}

.form-toast {
    display: none;
}

/* Glassy Why Choose Us Section & Cards */
.glass-choose-card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 18px !important;
    padding: 2.5rem 2rem !important;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
    position: relative;
    overflow: hidden;
}

.glass-choose-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1.2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(212, 175, 55, 0.25) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.glass-choose-card:hover {
    transform: translateY(-8px) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(212, 175, 55, 0.35) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25) !important;
}

.glass-choose-card .luxury-icon {
    background: rgba(212, 175, 55, 0.12) !important;
    color: var(--color-gold) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    margin-left: 0 !important;
}

.glass-choose-card:hover .luxury-icon {
    background: var(--gradient-gold) !important;
    color: var(--color-navy) !important;
    transform: rotateY(180deg) scale(1.1) !important;
}

.glass-choose-card h3 {
    color: var(--color-white) !important;
    font-weight: 700;
}

.glass-choose-card p {
    color: rgba(255, 255, 255, 0.72) !important;
}

/* Redesigned Services Section Overrides */
.services-overview-card {
    background: var(--color-white) !important;
    border: var(--border-premium) !important;
    border-radius: 20px !important;
    padding: 0 !important;
    box-shadow: var(--shadow-premium) !important;
    transition: var(--transition-smooth) !important;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.services-overview-card .card-img-wrap {
    margin-bottom: 0 !important;
    border-bottom: 1px solid rgba(11, 31, 58, 0.05);
    border-radius: 20px 20px 0 0 !important;
    position: relative;
}

.services-overview-card .services-content-wrap {
    padding: 2.25rem 2rem 2.5rem;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Category Label Badge */
.services-category-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 10;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-white);
    background: rgba(11, 31, 58, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Overlapping Icon box */
.services-overview-card .luxury-icon {
    position: absolute;
    top: -32px;
    right: 2rem;
    z-index: 10;
    margin-bottom: 0 !important;
    background: var(--color-white) !important;
    color: var(--color-steel) !important;
    border: 1.5px solid rgba(11, 31, 58, 0.06) !important;
    box-shadow: 0 10px 25px rgba(11, 31, 58, 0.1) !important;
}

.services-overview-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-hover) !important;
    border-color: rgba(212, 175, 55, 0.25) !important;
}

.services-overview-card:hover .luxury-icon {
    background: var(--gradient-gold) !important;
    color: var(--color-navy) !important;
    border-color: var(--color-gold) !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25) !important;
}

.services-overview-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-navy);
}

.services-overview-card p {
    font-size: 0.88rem;
    color: var(--color-slate);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.services-overview-card .link-arrow {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
}

/* -------------------------------------------------------
   Our Process — Premium Stepper Timeline
------------------------------------------------------- */
.process-journey {
    background: var(--gradient-luxury);
    position: relative;
    overflow: hidden;
}

.process-journey::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 80% 30%, rgba(15, 94, 168, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.process-journey .section-label {
    color: var(--color-gold);
}

.process-journey h2 {
    color: var(--color-white);
}

.process-journey p.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Connector row wrapper */
.process-stepper {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

/* Horizontal connecting line between steps */
.process-stepper::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.65) 50%, rgba(212, 175, 55, 0.15) 100%);
    z-index: 0;
}

/* Individual step column */
.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 1rem;
    z-index: 1;
}

/* Number circle */
.process-step-num {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    position: relative;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.process-step-num::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.process-step:hover .process-step-num {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--color-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transform: scale(1.08);
}

.process-step:hover .process-step-num::after {
    border-color: rgba(212, 175, 55, 0.5);
    transform: rotate(90deg);
}

.process-step-num .step-digit {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

/* Icon below number */
.process-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.process-step:hover .process-step-icon {
    background: var(--gradient-gold);
    color: var(--color-navy);
    border-color: var(--color-gold);
    transform: rotate(-6deg) scale(1.1);
}

/* Text Content */
.process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.6rem;
}

.process-step p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
    margin-bottom: 0;
}

/* -------------------------------------------------------
   Leadership Message — Premium Redesign
------------------------------------------------------- */
.leadership-message-pro {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.leadership-message-pro .hero-overlay {
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.96) 0%, rgba(11, 31, 58, 0.92) 50%, rgba(15, 94, 168, 0.88) 100%);
}

/* Quote Card */
.leader-quote-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.leader-quote-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(160deg, rgba(212, 175, 55, 0.3) 0%, rgba(255, 255, 255, 0.06) 60%, rgba(212, 175, 55, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.leader-quote-mark {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.35;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    z-index: 0;
    font-family: Georgia, serif;
}

.leader-quote-body {
    position: relative;
    z-index: 1;
}

.leader-quote-body h2 {
    color: var(--color-white);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.leader-quote-body p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* Author Signature */
.leader-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.leader-sig-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-navy);
    flex-shrink: 0;
}

.leader-sig-info strong {
    display: block;
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.95rem;
}

.leader-sig-info span {
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Stat Ring Cards */
.stat-ring-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.stat-ring-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(160deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.stat-ring-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-ring-indicator {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    transition: var(--transition-smooth);
}

.stat-ring-indicator::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
}

.stat-ring-card:hover .stat-ring-indicator {
    border-color: var(--color-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.stat-ring-card:hover .stat-ring-indicator::before {
    border-color: rgba(212, 175, 55, 0.4);
    transform: rotate(120deg);
}

.stat-ring-indicator .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.stat-ring-card .stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin-bottom: 0;
}


.leadership-values .lead {
    color: #444444;
}

/* Premium Contact Page Overrides */
.contact-form-section {
    position: relative;
    overflow: hidden;
    background: #F8FAFC !important;
}

.premium-input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.premium-input-group .form-control {
    border: 1px solid rgba(11, 31, 58, 0.08) !important;
    background: #F8FAFC !important;
    padding: 1rem 1.25rem 1rem 2.85rem !important;
    border-radius: 12px !important;
    font-size: 0.93rem !important;
    color: var(--color-navy) !important;
    transition: var(--transition-smooth) !important;
    position: relative;
    z-index: 2;
}

.premium-input-group textarea.form-control {
    padding-top: 1rem !important;
    min-height: 120px;
}

.premium-input-group .input-icon-wrapper {
    position: absolute;
    top: 1rem;
    left: 1.15rem;
    z-index: 5;
    font-size: 0.95rem;
    color: var(--color-slate);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.premium-input-group textarea~.input-icon-wrapper {
    top: 1.25rem;
}

.premium-input-group .form-control:focus {
    border-color: var(--color-gold) !important;
    background: var(--color-white) !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.08) !important;
}

.premium-input-group:focus-within .input-icon-wrapper i {
    color: var(--color-gold) !important;
    transform: scale(1.15);
}

/* Next Step Process List (Left Column) */
.next-step-list {
    margin-top: 2rem;
    position: relative;
    padding-left: 0.5rem;
}

.next-step-item {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 2rem;
}

.next-step-item::before {
    content: '';
    position: absolute;
    left: 1.1rem;
    top: 2.2rem;
    bottom: -1.5rem;
    width: 2px;
    background: rgba(11, 31, 58, 0.06);
}

.next-step-item:last-child::before {
    display: none;
}

.next-step-badge {
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(11, 31, 58, 0.04);
    border: 1.5px solid rgba(11, 31, 58, 0.08);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.next-step-item:hover .next-step-badge {
    background: var(--gradient-gold);
    border-color: var(--color-gold);
    color: var(--color-navy);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
}

.next-step-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-navy);
}

.next-step-item p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--color-slate);
    line-height: 1.6;
}

.map-section {
    padding: 0 !important;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #505050;
    text-decoration: none;
    background-color: #ffffff;
}