:root {
    --pmjs-blue: #0d6efd;
    --light-purple: #f8f4ff;
    --deep-purple: #5a2d82;
    --accent-purple: #e9d5ff;
}

* {
    cursor: none;
}

.text-dark {
    color: #2c3e50 !important;
}

html,
body {
    width: 100%;
    position: relative;
}

.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 99999999;
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--pmjs-blue);
}

.cursor-outline {
    width: 35px;
    height: 35px;
    border: 1px solid var(--pmjs-blue);
    backdrop-filter: blur(3px);
    background: #068efd20;
}

.cursor-hover .cursor-outline {
    width: 40px;
    height: 40px;
    background: rgba(var(--pmjs-blue), 0.05);
    border-color: rgba(var(--pmjs-blue), 0.8);
}

.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(1.5);
}

a,
button,
.service-item,
.nav-link {
    cursor: none;
}

@media(max-width: 768px) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }
}

.btn-gradient-pmjs {
    background: linear-gradient(45deg, var(--pmjs-blue), #6f42c1);
    color: white;
    border: none;
    transition: 0.4s;
}

.btn-gradient-pmjs:hover {
    background: linear-gradient(45deg, #6f42c1, var(--pmjs-blue));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

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

.bg-light-purple {
    background-color: var(--light-purple) !important;
}

.topbar {
    height: 36px;
}

.nav-bar {
    height: 54px;
}

.header-carousel {
    height: calc(100vh - 90px);
    overflow: hidden;
}

@media (max-width: 991px) {
    .nav-bar {
        height: 64px;
    }

    .header-carousel {
        height: calc(100vh - 64px);
        overflow: hidden;
    }
}

@media (max-width: 576px) {
    .nav-bar {
        height: 54px;
    }

    .header-carousel {
        height: calc(100vh - 54px);
        overflow: hidden;
    }
}

/* Card Styling */
.plan-card {
    transition: 0.5s;
    border: 1px solid var(--accent-purple);
}

.plan-card:hover {
    border-color: var(--pmjs-blue);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(111, 66, 193, 0.1) !important;
}

.icon-box-purple {
    width: 80px;
    height: 80px;
    background: var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 20px;
    color: var(--pmjs-blue);
}


/* kyc-style  */

#kyc-style {

    /* Scoped classes to prevent conflicts */
    .pmjs-kyc-wrapper {
        font-family: 'Poppins', sans-serif;
        --kyc-blue: #5a2d82;
        --kyc-accent: #5a2d82;
        --kyc-red: #0d6efd;
        /* Deep Red for buttons */
        --kyc-bg-light: #f8f9fa;
        --kyc-text: #333;
    }

    /* Hero Section */
    .pmjs-kyc-breadcrumb {
        background: linear-gradient(rgba(78, 0, 179, 0.9), rgba(97, 13, 253, 0.9)), url("../img/bg-breadcrumb.jpg");
        background-size: cover;
        background-position: center;
        padding: 80px 0;
        text-align: center;
        color: white;
        margin-bottom: 50px;
    }

    /* Intro Box */
    .pmjs-kyc-intro {
        font-size: 0.9rem;
        line-height: 1.8;
        color: #444;
        border-left: 5px solid #5a2d82;
        background-color: #f9f9f9;
        padding: 25px;
        border-radius: 0 8px 8px 0;
        margin-bottom: 50px;
        /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
    }

    /* Titles */
    .pmjs-kyc-title {
        color: #5a2d82;
        font-weight: 700;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.5rem;
    }

    /* --- RED BUTTONS SECTION (NEW) --- */
    .pmjs-red-btn {
        display: block;
        width: 30%;
        background-color: var(--kyc-red);
        color: white;
        padding: 15px 20px;

        font-size: 1.1rem;
        font-weight: 500;
        text-align: left;
        margin-bottom: 10px;
        border: none;
        border-radius: 4px;
        text-decoration: none;
        transition: background 0.3s;
    }

    .pmjs-red-btn:hover {
        background-color: #0056b3;
        /* Darker red on hover */
        color: white;
    }

    .pmjs-downloads-header {
        font-size: 1.5rem;
        font-weight: 700;
        color: #000;
        margin-bottom: 20px;
    }

    /* SHARED CARD STYLE */
    .pmjs-kyc-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
        border: 1px solid #eef0f3;
        border-radius: 12px;
        padding: 18px 25px;
        margin-bottom: 15px;
        transition: all 0.3s ease;
        text-decoration: none !important;
        color: #333;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    }

    .pmjs-kyc-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(13, 110, 253, 0.1);
        border-color: #5a2d82;
        color: #0056b3;
    }

    /* Icon Circle */
    .pmjs-kyc-icon-circle {
        width: 45px;
        height: 45px;
        background-color: #eef4ff;
        color: #5a2d82;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: 0.3s;
        flex-shrink: 0;
    }

    .pmjs-kyc-card:hover .pmjs-kyc-icon-circle {
        background-color: #0d6efd;
        color: white;
    }

    /* Text Styles */
    .pmjs-kyc-info {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-grow: 1;
    }

    .pmjs-kyc-name {
        font-weight: 600;
        font-size: 1.05rem;
        display: block;
    }

    .pmjs-kyc-subtext {
        font-size: 0.85rem;
        color: #888;
        font-weight: 400;
    }

    .pmjs-kyc-arrow {
        color: #ccc;
        transition: 0.3s;
    }

    .pmjs-kyc-card:hover .pmjs-kyc-arrow {
        color: #0d6efd;
        transform: translateX(5px);
    }
}



/* health-insurance-style */
/* Brand Colors */
.text-pmjs-blue {
    color: #0d6efd !important;
}

.bg-light-purple {
    background-color: #f8f4ff !important;
}

.border-purple-subtle {
    border-color: #e9d5ff !important;
}

/* Updated Coverage Cards */
.coverage-card {
    transition: all 0.3s ease;
    border: 1px solid #e9d5ff;
    /* Soft purple border */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.1) !important;
    border-color: #0d6efd;
    /* Brand Blue on hover */
}

.coverage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: #0d6efd;
    /* Logo Blue */
}

