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;
}


/* 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: 80%;
    max-width: 600px;
    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 30px;
    margin: 60px auto;
    overflow: hidden;
}

.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: auto;
    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: auto;
    height: 120px;
    object-fit: contain;   /* IMPORTANT CHANGE */
    border-radius: 22px;
    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 {
    height: 120px;
    width: auto;
    object-fit: contain;  /* NO CUT */
    border-radius: 16px;
    transition: 0.3s 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){

    .slide-item{
        height: 100px;
        width: auto;
        object-fit: contain !important;
    }

}

@media (max-width:576px){
    .knowledge-section {
        padding: 30px 12px !important;
    }
}
/* Calculator */
.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: 320px;
        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 {
        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 {
        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-section {
    background: radial-gradient(circle at top, #151535, #0f0f23);
}

.emi-card {
    width: 100%;
    max-width: 100% !important;   /* override old rule */
    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);
}


.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%;
}
.emi-card {
    width: 100%;
    max-width: 100%;
    padding: 40px;
    border-radius: 20px;
}

/* Mobile fix */
@media (max-width: 576px) {
    .emi-card {
        padding: 20px !important;
    }
}
@media (max-width:576px){
    .container-fluid{
        padding-left:12px !important;
        padding-right:12px !important;
    }
}

