body {
    font-weight: 400;
}

p,
li {
    font-weight: 400;
}

:root {
    --primary: #00d4ff;
    --secondary: #7c3aed;
    --dark: #0f0f23;
    --light: #f8f9fa;
    --accent: #ff6b6b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
     background: #0d0f1a;
            padding-top: 80px;
}


/* Animated Background */
.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
}

.bg-animated::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
    opacity: 0.1;
}

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero-content {
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease;
}

.hero h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    animation: slideInRight 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 12px 32px;
    font-size: 1rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.hero-outline-btn {
    border-radius: 50px;
    padding: 12px 32px;
    border: 2px solid var(--light);
    background: transparent;
    color: var(--light);
    font-weight: 500;
    transition: .3s;
}

.hero-outline-btn:hover {
    background: var(--light);
    color: var(--dark);
}

/* Hero Image */
.hero-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.3));
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.card-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Loan Cards */
.loan-card {
    background: rgba(255, 255, 255, 0.07);
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    transition: .35s;
}

.loan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
}

.loan-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.loan-btn {
    background: var(--primary);
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    margin-top: 12px;
    transition: .3s;
}

.loan-btn:hover {
    background: var(--secondary);
    color: #fff;
}

/* Trust Strip */
.trust-strip {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.strip-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

/* Banner */
.home-banner {
    background: linear-gradient(135deg, #0f0f23, #1a1a3e);
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
}

.banner-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.banner-content h2 {
    font-size: 1.4rem;
    font-weight: 500;
    /*color: #00d4ff;*/
    color: #EAC35C;
    margin-bottom: 25px;
    text-shadow: 0 0 6px rgba(0, 212, 255, 0.5);
}

.banner-btn {
    margin-top: 20px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: .3s ease;
    font-weight: 600;
}

.banner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.banner-img {
    width: 80%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.3));
}

/* ================= KNOWLEDGE CENTRE ================= */

.knowledge-section {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 50px;
    margin: 60px auto;
    overflow: hidden;
    /* 🔥 IMPORTANT */
}

.knowledge-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 22px;
}

.knowledge-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

/* ================= SLIDER CONTAINER ================= */

.knowledge-slider {
    position: relative;
    width: auto;
    height: 90%;
    /* match track height */
    overflow: hidden;
    display: flex;
    align-items: center;
}


/* ================= SLIDER TRACK animations  ================= */

.slider-track {
    display: flex;
    gap: 20px;
    /* fixed height */
    width: auto;
    animation: knowledgeScroll 22s linear infinite;
}

.slide-item {
    width: 100%;
    max-width: 280px;   /* keeps desktop size */
    height: auto;       /* let height adjust naturally */
    aspect-ratio: 4 / 3; /* keeps consistent proportions */
    border-radius: 22px;
    object-fit: cover;
    transition: transform 0.4s ease;
}



/* Pause on hover */
.knowledge-slider:hover .slider-track {
    animation-play-state: paused;
}

/* ================= SLIDER ITEMS ================= */

.slider-track a {
    flex-shrink: 0;
    display: block;
    text-decoration: none;
}

.slide-item {
    width: auto;
    height: 300px;
    border-radius: 22px;
    object-fit: cover;
    transition: transform 0.4s ease;
    
}

/* Hover effect (SAFE) */
.slide-item:hover {
    transform: scale(1.08);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(0, 212, 255, 0.55);
}

/* ================= ANIMATION ================= */

@keyframes knowledgeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .knowledge-section {
        padding: 30px;   /* reduce padding for smaller screens */
        margin: 30px auto;
    }

    .knowledge-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .slide-item {
        width: 100%;       /* each image takes most of screen width */
        max-width: 800px; /* prevents oversized images */
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .slider-track {
        gap: 12px;        /* smaller gap between items */
        animation-duration: 16s;
    }
}


/* ================= PREMIUM SLIDER ================= */