/* Gradient Button */
.btn-brand-gradient {
    background: linear-gradient(45deg, #0d6efd, #6f42c1);
    color: white;
    border: none;
}

.btn-brand-gradient:hover {
    background: linear-gradient(45deg, #6f42c1, #0d6efd);
    color: white;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);

}

/* FAQ Customization */
.accordion-button:not(.collapsed) {
    background-color: #f8f4ff;
    color: #0d6efd;
}






/* Brand Colors matching PMJS Logo */
.text-pmjs-blue {
    color: #0d6efd !important;
}

.bg-light-purple {
    background-color: #f8f4ff !important;
}

/* The Gradient Button with White Text */
.btn-brand-gradient {
    background: linear-gradient(45deg, #0d6efd, #6f42c1) !important;
    color: #ffffff !important;
    /* Forces text to white */
    border: none !important;
    transition: 0.3s ease-in-out;
    font-weight: 600;
}

.btn-brand-gradient:hover {
    background: linear-gradient(45deg, #6f42c1, #0d6efd) !important;
    color: #ffffff !important;
    /* Keeps text white on hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.2);
}

/* Image Accent styling */
.img-health-container {
    background-color: #f8f4ff;
    border-bottom: 5px solid #0d6efd;
    padding: 20px;
}



/* gallery styles */
:root {
    /* Unique Brand Palette: Deep Velvet & Electric Azure */
    --velvet-regal: #5a2d82;
    /* Your primary purple */
    --azure-depth: #0a58ca;
    /* Your primary blue */
    --mist-ethereal: #e7f1ff;
    /* Light blue accent */
    --canvas-tint: #f8f9fa;
    /* Background gray */
    --shadow-ink: rgba(90, 45, 130, 0.15);
    /* Tinted shadow */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--canvas-tint);
    color: #333;
}

/* --- Hero Section --- */
.gallery-header {
    background: linear-gradient(135deg, var(--azure-depth) 0%, var(--velvet-regal) 100%);
    padding: 80px 0 100px;
    color: white;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: -50px;
}

/* --- Filter Buttons --- */
.filter-container {
    position: relative;
    z-index: 10;
    background: white;
    display: inline-flex;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 15px 35px var(--shadow-ink);
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    border: none;
    background: transparent;
    color: #666;
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--velvet-regal);
    color: white;
    box-shadow: 0 8px 20px rgba(90, 45, 130, 0.3);
}

/* --- Masonry Layout --- */
.gallery-grid {
    column-count: 3;
    column-gap: 24px;
}

@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        column-count: 1;
    }
}

/* --- Image Item Styling --- */
.gallery-item {
    position: relative;
    margin-bottom: 24px;
    border-radius: 20px;
    /* Slightly rounder for a modern look */
    overflow: hidden;
    break-inside: avoid;
    transform: translateZ(0);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
    cursor: zoom-in;
    background: white;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Hover Caption Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.tag-badge {
    font-size: 0.7rem;
    background: var(--velvet-regal);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}


/* financial style */
:root {
    /* Unique Brand Palette: Royal Amethyst & Arctic Frost */
    --amethyst-depth: #7f1eb7;
    /* Primary Purple */
    --amethyst-glow: rgba(127, 30, 183, 0.15);
    /* Soft highlight */
    --arctic-foundation: #f8faff;
    /* Background */
    --frost-edge: #e0e7ff;
    /* Border/Hover light blue */
    --obsidian-soft: #333333;
    /* Main Text */
    --slate-quiet: #6c757d;
    /* Muted Text */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--arctic-foundation);
    color: var(--obsidian-soft);
    -webkit-font-smoothing: antialiased;
}

.nav-pills .nav-link.active {
    border-color: var(--amethyst-depth);
}

/* --- Calculator Card --- */
.calculator-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* --- Slider & Label Styling --- */
.form-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--obsidian-soft);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.amount-badge {
    background-color: var(--amethyst-glow);
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--amethyst-depth);
    min-width: 90px;
    text-align: center;
    border: 1px solid rgba(127, 30, 183, 0.1);
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: #edf2f7;
    outline: none;
    margin: 20px 0;
}

/* Thumb (Handle) Styling */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--amethyst-depth);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px var(--amethyst-glow);
}

/* --- Chart Wrapper --- */
.chart-wrapper {
    position: relative;
    height: 240px;
    width: 240px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
}

.chart-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    line-height: 1.2;
}

.chart-center-text .total-label {
    font-size: 0.9rem;
    color: var(--slate-quiet);
    display: block;
}

.chart-center-text .total-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--amethyst-depth);
}


/* term and condition style */
:root {
    --brand-primary: #0d6efd;
    --brand-dark: #0a58ca;
    --brand-accent: #e7f1ff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --brand-primary: #652695;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand-primary) !important;
}

/* .nav-link {
    font-weight: 500;
    color: var(--text-dark);
} */

.nav-link:hover,
.nav-link.active {
    color: var(--brand-primary);
}


.hero-section {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}


.shape {
    position: absolute;
    opacity: 0.1;
    background: white;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20px;
    left: 10%;
}


.features-section {
    padding: 80px 0;
    background-color: #fff;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
    border-color: var(--brand-primary);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--brand-accent);
    color: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.feature-card:hover .icon-circle {
    background: var(--brand-primary);
    color: white;
}


.split-section {
    padding: 80px 0;
    background-color: var(--brand-accent);
}

.content-img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.check-list i {
    color: var(--brand-primary);
    margin-right: 15px;
    font-size: 1.2rem;
}


.cta-section {
    background-color: var(--brand-dark);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.btn-light-custom {
    background: white;
    color: var(--brand-primary);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light-custom:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}


.form-section {
    padding: 80px 0;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--brand-primary);
}

.form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.form-control:focus {
    background-color: white;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
    border-color: var(--brand-primary);
}












:root {
    --deep-purple: #5a2d82;
    --light-purple: #f8f4ff;
    --accent-purple: #e9d5ff;
    --main-blue: #0d6efd;
}

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

.bg-light-purple {
    background-color: var(--light-purple) !important;
}


.mf-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid var(--accent-purple);
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.05);
    transition: all 0.4s ease;
}

.mf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(111, 66, 193, 0.15);
    border-color: var(--deep-purple);
}

.mf-icon-box {
    width: 70px;
    height: 70px;
    background: var(--light-purple);
    color: var(--deep-purple);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.mf-card:hover .mf-icon-box {
    background: var(--deep-purple);
    color: #fff;
}


.cta-glass {
    background: linear-gradient(135deg, rgba(248, 244, 255, 0.9), rgba(233, 213, 255, 0.4));
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-purple);
    border-radius: 30px;
}


.btn-purple {
    background-color: var(--deep-purple);
    color: white;
    border-radius: 50px;
}

.btn-purple:hover {
    background-color: #48236a;
    color: white;
}


.text-purple-accent {
    color: #6f42c1 !important;
}

.text-blue-main {
    color: #16243d !important;
}

.bg-light-purple {
    background-color: #f8f4ff !important;
}

.btn-blue-purple {
    background: linear-gradient(45deg, #0d6efd, #6f42c1);
    color: white;
    border: none;
    transition: 0.4s;
}

.btn-blue-purple:hover {
    background: linear-gradient(45deg, #6f42c1, #0d6efd);
    color: white;
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.3);
    transform: translateY(-2px);
}



/* index page styles */

/* 1. DYNAMIC REAL-IMAGE BACKGROUNDS */
.header-carousel-item {
    height: calc(100vh - 90px);
    /* min-height: 800px; */
    position: relative;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.slide-1 {
    background-image: linear-gradient(to right, rgba(1, 33, 84, 0.9) 30%, rgba(13, 110, 253, 0.2)),
        url("../img/carousel/mf.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slide-2 {
    background-image: linear-gradient(to left, rgba(1, 33, 84, 0.9) 30%, rgba(13, 110, 253, 0.2)),
        url("../img/carousel/li.png");
}

.slide-3 {
    background-image: linear-gradient(to left, rgba(1, 33, 84, 0.9) 30%, rgba(13, 110, 253, 0.2)),
        url("../img/carousel/ci.png");
}

/* 2. GLASS CONTENT CARD (Aesthetic Blur) */
.glass-hero-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 50px 80px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.glass-hero-box:hover {
    box-shadow: 0 70px 100px rgba(0, 0, 0, 0.5);
}

/* 3. PREMIUM TYPOGRAPHY */
.hero-title {
    font-weight: 900;
    font-size: clamp(2.6rem, 5vw, 4.5rem) !important;
    line-height: 1;
    letter-spacing: -2px;
    color: #ffffff;
    margin-bottom: 30px;
}

.glass-hero-box p {
    font-size: 1.25rem;
    font-weight: 200;
    color: #e0e7ff;
    line-height: 1.5;
}

.glass-hero-box h4 {
    background: linear-gradient(45deg, #ffffff, #60a5fa);
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.accent-text {
    background: linear-gradient(45deg, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* 4. INTERACTIVE BUTTONS */
.btn-premium {
    background: #ffffff;
    color: #012154;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #ffffff;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

/* More pronounced floating animation for the larger scale */
@keyframes float-xl {
    0% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-35px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(-1deg);
    }
}

.ls-3 {
    letter-spacing: 3px;
}

.app-content h2 {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ENHANCED FEATURE CARDS */
.feature-item {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 30px !important;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(1, 33, 84, 0.05);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(1, 33, 84, 0.12);
    border-color: transparent;
}

/* Icon Container - Larger and more colorful */
.feature-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: 0.5s;
}

/* Specific Aesthetic Colors for each Icon */
.col-xl-3:nth-child(1) .feature-icon i {
    color: #6366f1;
}

/* Blue */
.col-xl-3:nth-child(2) .feature-icon i {
    color: #6366f1;
}

/* Gold */
.col-xl-3:nth-child(3) .feature-icon i {
    color: #6366f1;
}

/* Indigo */
.col-xl-3:nth-child(4) .feature-icon i {
    color: #6366f1;
}

/* Emerald */

.feature-item:hover .feature-icon {
    background: #010515;
    transform: rotateY(180deg);
}

.feature-item:hover .feature-icon i {
    color: #ffffff !important;
}

/* Larger Text for Larger Cards */
.feature-item h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #012154;
    margin-bottom: 20px;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: justify;
    color: #6c757d;
}

@media (max-width: 1192px) {

    .feature-item {
        background: #ffffff;
        border-radius: 30px;
        padding: 30px 20px !important;
        min-height: 360px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(1, 33, 84, 0.05);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    }


    .feature-item h4 {
        font-size: 1.25rem;
    }
}


.text-purple {
    color: #6f42c1 !important;
}

.bg-purple {
    background-color: #6f42c1 !important;
}

.bg-light-purple {
    background-color: #f3e5f5 !important;
}

.border-purple {
    border-color: #6f42c1 !important;
}

.text-gold {
    color: #6f42c1 !important;
}

.bg-light-gold {
    background-color: #fff9e6 !important;
}

/* Custom icon styling */
.icon-box {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.text-purple-deep {
    color: #5a2d82 !important;
}

.bg-light-purple {
    background-color: #f8f4ff !important;
}

.accordion-button:not(.collapsed) {
    background-color: #f0e6ff !important;
    color: #5a2d82 !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    border-color: #d1b3ff !important;
    box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.25) !important;
}

.accordion-item {
    border: 1px solid #e9d5ff !important;
    margin-bottom: 10px;
    border-radius: 12px !important;
    overflow: hidden;
}

/* Purple Theme Accents */
.text-purple-deep {
    color: #5a2d82 !important;
}

.bg-purple-deep {
    background-color: #5a2d82 !important;
}

.btn-purple {
    background-color: #6f42c1;
    color: white;
    border: none;
}

.btn-purple:hover {
    background-color: #5a2d82;
    color: white;
}

/* Team Card Aesthetic */
.team-item {
    transition: 0.5s;
    border: 1px solid #e9d5ff;
    /* Light purple border */
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

.team-item:hover {
    background: #f8f4ff !important;
    /* Light purple background on hover */
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.15);
    transform: translateY(-5px);
}

.team-title {
    border-top: 3px solid #e9d5ff;
    transition: 0.5s;
    min-height: 110px;
}

.team-title p {
    font-size: 0.9rem;
    color: #efefef;
}

.team-item:hover .team-title {
    border-top: 3px solid #6f42c1;
    /* Deep purple line on hover */
}

.owl-carousel,
.testimonial {
    display: block !important;

}


/* Mobile Optimization for Slide 1 Background */
@media (max-width: 768px) {
    .glass-hero-box {
        padding: 30px 20px;
        margin: 0 10px;
        border-radius: 20px;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        transition: all 0.4s ease;
    }

    .hero-title {
        font-size: 1.8rem;
        word-break: normal;
        overflow-wrap: break-word;
    }
}


@media (max-width: 991px) {
    .header-carousel-item {
        height: calc(100vh - 54px) !important;
        padding-top: 0px;
    }
}

@media (max-width: 576px) {
    .glass-hero-box p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .carousel-btn-group {
        gap: 0px !important;
    }

    .glass-hero-box h4 {
        font-size: 1.1rem !important;
    }

    .glass-hero-box .carousel-btn-group .btn {
        display: block;
        width: 100%;
        margin: 10px auto 0;
        padding: 5px 25px;
        font-size: 0.8rem !important;
    }
}



/* social-mdeia styles */
#social-media-class .hero-header {
    /* background: linear-gradient(rgba(13, 110, 253, 0.85), rgba(13, 110, 253, 0.8)), */
    /* url("../img/bg-breadcrumb.jpg") center center no-repeat; */
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 3rem;
    padding-block: 8rem !important;
}


#social-media-class .social-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 4px solid #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}


#social-media-class .social-icon-wrapper {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 32px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


#social-media-class .sc-linkedin {
    border-top-color: #0077b5;
}

#social-media-class .sc-linkedin .social-icon-wrapper {
    background: rgba(0, 119, 181, 0.1);
    color: #0077b5;
}

#social-media-class .sc-youtube {
    border-top-color: #FF0000;
}

#social-media-class .sc-youtube .social-icon-wrapper {
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
}

#social-media-class .sc-instagram {
    border-top-color: #bc1888;
}