.premium-slider {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.premium-track {
    display: flex;
    gap: 30px;
    animation: scrollSlider 20s linear infinite;
}

.premium-item {
    width: 340px;
    height: 420px;
    object-fit: contain;
    padding: 10px;
    background: #f7f7f7;
    border-radius: 26px;

    transition: 
        transform 0.35s ease,
        box-shadow 0.3s ease;
}

/* 🔥 Only the center image will get this class */
.premium-item.center-active {
    transform: translateY(-35px) scale(1.08);
    box-shadow:
        0 40px 90px rgba(0,0,0,0.45),
        0 0 60px rgba(0,230,255,0.55);
}

@keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {

    .premium-item {
        width: 100%;
        max-width: 600px;
        height: 400px;
        padding: 10px;
        border-radius: 22px;
    }

    /* 0.5 sec per image × 20 images = 10 seconds total */
    .premium-track {
        gap: 20px;
        animation: scrollSlider 180s linear infinite !important;
    }

    @keyframes scrollSlider {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-1 * (600px + 20px) * 20)); }
    }
}

/* ================= PREMIUM SLIDERs ================= */

.premium-sliders {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

/* Track */
.premium-tracks {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollSlider 25s linear infinite;
}

/* Desktop: Big images */
.premium-items {
    width: 500px;
    height: 650px;
    object-fit: contain;
    padding: 10px;
    background: #f7f7f7;
    border-radius: 26px;
}

.premium-sliders:hover .premium-tracks {
    animation-play-state: paused;
}
.premium-items:hover{
    transform: scale(1.08);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(0, 212, 255, 0.55);
}

/* Infinite Loop Animation */
@keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .premium-items {
        width: 100%;
        max-width: 600px;
        height: 600px;
        padding: 10px;
        border-radius: 22px;
    }

    /* 0.5 sec per image × 20 images = 10 seconds total */
    .premium-tracks {
        gap: 20px;
        animation: scrollSlider 180s linear infinite !important;
    }

    @keyframes scrollSlider {
        0% { transform: translateX(0); }
        /*100% { transform: translateX(calc(-1 * (600px + 20px) * 20)); } */
        100% { transform: translateX(calc(-1 * (600px + 20px) * 20)); }
    }
}


/* EMI Calculator Styles */
.calculator {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

/* ABOUT SECTION */
.about-section {
    padding-top: 80px;
}

.section-heading {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-card {
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: .3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

/* LIST */
.custom-list li {
    margin-bottom: 10px;
    list-style: none;
    font-size: 1.1rem;
}

.custom-list i {
    color: var(--primary);
    margin-right: 10px;
}

/* VALUES CARDS */
.value-card {
    padding: 30px;
    border-radius: 15px;
    transition: .3s;
    background: rgba(255, 255, 255, 0.05);
}

.value-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.value-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

/* Floating Buttons */
/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    background: #0059ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
    position: relative;
}

/* Hover Effect */
.floating-btn:hover {
    background: #003ec9;
    transform: scale(1.08);
}

/* Tooltip Style */
.floating-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: #000000cc;
    color: #fff;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
}

/* Arrow */
.floating-btn::before {
    content: "";
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #000000cc;
    opacity: 0;
    transition: 0.25s ease;
}

/* Show Tooltip on Hover */
.floating-btn:hover::after,
.floating-btn:hover::before {
    opacity: 1;
}


/* SERVICES */
#services {
    background: #0f0f23;
}

.services-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

.service-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    border: 2px solid rgba(0, 212, 255, 0.2);
    background: #111;
}

.service-img {
    height: 280px;
    object-fit: cover;
    width: 100%;
    border-radius: 0;
}

.service-card {
    padding-bottom: 30px;
}

.service-box:hover .service-img {
    transform: scale(1.08);
    filter: brightness(0.6);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    text-align: center;
    opacity: 0;
    transition: 0.4s ease;
}

.service-box:hover .service-overlay {
    opacity: 1;
}