#social-media-class .sc-instagram .social-icon-wrapper {
    background: rgba(188, 24, 136, 0.1);
    color: #bc1888;
}

#social-media-class .sc-twitter {
    border-top-color: #000;
}

#social-media-class .sc-twitter .social-icon-wrapper {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

#social-media-class .sc-facebook {
    border-top-color: #1877F2;
}

#social-media-class .sc-facebook .social-icon-wrapper {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

#social-media-class .sc-whatsapp {
    border-top-color: #25D366;
}

#social-media-class .sc-whatsapp .social-icon-wrapper {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

#social-media-class .social-handle {
    font-weight: 700;
    color: #444;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
}

#social-media-class .btn-follow {
    margin-top: 10px;
    padding: 10px 30px;
    border-radius: 50px;
    border: 2px solid #eee;
    background: #f8f9fa;
    font-weight: 700;
    transition: all 0.3s ease;
    color: #555;
    font-size: 0.8rem;
    text-transform: uppercase;
}


#social-media-class .social-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

#social-media-class .social-card:hover h4,
#social-media-class .social-card:hover p,
#social-media-class .social-card:hover .social-handle,
#social-media-class .social-card:hover .social-icon-wrapper {
    color: #fff !important;
}

#social-media-class .social-card:hover .social-icon-wrapper {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(360deg);
}

#social-media-class .social-card:hover .btn-follow {
    background: #fff;
    border-color: #fff;
    color: #333;
}

#social-media-class .sc-linkedin:hover {
    background: #0077b5;
}

#social-media-class .sc-youtube:hover {
    background: #FF0000;
}

#social-media-class .sc-twitter:hover {
    background: #000;
}

#social-media-class .sc-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

#social-media-class .sc-facebook:hover {
    background: #1877F2;
}

#social-media-class .sc-whatsapp:hover {
    background: #25D366;
}



/* mf form style */


/* Modern Typography & Layout */
#mf-form-style {
    background-color: #f8f9fa;
    padding-bottom: 50px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Page Header */
#mf-form-style .page-header {
    background: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

#mf-form-style .page-title {
    font-weight: 700;
    color: #1a202c;
}

/* Sidebar Styling to match Image */
.sidebar-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #003366;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    margin-bottom: 8px;
    border-radius: 8px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #edf2f7;
}

.sidebar-link i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

/* Active State (Blue in image 2, Red in image 3) */
.sidebar-link.active {
    background: #007bff;
    /* Matching the blue in image 2 */
    color: #fff;
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* Main Card Styling */
.download-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Info Note Alert */
.info-note {
    background: #e1f0ff;
    border-left: 4px solid #007bff;
    padding: 15px 20px;
    border-radius: 6px;
    color: #004085;
    font-size: 0.95rem;
}

/* Form Label Styling */
.form-label {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 10px;
}

.form-select-lg {
    border-radius: 12px;
    border: 1px solid #cbd5e0;
    font-size: 1rem;
    padding: 12px;
}


/* Download Button to match Image 2 */
.btn-download {
    background: #007bff;
    color: white;
    padding: 12px 40px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-download:hover {
    transform: translateY(-2px);
    background: #0069d9;
}


#mfIframe {
    width: 100%;
    height: 480px;


    overflow: hidden;
}



#mf {
    --deep-purple: #5a2d82;
    --light-purple: #f8f4ff;
    --accent-purple: #e9d5ff;
    --main-blue: #0d6efd;
}

#mf .text-purple-deep {
    color: var(--deep-purple) !important;
}

#mf .bg-light-purple {
    background-color: var(--light-purple) !important;
}

#mf .mf-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid var(--accent-purple);
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.05);
    transition: all 0.4s ease;
}

#mf .mf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(111, 66, 193, 0.15);
    border-color: var(--deep-purple);
}

#mf .mf-icon-box {
    width: 70px;
    height: 70px;
    background: var(--light-purple);
    color: var(--deep-purple);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: 0.4s;
}

#mf .mf-card:hover .mf-icon-box {
    background: var(--deep-purple);
    color: #fff;
}

#mf .cta-glass {
    background: linear-gradient(135deg, rgba(248, 244, 255, 0.9), rgba(233, 213, 255, 0.4));
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-purple);
    border-radius: 30px;
}

#mf .btn-purple {
    background-color: var(--deep-purple);
    color: white;
    border-radius: 50px;
}

#mf .btn-purple:hover {
    background-color: #48236a;
    color: white;
}

#mf .text-purple-accent {
    color: #6f42c1 !important;
}

#mf .text-blue-main {
    color: #16243d !important;
}

#mf .btn-blue-purple {
    background: linear-gradient(45deg, #0d6efd, #6f42c1);
    color: white;
    border: none;
    transition: 0.4s;
}

#mf .btn-blue-purple:hover {
    background: linear-gradient(45deg, #6f42c1, #0d6efd);
    color: white;
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.3);
    transform: translateY(-2px);
}

#career-style {
    --brand-primary: #6314f8;
    --brand-dark: #0a58ca;
    --brand-light: #e7f1ff;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
}

#career-style body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #f8f9fa;
}

/* --- Hero Section --- */
#career-style .career-hero {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#career-style .hero-circles {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

#career-style .circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

#career-style .circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

/* --- Culture Section --- */
#career-style .culture-icon-box {
    width: 70px;
    height: 70px;
    background: var(--brand-light);
    color: var(--brand-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

#career-style .culture-card:hover .culture-icon-box {
    background: var(--brand-primary);
    color: white;
    transform: rotateY(180deg);
}

/* --- Job Listings --- */
#career-style .job-card {
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#career-style .job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.1);
    border-color: var(--brand-primary);
}

#career-style .job-badge {
    background: var(--brand-light);
    color: var(--brand-primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

#career-style .apply-btn-sm {
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    background: transparent;
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 25px;
    transition: all 0.3s;
}

#career-style .apply-btn-sm:hover {
    background: var(--brand-primary);
    color: white;
}

/* --- Application Form --- */
#career-style .form-section {
    background-color: white;
    padding: 80px 0;
}

#career-style .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    border: 1px solid #eee;
}

#career-style .form-control:focus {
    background-color: white;
    border-color: var(--brand-primary);
    box-shadow: none;
}

#career-style .file-upload-wrapper {
    position: relative;
    height: 150px;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfdfd;
    transition: all 0.3s;
}

#career-style .file-upload-wrapper:hover {
    border-color: var(--brand-primary);
    background: var(--brand-light);
}

#client {
    --sapphire-foundation: #012154;
    --orchid-surge: #5a2d82;
    --crystal-glaze: rgba(255, 255, 255, 0.9);
    --aero-mist: #f4f7fa;
    --luxe-shadow: rgba(1, 33, 84, 0.12);

    font-family: 'Outfit', sans-serif;
    background-color: var(--aero-mist);
    color: #2d3436;
}

/* --- Client Card --- */
#client .client-card {
    background: #ffffff;
    border: none;
    border-radius: 28px;
    padding: 55px 35px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 12px 35px var(--luxe-shadow);
    height: 100%;
}

#client .client-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--sapphire-foundation);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: -1;
    border-radius: 28px;
}

#client .client-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 70px rgba(1, 33, 84, 0.25);
}

#client .client-card:hover::before {
    height: 100%;
}

/* --- Icon --- */
#client .icon-wrapper {
    width: 95px;
    height: 95px;
    background: #f0f7ff;
    color: var(--orchid-surge);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 38px;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s;
}

#client .client-card:hover .icon-wrapper {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    transform: rotateY(180deg) scale(1.1);
}

/* --- Text --- */
#client .client-name {
    font-weight: 800;
    color: var(--sapphire-foundation);
    margin-bottom: 12px;
    transition: color 0.4s;
    letter-spacing: -0.2px;
}

#client .client-card:hover .client-name {
    color: #ffffff;
}

#client .industry-badge {
    display: inline-block;
    background: #edf2f7;
    color: #718096;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    transition: all 0.4s;
}

#client .client-card:hover .industry-badge {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
}

/* --- Why Us Section --- */
#client .why-us-section {
    padding: 120px 0;
    background: #ffffff;
}

#client .feature-box {
    padding: 45px;
    border-radius: 32px;
    background: var(--aero-mist);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

#client .feature-box:hover {
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

#client .big-number {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(1, 33, 84, 0.05);
    user-select: none;
}

#client .icon-circle {
    width: 75px;
    height: 75px;
    background: var(--sapphire-foundation);
    color: #ffffff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 30px;
    box-shadow: 0 12px 24px rgba(1, 33, 84, 0.22);
}

.footer {
    background-color: #0d1b2a;
}

.footer p,
.footer span,
.footer address {
    color: rgba(246, 240, 240, 0.87) !important;
}

.footer a:hover {
    color: #3498db !important;
}

.footer-btn .btn-md-square {
    background-color: #f0f5fb;
    color: #0061da;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-btn .btn-md-square:hover {
    background-color: #0061da;
    color: #ffffff;
}

.footer-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-item a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-item a i {
    color: inherit;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

/* .dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
} */

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}

/*** Navbar End ***/

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--bs-primary);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    display: none;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}


/*** Carousel Hero Header End ***/

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Modern Service Cards Start ***/

.service .service-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Equal Height Images */
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    height: 250px;
    min-height: 250px;
}

.service .service-item .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service .service-item:hover .service-img img {
    transform: scale(1.08);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(1, 95, 201, 0.5),
            rgba(1, 95, 201, 0.08));
    opacity: 0;
    transition: 0.4s ease;
}

.service .service-item:hover .service-img::after {
    opacity: 1;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: all 0.5s ease;
}

.service .service-item:hover .service-img .service-icon {
    background: var(--bs-primary);
    transform: rotate(-8deg) scale(1.05);
}

.service .service-item:hover .service-img .service-icon i {
    color: #fff;
    transform: rotateY(360deg);
}

.service .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.service .service-content .service-content-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service .service-content .h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
    transition: 0.3s ease;
    text-decoration: none;
    line-height: 1.4;
}

.service .service-item:hover .service-content .h4 {
    color: var(--bs-primary);
}

.service .service-content p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 15px;
}

.service .service-content .btn {
    align-self: flex-start;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.service .service-content .btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .service .service-item .service-img {
        height: 220px;
        min-height: 220px;
    }
}

@media (max-width: 576px) {
    .service .service-item .service-img {
        height: 200px;
        min-height: 200px;
    }

    .service .service-content {
        padding: 24px;
    }
}

/*** Modern Service Cards End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}

/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}

/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
    display: none;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
    display: none;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }

    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }

    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 25px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/*** copyright end ***/


/* app section */

.app-section {
    /* background: linear-gradient(135deg, var(--bs-primary), #6366f1); */
    background: linear-gradient(145deg, var(--bs-purple) 0%, #4138c2 50%, #0d6efd 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.app-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

.app-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 20px 0;
}

.download-btn img {
    height: 50px;
    transition: transform 0.3s ease;
}

.download-btn img:hover {
    transform: scale(1.05);
}

.phone-mockup {
    position: relative;
    max-width: 480px;
    margin: auto;
}

.phone-mockup img {
    width: 100%;
    border-radius: 30px;
    filter:
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25)) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
}