.service-overlay h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-overlay p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.explore-btn {
    background: #b6762b;
    padding: 12px 28px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.explore-btn:hover {
    transform: scale(1.06);
    opacity: 0.85;
}

.banner-btn,
.loan-btn,
.explore-btn,
.service-overlay .explore-btn,
a.loan-btn,
a.banner-btn {
    text-decoration: none !important;
}

.banner-btn:hover,
.loan-btn:hover,
.explore-btn:hover {
    text-decoration: none !important;
}

a.btn,
a.btn-primary,
a.btn-primary-custom {
    text-decoration: none !important;
}

.service-title-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 12px;
    color: #fff;
}

.emi-section {
    padding-bottom: 120px;
}

@media (max-width: 576px) {
    #mmms-chatbot-btn {
        position: fixed !important;
        bottom: 90px !important;
        right: 15px !important;
    }
}

/* Responsive Tweaks */
@media (max-width: 992px) {
    .banner-slide {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero {
        padding-top: 100px;
    }
}

/* Phone Adjustments */
@media (max-width: 576px) {

    .hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 30px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-img {
        width: 100%;
        max-width: 400px;
        margin: 20px auto 0;
        display: block;
    }

    .hero-content {
        padding: 0 16px;
    }

    .btn-primary-custom,
    .hero-outline-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
    }

    .banner-slide {
        padding: 18px;
    }

    .banner-content h1 {
        font-size: 1.25rem;
    }

    .banner-content h2 {
        font-size: 0.95rem;
    }

    .banner-img {
        display: none;
    }

    .slide-item {
        width: 160px;
        height: 100px;
    }

    .slider-track {
        width: calc(160px * 10);
        animation-duration: 16s;
    }

    .calculator {
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .glass-card,
    .about-card,
    .testimonial-card {
        padding: 1rem;
        border-radius: 12px;
    }

    .service-box {
        padding: 14px;
        border-radius: 12px;
    }

    .service-box h3 {
        font-size: 1.1rem;
    }

    footer {
        padding: 2rem 0 1rem;
    }

    .floating-calculator-btn {
        top: auto;
        bottom: 20px;
        right: 16px;
        transform: none;
        border-radius: 12px;
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .nav-link {
        margin: 0 6px;
        font-size: 0.95rem;
    }

    .navbar-brand span {
        font-size: 0.95rem;
    }

    #contactForm .btn {
        width: 100%;
    }
}

/* Very Small Devices */
@media (max-width: 420px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .banner-content h1 {
        font-size: 1.05rem;
    }

    .banner-content h2 {
        font-size: 0.9rem;
    }

    .slide-item {
        width: 140px;
        height: 90px;
    }

    .slider-track {
        width: calc(140px * 10);
        animation-duration: 14s;
    }

    .btn-primary-custom,
    .hero-outline-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .section-heading {
        font-size: 2rem;
    }
}

/* Touch Accessibility */
@media (hover: none) and (pointer: coarse) {
    .slider::-webkit-slider-thumb {
        width: 28px;
        height: 28px;
    }
}

/* ================= EMI CALCULATOR ================= */

/* ================= EMI CALCULATOR (PREMIUM) ================= */

.emi-section {
    background: radial-gradient(circle at top, #151535, #0f0f23);
}

.emi-card {
    max-width: 900px;
    padding: 40px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
}

.emi-card label {
    font-weight: 700;
    margin-bottom: 6px;
    color: #cbd5ff;
}

.emi-card input {
    height: 52px;
    border-radius: 14px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 1.05rem;
}

.emi-card input::placeholder {
    color: #bbb;
}

.emi-card input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.6);
    background: rgba(255, 255, 255, 0.18);
}

/* BUTTON */
.emi-btn {
    width: 100%;
    padding: 16px;
    margin-top: 20px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border: none;
    border-radius: 18px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
}

.emi-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.55);
}

/* RESULT BOX */
.emi-result {
    margin-top: 30px;
    padding: 25px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
}

.emi-result p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.emi-result span {
    font-size: 1.6rem;
    font-weight: 900;
    color: #00eaff;
}

/* ================= FLOATING EMI BUTTON ================= */

/* ================= EMI SECTION ================= */

.emi-section {
    background: radial-gradient(circle at top, #151535, #0f0f23);
}

/* CARD */
.emi-card {
    max-width: 900px;
    padding: 45px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
}

/* INPUTS */
.emi-card label {
    font-weight: 700;
    margin-bottom: 6px;
    color: #cbd5ff;
}

.emi-card input {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: none;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.05rem;
}

.emi-card input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.6);
}

/* BUTTON */
.emi-btn {
    width: 100%;
    margin-top: 25px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    font-size: 1.15rem;
    font-weight: 900;
    border: none;
    cursor: pointer;
    color: #000;
    transition: 0.3s;
}

.emi-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.55);
}

/* RESULT */
.emi-result {
    margin-top: 30px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.emi-result div {
    background: rgba(255, 255, 255, 0.12);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.emi-result span {
    display: block;
    font-size: 0.95rem;
    opacity: 0.85;
}

.emi-result strong {
    font-size: 1.4rem;
    color: #00eaff;
}

/* FLOATING BUTTON CONTAINER */
.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    /* UP & DOWN */
    gap: 12px;
    z-index: 9999;
}

/* COMMON BUTTON STYLE */
.floating-buttons {
    position: fixed;
    top: 110px;
    /* 👈 move to upper side */
    right: 25px;
    display: flex;
    flex-direction: column;
    /* up & down */
    gap: 12px;
    z-index: 9999;
}

/* common button style */
.floating-btn {
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: 0.3s ease;
    white-space: nowrap;
}

.roi-btn {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
}

.emi-btn-fixed {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
}

.floating-btn:hover {
    transform: scale(1.05);
}

.black-icon {
    color: black;
    /* forces 💠 to render in black */
    font-size: 1.2em;
    /* optional: adjust size */
}

/* MOBILE */
@media(max-width:768px) {
    .emi-result {
        grid-template-columns: 1fr;
    }
}

/* Footer links – remove underline */
footer a {
    text-decoration: none !important;
}

/* Optional: underline only on hover */
footer a:hover {
    text-decoration: underline;
    text-decoration-color: #00d4ff;
}

#calculator,
#emi-calculator {
    scroll-margin-top: 110px;
    /* navbar height + breathing space */
}

/* Hover effect */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.45);
}

/* Icons */
.feature-box i {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feature text */
.feature-box h6 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-top: 10px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 35px 20px;
    transition: all 0.35s ease;
    height: 100%;
}
.hero {
    padding-top: 50px !important;
    min-height: auto; /* Optional: reduces vertical height */
}

.hero .container {
    padding-top: 0 !important;
}