@media (max-width: 768px) {
    .app-section {
        text-align: center;
        padding: 60px 20px;
    }

    .app-content h1 {
        font-size: 2.2rem;
    }

    .download-btn {
        justify-content: center;
    }

    .phone-mockup {
        position: relative;
        max-width: 340px;
        margin: auto;
    }
}

@media (max-width: 576px) {
    .floating-phone-large {
        max-width: 320px !important;
    }
}


/* navbar updation */

.navbar-nav {
    border-radius: 30px !important;
    background: transparent !important;
}

@media (max-width: 991px) {
    .navbar-nav {
        background: rgba(255, 255, 255, 0.925) !important;
        backdrop-filter: blur(12px);
    }

    .dropdown-menu {
        border: none;
        border-radius: 14px;
        box-shadow: none !important;
        padding: 10px;
        background-color: transparent !important;
    }
}


@media (max-width: 768px) {
    .navbar-nav {
        border-radius: 8px !important;
    }
}

/* chart js */

.chart-container {
    position: relative;
    width: 100%;
    height: 400px;
}

@media (max-width: 768px) {
    .chart-container {
        height: 280px;
    }
}


/* custom classes */

.text-justify {
    text-align: justify;
}

.text-srs {
    color: #015FC9;
}







/* --- Custom Dropdown (Tan Background / Red Highlight) --- */
.custom-dropdown-menu {
    background-color: #dcb276;
    /* The Tan/Gold color */
    border: none;
    padding: 0;
    border-radius: 0;
    min-width: 240px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
    /* Slight gap for cleaner look */
}

/* Dropdown Links */
/* .custom-dropdown-menu .dropdown-item {
    color: #000;
    padding: 12px 50px;
    font-size: 12px !important;
    border-bottom: 1px dotted #fff;
    transition: all 0.2s ease-in-out;
} */

/* Remove border from last item */
/* .custom-dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
} */

/* Hover & Active State (Red Background) */
/* .custom-dropdown-menu .dropdown-item:hover,
.custom-dropdown-menu .dropdown-item:focus {
    background-color: #dc3545;
    color: #fff;
    padding-left: 25px;
} */

/* --- Unified Navbar Pill Container --- */
/* This makes the whole menu look like one grey "bar" */
.navbar-pill-container {
    background-color: #f3f4f6;
    /* Light grey background */
    /* border-radius: 50px;       Round pill shape */
    padding: 5px 25px;
    /* Padding inside the pill */
    display: flex;
    align-items: center;
}

/* Top Level Links (Home, About, Investor Zone, etc.) */
.navbar-nav .nav-link {
    font-weight: 600;
    color: #333 !important;
    /* Dark text */
    font-size: 16px;
    margin: 0 8px;
    /* Spacing between words */
    padding: 8px 0;
    /* Vertical padding */
    position: relative;
}

/* Hover color for top level links */
.navbar-nav .nav-link:hover {
    color: #0d6efd !important;
    /* Blue on hover */
}

/* Style the Dropdown Arrow */
.dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 5px;
}

/* 4. INTERACTIVE BUTTONS */
.btn-premium {
    background: #ffffff;
    color: #012154;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #ffffff;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

.min-vh-75 {
    min-height: 75vh;
}

.floating-phone-large {
    max-width: 420px;
    /* Bigger phone image to fill the extra height */
    filter: drop-shadow(0 50px 80px rgba(0, 0, 0, 0.5));
    /* Deeper shadow for 3D effect */
    animation: float-xl 7s ease-in-out infinite;
    transition: transform 0.5s ease;
}

/* More pronounced floating animation for the larger scale */
@keyframes float-xl {
    0% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-35px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(-1deg);
    }
}

.ls-3 {
    letter-spacing: 3px;
}

.app-content h2 {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Background "Glow" for the left side to add depth */
.app-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.text-purple {
    color: #6f42c1 !important;
}

.bg-purple {
    background-color: #6f42c1 !important;
}

.bg-light-purple {
    background-color: #f3e5f5 !important;
}

.border-purple {
    border-color: #6f42c1 !important;
}

.text-gold {
    color: #6f42c1 !important;
}

.bg-light-gold {
    background-color: #fff9e6 !important;
}

/* Custom icon styling */
.icon-box {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.text-purple-deep {
    color: #5a2d82 !important;
}

.bg-light-purple {
    background-color: #f8f4ff !important;
}

.accordion-button:not(.collapsed) {
    background-color: #f0e6ff !important;
    color: #5a2d82 !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    border-color: #d1b3ff !important;
    box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.25) !important;
}

.accordion-item {
    border: 1px solid #e9d5ff !important;
    margin-bottom: 10px;
    border-radius: 12px !important;
    overflow: hidden;
}

/* Purple Theme Accents */
.text-purple-deep {
    color: #5a2d82 !important;
}

.bg-purple-deep {
    background-color: #5a2d82 !important;
}

.btn-purple {
    background-color: #6f42c1;
    color: white;
    border: none;
}

.btn-purple:hover {
    background-color: #5a2d82;
    color: white;
}

/* Team Card Aesthetic */
.team-item {
    transition: 0.5s;
    border: 1px solid #e9d5ff;
    /* Light purple border */
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

.team-item:hover {
    background: #f8f4ff !important;
    /* Light purple background on hover */
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.15);
    transform: translateY(-5px);
}

/* testimonial style */
#testimonial-class {
    .testimonial-item {
        margin: 15px;
        /* Spacing between cards */
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
        transition: 0.5s;
    }

    .testimonial-item:hover {
        background: #ffffff !important;
        box-shadow: 0 0 30px rgba(13, 110, 253, 0.1);
    }

    .testimonial-carousel .owl-nav {
        position: absolute;
        top: -100px;
        right: 0;
        display: flex;
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        width: 45px;
        height: 45px;
        background: var(--bs-primary);
        color: #fff;
        border-radius: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 15px;
        transition: 0.5s;

    }

    .testimonial-carousel .owl-nav .owl-prev:hover,
    .testimonial-carousel .owl-nav .owl-next:hover {
        background: #1a2c4e;
    }


    :root {
        --primary-gradient: linear-gradient(135deg, #0d6efd 0%, #1a2c4e 100%);
    }

    .testimonial-section {
        background: #f8f9fa;
        position: relative;
        overflow: hidden;
    }

    /* Modern Card Design */
    .testimonial-item {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 20px !important;
        margin: 20px 10px;
        padding: 30px !important;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
    }

    .testimonial-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        border-color: #0d6efd;
    }



    .testimonial-img img {
        object-fit: cover;
        height: 100%;
    }

    /* Quote Icon Accent */
    .testimonial-item::before {
        content: "\f10e";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 2rem;
        color: rgba(13, 110, 253, 0.1);
    }

    /* Typography */
    .testimonial-content h4 {
        font-weight: 700;
        letter-spacing: -0.5px;
    }

    .testimonial-content p.text-muted {
        font-style: italic;
        line-height: 1.7;
    }

    /* Custom Carousel Navigation */
    .testimonial-carousel .owl-nav {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        width: 50px;
        height: 50px;
        background: #fff !important;
        color: #0d6efd !important;
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-carousel .owl-nav .owl-prev:hover,
    .testimonial-carousel .owl-nav .owl-next:hover {
        background: var(--primary-gradient) !important;
        color: #fff !important;
    }
}

#tax {
    /* 1. HERO SECTION WITH PARALLAX */


    /* 2. MODERN SERVICE CARDS */
    .service-item {
        background: #fff;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }


    .hero-header {
        /* background: linear-gradient(rgba(13, 110, 253, 0.85), rgba(13, 110, 253, 0.8)), */
        /* url("../img/bg-breadcrumb.jpg") center center no-repeat; */
        background-size: cover;
        background-attachment: fixed;
        /* Parallax Effect */
        margin-bottom: 3rem;
        padding-block: 8rem !important;
    }

    /* Hover: Lift & Glow */
    .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
        border-color: rgba(13, 110, 253, 0.2);
    }

    /* Hover: Gradient Bottom Line */
    .service-item::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #0d6efd, #0dcaf0);
        bottom: 0;
        left: 0;
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .service-item:hover::after {
        transform: scaleX(1);
    }

    /* Icon Square styling */
    .btn-square {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    /* 3. COMPARISON TABLE STYLING */
    .table-container {
        border-radius: 15px;
        overflow: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .table thead th {
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.9rem;
        border: none;
    }

    /* Highlight the Recommended Column */
    .highlight-col {
        background-color: #f8faff !important;
        border-left: 2px solid #0d6efd;
        border-right: 2px solid #0d6efd;
        position: relative;
    }

    /* 4. CTA BOX */
    .cta-box {
        background: linear-gradient(45deg, #0d6efd, #0a58ca);
        position: relative;
        overflow: hidden;
    }


    .text-secondary {
        color: #6f42c1;
    }

}


/* retirement saving style */

#retirement-saving {

    /* Brand Colors */
    .text-pmjs-blue {
        color: #0d6efd !important;
    }

    .bg-lavender {
        background-color: #f8f4ff !important;
    }

    /* Premium Retirement Card */
    .card-retirement {
        border: none;
        border-top: 5px solid #6f42c1;
        /* Purple Top Border */
        transition: 0.3s;
    }

    .card-retirement:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(111, 66, 193, 0.1) !important;
    }

    /* Gradient Button with FORCED White Text */
    .btn-brand-gradient {
        background: linear-gradient(45deg, #0d6efd, #6f42c1) !important;
        color: #ffffff !important;
        /* Always white */
        border: none !important;
        font-weight: 600;
        transition: 0.3s ease-in-out;
    }

    .btn-brand-gradient:hover {
        background: linear-gradient(45deg, #6f42c1, #0d6efd) !important;
        color: #ffffff !important;
        box-shadow: 0 8px 15px rgba(13, 110, 253, 0.2);
    }

    /* Icon Accent */
    .icon-box-purple {
        background: #f8f4ff;
        color: #6f42c1;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }


}

/* Force hide the spinner if it gets stuck for more than 3 seconds */
#spinner {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.5s ease-out;
    pointer-events: none !important;
    /* This allows you to click through it */
}

.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, rgba(53, 0, 151, 0.75), rgba(0, 0, 0, 0.4)), url(../img/bg-breadcrumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0 50px 0;
    transition: 0.5s;
}

/* whatsapp button animation */

.navigation-bar .whatsapp-btn {
    animation: jump-shaking 3s ease-in-out infinite;
}

@keyframes jump-shaking {
    0% {
        transform: translateX(0) rotate(0)
    }

    35% {
        transform: translateY(0) rotate(0)
    }

    85% {
        transform: translateY(0) rotate(0)
    }

    89% {
        transform: translateY(-2px) rotate(-17deg)
    }

    93% {
        transform: translateY(-3px) rotate(17deg)
    }

    98% {
        transform: translateY(-4px) rotate(-17deg)
    }

    100% {
        transform: translateY(0) rotate(0)
    }
}

/* FULLSCREEN LOADER */
#spinner {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100vh !important;

    background: #ffffff !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    z-index: 999999999 !important;
}

.loader {
    width: 70px;
    height: 70px;

    border: 6px solid #e5e5e5;
    border-top: 6px solid #0d6efd;
    border-radius: 50%;

    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

#spinner.hide {
    opacity: 0;
    visibility: hidden;

    transition: 0.5s;
}

/* whatsapp navigation bar style */

.whatsapp-box {
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.whatsapp-text-wrapper {
    position: relative;
    min-width: 145px;
    height: 18px;
    font-size: 1rem !important;
    overflow: hidden;
    margin-top: 4px;
}

.whatsapp-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.text-one {
    animation-name: showTextOne;
}

.text-two {
    letter-spacing: 0.5px;
    animation-name: showTextTwo;
}

@keyframes showTextOne {

    0%,
    45% {
        opacity: 1;
        transform: translateY(0);
    }

    50%,
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@keyframes showTextTwo {

    0%,
    45% {
        opacity: 0;
        transform: translateY(10px);
    }

    50%,
    95% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Fixed WhatsApp Bottom Bar */
.whatsapp-fixed-bar {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 520px;
    z-index: 9999;
    animation: slideUp 0.6s ease;
}

.whatsapp-fixed-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 40px;
    text-decoration: none;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}

.whatsapp-fixed-link:hover {
    transform: translateY(-3px);
    background: rgba(37, 211, 102, 0.22);
}

.whatsapp-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.whatsapp-left i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.whatsapp-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.small-text {
    font-size: 0.8rem;
    color: #dadada;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.phone-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.chat-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 80px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 576px) {

    .whatsapp-fixed-bar {
        max-width: 56px;
        bottom: 100px;
        left: 85%;
    }

    .whatsapp-fixed-link {
        padding: 7px 7px;
        gap: 10px;
    }


    .whatsapp-left i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.5rem;
    }

    .whatsapp-content {
        display: none;
    }

    .phone-text {
        font-size: 0.95rem;
    }

    .chat-btn {
        font-size: 0.7rem;
        padding: 8px 14px;
        display: none;
    }
}


/* SIP and SWP design */

.calculator-card {
    /* background: rgba(255, 255, 255, 0.72); */
    /* backdrop-filter: blur(18px); */
    border-radius: 30px;
    padding: 30px;
    /* box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08); */
    border: 1px solid #ededed;
}

.toggle-wrapper {
    background: #eef3ff;
    border-radius: 50px;
    padding: 4px;
}

.toggle-btn {
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    background: transparent;
    font-weight: 600;
    transition: 0.3s;
}

.toggle-btn.active {
    background: #0d6efd;
    color: white;
}

.value-badge {
    background: #0d6efd15;
    color: #0d6efd;
    border: 1px solid #0d6efd20;
    padding: 5px 12px;
    min-width: 120px;
    text-align: right;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
}

.result-box {
    background: linear-gradient(135deg, #0d6efd, #6ea8fe);
    color: white;
    padding: 25px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.result-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg,
            rgba(255, 255, 255, 0.18),
            transparent,
            rgba(255, 255, 255, 0.08));
    z-index: 0;
}


.result-box .row,
.result-box .alert {
    position: relative;
    z-index: 2;
}

#swpResult {
    background: linear-gradient(135deg, #198754, #5fd09a);
}

.metric-box {
    text-align: center;
    transition: 0.35s ease;
    padding: 10px;
    border-radius: 18px;
}

.metric-value {
    font-size: 20px;
    font-weight: 800;
    transition: 0.35s ease;
}

.metric-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.chart-wrapper {
    height: 350px;
}

.emoji-character {
    position: absolute;
    right: 10px;
    top: -10px;
    font-size: 50px;
    animation: floaty 3s infinite ease-in-out;
}

@keyframes floaty {

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

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


/* ===== noUiSlider ===== */
.noUi-target {
    border: none;
    height: 10px;
    border-radius: 20px;
    background: #e8ecf5;
    box-shadow: none;
}

.noUi-connect {
    background: linear-gradient(90deg, #0d6efd, #6ea8fe);
}

.noUi-handle {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50%;
    right: -12px !important;
    top: -8px !important;
    border: 4px solid #0d6efd;
    box-shadow: none;
    cursor: pointer;
}

.noUi-handle:before,
.noUi-handle:after {
    display: none;
}

@media(max-width:768px) {

    .calculator-card {
        padding: 20px;
    }

    .chart-wrapper {
        height: 280px;
    }

}

.chart-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(180deg,
            rgba(13, 110, 253, 0.08),
            rgba(13, 110, 253, 0.02));

    padding: 15px;
}

.chart-wrapper::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(13, 110, 253, 0.15);
    filter: blur(90px);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    animation: moveGlow 8s linear infinite;
}


@keyframes moveGlow {

    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-60px, 40px);
    }

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

}