/* Main Title */
        .loan-title {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Subtitle */
        .loan-subtitle {
            font-size: 1.2rem;
            color: #ddd;
            font-weight: 600;
        }

        /* Loan Card */
        .loan-card {
            padding: 35px 25px;
            border-radius: 18px;
            transition: .3s ease;
            cursor: pointer;
        }

        .loan-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
        }

        /* Icon Black */
        .loan-card i {
            font-size: 3.2rem;
            color: #000;
            margin-bottom: 10px;
        }

        /* Loan Title (Bold Black) */
        .loan-card h4 {
            font-size: 1.6rem;
            font-weight: 900;
            color: #000 !important;
            margin-top: 12px;
        }

        /* Loan Text (Bold Dark) */
        .loan-card p {
            font-size: 1rem;
            color: #111 !important;
            font-weight: 700;
            margin-top: 10px;
        }

        .blink-text {
            animation: blinkAnim 1s infinite;
        }

        @keyframes blinkAnim {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        .zoom-loop {
            display: inline-block;
            animation: zoomPulse 3s infinite;
        }

        @keyframes zoomPulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.2);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Tiger Gold/Orange Gradient (from logo) */
        .ssb-heading {
            font-size: 2.4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #E37A26, #B55A17);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;

        }


        .ssb-subtext {
            max-width: 900px;
            color: #EDE5D2;
            /* Logo cream */
            font-size: 1.15rem;
            line-height: 1.75;
        }

        .divider {
            width: 160px;
            height: 4px;
            background: linear-gradient(90deg, #E37A26, #B55A17);
            margin: 40px auto;
            border-radius: 4px;
        }

        .ssb-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(227, 122, 38, 0.3);
            padding: 25px;
            border-radius: 18px;
            text-align: center;
            transition: .35s ease;
            color: #fff;
        }

        .ssb-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
            border-color: #E37A26;
        }

        .ssb-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #E37A26;
        }

        .ssb-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #EEE4D0;
        }

        .ssb-icon {
            font-size: 2.4rem;
            background: linear-gradient(135deg, #E37A26, #B55A17);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .ssb-btn {
            background: linear-gradient(135deg, #E37A26, #B55A17);
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 700;
            color: #000;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-block;
            transition: .3s;
        }

        .ssb-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 0 25px rgba(227, 122, 38, 0.6);
        }

        @media(max-width:768px) {
            .ssb-heading {
                font-size: 1.9rem;
            }

            .ssb-card {
                padding: 18px;
            }
        }

        .white-box {
            background: #FFFFFF;
            border-radius: 18px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #e6e6e6;
            transition: 0.3s ease;
        }

        .white-box:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        }

        /* Optional: Better spacing on mobile */
        @media(max-width:768px) {
            .white-box {
                padding: 22px;
            }
        }

        @media(max-width:480px) {
            .ssb-heading {
                font-size: 1rem;
            }
        }

 /* ===========================
   HEADING TEXT (Top Full-Width)
   =========================== */
        .heading-title {
            font-size: 2rem;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 5px;
            text-align: center;
        }

        .heading-title-2 {
            font-size: 1.2rem;
            font-weight: 400;
            line-height: 1.5;
            max-width: 420px;
            margin: 0 auto 20px auto;
            background: linear-gradient(135deg, #F4C55C, #E97824);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: break-word;
            text-align: center;
        }

        /* ===========================
   COURSE CARDS
   =========================== */
        .new-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 22px;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
            transition: 0.3s ease;
            min-height: 260px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .new-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
        }

        /* ===========================
   DATE PILLS
   =========================== */
        .date-pill {
            background: #F4C55C;
            color: #2E1A0F;
            padding: 6px 16px;
            font-weight: 700;
            font-size: 0.9rem;
            border-radius: 25px;
            margin-bottom: 12px;
            display: inline-block;
        }

        /* ===========================
   COURSE TITLE
   =========================== */
        .course-title {
            font-size: 1.1rem;
            font-weight: 800;
            color: #2E1A0F;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        /* ===========================
   PRICE
   =========================== */
        .price {
            color: #E97824;
            font-size: 1.7rem;
            font-weight: 900;
            margin: 12px 0;
        }

        /* ===========================
   ENROLL BUTTON
   =========================== */
        .enroll-btn {
            background: linear-gradient(135deg, #E97824, #C45A11);
            padding: 10px 24px;
            border-radius: 30px;
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            display: inline-block;
            transition: 0.3s ease;
            margin-top: auto;
        }

        .enroll-btn:hover {
            transform: scale(1.06);
            background: linear-gradient(135deg, #C45A11, #8A3A0F);
        }

        /* ===========================
   RESPONSIVE GRID FIX
   =========================== */

        /* 5 cards in one row (desktop) */
        @media (min-width: 1200px) {
            .course-col {
                width: 20%;
                /* 5 cards per row */
                padding: 12px;
            }
        }

        /* Tablets: 2 per row */
        @media (max-width: 991px) {
            .course-col {
                width: 50%;
                padding: 12px;
            }

            .new-card {
                min-height: auto;
            }
        }

        /* Mobile: 1 per row */
        @media (max-width: 576px) {
            .course-col {
                width: 100%;
                padding: 10px 0;
            }
        }
        /* ================== GENERAL SECTION ================== */
        .trust-strip {
            background: #ffffff;
            padding: 60px 0;
        }

        .ssb-heading {
            font-size: 2rem;
            font-weight: 700;
            color: #01396a;
            margin-bottom: 40px;
        }

        /* ================== IMAGE ================== */
        .learn-img {
            width: 100%;
            height: auto;
            /* no fixed height */
            aspect-ratio: 3 / 4;
            /* portrait ratio for mentors */
            object-fit: cover;
            /* fills container without distortion */
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .learn-img:hover {
            transform: scale(1.05);
        }

        /* ================== INFO BOX ================== */
        .info-box {
            background: linear-gradient(135deg, #f5f5f5, #ffffff);
            padding: 22px;
            border-radius: 14px;
            min-height: 210px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
            transition: all 0.3s ease;
        }

        .info-box:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
        }

        /* ================== TEXT ================== */
        .mentor-line {
            font-size: 0.95rem;
            color: #333;
            margin-top: 8px;
            font-weight: 500;
        }

        .info-box h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 8px;
        }

        .info-box p {
            font-size: 0.85rem;
            color: #333;
            line-height: 1.4;
            margin: 0;
        }

        /* ================== ICON CIRCLE (OPTIONAL) ================== */
        .icon-circle {
            font-size: 30px;
            margin-bottom: 15px;
            color: #01396a;
            background: rgba(0, 0, 0, 0.05);
            padding: 15px;
            border-radius: 50%;
            border: 2px solid #01396a;
        }

        /* ================== RESPONSIVE ================== */

        /* Tablet */
        @media (max-width: 768px) {
            .learn-img {
                aspect-ratio: 4 / 3;
                /* slightly wider ratio */
            }

            .info-box {
                padding: 18px;
            }

            .mentor-line {
                font-size: 0.9rem;
            }
        }

        /* Mobile */
        @media (max-width: 480px) {
            .learn-img {
                aspect-ratio: 1 / 1;
                /* square ratio for phones */
                border-radius: 8px;
            }

            .info-box {
                padding: 14px;
                min-height: auto;
                /* remove fixed min-height */
            }

            .mentor-line {
                font-size: 0.85rem;
            }

            .info-box h4 {
                font-size: 0.9rem;
            }

            .info-box p {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 768px) {
            .learn-img {
                width: 100%;
                height: auto;

                object-fit: contain;

                aspect-ratio: auto;

            }
        }

        /* Mobile */
        @media (max-width: 480px) {
            .learn-img {
                width: 100%;
                height: auto;

                object-fit: contain;

                aspect-ratio: auto;

            }
        }

        .footer-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00d4ff, #7c3aed);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            transition: 0.3s;
            box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
            text-decoration: none !important;
            /* 🔥 removes underline */
        }

        .footer-icon i {
            text-decoration: none !important;
            /* extra safety */
        }

        .footer-icon:hover {
            transform: scale(1.12);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
            background: linear-gradient(135deg, #7c3aed, #00d4ff);
        }


/* ================= depth slider ================= */
/* WRAPPER */
/* ================= DEPTH SLIDER ================= */

/* Wrapper */
.depth-slider-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 50px 0;
}

/* Main slider container (must have a real height) */
.depth-slider {
    width: 95%;
    max-width: 800px;
    position: relative;
    margin: 0 auto;
    height: 600px;          /* Desktop fixed height */
}

/* Slides */
.depth-slider .slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
    transition: 0.6s ease;
    opacity: 0;
}

.depth-slider .slide img {
    width: 50%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}

/* Active slide */
.depth-slider .slide.active {
    opacity: 1;
    z-index: 3;
    transform: translateX(-50%) scale(1);/* Active slide for image side scale  */
}

/* Next */
.depth-slider .slide.next {
    opacity: 0.5;
    z-index: 2;
    transform: translateX(20%) scale(0.85);
}

/* Prev */
.depth-slider .slide.prev {
    opacity: 0.5;
    z-index: 2;
    transform: translateX(-120%) scale(0.85);
}

/* Arrows */
.depth-slider .arrow {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E37A26, #B55A17);
    color: #fff;
    font-size: 24px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.depth-slider .arrow.left  { left: 5px; }
.depth-slider .arrow.right { right: 5px; }

/* ============== RESPONSIVE ============== */

@media(max-width: 992px) {
    .depth-slider { height: 360px; }
}

@media(max-width: 768px) {
    .depth-slider { height: auto; /* allow container to expand */ min-height: 260px; /* optional baseline */ }
    .depth-slider .arrow { width: 38px; height: 38px; font-size: 18px; }
    .depth-slider .arrow.left { left: -10px; }
    .depth-slider .arrow.right { right: -10px; }
}

@media(max-width: 480px) {
    .depth-slider { height: 260px; }
    .depth-slider .arrow { width: 30px; height: 30px; font-size: 10px; }
}
@media(max-width: 768px) {
    .depth-slider .arrow.left  { left: 0px; }
    .depth-slider .arrow.right { right: 0px; }
}
/* Tablet */
@media(max-width: 768px) {
    .depth-slider .slide img {
    width: 95%; height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}
}

/* Mobile */
@media(max-width: 480px) {
    .depth-slider .slide img {
        width: 95%;   /* almost full width */
        height: auto; /* keep aspect ratio */
    }
}

/* Mobile */
@media(max-width: 480px) {
    .depth-slider .arrow.left  { left: 5px; }
    .depth-slider .arrow.right { right: 5px; }
}
/* Fix depth slider blocking the footer */
.depth-slider,
.depth-slider-wrapper {
    overflow: hidden !important;
}


.depth-slider {
    pointer-events: none;    
}

.depth-slider img,
.depth-slider .arrow {
    pointer-events: auto;   
}

.depth-slider-wrapper {
    overflow: hidden !important;
}

/* Reset default stacking so footer works normally */
footer {
    position: relative;
    z-index: 1;
}

/* Tiger Theme Trust Strip */
.trust-strip-ssb {
    background: #FFFFFF;
    padding: 60px 0;
    border-top: 3px solid #E37A26;
    border-bottom: 3px solid #B55A17;
}

.strip-number-ssb {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E37A26, #B55A17);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.strip-text {
    font-size: 1rem;
    font-weight: 600;
    color: #4A3E36; /* soft brown for balance */
}

/* Hover effect */
.trust-strip-ssb .col-md-3:hover .strip-number-ssb {
    transform: scale(1.08);
    transition: 0.3s ease;
}

/* Responsive */
@media(max-width: 768px) {
    .strip-number-ssb {
        font-size: 1.8rem;
    }
}


/* Hover effect contact us */
.card {
  transition:0.3s;
  border-radius:15px;
}
.mission-card:hover {
  background:#1a3c8d;
  color:#fff;
}
.vision-card:hover {
  background:#1a3c8d;
  color:#fff;
}
.goal-card:hover {
  background:#1a3c8d;
  color:#fff;
}
.card:hover h4 {
  color:#fff !important;
}
.card:hover p {
  color:#fefefe !important;
}
.choose-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.choose-text {
    width: 60%;
}

.choose-img {
    width: 40%;
}

.choose-img img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.full-width-text {
    width: 100%;
    margin-top: 40px;
}

.full-width-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .choose-wrapper {
        flex-direction: column;
    }
    .choose-text,
    .choose-img {
        width: 100%;
    }
}
/* Make WHY CHOOSE US text match Mission/Vision/Goal text */
.why-choose-ssb p {
    color: #ffffff !important;
    line-height: 1.8 !important;
    font-size: 1.05rem !important;
    font-weight: normal;
}

/* Make WHY CHOOSE US heading match MISSION/VISION/GOAL heading */
.why-choose-ssb .section-title {
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    font-size: 2rem !important;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;

    transition: transform 0.2s;
}

.whatsapp-float:hover img {
    transform: scale(1.1);
}