.chart-wrapper canvas {
    position: relative;
    z-index: 2;
    width: 100% !important;
    height: 100% !important;
}

@media(max-width:768px) {

    .chart-wrapper {
        height: 320px;
        padding: 10px;
    }

}

/* service scroll animation */
.services-wrapper {
    overflow: hidden;
    width: 100%;
}

.services-scroll {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.services-scroll:hover {
    animation-play-state: paused;
}

.service-link {
    flex-shrink: 0;
    text-decoration: none;
}

.services-item {
    min-width: 280px;
    border: 1px solid #ededed;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

.service-item i {
    font-size: 2.5rem;
    color: #0d6efd;
    transition: all 0.5s ease-in-out;
}

.services-item:hover i {
    scale: 1.2;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 15px));
    }
}

/* input calculator design */

.inline-edit-input {
    border: none;
    outline: none;
    background: transparent;
    width: 110px;
    font-weight: 600;
    color: inherit;
    text-align: right;
    padding: 0;
    margin: 0;
    box-shadow: none;
    font-size: inherit;
}

.inline-edit-input:focus {
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
}

.suffix-text {
    font-weight: 600;
    font-size: inherit;
}


/* mutual funds design */

.mf-process-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.process-number {
    width: 40px;
    height: 40px;
    background: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: absolute;
    top: -20px;
    left: -20px;
}

.mf-fund-card{
    background:#fff;
    padding:35px 30px;
    border-radius:18px;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    border:1px solid rgba(0,0,0,0.05);
}

.mf-fund-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 35px rgba(0,0,0,0.12);
}

.fund-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#6f42c1);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.mf-fund-card h4{
    font-size:22px;
    margin-bottom:15px;
    font-weight:700;
}

.mf-invest-step {
    background: #f8f4ff;
    border-radius: 40px;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #6f42c1;
    border : 1px solid var(--deep-purple);
    transition: 0.3s;

    h5 {
        margin: 0;
    }

    p {
        font-size: 14px;
        margin-bottom: 20px;
        font-weight: 400;
    }
}

/* schedule meeting modal */

#scheduleMeetingModal .modal-content {
    backdrop-filter: blur(10px);
}

#scheduleMeetingModal .form-control {
    box-shadow: none !important;
    font-size: 15px;
}

#scheduleMeetingModal .form-control:focus {
    border-color: transparent;
    box-shadow: none;
}

#scheduleMeetingModal .input-group {
    border: 1px solid #e9ecef;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

#scheduleMeetingModal .input-group:focus-within {
    border-color: #6f42c1;
    box-shadow: 0 0 0 4px rgba(111, 66, 193, 0.08);
}

#scheduleMeetingModal .btn-primary {
    background: linear-gradient(135deg, #6f42c1, #0d6efd);
    border: none;
    transition: all 0.3s ease;
}

#scheduleMeetingModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.2);
}

#scheduleMeetingModal .modal-dialog {
    max-width: 950px;
}

#scheduleMeetingModal .btn-close {
    opacity: 1;
}

@media (max-width: 991px) {
    #scheduleMeetingModal .modal-content {
        border-radius: 24px;
    }
}