/* ========== Global Styles ========== */

:root {
    --primary-color: #a52a2a;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}


/* Invisible anchors for nav scroll targets (no layout space) */

.nav-scroll-anchors {
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
}

.nav-scroll-anchors>[id] {
    height: 0;
    min-height: 0;
    overflow: hidden;
}


/* ========== Top Bar ========== */

.topbar {
    background-color: #5c1515;
    color: #cfd6e4;
    font-size: 0.9rem;
    /* border-bottom: 1px solid #fff; */
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 15px;
    gap: 12px 20px;
}

.topbar a {
    color: #cfd6e4;
    text-decoration: none;
    margin-left: 15px;
}

.topbar-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 15px;
}

.topbar-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 8px;
}

.topbar-left span {
    margin-right: 0;
}


/* ========== Navigation ========== */

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: #5c1515 !important;
}

/* Center navbar content; keep topbar links flush to full width */
.topbar .container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    border-bottom: 1px solid #fff;
    display: none;
}

.navbar > .container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.site-logo {
    height: 100px;
    max-width: 350px;
    width: 100%;
    object-fit: contain;
}

.header-31st-logo {
    height: 70px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .site-logo {
        height: 42px;
        max-width: 200px;
    }
    .header-31st-logo {
        height: 40px;
        max-width: 100px;
    }
}

.site-title {
    font-size: 1rem;
    line-height: 1.2;
}

.navbar-nav {
    flex-wrap: wrap;
    /* gap: 6px; */
}

@media (min-width: 992px) {
    .navbar-nav {
        flex-wrap: nowrap;
    }
}

.navbar-nav .nav-link {
    white-space: nowrap;
    font-size: 0.95rem;
    padding: 6px 6px;
}


/* Nav dropdown: styling + hover on desktop */

.navbar .dropdown-menu {
    margin-top: 0;
    padding: 0.5rem 0;
    min-width: 200px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 1030;
    background: #fff;
}

.navbar .dropdown-menu .dropdown-item {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: #333;
    transition: background 0.2s ease, color 0.2s ease;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
    background: rgba(165, 42, 42, 0.08);
    color: var(--primary-color);
}

.navbar .dropdown-menu .dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


/* Desktop: show dropdown on hover */

@media (min-width: 992px) {
    .navbar-nav .dropdown .dropdown-menu {
        display: none;
        opacity: 0;
        transform: translateY(-4px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .navbar-nav .dropdown:hover .dropdown-menu,
    .navbar-nav .dropdown .dropdown-menu.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    .navbar-nav .dropdown .nav-link.dropdown-toggle {
        padding-right: 0.6rem;
    }
    .navbar-nav .dropdown .nav-link.dropdown-toggle .fa-chevron-down {
        font-size: 0.7rem;
        margin-left: 4px;
        transition: transform 0.2s ease;
    }
    .navbar-nav .dropdown:hover .nav-link.dropdown-toggle .fa-chevron-down {
        transform: rotate(180deg);
    }
    /* Single chevron: hide Bootstrap's default dropdown caret */
    .navbar-nav .dropdown-toggle::after {
        display: none;
    }
}


/* Mobile: keep click toggle, default Bootstrap spacing */

@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        margin-top: 0.25rem;
        border-radius: 8px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    .navbar .dropdown-menu .dropdown-item:not(:last-child) {
        border-bottom: none;
    }
}

@media (max-width: 1200px) {
    .site-logo {
        max-width: 220px;
        height: 46px;
    }
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 6px 6px;
    }
}

@media (max-width: 992px) {
    .navbar-nav {
        flex-wrap: wrap;
        gap: 0;
    }
    .navbar-nav .nav-link {
        padding: 8px 0;
    }
    .site-logo {
        max-width: 200px;
        height: 44px;
    }
    .header-31st-logo {
        height: 40px;
        max-width: 90px;
    }
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    /* margin: 0 10px; */
    position: relative;
}


/* Hover underline only on simple nav links (not dropdown toggles or CTA button) */

.navbar-nav .nav-link:not(.dropdown-toggle):not(.btn):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:not(.dropdown-toggle):not(.btn):hover:after {
    width: 100%;
}

.nav-cta {
    border-radius: 20px;
    padding: 6px 18px;
}


/* ========== Hero Section (fixed-size slider + content) ========== */

.hero-section {
    color: white;
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Hero slider: full window width, reduced height, no image cropping */
.hero-slider-ratio {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: auto;
    overflow: visible;
    margin: 0;
    padding: 0;
}

.hero-slider {
    position: relative;
    z-index: 0;
    width: 100%;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
    width: 100%;
}

.hero-slider .carousel-item {
    min-height: 0;
}

/* Hero slide image: full width, no top/bottom cropping */
.hero-slide-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center center;
    background: transparent;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%); */
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 30px;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: none;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.25);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    backdrop-filter: blur(6px);
}

.hero-subtitle {
    font-size: 1.1rem;
}

.hero-actions {
    margin-bottom: 24px;
}

.hero-actions .btn-hero {
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-right: 14px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary {
    background: #fff;
    color: #a52a2a;
    border: 2px solid #fff;
}

.btn-hero-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #a52a2a;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.95;
}

.hero-trust i {
    margin-right: 6px;
}


/* Hero carousel controls */

.hero-carousel-control {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    opacity: 0.9;
    z-index: 3;
}

.hero-carousel-control:hover {
    background: rgba(0, 0, 0, 0.55);
    opacity: 1;
}

.hero-section .carousel-control-prev {
    left: 15px;
}

.hero-section .carousel-control-next {
    right: 15px;
}


/* ========== Loan strip + RD marquee (below hero) ========== */

.loan-strip-section {
    margin-top: 0;
}

.loan-strip-bg {
    background: #5c1515;
    color: #fff;
}

.loan-panels {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.loan-panels .col-md-4 {
    flex: 1 1 32%;
    min-width: 0;
}

.loan-panel {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #fff !important;
    text-decoration: none !important;
    border-right: 1px solid rgba(201, 162, 39, 0.5);
    transition: background 0.2s ease;
    border: 1px solid;
    border-radius: 8px;
}

.loan-panel:hover {
    background: rgba(0, 0, 0, 0.15);
    color: #fff !important;
}

.loan-panel:last-child {
    border-right: none;
}

.loan-panel i {
    font-size: 1.5rem;
    opacity: 0.95;
}

.loan-name {
    font-weight: 600;
    font-size: 1.05rem;
}

.loan-roi {
    margin-left: 22px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.rd-marquee-bar {
    background: #a52a2a;
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
}

.marquee-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.marquee-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

.marquee-text:focus {
    outline: none;
}

/* Animated marquee replacement for deprecated <marquee> tag */
.marquee-text-animate {
    display: inline-block;
    /*padding-left: 30%;*/
    animation: homeMarquee 45s linear infinite;
}

@keyframes homeMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.hero-indicators {
    bottom: 24px;
    z-index: 3;
}

.hero-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
}

.hero-indicators button.active {
    background-color: #fff;
    transform: scale(1.2);
}

.hero-services {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

.hero-service-card {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hero-service-card .icon {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hero-service-image {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.hero-service-image img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.hero-service-card h6 {
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-service-card a {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-color);
}

.hero-section .btn {
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-right: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}


/* ========== Products Section ========== */

.products-section,
.services-section,
.product-highlight-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #f0f2f5 100%);
}


/* Card grid: consistent gap between top-bottom and left-right (Bootstrap g-4 = 1.5rem) */

.row.g-4 .feature-card,
.row.g-4 .product-card,
.row.g-4 .service-card,
.row.g-4 .blog-card,
.row.g-4 .testimonial-card,
.row.g-4 .info-card {
    margin-bottom: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}


/* Staggered fade-in for product cards */

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-cards-row .col-sm-6 {
    animation: cardReveal 0.6s ease-out forwards;
}

.product-cards-row .col-sm-6:nth-child(1) {
    animation-delay: 0.05s;
}

.product-cards-row .col-sm-6:nth-child(2) {
    animation-delay: 0.12s;
}

.product-cards-row .col-sm-6:nth-child(3) {
    animation-delay: 0.19s;
}

.product-cards-row .col-sm-6:nth-child(4) {
    animation-delay: 0.26s;
}

.product-cards-row .col-sm-6:nth-child(5) {
    animation-delay: 0.33s;
}

.product-cards-row .col-sm-6:nth-child(6) {
    animation-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .product-cards-row .col-sm-6 {
        animation: none;
    }
}

.product-card,
.service-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}


/* Modern feature card */

.feature-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(165, 42, 42, 0.08);
}

.feature-card-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fdf2f2 0%, #fce7e7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 24px 24px 0;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, #fce7e7 0%, #f5d5d5 100%);
}

.feature-image-wrap {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

.feature-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.06);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 14px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-meta {
    display: inline-block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-color);
    background: rgba(165, 42, 42, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.feature-card .read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.2s ease;
}

.feature-card .read-more:hover {
    color: #a52a2a;
    gap: 12px;
}

.read-more-arrow {
    transition: transform 0.25s ease;
}

.feature-card .read-more:hover .read-more-arrow {
    transform: translateX(4px);
}


/* ========== Product Detail Page – Modern Banking UI ========== */

/* Keyframe animations */
@keyframes pdFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pdFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pdSlideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pdTableRowIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pdFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes pdShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.product-detail-page .page-hero {
    background: linear-gradient(135deg, #3d1a1a 0%, #5c1515 50%, #a52a2a 100%);
    position: relative;
    overflow: hidden;
}

.product-detail-page .page-hero .hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.product-detail-page .page-hero .hero-shape-1 {
    width: 400px;
    height: 400px;
    background: #fff;
    top: -150px;
    right: -100px;
    animation: pdFloat 8s ease-in-out infinite;
}

.product-detail-page .page-hero .hero-shape-2 {
    width: 250px;
    height: 250px;
    background: #e8b4b4;
    bottom: -80px;
    left: -50px;
    animation: pdFloat 6s ease-in-out infinite reverse;
}

.product-detail-page .page-hero.animate-hero .hero-title {
    animation: pdFadeUp 0.7s ease-out forwards;
}

.product-detail-page .page-hero.animate-hero .hero-subtitle {
    animation: pdFadeUp 0.7s ease-out 0.15s forwards;
    opacity: 0;
}

.product-detail-page .page-hero h1 {
    position: relative;
    z-index: 1;
}

.product-detail-page .page-hero p {
    position: relative;
    z-index: 1;
}

.product-detail-page .breadcrumb-wrap {
    padding: 0.875rem 0;
}

.product-detail-page .breadcrumb-wrap.animate-breadcrumb {
    opacity: 0;
    animation: pdFadeIn 0.5s ease-out 0.3s forwards;
}

.product-detail-page .breadcrumb-item a {
    color: #c44d4d;
}

.product-detail-page .breadcrumb-item a:hover {
    color: #a52a2a;
}

.product-detail-section {
    padding: 2.5rem 0 4rem;
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 6%, #fff 12%);
}

.product-detail-section .container {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.product-detail-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 10px 20px -5px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-detail-card.animate-card {
    opacity: 0;
    transform: translateY(30px);
}

.product-detail-card.animate-card.animate-in {
    animation: pdFadeUp 0.6s ease-out forwards;
}

.product-detail-card:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.product-detail-image-wrap {
    width: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 12px;
}

.product-detail-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.03) 100%);
    pointer-events: none;
}

.product-detail-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    vertical-align: middle;
}

.product-detail-card:hover .product-detail-image {
    transform: scale(1.02);
}

.product-detail-body {
    padding: 2rem 2.25rem 2.5rem;
}

.product-detail-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}

.product-detail-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #5c1515, #a52a2a);
}

.product-detail-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.product-detail-roi {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #fdf2f2 0%, #fce7e7 100%);
    color: #a52a2a;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 2rem;
    border: 1px solid #f5c6c6;
    box-shadow: 0 2px 8px rgba(165, 42, 42, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-detail-roi:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(165, 42, 42, 0.2);
}

.product-detail-description h3,
.product-detail-features h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.product-detail-description p,
.product-detail-features-content {
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 1.5rem;
}

.product-detail-features-content {
    margin-bottom: 0;
}

.product-detail-description-html {
    overflow: visible;
    min-height: 0;
}

.product-detail-description-html .container,
.product-detail-description-html .inner-page,
.product-detail-description-html section {
    max-width: 100%;
}

.product-detail-card-has-html {
    overflow: visible;
}

/* ========== Unified Bank Table Design (all frontend tables) ========== */
/* Dark header #5c1515, alternating rows, accent for rates, rounded corners, light borders */

.product-detail-description table,
.rd-rates-table,
.fd-rates-table,
.loan-norms-table,
.achievement-table,
.management-table,
.emi-amort-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e0e0e0;
}

.product-detail-description table thead th,
.product-detail-description table th,
.rd-rates-table thead th,
.rd-rates-table th,
.fd-rates-table thead th,
.fd-rates-table th,
.loan-norms-table thead th,
.loan-norms-table th,
.achievement-table thead th,
.achievement-table th,
.management-table thead th,
.management-table th,
.emi-amort-table thead th,
.emi-amort-table th {
    background: #5c1515 !important;
    color: #fff !important;
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8125rem;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.product-detail-description table thead tr:first-child th:first-child,
.rd-rates-table thead tr:first-child th:first-child,
.fd-rates-table thead tr:first-child th:first-child,
.loan-norms-table thead tr:first-child th:first-child,
.achievement-table thead tr:first-child th:first-child,
.management-table thead tr:first-child th:first-child,
.emi-amort-table thead tr:first-child th:first-child {
    border-top-left-radius: 11px;
}

.product-detail-description table thead tr:first-child th:last-child,
.rd-rates-table thead tr:first-child th:last-child,
.fd-rates-table thead tr:first-child th:last-child,
.loan-norms-table thead tr:first-child th:last-child,
.achievement-table thead tr:first-child th:last-child,
.management-table thead tr:first-child th:last-child,
.emi-amort-table thead tr:first-child th:last-child {
    border-top-right-radius: 11px;
}

.product-detail-description table td,
.rd-rates-table td,
.fd-rates-table td,
.loan-norms-table td,
.achievement-table td,
.management-table td,
.emi-amort-table td {
    padding: 14px 18px;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    vertical-align: middle;
}

.product-detail-description table tbody tr:nth-child(even) td,
.rd-rates-table tbody tr:nth-child(even) td,
.fd-rates-table tbody tr:nth-child(even) td,
.fd-rates-table .fd-row-yellow td,
.loan-norms-table tbody tr:nth-child(even) td,
.loan-norms-table tbody tr.loan-norms-row-alt td,
.achievement-table tbody tr:nth-child(even) td,
.management-table tbody tr:nth-child(even) td,
.emi-amort-table tbody tr:nth-child(even) td {
    /*background: #f7f7f7 !important;*/
    backgrounf: #5c1515 !important;
}

.product-detail-description table tbody tr:nth-child(odd) td,
.rd-rates-table tbody tr:nth-child(odd) td,
.fd-rates-table tbody tr:nth-child(odd) td,
.fd-rates-table .fd-row-white td,
.loan-norms-table tbody tr:nth-child(odd) td,
.achievement-table tbody tr:nth-child(odd) td,
.management-table tbody tr:nth-child(odd) td,
.emi-amort-table tbody tr:nth-child(odd) td {
    /*background: #fff !important;*/
 backgrounf: #5c1515 !important;
    
}

/* Blue accent for rate/numeric columns */
.product-detail-description table td:nth-child(n+2),
.rd-rates-table td:nth-child(n+2),
.fd-rates-table .fd-td-rate,
.achievement-table td:nth-child(n+2),
.management-table td:nth-child(n+2),
.emi-amort-table td:nth-child(n+2) {
    color: #a52a2a !important;
    /*color: white !important;*/
    font-weight: 600;
}

/* First/label columns stay dark */
.product-detail-description table td:first-child,
.rd-rates-table td:first-child,
.fd-rates-table .fd-td-period,
.loan-norms-table .loan-norms-td-title,
.loan-norms-table .loan-norms-td-norms {
    color: #333 !important;
    /*color: white !important;*/
}

.product-detail-description table tbody tr:last-child td,
.rd-rates-table tbody tr:last-child td,
.fd-rates-table tbody tr:last-child td,
.loan-norms-table tbody tr:last-child td,
.achievement-table tbody tr:last-child td,
.management-table tbody tr:last-child td,
.emi-amort-table tbody tr:last-child td {
    border-bottom: none;
}

.product-detail-description table tbody tr:last-child td:first-child,
.rd-rates-table tbody tr:last-child td:first-child,
.fd-rates-table tbody tr:last-child td:first-child,
.loan-norms-table tbody tr:last-child td:first-child,
.achievement-table tbody tr:last-child td:first-child,
.management-table tbody tr:last-child td:first-child,
.emi-amort-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 11px;
}

.product-detail-description table tbody tr:last-child td:last-child,
.rd-rates-table tbody tr:last-child td:last-child,
.fd-rates-table tbody tr:last-child td:last-child,
.loan-norms-table tbody tr:last-child td:last-child,
.achievement-table tbody tr:last-child td:last-child,
.management-table tbody tr:last-child td:last-child,
.emi-amort-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 11px;
}

/* FD table: first column (fd-td-type) uses header style */
.fd-td-type,
.fd-th-type {
    /*background: #5c1515 !important;*/
    color: #fff !important;
    font-weight: 700;
}

/* Loan norms header cells */
.loan-norms-th-title,
.loan-norms-th-norms {
    background: #5c1515 !important;
}

/* Row hover */
.product-detail-description table tbody tr:hover td,
.rd-rates-table tbody tr:hover td,
.fd-rates-table tbody tr:hover td,
.loan-norms-table tbody tr:hover td,
.achievement-table tbody tr:hover td,
.management-table tbody tr:hover td,
.emi-amort-table tbody tr:hover td {
    /*background: #eef2f7 !important;*/
    /*color: #5c1515;*/
}

.fd-rates-table tbody tr:hover .fd-td-type {
    background: #5c1515 !important;
}

/* Premium table design */
.product-detail-description {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

.product-detail-description .table-wrapper {
    margin: 1.5rem 0 2rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-detail-description table {
    margin: 1.5rem 0 2rem;
}

.product-detail-description table tbody tr {
    opacity: 0;
}

.product-detail-description table tbody tr.animate-in,
.product-detail-description table.animate-in tbody tr {
    animation: pdTableRowIn 0.4s ease-out forwards;
}

/* Override harsh inline styles in HTML content */
.product-detail-description div[style*="background"],
.product-detail-description [style*="background-color: darkred"],
.product-detail-description [style*="background-color:#8B0000"],
.product-detail-description .rd-features-banner {
    background: linear-gradient(135deg, #5c1515 0%, #a52a2a 100%) !important;
    color: #fff !important;
    padding: 0.875rem 1.5rem !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    margin: 1.25rem 0 1rem !important;
}

/* Actions */
.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.product-detail-actions .btn {
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.product-detail-actions .btn-primary {
    background: linear-gradient(135deg, #8b2222 0%, #a52a2a 100%);
    border: none;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.product-detail-actions .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.product-detail-actions .btn-primary:hover {
    background: linear-gradient(135deg, #5c1515 0%, #8b2222 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(165, 42, 42, 0.35);
}

.product-detail-actions .btn-primary:hover::before {
    left: 100%;
}

.product-detail-actions .btn-outline-secondary:hover {
    transform: translateY(-1px);
}

/* Sidebar */
.product-detail-sidebar {
    position: sticky;
    top: 100px;
}

.product-detail-sidebar.animate-sidebar {
    opacity: 0;
    transform: translateX(20px);
}

.product-detail-sidebar.animate-sidebar.animate-in {
    animation: pdSlideIn 0.6s ease-out 0.2s forwards;
}

.product-detail-summary {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.product-detail-summary:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.product-detail-summary h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #a52a2a;
}

.product-detail-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-detail-summary-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9375rem;
}

.product-detail-summary-list li:last-child {
    border-bottom: none;
}

.product-detail-summary-list .label {
    font-size: 0.8125rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-detail-summary-list .value {
    font-weight: 600;
    color: #1e293b;
}

.product-detail-summary .btn-cta {
    padding: 0.875rem 1.25rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.product-detail-summary .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(165, 42, 42, 0.3);
}

@media (prefers-reduced-motion: reduce) {
    .product-detail-page .page-hero .hero-shape-1,
    .product-detail-page .page-hero .hero-shape-2 { animation: none; }
    .product-detail-card.animate-card,
    .product-detail-sidebar.animate-sidebar { opacity: 1; transform: none; }
    .product-detail-description table tbody tr { opacity: 1; }
}

/* Responsive */
@media (max-width: 991px) {
    .product-detail-sidebar {
        position: static;
    }

    .product-detail-page .page-hero {
        padding: 2rem 0 1.5rem;
    }

    .product-detail-body {
        padding: 1.5rem 1.25rem 2rem;
    }

}

@media (max-width: 767px) {
    .product-detail-section {
        padding: 1.5rem 0 3rem;
    }

    .product-detail-section .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .product-detail-page .page-hero h1 {
        font-size: 1.75rem;
    }

    .product-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-detail-title {
        font-size: 1.375rem;
    }

    .product-detail-body {
        padding: 1.25rem 1rem 1.75rem;
    }

    .product-detail-description table {
        font-size: 0.875rem;
    }

    .product-detail-description table thead th,
    .product-detail-description table th,
    .product-detail-description table td {
        padding: 0.5rem 0.75rem;
    }

    .product-detail-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .product-detail-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .product-detail-summary {
        padding: 1.25rem;
    }

    .breadcrumb-wrap {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .product-detail-description table {
        display: block;
        font-size: 0.8125rem;
    }

    .product-detail-description table thead th,
    .product-detail-description table td {
        padding: 0.5rem 0.625rem;
        white-space: nowrap;
    }
}

.btn-view-all {
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(165, 42, 42, 0.35);
}

.product-card:hover,
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-icon,
.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-card h3,
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.product-card p,
.service-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-card .btn-link,
.service-card .btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-card .btn-link:hover,
.service-card .btn-link:hover {
    color: #a52a2a;
    transform: translateX(5px);
}


/* ========== Stats Section (theme-aligned, banking-grade) ========== */

.stats-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 72px 0;
    background: linear-gradient(145deg, #3d1a1a 0%, #5c1515 45%, #a52a2a 100%);
}


/* Animated background layer: slow gradient shift + hue drift */

.stats-section-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(165, 42, 42, 0.2) 0%, transparent 35%, rgba(184, 60, 60, 0.15) 50%, transparent 70%, rgba(92, 21, 21, 0.25) 100%);
    background-size: 250% 250%;
    animation: statsBgShift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes statsBgShift {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 1;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 0%;
    }
}


/* Floating orbs – subtle movement */

.stats-section-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.stats-section-shapes::before,
.stats-section-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 70%);
    animation: statsFloat 24s ease-in-out infinite;
}

.stats-section-shapes::before {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -80px;
    animation-delay: 0s;
}

.stats-section-shapes::after {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
    animation-delay: -10s;
    animation-duration: 28s;
}

@keyframes statsFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(25px, -30px) scale(1.08);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
        opacity: 0.7;
    }
    75% {
        transform: translate(15px, 25px) scale(1.02);
        opacity: 0.75;
    }
}

/* Extra ambient layer for depth */
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    animation: statsPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes statsPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .stats-section-bg,
    .stats-section::before {
        animation: none;
    }
    .stats-section-shapes::before,
    .stats-section-shapes::after {
        animation: none;
    }
    .stats-badge span {
        opacity: 1;
        transform: none;
    }
    .stats-section.stats-in-view .stats-badge span {
        animation: none;
    }
}

.stats-section .container.position-relative {
    z-index: 1;
}

.stats-title h2 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stats-title p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
}


/* Staggered reveal for stat items */

@keyframes statReveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-row .col-sm-6 {
    animation: statReveal 0.6s ease-out forwards;
}

.stats-row .col-sm-6:nth-child(1) {
    animation-delay: 0.1s;
}

.stats-row .col-sm-6:nth-child(2) {
    animation-delay: 0.2s;
}

.stats-row .col-sm-6:nth-child(3) {
    animation-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .stats-row .col-sm-6 {
        animation: none;
    }
}

.stat-item {
    text-align: center;
    padding: 20px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    min-height: 1.2em;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.stats-badge {
    margin-top: 32px;
    text-align: center;
}

.stats-badge span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease, transform 0.25s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stats-section.stats-in-view .stats-badge span {
    animation: statsBadgeReveal 0.8s ease-out 0.6s forwards;
}

@keyframes statsBadgeReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-badge span:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}


/* ========== Testimonials Section (slider, dynamic from admin) ========== */

.testimonials-section {
    padding: 80px 0;
}

.testimonials-section .section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.testimonials-section .section-title h2 {
    margin-bottom: 0;
}

.testimonial-slider-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 70px 60px;
}


/* Strip: 3 cards visible – left (small), center (full), right (small) */

.testimonial-cards-strip {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Base card – same size; position classes control placement and scale */

.testimonial-slide-card {
    position: absolute;
    left: 50%;
    background: #fff;
    border-radius: 16px;
    padding: 36px 40px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    text-align: center;
    min-height: 380px;
    width: 340px;
    max-width: 92vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.45s ease, opacity 0.45s ease, z-index 0s 0.2s;
    z-index: 0;
}


/* Center card: full size, on top */

.testimonial-slide-card.pos-center {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}


/* Left card: smaller, behind */

.testimonial-slide-card.pos-left {
    transform: translateX(-50%) translateX(-200px) scale(0.88);
    opacity: 0.85;
    z-index: 1;
    pointer-events: auto;
}


/* Right card: smaller, behind */

.testimonial-slide-card.pos-right {
    transform: translateX(-50%) translateX(200px) scale(0.88);
    opacity: 0.85;
    z-index: 1;
    pointer-events: auto;
}


/* Off-screen (not visible) */

.testimonial-slide-card.pos-off {
    transform: translateX(-50%) translateX(-600px) scale(0.8);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.testimonial-slide-card .testimonial-card-image-wrap {
    flex-shrink: 0;
}

.testimonial-slide-card .testimonial-card-quote {
    flex-shrink: 0;
}

.testimonial-slide-card .testimonial-card-text {
    flex: 1 1 auto;
    min-height: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

.testimonial-slide-card .testimonial-card-author,
.testimonial-slide-card .testimonial-card-designation,
.testimonial-slide-card .testimonial-stars {
    flex-shrink: 0;
}

.testimonial-card-image-wrap {
    margin-bottom: 16px;
}

.testimonial-card-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(165, 42, 42, 0.2);
}

.testimonial-card-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fdf2f2 0%, #fce7e7 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
}

.testimonial-card-quote {
    color: rgba(165, 42, 42, 0.25);
    font-size: 2.5rem;
    margin-bottom: 12px;
    line-height: 1;
}

.testimonial-card-quote i {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.testimonial-card-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 20px;
    width: 100%;
}

.testimonial-card-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 4px;
}

.testimonial-card-designation {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 0.95rem;
}

.testimonial-control {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    pointer-events: auto;
}

.testimonial-control:hover {
    background: #a52a2a;
}

.testimonial-prev {
    left: 15px;
}

.testimonial-next {
    right: 15px;
}

.testimonial-control i {
    font-size: 1.1rem;
}


/* ========== Blog Section ========== */

.blogs-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    overflow: hidden;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.blog-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
}

.blog-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}


/* ========== Contact Section ========== */

.contact-section {
    padding: 80px 0;
}

.contact-info {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: #fdf2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 20px;
}

.contact-info-content h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-info-content p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(165, 42, 42, 0.1);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}


/* ========== Join Section (banking CTA) ========== */

.join-section {
    display: flex;
    align-items: center;
    /*background: linear-gradient(180deg, #3d1a1a 0%, #5c1515 100%);*/
    background: radial-gradient(circle, #b54d35 0%, #7b2e1d 50%, #2a0e07 100%);
    color: #fff;
    position: relative;
    overflow: visible;
}

.join-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(165, 42, 42, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.join-card {
    position: relative;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 320px;
    overflow: visible;
}

/* Image wrapper: remove vertical padding from image only; text/button keep card padding */
.join-logo-wrap {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-logo-vert {
    height: 100%;
    max-height: 460px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    display: block;
}

.join-content {
    flex: 1;
    min-width: 0;
    align-self: center;
}

.join-card .btn-join-know {
    align-self: center;
}

.join-content h2 {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: -0.02em;
}

.join-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.btn-join-know {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 28px;
    margin-top: 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1d2a57;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-join-know:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1d2a57;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}


/* ========== Media Section – Image Slider ========== */

.media-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f0f4fa 0%, #e8eef8 100%);
}

.media-slider-header {
    text-align: center;
    margin-bottom: 32px;
}

.media-slider-header .media-tag {
    display: inline-block;
    background: linear-gradient(135deg, #fdf2f2 0%, #fce7e7 100%);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.media-slider-header h2 {
    font-size: 1.85rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.media-slider-header p {
    color: #555;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.5;
}

.media-slider-wrap {
    position: relative;
    /* max-width: 1000px; */
    margin: 0 auto;
    border-radius: 20px;
    /* box-shadow: 0 12px 48px rgba(11, 28, 61, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06); */
    display: flex;
    align-items: center;
    gap: 12px;
}

.media-slider-wrap .media-slider {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
}

.media-slider .carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}

.media-slider .carousel-item {
    min-height: 380px;
}

.media-slide-img-wrap {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

.media-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Arrows – small circular buttons outside image (like hero) */

.media-slider-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    opacity: 0.9;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, opacity 0.25s ease;
}

.media-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    opacity: 1;
}

.media-slider-arrow i {
    font-size: 1rem;
}

.media-slider-wrap .carousel-control-prev,
.media-slider-wrap .carousel-control-next {
    position: static;
    opacity: 1;
}

.media-slider-dots {
    bottom: 16px;
    z-index: 2;
}

.media-slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
}

.media-slider-dots button.active {
    background-color: #fff;
    transform: scale(1.2);
}


/* ========== Footer ========== */

.site-footer {
    background-color: #5c1515;
    padding: 20px 0 10px;
    /* margin-top: 80px; */
    color: #cfd6e4;
}

.site-footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.site-footer a {
    color: #cfd6e4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer li {
    /*margin-bottom: 8px;*/
}

.footer-text {
    color: #cfd6e4;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.social-links a:hover {
    background-color: var(--primary-color);
}


/* ========== Inner page layout (all routes: news, blogs, products, etc.) ========== */

.inner-page .page-hero {
    margin-bottom: 0;
}

.inner-page .breadcrumb-wrap {
    background-color: #f8f9fa;
    padding: 12px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
}


/* ========== Breadcrumb ========== */

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item.active {
    color: #666;
}

.breadcrumb-wrap .breadcrumb {
    margin-bottom: 0;
}


/* ========== Management Page – Modern UI ========== */

.management-section .container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.management-section {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 12%);
    min-height: 40vh;
}

.management-title-bar {
    background: linear-gradient(135deg, #f5d020 0%, #e6c019 100%);
    padding: 18px 24px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(245, 208, 32, 0.25);
    display: none;
}

.management-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.management-section-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    display: block;
    width: 100%;
}


/* Rows: equal-height columns, proper alignment */

.management-lead-row,
.management-officers-row {
    align-items: stretch;
}

.management-lead-row .col-md-6,
.management-lead-row .col-md-4,
.management-officers-row .col-md-6,
.management-officers-row .col-md-4 {
    display: flex;
    flex-direction: column;
}

.management-lead-row .col-md-6>.management-card,
.management-lead-row .col-md-4>.management-card,
.management-officers-row .col-md-6>.management-card,
.management-officers-row .col-md-4>.management-card {
    flex: 1;
    min-height: 0;
}


/* Profile cards – flex layout for proper alignment */

.management-card {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.management-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(165, 42, 42, 0.2);
}

.management-card-img-wrap {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    margin: 0 auto 20px;
    overflow: hidden;
    /*border-radius: 50%;*/
    background: #f0f2f5;
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.management-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.management-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px 0;
    line-height: 1.35;
    text-align: center;
    width: 100%;
}

.management-card-designation {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    text-align: center;
    width: 100%;
}


/* Directors table – modern table with rounded corners */

.management-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecf1;
    width: 100%;
    margin-bottom: 40px;
}

.management-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.management-table th:first-child {
    width: 80px;
    min-width: 80px;
}

.management-table th:nth-child(2),
.management-table th:nth-child(3) {
    text-align: left;
}

.management-table td:first-child {
    text-align: center;
    font-weight: 700;
    color: #64748b !important;
}

.management-table td:nth-child(2),
.management-table td:nth-child(3) {
    text-align: left;
}

@media (max-width: 767px) {
    .management-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .management-title-bar {
        padding: 14px 18px;
        margin-bottom: 28px;
    }
    .management-title {
        font-size: 1.35rem;
    }
    .management-section-heading {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    .management-card {
        padding: 22px 18px;
    }
    .management-card-img-wrap {
        width: 160px;
        height: 160px;
        margin-bottom: 16px;
    }
    .management-card-name {
        font-size: 1rem;
    }
    .management-table {
        font-size: 0.85rem;
    }
    .management-table th,
    .management-table td {
        padding: 12px 14px;
    }
}


/* ========== Achievement Page ========== */

.achievement-section .container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.achievement-section {
    background: #fff;
}

.achievement-title-bar {
    background: linear-gradient(135deg, #f5d020 0%, #e6c019 100%);
    padding: 18px 24px;
    margin-bottom: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(245, 208, 32, 0.25);
    display: none;
}

.achievement-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.achievement-sub-banner {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    padding: 14px 20px;
    margin-bottom: 24px;
    border-radius: 8px;
    letter-spacing: 0.03em;
}

.achievement-intro {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.5;
}

.achievement-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 28px 0;
}

.achievement-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    line-height: 1.55;
    color: #374151;
}

.achievement-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.achievement-subheading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.achievement-performance-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    margin-top: 36px;
}

.achievement-amount-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
}

.achievement-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecf1;
    margin-bottom: 24px;
}

.achievement-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.achievement-table td {
    text-align: center;
}

@media (max-width: 767px) {
    .achievement-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .achievement-title-bar {
        padding: 14px 18px;
        margin-bottom: 24px;
    }
    .achievement-title {
        font-size: 1.35rem;
    }
    .achievement-sub-banner {
        font-size: 1rem;
        padding: 12px 16px;
    }
    .achievement-intro {
        font-size: 1rem;
    }
    .achievement-performance-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .achievement-table {
        font-size: 0.85rem;
    }
    .achievement-table th,
    .achievement-table td {
        padding: 12px 14px;
    }
}


/* ========== Departments Page ========== */

.departments-section .container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.departments-section {
    background: #fff;
}

.departments-title-bar {
    background: linear-gradient(135deg, #f5d020 0%, #e6c019 100%);
    padding: 18px 24px;
    margin-bottom: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(245, 208, 32, 0.25);
    display: none;
}

.departments-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.departments-sub-banner {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    padding: 14px 20px;
    margin-bottom: 24px;
    border-radius: 8px;
    letter-spacing: 0.03em;
}

.departments-intro {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.5;
}


/* Department contact list (Name, E-mail Id, Phone No.) */

.departments-contact-list {
    margin-bottom: 28px;
}

.department-block {
    margin-bottom: 24px;
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.department-heading {
    margin: 0;
    padding: 14px 20px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #8b3a3a;
    background: #fef2f2;
    border-bottom: 2px solid #b91c1c;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.department-contact {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 0;
}

.dept-col {
    padding: 16px 20px;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dept-col:last-child {
    border-right: none;
}

.dept-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: none;
}

.dept-value {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.4;
}

.dept-value a {
    color: var(--primary-color, #b91c1c);
    text-decoration: none;
}

.dept-value a:hover {
    text-decoration: underline;
}

.departments-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecf1;
    margin-bottom: 28px;
}

.departments-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.departments-table thead tr:first-child th:first-child {
    border-top-left-radius: 12px;
    width: 80px;
    min-width: 80px;
}

.departments-table thead tr:first-child th:last-child {
    border-top-right-radius: 12px;
}

.departments-table th {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 16px 20px;
    border: none;
    vertical-align: middle;
}

.departments-table th:nth-child(2),
.departments-table th:nth-child(3) {
    text-align: left;
}

.departments-table td {
    background: #fffbeb;
    color: #1a202c;
    padding: 14px 20px;
    border-bottom: 1px solid #fef3c7;
    vertical-align: middle;
}

.departments-table td:first-child {
    text-align: center;
    font-weight: 700;
    color: #64748b;
}

.departments-table td:nth-child(2),
.departments-table td:nth-child(3) {
    text-align: left;
}

.departments-table tbody tr:last-child td {
    border-bottom: none;
}

.departments-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.departments-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.departments-table tbody tr:nth-child(even) td {
    background: #fefce8;
}

.departments-table tbody tr:hover td {
    background: #fef9c3;
}

.departments-note {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.departments-note a {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 767px) {
    .departments-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .departments-title-bar {
        padding: 14px 18px;
        margin-bottom: 24px;
    }
    .departments-title {
        font-size: 1.35rem;
    }
    .departments-sub-banner {
        font-size: 1rem;
        padding: 12px 16px;
    }
    .departments-intro {
        font-size: 1rem;
    }
    .department-contact {
        grid-template-columns: 1fr;
    }
    .dept-col {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 12px 16px;
    }
    .dept-col:last-child {
        border-bottom: none;
    }
    .department-heading {
        padding: 12px 16px;
        font-size: 1.05rem;
    }
    .departments-table {
        font-size: 0.85rem;
    }
    .departments-table th,
    .departments-table td {
        padding: 12px 14px;
    }
}


/* ========== Lockers Page ========== */

.lockers-section .container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.lockers-title-bar {
    background: linear-gradient(135deg, #f5d020 0%, #e6c019 100%);
    padding: 18px 24px;
    margin-bottom: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(245, 208, 32, 0.25);
    display: none;
}

.lockers-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.lockers-banner-wrap {
    position: relative;
    margin-bottom: 36px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.lockers-carousel {
    position: relative;
}

.lockers-carousel .carousel-inner {
    border-radius: 12px;
}

.lockers-banner {
    position: relative;
    min-height: 380px;
    background: linear-gradient(135deg, #6b2d2d 0%, #8b3a3a 50%, #6b2d2d 100%);
    color: #fff;
}

.lockers-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 45, 45, 0.95) 0%, rgba(139, 58, 58, 0.9) 100%);
    pointer-events: none;
}

.lockers-banner-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 28px 32px 60px;
    min-height: 320px;
    align-items: start;
}

.lockers-banner-left .lockers-banner-heading {
    margin: 0 0 4px 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lockers-banner-sub {
    margin: 0 0 16px 0;
    font-size: 1rem;
    color: #fde68a;
    font-weight: 600;
}

.lockers-banner-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    max-height: 200px;
}

.lockers-banner-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lockers-banner-vault {
    max-width: 320px;
}

.lockers-banner-right {
    text-align: right;
}

.lockers-banner-logo {
    margin-bottom: 8px;
}

.lockers-logo-hindi {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.lockers-logo-sub {
    display: block;
    font-size: 0.75rem;
    color: #fcd34d;
    margin-top: 2px;
}

.lockers-banner-our-building {
    margin: 0 0 12px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fde68a;
}

.lockers-banner-building {
    max-width: 280px;
    margin-left: auto;
}

.lockers-banner-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
    color: #e2e8f0;
}

.lockers-address {
    font-weight: 500;
}

.lockers-phones {
    font-weight: 600;
    white-space: nowrap;
}

.lockers-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6) !important;
    border: none;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 12px;
    z-index: 2;
}

.lockers-carousel-btn i {
    font-size: 1.1rem;
    color: #fff;
}

.lockers-carousel-btn:hover {
    background: rgba(0, 0, 0, 0.85) !important;
}

.lockers-info-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.lockers-list {
    margin: 0;
    padding-left: 24px;
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
}

.lockers-list li {
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .lockers-banner-content {
        grid-template-columns: 1fr;
        padding: 24px 20px 56px;
    }
    .lockers-banner-right {
        text-align: left;
    }
    .lockers-banner-building {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .lockers-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .lockers-title-bar {
        padding: 14px 18px;
        margin-bottom: 22px;
    }
    .lockers-title {
        font-size: 1.35rem;
    }
    .lockers-banner {
        min-height: auto;
    }
    .lockers-banner-content {
        padding: 20px 16px 52px;
    }
    .lockers-banner-left .lockers-banner-heading {
        font-size: 1.4rem;
    }
    .lockers-banner-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}


/* ========== Insurance Page ========== */

.insurance-section .container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.insurance-title-bar {
    background: linear-gradient(135deg, #f5d020 0%, #e6c019 100%);
    padding: 18px 24px;
    margin-bottom: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(245, 208, 32, 0.25);
    display: none;
}

.insurance-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.insurance-main-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.insurance-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 32px;
}

.insurance-block {
    margin-bottom: 40px;
}

.insurance-section-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.insurance-block-intro {
    font-size: 1rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 20px;
}

.insurance-plans-grid {
    margin-top: 20px;
}

.insurance-plan-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 20px;
    height: 100%;
}

.insurance-plan-category-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.insurance-plan-list {
    margin: 0;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #334155;
}

.insurance-plan-list li {
    margin-bottom: 4px;
}

.insurance-general-list {
    margin: 0 0 20px 0;
    padding-left: 24px;
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
}

.insurance-general-list li {
    margin-bottom: 6px;
}

.insurance-contact-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 18px 22px;
    margin-top: 16px;
}

.insurance-contact-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #334155;
}

.insurance-contact-box a {
    color: var(--primary-color);
    font-weight: 600;
}

.insurance-contact-box a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .insurance-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .insurance-title-bar {
        padding: 14px 18px;
        margin-bottom: 22px;
    }
    .insurance-title {
        font-size: 1.35rem;
    }
    .insurance-main-heading {
        font-size: 1.3rem;
    }
}


/* ========== MSEB Bill Collection Center Page ========== */

.mseb-section .container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.mseb-title-bar {
    background: linear-gradient(135deg, #f5d020 0%, #e6c019 100%);
    padding: 18px 24px;
    margin-bottom: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(245, 208, 32, 0.25);
    display: none;
}

.mseb-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.mseb-region {
    margin-bottom: 36px;
}

.mseb-region-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #b91c1c;
}

.mseb-centres-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mseb-centre-item {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 1rem;
    line-height: 1.6;
    color: #334155;
}

.mseb-centre-name {
    font-weight: 700;
    color: #1a1a1a;
    flex-shrink: 0;
}

.mseb-centre-address {
    color: #475569;
}

@media (max-width: 767px) {
    .mseb-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .mseb-title-bar {
        padding: 14px 18px;
        margin-bottom: 26px;
    }
    .mseb-title {
        font-size: 1.35rem;
    }
    .mseb-region-heading {
        font-size: 1.1rem;
    }
    .mseb-centre-item {
        flex-direction: column;
        gap: 2px;
    }
}


/* ========== Authorized Railway Reservation Center Page ========== */

.railway-section .container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.railway-title-bar {
    background: linear-gradient(135deg, #f5d020 0%, #e6c019 100%);
    padding: 18px 24px;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(245, 208, 32, 0.25);
    display: none;
}

.railway-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.railway-subheading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 28px;
}

.railway-carousel-wrap {
    position: relative;
    margin-bottom: 36px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.railway-carousel .carousel-inner {
    border-radius: 12px;
}

.railway-slide {
    position: relative;
    max-height: 420px;
    overflow: hidden;
    background: #1a1a1a;
}

.railway-slide-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 420px;
}

.railway-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 28px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.railway-slide-title {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.railway-slide-tagline {
    display: block;
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-top: 4px;
}

.railway-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6) !important;
    border: none;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 12px;
    z-index: 2;
}

.railway-carousel-btn i {
    font-size: 1.1rem;
    color: #fff;
}

.railway-carousel-btn:hover {
    background: rgba(0, 0, 0, 0.85) !important;
}

.railway-content {
    max-width: 800px;
}

.railway-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 20px;
}

.railway-services,
.railway-documents {
    margin-top: 28px;
}

.railway-block-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.railway-block-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 18px;
}

.railway-docs-list {
    margin: 0 0 24px 0;
    padding-left: 24px;
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
}

.railway-docs-list li {
    margin-bottom: 6px;
}

.railway-contact-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 24px;
}

.railway-contact-box .railway-block-heading {
    margin-bottom: 8px;
}

.railway-contact-box a {
    color: var(--primary-color);
    font-weight: 600;
}

.railway-contact-box a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .railway-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .railway-title-bar {
        padding: 14px 18px;
        margin-bottom: 20px;
    }
    .railway-title {
        font-size: 1.35rem;
    }
    .railway-subheading {
        font-size: 1.2rem;
    }
    .railway-slide-caption {
        padding: 14px 18px;
    }
}


/* ========== Career Page ========== */

.career-section .container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.career-title-bar {
    background: linear-gradient(135deg, #f5d020 0%, #e6c019 100%);
    padding: 18px 24px;
    margin-bottom: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(245, 208, 32, 0.25);
    display: none;
}

.career-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.career-carousel-wrap {
    position: relative;
    margin-bottom: 36px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.career-carousel .carousel-inner {
    border-radius: 12px;
}

.career-slide {
    position: relative;
    min-height: 380px;
    background: #1a1a1a;
}

.career-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.career-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.career-slide-content {
    position: relative;
    padding: 32px 40px 48px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.career-slide-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.career-slide-tagline {
    font-size: 1.1rem;
    color: #fde68a;
    margin-bottom: 16px;
}

.career-slide-course {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.career-slide-points {
    margin: 0 0 14px 0;
    padding-left: 22px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.career-slide-points li {
    margin-bottom: 4px;
}

.career-slide-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 8px;
}

.career-slide-badge2 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.career-slide-contact {
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fcd34d;
}

.career-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6) !important;
    border: none;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 12px;
    z-index: 2;
}

.career-carousel-btn i {
    font-size: 1.1rem;
    color: #fff;
}

.career-carousel-btn:hover {
    background: rgba(0, 0, 0, 0.85) !important;
}

.career-intro-block {
    margin-bottom: 40px;
}

.career-block-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.career-intro-list {
    margin: 0 0 20px 0;
    padding-left: 24px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #334155;
}

.career-intro-list li {
    margin-bottom: 10px;
}

.career-banking-point-link {
    margin: 0 0 28px 0;
    font-size: 1rem;
}

.career-banking-point-link a {
    color: var(--primary-color);
    font-weight: 600;
}

.career-banking-point-link a:hover {
    text-decoration: underline;
}

.career-form-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.career-form .form-label {
    font-weight: 600;
    color: #334155;
}

.career-file-input {
    max-width: 320px;
}

.career-btn-send {
    background: linear-gradient(135deg, #f5d020 0%, #e6c019 100%);
    color: #1a1a1a;
    font-weight: 700;
    padding: 12px 36px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(245, 208, 32, 0.3);
}

.career-btn-send:hover {
    background: linear-gradient(135deg, #e6c019 0%, #d4af18 100%);
    color: #1a1a1a;
    box-shadow: 0 6px 16px rgba(245, 208, 32, 0.4);
}

@media (max-width: 767px) {
    .career-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .career-title-bar {
        padding: 14px 18px;
        margin-bottom: 22px;
    }
    .career-title {
        font-size: 1.35rem;
    }
    .career-slide-content {
        padding: 24px 20px 40px;
        min-height: 320px;
    }
    .career-slide-title {
        font-size: 1.4rem;
    }
    .career-form-block {
        padding: 20px 20px;
    }
}


/* ========== Branches Page ========== */

.branches-section .container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.branches-title-bar {
    background: linear-gradient(135deg, #f5d020 0%, #e6c019 100%);
    padding: 18px 24px;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(245, 208, 32, 0.25);
    display: none;
}

.branches-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.branches-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 10px;
}

.branches-subheading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.branches-select {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.branch-card-inner {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.branch-icon {
    color: #943030;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.branch-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.branch-row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #334155;
}

.branch-row:last-child {
    margin-bottom: 0;
}

.branch-row-icon {
    color: #ffd70b;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.branch-detail a {
    color: var(--primary-color);
    text-decoration: none;
}

.branch-detail a:hover {
    text-decoration: underline;
}

.branch-map-wrap {
    margin-top: 14px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f1f5f9;
}

.branch-map-iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: 0;
}

.branch-map-link {
    display: block;
    padding: 8px 12px;
    font-size: 0.85rem;
    color: #fff;
    text-decoration: none;
    background: #5c1515;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.branch-map-link:hover {
    text-decoration: underline;
    color: #fff;
}

@media (max-width: 767px) {
    .branches-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .branches-title-bar {
        padding: 14px 18px;
        margin-bottom: 20px;
    }
    .branches-title {
        font-size: 1.35rem;
    }
    .branches-subheading {
        font-size: 1.2rem;
    }
}

/* ========== Loans Page ========== */
.loans-section .container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.loans-title-bar {
    background: linear-gradient(135deg, #f5d020 0%, #e6c019 100%);
    padding: 18px 24px;
    margin-bottom: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(245, 208, 32, 0.25);
}

.loans-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.loans-carousel-wrap {
    position: relative;
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.loans-carousel {
    background: #f1f5f9;
}

.loans-slide {
    position: relative;
    width: 100%;
    aspect-ratio: 2.2 / 1;
    max-height: 380px;
    overflow: hidden;
}

.loans-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loans-slide-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 50%);
    color: #fff;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loans-slide-title {
    margin: 0 0 8px 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.loans-slide-rate {
    margin: 0 0 4px 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.loans-slide-sub {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
}

.loans-slide-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}

.loans-carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: #333;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.loans-carousel-btn:hover {
    background: #fff;
    color: #333;
}

.loans-carousel-dots {
    bottom: 8px;
}

.loans-types-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.loans-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 32px 0;
}

.loans-list li {
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.loans-list-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.loans-list-link:hover {
    border-color: var(--primary-color, #a52a2a);
    background: linear-gradient(135deg, #f8fafc 0%, #fdf2f2 100%);
    box-shadow: 0 8px 24px rgba(165, 42, 42, 0.15);
    transform: translateY(-2px);
}

.loans-list-link::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    font-size: 0.95rem;
    color: var(--primary-color, #a52a2a);
    opacity: 0.7;
    transition: transform 0.25s ease;
}

.loans-list-link:hover::after {
    transform: translateX(4px);
    opacity: 1;
}

.loans-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    color: #1e293b;
    flex: 1;
}

.loans-list-item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf2f2 0%, #fce7e7 100%);
    color: var(--primary-color, #a52a2a);
    border-radius: 10px;
    font-size: 1.25rem;
}

.loans-list-link:hover .loans-list-item {
    color: var(--primary-color, #a52a2a);
}

.loan-detail-section .container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.loan-detail-intro {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #334155;
}

/* Loan norms table (Vehicle Loan etc.) */
.loan-norms-table-wrap {
    margin-top: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 12px;
}

.loan-norms-table th,
.loan-norms-table td {
    vertical-align: top;
    text-align: left;
}

.loan-norms-th-title {
    width: 22%;
}

.loan-norms-td-title {
    font-weight: 700;
    color: #1a1a1a;
}

.loan-norms-td-norms {
    color: #1a1a1a;
    line-height: 1.55;
}

.loan-norms-table tbody tr {
    background: #fffacd;
}

.loan-norms-table tbody tr.loan-norms-row-alt {
    background: #f5f5dc;
}

.loan-norms-list,
.loan-norms-ol {
    margin: 0 0 0 18px;
    padding-left: 8px;
}

.loan-norms-list li,
.loan-norms-ol li {
    margin-bottom: 6px;
}

.loan-norms-rate {
    margin: 0 0 10px 0;
    font-size: 1rem;
}

.loan-norms-rate:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .loans-title-bar {
        padding: 14px 18px;
        margin-bottom: 22px;
    }
    .loans-title {
        font-size: 1.35rem;
    }
    .loans-section .container,
    .loan-detail-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .loans-list-link {
        padding: 14px 16px;
        gap: 12px;
    }
    .loans-list-item i {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    .loans-slide {
        aspect-ratio: 16 / 10;
    }
    .loans-slide-overlay {
        padding: 16px 20px;
    }
    .loans-slide-title { font-size: 1.35rem; }
    .loans-slide-rate { font-size: 1.2rem; }
    .loan-norms-table th,
    .loan-norms-table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    .loan-norms-th-title { width: 28%; }
}

/* ========== Table animations & polish (all site tables) ========== */
/* Slow, smooth entrance for table containers */
@keyframes tableWrapFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Staggered row fade-in (slow) */
@keyframes tableRowFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply to all table wrappers – slow animation */
.fd-table-wrap,
.rd-table-wrap,
.loan-norms-table-wrap,
.management-table-wrap,
.achievement-table-wrap,
.table-responsive:has(.emi-amort-table) {
    animation: tableWrapFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* FD / RD / Loan norms: rounded container + shadow */

.loan-norms-table-wrap {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.fd-rates-table,
.rd-rates-table,
.loan-norms-table {
    transition: box-shadow 0.4s ease, transform 0.35s ease;
}

.fd-table-wrap:hover .fd-rates-table,
.rd-table-wrap:hover .rd-rates-table,
.loan-norms-table-wrap:hover .loan-norms-table {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Row animation – slow stagger (0.08s per row) */
.fd-rates-table tbody tr,
.rd-rates-table tbody tr,
.loan-norms-table tbody tr {
    transition: background-color 0.35s ease, transform 0.25s ease;
    animation: tableRowFadeIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fd-rates-table tbody tr:nth-child(1),
.rd-rates-table tbody tr:nth-child(1),
.loan-norms-table tbody tr:nth-child(1) { animation-delay: 0.08s; }
.fd-rates-table tbody tr:nth-child(2),
.rd-rates-table tbody tr:nth-child(2),
.loan-norms-table tbody tr:nth-child(2) { animation-delay: 0.16s; }
.fd-rates-table tbody tr:nth-child(3),
.rd-rates-table tbody tr:nth-child(3),
.loan-norms-table tbody tr:nth-child(3) { animation-delay: 0.24s; }
.fd-rates-table tbody tr:nth-child(4),
.rd-rates-table tbody tr:nth-child(4),
.loan-norms-table tbody tr:nth-child(4) { animation-delay: 0.32s; }
.fd-rates-table tbody tr:nth-child(5),
.rd-rates-table tbody tr:nth-child(5),
.loan-norms-table tbody tr:nth-child(5) { animation-delay: 0.4s; }
.fd-rates-table tbody tr:nth-child(6),
.rd-rates-table tbody tr:nth-child(6),
.loan-norms-table tbody tr:nth-child(6) { animation-delay: 0.48s; }
.fd-rates-table tbody tr:nth-child(7),
.rd-rates-table tbody tr:nth-child(7),
.loan-norms-table tbody tr:nth-child(7) { animation-delay: 0.56s; }
.fd-rates-table tbody tr:nth-child(8),
.rd-rates-table tbody tr:nth-child(8),
.loan-norms-table tbody tr:nth-child(8) { animation-delay: 0.64s; }
.fd-rates-table tbody tr:nth-child(9),
.rd-rates-table tbody tr:nth-child(9),
.loan-norms-table tbody tr:nth-child(9) { animation-delay: 0.72s; }
.fd-rates-table tbody tr:nth-child(10),
.rd-rates-table tbody tr:nth-child(10),
.loan-norms-table tbody tr:nth-child(10) { animation-delay: 0.8s; }
.fd-rates-table tbody tr:nth-child(n+11),
.rd-rates-table tbody tr:nth-child(n+11),
.loan-norms-table tbody tr:nth-child(n+11) { animation-delay: 0.88s; }

.fd-rates-table tbody tr:hover,
.rd-rates-table tbody tr:hover {
    background-color: #fff8e1 !important;
}

.loan-norms-table tbody tr:hover {
    background-color: #fff8e1 !important;
}

.loan-norms-table tbody tr.loan-norms-row-alt:hover {
    background-color: #fffde7 !important;
}

.fd-rates-table th,
.fd-rates-table td,
.rd-rates-table th,
.rd-rates-table td,
.loan-norms-table th,
.loan-norms-table td {
    transition: background-color 0.3s ease;
}

/* Management & Achievement tables – row stagger + hover */
.management-table thead tr,
.achievement-table thead tr {
    animation: tableRowFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.management-table tbody tr,
.achievement-table tbody tr {
    transition: background-color 0.35s ease;
    animation: tableRowFadeIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.management-table tbody tr:nth-child(1),
.achievement-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.management-table tbody tr:nth-child(2),
.achievement-table tbody tr:nth-child(2) { animation-delay: 0.18s; }
.management-table tbody tr:nth-child(3),
.achievement-table tbody tr:nth-child(3) { animation-delay: 0.26s; }
.management-table tbody tr:nth-child(4),
.achievement-table tbody tr:nth-child(4) { animation-delay: 0.34s; }
.management-table tbody tr:nth-child(5),
.achievement-table tbody tr:nth-child(5) { animation-delay: 0.42s; }
.management-table tbody tr:nth-child(6),
.achievement-table tbody tr:nth-child(6) { animation-delay: 0.5s; }
.management-table tbody tr:nth-child(7),
.achievement-table tbody tr:nth-child(7) { animation-delay: 0.58s; }
.management-table tbody tr:nth-child(8),
.achievement-table tbody tr:nth-child(8) { animation-delay: 0.66s; }
.management-table tbody tr:nth-child(n+9),
.achievement-table tbody tr:nth-child(n+9) { animation-delay: 0.74s; }

/* EMI amortization table – slow wrap + row stagger */
.table-responsive:has(.emi-amort-table) {
    animation: tableWrapFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.emi-amort-table {
    transition: box-shadow 0.4s ease;
}

.table-responsive:hover .emi-amort-table {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.emi-amort-table tbody tr {
    transition: background-color 0.35s ease;
    animation: tableRowFadeIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.emi-amort-table tbody tr:nth-child(1) { animation-delay: 0.08s; }
.emi-amort-table tbody tr:nth-child(2) { animation-delay: 0.16s; }
.emi-amort-table tbody tr:nth-child(3) { animation-delay: 0.24s; }
.emi-amort-table tbody tr:nth-child(4) { animation-delay: 0.32s; }
.emi-amort-table tbody tr:nth-child(5) { animation-delay: 0.4s; }
.emi-amort-table tbody tr:nth-child(6) { animation-delay: 0.48s; }
.emi-amort-table tbody tr:nth-child(7) { animation-delay: 0.56s; }
.emi-amort-table tbody tr:nth-child(8) { animation-delay: 0.64s; }
.emi-amort-table tbody tr:nth-child(9) { animation-delay: 0.72s; }
.emi-amort-table tbody tr:nth-child(10) { animation-delay: 0.8s; }
.emi-amort-table tbody tr:nth-child(n+11) { animation-delay: 0.88s; }

.emi-amort-table tbody tr:hover {
    background-color: #e8f4ff !important;
}

/* ========== Deposits Page ========== */
@keyframes depositsFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes depositsIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.deposits-section .container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.deposits-intro-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 28px;
    animation: depositsFadeInUp 0.5s ease-out;
}

.deposits-calc-card-wrap {
    margin-bottom: 36px;
    animation: depositsFadeInUp 0.5s ease-out 0.1s both;
}

.deposits-calc-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    /* background: linear-gradient(135deg, var(--primary-color, #a52a2a) 0%, #8b2222 100%); */
    color: #fff !important;
    background: #5c1515 !important;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(165, 42, 42, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deposits-calc-card:hover {
    color: #fff !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(165, 42, 42, 0.4);
}

.deposits-calc-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.deposits-calc-card:hover .deposits-calc-icon {
    animation: depositsIconPulse 0.6s ease;
}

.deposits-calc-text {
    font-weight: 700;
    font-size: 1.25rem;
    flex: 1;
}

.deposits-calc-desc {
    font-size: 0.95rem;
    opacity: 0.9;
}

.deposits-calc-arrow {
    font-size: 1.1rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.deposits-calc-card:hover .deposits-calc-arrow {
    transform: translateX(6px);
}

.deposits-cards {
    margin-bottom: 40px;
}

.deposits-card {
    display: block;
    height: 100%;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: depositsFadeInUp 0.5s ease-out both;
}

.deposits-cards .col-md-6:nth-child(1) .deposits-card { animation-delay: 0.15s; }
.deposits-cards .col-md-6:nth-child(2) .deposits-card { animation-delay: 0.25s; }

.deposits-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(165, 42, 42, 0.2);
}

.deposits-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--primary-color, #a52a2a);
    border-radius: 14px;
    font-size: 1.35rem;
    margin-bottom: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.deposits-card:hover .deposits-card-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, #fdf2f2 0%, #fee2e2 100%);
}

.deposits-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.deposits-card:hover .deposits-card-title {
    color: var(--primary-color, #a52a2a);
}

.deposits-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 16px;
}

.deposits-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color, #a52a2a);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.deposits-card:hover .deposits-card-link {
    gap: 10px;
}

.deposits-card-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.deposits-card:hover .deposits-card-link i {
    transform: translateX(4px);
}

.deposits-detail-blocks {
    display: grid;
    gap: 24px;
}

.deposits-detail-card {
    padding: 24px 28px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    animation: depositsFadeInUp 0.5s ease-out both;
}

.deposits-detail-card:nth-child(1) { animation-delay: 0.35s; }
.deposits-detail-card:nth-child(2) { animation-delay: 0.45s; }

.deposits-detail-card.deposit-block {
    margin-bottom: 0;
    padding-bottom: 24px;
    border-bottom: none;
}

.deposits-detail-card.deposit-block:last-of-type {
    padding-bottom: 24px;
}

.deposit-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.deposits-detail-card p,
.deposits-detail p {
    font-size: 1rem;
    line-height: 1.65;
    color: #334155;
    margin-bottom: 12px;
}

.deposits-detail-card p:last-child,
.deposits-detail p:last-child {
    margin-bottom: 0;
}

/* Legacy support */
.deposits-intro { font-size: 1.05rem; line-height: 1.65; color: #334155; margin-bottom: 20px; }
.deposits-list { list-style: none; padding-left: 0; margin: 0 0 32px; }
.deposits-list li { margin-bottom: 14px; font-size: 1.05rem; }
.deposits-list a { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: #fff; border: 2px solid #e2e8f0; border-radius: 12px; color: #1e293b; text-decoration: none; transition: all 0.25s ease; cursor: pointer; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
.deposits-list a:hover { border-color: var(--primary-color, #a52a2a); background: linear-gradient(135deg, #f8fafc 0%, #fdf2f2 100%); box-shadow: 0 8px 24px rgba(165, 42, 42, 0.15); transform: translateY(-2px); }
.deposits-list a::after { content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-left: auto; font-size: 0.95rem; color: var(--primary-color, #a52a2a); opacity: 0.7; transition: transform 0.25s ease; }
.deposits-list a:hover::after { transform: translateX(4px); opacity: 1; }
.deposits-list-item { display: flex; align-items: center; gap: 14px; font-weight: 700; color: #1e293b; flex: 1; }
.deposits-list-item img { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; }
.deposits-list a:hover .deposits-list-item { color: var(--primary-color, #a52a2a); }
.deposits-calc-link-wrap { margin-bottom: 20px; }
.deposits-calc-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: #a52a2a; color: #fff !important; border-radius: 10px; font-weight: 600; text-decoration: none; }
.deposits-calc-link:hover { background: #8b2222; color: #fff; }

.deposit-block {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.deposit-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .deposits-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .deposits-calc-card {
        flex-wrap: wrap;
        padding: 20px;
        gap: 16px;
    }
    .deposits-calc-desc {
        width: 100%;
        order: 3;
        margin-top: 4px;
    }
    .deposits-calc-arrow {
        order: 2;
        margin-left: auto;
    }
    .deposits-card {
        padding: 22px 20px;
    }
    .deposits-detail-card {
        padding: 20px;
    }
}

/* ========== Fixed Deposit Page ========== */
.fixed-deposit-section .container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.fd-title-bar {
    background: linear-gradient(135deg, #f5d020 0%, #e6c019 100%);
    padding: 18px 24px;
    margin-bottom: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(245, 208, 32, 0.25);
}

.fd-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.fd-table-wrap {
    margin-bottom: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 12px;
}

.fd-rates-table th,
.fd-rates-table td {
    text-align: center;
}

.fd-th-period,
.fd-td-period {
    text-align: left !important;
    padding-left: 16px;
}

.fd-features-banner {
    background: #5c1515;
    color: #fff;
    font-weight: 700;
    padding: 14px 20px;
    margin-bottom: 16px;
    font-size: 1rem;
}

.fd-features-list {
    list-style: circle;
    padding-left: 28px;
    margin: 0 0 24px 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #1a1a1a;
}

.fd-features-list li {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .fixed-deposit-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .fd-title-bar {
        padding: 14px 18px;
        margin-bottom: 22px;
    }
    .fd-title {
        font-size: 1.35rem;
    }
    .fd-rates-table {
        font-size: 0.85rem;
    }
    .fd-rates-table th,
    .fd-rates-table td {
        padding: 10px 8px;
    }
}

/* ========== Recurring Deposit Page ========== */
.recurring-deposit-section .container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.rd-title-bar {
    background: linear-gradient(135deg, #f5d020 0%, #e6c019 100%);
    padding: 18px 24px;
    margin-bottom: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(245, 208, 32, 0.25);
}

.rd-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.rd-table-wrap {
    margin-bottom: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 12px;
}

.rd-rates-table th,
.rd-rates-table td {
    text-align: center;
}

.rd-features-banner {
    background: #5c1515;
    color: #fff;
    font-weight: 700;
    padding: 14px 20px;
    margin-bottom: 16px;
    font-size: 1rem;
}

.rd-features-list {
    list-style: square;
    padding-left: 28px;
    margin: 0 0 24px 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #1a1a1a;
}

.rd-features-list li {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .recurring-deposit-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .rd-title-bar {
        padding: 14px 18px;
        margin-bottom: 22px;
    }
    .rd-title {
        font-size: 1.35rem;
    }
    .rd-rates-table {
        font-size: 0.85rem;
    }
    .rd-rates-table th,
    .rd-rates-table td {
        padding: 10px 12px;
    }
}

/* ========== Deposit Calculator (FD Calculator) ========== */
.deposit-calc-section {
    background: #e8f4ff;
}

.deposit-calc-section .container {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.fd-calc-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.fd-calc-left,
.fd-calc-right {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid #d8e6ff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.fd-calc-left {
    flex: 1 1 400px;
    min-width: 280px;
}

.fd-calc-right {
    flex: 1 1 360px;
    min-width: 280px;
}

.fd-calc-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 20px 0 0 0;
    color: #000;
}

.fd-calc-heading:first-child {
    margin-top: 0;
}

.fd-calc-input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #c6d8ff;
    border-radius: 10px;
    background: #f9fbff;
    font-size: 1rem;
}

.fd-calc-input-disabled {
    background: #f1f1f1;
    color: #aaa;
    cursor: not-allowed;
}

.fd-calc-slider {
    width: 100%;
    margin: 15px 0;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 10px;
    background: #d8d8ff;
}

.fd-calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #6a4cff;
    border-radius: 50%;
    cursor: pointer;
}

.fd-calc-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #6a4cff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.fd-calc-radio-group label {
    margin-right: 20px;
    font-size: 1rem;
}

.fd-calc-radio-group input {
    accent-color: #a52a2a;
}

.fd-calc-tab {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.fd-calc-tab-btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #cfdcff;
    background: #eef3ff;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

.fd-calc-tab-btn.active {
    background: #a52a2a;
    color: #fff;
    border-color: #a52a2a;
}

.fd-calc-help {
    display: block;
    color: #555;
    font-size: 0.875rem;
    margin-top: 4px;
}

.fd-calc-sublabel {
    display: block;
    font-size: 0.9rem;
    margin-top: 12px;
    margin-bottom: 4px;
}

.fd-calc-msg {
    color: #c62828;
    font-size: 0.75rem;
    margin-top: -4px;
    display: block;
}

.fd-calc-summary-box {
    background: #a52a2a;
    color: #fff;
    padding: 30px;
    text-align: left;
    border-radius: 16px;
    margin-bottom: 20px;
}

.fd-calc-maturity {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: #fff !important;
}

.fd-calc-summary-box p {
    margin: 8px 0 0 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.fd-calc-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid #eef3ff;
    font-size: 1rem;
}

.fd-calc-rate-box {
    background: #eef4ff;
    border: 1px solid #d8e4ff;
    padding: 14px;
    margin-top: 14px;
    text-align: center;
    border-radius: 12px;
}

.fd-calc-rate-value {
    font-size: 1.75rem;
    margin: 6px 0;
    color: #a52a2a;
    font-weight: 800;
}

.fd-calc-rate-break {
    font-size: 0.75rem;
    color: #345;
    margin-top: 4px;
}

@media (max-width: 767px) {
    .fd-calc-wrapper {
        flex-direction: column;
    }
    .fd-calc-left,
    .fd-calc-right {
        flex: 1 1 auto;
    }
}

/* ========== EMI Loan Tracker / Calculator ========== */

.inner-page-emi .breadcrumb-wrap {
    margin-bottom: 0;
}

.emi-calculator-section {
    background: #f8f8f8;
    background-image: radial-gradient(ellipse 80% 60% at 50% 0%, #FCE9F0 0%, rgba(252, 233, 240, 0.5) 50%, transparent 70%);
    background-attachment: local;
    min-height: 40vh;
    padding-top: 32px;
    padding-bottom: 48px;
}

.emi-calculator-section .container {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.emi-page-title {
    margin: 0 0 12px 0;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.emi-intro {
    font-size: 1rem;
    color: #555;
    margin: 0 auto 24px;
    line-height: 1.65;
    text-align: center;
    max-width: 720px;
}

.emi-read-more {
    color: #E91E63;
    font-weight: 600;
    text-decoration: none;
}

.emi-read-more:hover {
    text-decoration: underline;
    color: #c2185b;
}

.emi-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    margin-bottom: 28px;
}

.emi-tab {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 24px;
    background: #424242;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.emi-tab:hover {
    background: #333;
    color: #fff;
}

.emi-tab-active {
    background: #E91E63;
}

.emi-tab-active:hover {
    background: #c2185b;
    color: #fff;
}

.emi-calc-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 8px;
}

.emi-controls-card,
.emi-chart-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
}

.emi-controls-card {
    padding-right: 16px;
}

.emi-chart-card {
    padding-left: 16px;
}

.emi-control-group {
    margin-bottom: 24px;
}

.emi-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.emi-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 44px 10px 14px;
    background: #fff;
}

.emi-prefix {
    position: absolute;
    left: 12px;
    font-weight: 600;
    color: #64748b;
}

.emi-input {
    flex: 1;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0 8px;
    min-width: 0;
}

.emi-input-rate,
.emi-input-tenure {
    padding-left: 0;
}

.emi-suffix {
    font-weight: 600;
    color: #64748b;
    margin-left: 4px;
}

.emi-btn-adj {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #f8fafc;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.emi-btn-minus {
    right: 8px;
}

.emi-btn-plus {
    right: 38px;
}

.emi-btn-adj:hover {
    background: #e2e8f0;
}

.emi-slider {
    width: 100%;
    height: 8px;
    margin-top: 10px;
    -webkit-appearance: none;
    appearance: none;
    background: #e2e8f0;
    border-radius: 4px;
    accent-color: #E91E63;
}

.emi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #E91E63;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(233, 30, 99, 0.4);
}

.emi-slider::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
}

.emi-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #E91E63;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(233, 30, 99, 0.4);
}

.emi-slider::-moz-range-track {
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
}

.emi-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
}

.emi-result-box {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px 20px;
    margin: 24px 0 20px;
}

.emi-result-label {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
    color: #334155;
}

.emi-result-label small {
    font-weight: normal;
    color: #64748b;
}

.emi-result-value {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #E91E63;
}

.emi-result-note {
    margin: 8px 0 0 0;
    font-size: 0.8rem;
    color: #64748b;
}

.emi-cta-btn {
    display: inline-block;
    background: #E91E63;
    color: #fff !important;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s;
}

.emi-cta-btn:hover {
    background: #c2185b;
    color: #fff;
}

.emi-chart-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.emi-donut-wrap {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px;
}

.emi-donut {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: conic-gradient(#2DD4BF 0deg 170deg, #A970B4 170deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.emi-donut-inner {
    width: 72%;
    height: 72%;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 3px #e2e8f0;
}

.emi-donut-title {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 4px;
}

.emi-donut-total {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
}

.emi-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    justify-content: center;
}

.emi-legend-item {
    font-size: 0.95rem;
    color: #334155;
}

.emi-legend-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.emi-legend-principal {
    background: #2DD4BF;
}

.emi-legend-interest {
    background: #A970B4;
}

.emi-table-wrap {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.emi-table-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

/* emi-amort-table styled by unified bank table */

@media (max-width: 767px) {
    .emi-calculator-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .emi-page-title {
        font-size: 1.5rem;
    }
    .emi-calc-card {
        padding: 24px 16px;
    }
    .emi-controls-card,
    .emi-chart-card {
        padding-left: 0;
        padding-right: 0;
    }
    .emi-donut-total {
        font-size: 1rem;
    }
    .emi-tabs {
        gap: 8px;
    }
    .emi-tab {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}


/* ========== News and Events Page (Clipping Collage) ========== */

.news-events-section .container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.news-events-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.news-events-title-bar {
    background: linear-gradient(135deg, #f5d020 0%, #e6c019 100%);
    padding: 18px 24px;
    margin-bottom: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(245, 208, 32, 0.25);
    display: none;
}

.news-events-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.news-events-intro {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 36px;
    max-width: 720px;
}

.news-clippings-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    align-items: start;
}

.news-clipping {
    transform: rotate(var(--clip-rotate, 0deg));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-clipping:hover {
    transform: rotate(var(--clip-rotate, 0deg)) scale(1.02);
    z-index: 2;
}

.news-clipping-inner {
    background: #fffef7;
    border: 1px solid #e7e5e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-clipping-source {
    font-size: 0.8rem;
    font-weight: 700;
    color: #b91c1c;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #fde68a;
}

.news-clipping-headline {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 6px;
}

.news-clipping-headline-en {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 12px;
    font-style: italic;
}

.news-clipping-img-wrap {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #f1f5f9;
}

.news-clipping-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 200px;
}

.news-clipping-body {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #334155;
    flex: 1;
    column-count: 2;
    column-gap: 16px;
}

@media (max-width: 480px) {
    .news-clipping-body {
        column-count: 1;
    }
}

.news-clipping-footer {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px dashed #e2e8f0;
}

.news-events-cta .btn {
    padding: 12px 28px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .news-events-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .news-events-title-bar {
        padding: 14px 18px;
        margin-bottom: 22px;
    }
    .news-events-title {
        font-size: 1.35rem;
    }
    .news-clippings-wrap {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .news-clipping {
        transform: none;
    }
    .news-clipping:hover {
        transform: scale(1.01);
    }
}


/* ========== Responsive ========== */

@media (max-width: 991px) {
    .products-section,
    .services-section,
    .product-highlight-section,
    .blogs-section,
    .news-section,
    .testimonials-section {
        padding: 60px 0;
    }
    .section-title {
        margin-bottom: 36px;
    }
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .topbar .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-section {
        padding: 50px 0 40px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .section-title h2 {
        font-size: 1.75rem;
    }
    .section-title p {
        font-size: 1rem;
    }
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.95rem;
    }
    .hero-section .btn,
    .hero-actions .btn-hero {
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 12px;
    }
    .hero-services {
        margin-top: 16px;
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .loan-panels .col-md-4 {
        flex: 1 1 100%;
    }
    .loan-panel {
        border-right: none;
        border-bottom: 1px solid rgba(201, 162, 39, 0.4);
    }
    .loan-panel:last-child {
        border-bottom: none;
    }
    .hero-carousel-control {
        width: 40px;
        height: 40px;
    }
    .hero-indicators {
        bottom: 16px;
    }
    .testimonial-slider-wrap {
        padding: 0 50px 50px;
    }
    .testimonial-cards-strip {
        min-height: 400px;
    }
    .testimonial-slide-card {
        padding: 28px 24px 24px;
        min-height: 360px;
        width: 300px;
    }
    .testimonial-slide-card.pos-left {
        transform: translateX(-50%) translateX(-140px) scale(0.85);
    }
    .testimonial-slide-card.pos-right {
        transform: translateX(-50%) translateX(140px) scale(0.85);
    }
    .testimonial-slide-card .testimonial-card-text {
        -webkit-line-clamp: 4;
        line-clamp: 4;
        min-height: 84px;
    }
    .testimonial-card-image,
    .testimonial-card-placeholder {
        width: 70px;
        height: 70px;
    }
    .testimonial-card-quote {
        font-size: 2rem;
    }
    .join-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .join-logo-wrap {
        margin: 0;
        max-width: 100%;
    }
    .join-logo-vert {
        max-height: 280px;
        max-width: 260px;
        height: auto;
    }
    .join-content h2 {
        font-size: 1.5rem;
    }
    .join-content p {
        font-size: 1rem;
    }
    .btn-join-know {
        width: 100%;
        max-width: 240px;
    }
    .media-slider-header h2 {
        font-size: 1.6rem;
    }
    .media-slider .carousel-item {
        min-height: 320px;
    }
    .page-hero {
        padding: 50px 0 40px;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0 30px;
    }
    .hero-section h1 {
        font-size: 1.5rem;
    }
    .hero-actions .btn-hero {
        display: block;
        margin-right: 0;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .section-title h2 {
        font-size: 1.5rem;
    }
    .section-title {
        margin-bottom: 28px;
    }
    .products-section,
    .services-section,
    .product-highlight-section,
    .testimonials-section,
    .blogs-section,
    .news-section,
    .contact-section {
        padding: 40px 0;
    }
    .feature-card,
    .product-card,
    .service-card {
        padding: 22px;
    }
    .blog-card .blog-content {
        padding: 20px;
    }
    .site-footer {
        padding: 40px 0 20px;
    }
    .page-hero {
        padding: 40px 0 30px;
    }
    .page-hero h1 {
        font-size: 1.5rem;
    }
    .testimonial-slider-wrap {
        padding: 0 44px 44px;
    }
    .testimonial-slide-card {
        width: 280px;
        min-height: 340px;
    }
    .testimonial-slide-card.pos-left {
        transform: translateX(-50%) translateX(-100px) scale(0.82);
    }
    .testimonial-slide-card.pos-right {
        transform: translateX(-50%) translateX(100px) scale(0.82);
    }
    .join-section {
        padding: 48px 0;
        min-height: 360px;
    }
    .join-card {
        padding: 28px 20px;
    }
    .join-content h2 {
        font-size: 1.35rem;
    }
    .media-slider-header h2 {
        font-size: 1.4rem;
    }
    .media-slider .carousel-item {
        min-height: 280px;
    }
    .media-slider-arrow {
        width: 38px;
        height: 38px;
    }
    .media-slider-arrow i {
        font-size: 0.9rem;
    }
}


/* ========== Detail Pages ========== */

.detail-page-header {
    background: linear-gradient(135deg, #a52a2a 0%, #8b2222 100%);
    color: white;
    padding: 50px 0;
    margin-bottom: 50px;
}


/* ========== Page Hero ========== */

.page-hero {
    /*background: linear-gradient(135deg, #3d1a1a 0%, #5c1515 50%, #a52a2a 100%); */
    color: #fff;
    background: #a52a2a !important;
    padding: 50px 0 40px; 
    text-align: center;
}

.page-hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.page-hero .page-hero-actions {
    margin-top: 20px;
}

.section-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 10px;
}

.info-card {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.info-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fdf2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.detail-page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.detail-page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.detail-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    line-height: 1.8;
}

.detail-content h2,
.detail-content h3 {
    color: #333;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.detail-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}


/* ========== Pagination ========== */

.pagination {
    justify-content: center;
    margin-top: 40px;
}

.page-link {
    color: var(--primary-color);
    border-color: #ddd;
}

.page-link:hover {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.card-body{
    background: #5c1515;
    color: white !important;
    border-radius: 5px;
    padding: 50px;
}

.card-body i{
    color: white !important;
}

.text-muted{
    color: white !important;
}

.navbar-collapse{
    flex-grow: 0 !important;
}
/* ========== Floating buttons (right-side, two buttons → pop-up) ========== */
.floating-buttons-wrap {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: -2px 0 16px rgba(0, 0, 0, 0.15);
    border-radius: 12px 0 0 12px;
    overflow: hidden;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    min-height: 56px;
    padding: 16px 10px;
    border: none;
    background: var(--primary-color, #722f37);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, filter 0.2s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.05em;
}

.floating-btn:first-child {
    border-radius: 12px 0 0 0;
}

.floating-btn:last-child {
    border-radius: 0 0 0 12px;
}

.floating-btn:only-child {
    border-radius: 12px 0 12px 0;
}

.floating-btn:not(:last-child) {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-btn:hover {
    background: #5c252b;
    color: #fff;
    filter: brightness(1.08);
}

.floating-btn-text {
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(180deg);
    white-space: nowrap;
}

.floating-modal .modal-dialog {
    max-width: 480px;
}

.floating-modal .modal-content {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: none;
}

.floating-modal .modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.25rem;
}

.floating-modal .modal-title {
    font-weight: 700;
    color: #1a1a1a;
}

.floating-modal-body {
    padding: 1.25rem 1.25rem;
    max-height: 70vh;
    overflow-y: auto;
    font-size: 0.95rem;
    line-height: 1.6;
}

.floating-modal-body h4,
.floating-modal-body .floating-panel-sub {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color, #722f37);
    margin-bottom: 0.5rem;
}

.floating-modal-body p,
.floating-modal-body .floating-panel-rates {
    margin-bottom: 0.75rem;
    color: #334155;
}

.floating-modal .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.25rem;
}

.floating-modal .modal-footer .btn-primary {
    background: var(--primary-color, #a52a2a);
    border-color: var(--primary-color, #a52a2a);
    color: white !important;
}

.floating-modal .modal-footer .btn-primary:hover {
    background: #8b2222;
    border-color: #8b2222;
}

/* Legacy: old floating strip (kept for reference, not used when new buttons are active) */
.floating-strip-wrap { position: fixed; top: 50%; right: 0; transform: translateY(-50%); z-index: 99999; display: flex; flex-direction: row-reverse; }
.floating-strip { display: flex; flex-direction: column; width: 52px; background: #2d2d2d; border-radius: 8px 0 0 8px; }
.floating-strip .floating-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; color: #fff; border: none; background: transparent; cursor: pointer; }
.floating-panel { width: 320px; background: #fff; box-shadow: -4px 0 20px rgba(0,0,0,0.12); border-radius: 12px 0 0 12px; }
.floating-panel-inner { padding: 24px; max-height: 80vh; overflow-y: auto; }
.floating-panel-title { font-size: 1.1rem; font-weight: 600; }
.floating-panel-rates { font-size: 0.85rem; color: #444; margin-bottom: 10px; }
.floating-panel-readmore { font-size: 0.9rem; color: #198754; font-weight: 500; text-decoration: none; }

/* Reusable slider (includes/slider_render.php) */
.slider-render-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.slider-render-wrap .carousel,
.slider-render-wrap .carousel-inner,
.slider-render-wrap .carousel-item {
    height: 100%;
}
.slider-render-slide {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-render-caption {
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    max-width: 90%;
}
.slider-render-caption h5 { margin: 0 0 0.5rem; color: #fff; }
.slider-render-caption p { margin: 0 0 0.75rem; font-size: 0.95rem; }
.slider-render-wrap .carousel-control-prev,
.slider-render-wrap .carousel-control-next { z-index: 2; }
.slider-render-wrap .carousel-indicators { z-index: 2; }

.insurance-section.slider-render-slide{
    background-size: contain !important;

}

/* Homepage popup */
.home-popup-modal .modal-dialog {
    max-width: 720px;
}

.home-popup-modal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.22);
    background: #fff;
}

.home-popup-modal .modal-header {
    border-bottom: 1px solid #eef2f7;
    /* padding: 18px 22px 14px; */
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.home-popup-modal .modal-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.home-popup-modal .modal-body {
    padding: 18px 22px 12px;
}

.home-popup-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.home-popup-content {
    color: #334155;
    line-height: 1.75;
    font-size: 1.02rem;
    margin-top: 6px;
}

.home-popup-modal .modal-footer {
    border-top: 1px solid #eef2f7;
    padding: 16px 22px 20px;
    justify-content: center;
    background: #fff;
}

.home-popup-modal .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 1rem;
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(165, 42, 42, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-popup-modal .btn-primary:hover {
    background: #8b2222;
    border-color: #8b2222;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(139, 34, 34, 0.3);
}

.home-popup-modal .btn-close {
    filter: none;
    opacity: 0.65;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-popup-modal .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.home-popup-modal .modal-backdrop.show {
    opacity: 0.65;
}

@media (max-width: 767px) {
    .home-popup-modal .modal-dialog {
        margin: 1rem;
        max-width: none;
    }

    .home-popup-modal .modal-title {
        font-size: 1.2rem;
    }

    .home-popup-modal .modal-body {
        padding: 14px 14px 10px;
    }

    .home-popup-image {
        max-height: 250px;
        border-radius: 10px;
    }

    .home-popup-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .home-popup-modal .modal-footer {
        padding: 12px 14px 16px;
    }

    .home-popup-modal .btn-primary {
        width: 100%;
        min-width: 0;
    }
}

/* Language toggle (Google Translate based, frontend only) */
.nav-lang-toggle-wrap {
    margin-left: 10px;
}

.nav-lang-toggle {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.nav-lang-toggle .lang-btn {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    padding: 7px 11px;
    cursor: pointer;
}

.nav-lang-toggle .lang-btn.active {
    background: #fff;
    color: #5c1515;
}

.nav-lang-toggle .lang-btn + .lang-btn {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.goog-logo-link,
.goog-te-gadget span,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

@media (max-width: 991px) {
    .nav-lang-toggle-wrap {
        margin: 6px 0 8px;
    }
}

tbody {
    background: #5c1515;
    /* color: white !important; */
}
.rd-title-bar{
    display: none;
}




/*.rd-rates-table tbody tr:hover td{*/
    background:#5c1515 !important;   /* row background 
    color:white !important;        /* text color 
}

.fd-rates-table tbody tr:hover td{
    background:#5c1515 !important;   /* row background */
    color:white !important;        /* text color */
/*}*/

.management-table tbody tr:hover td{
    background:#5c1515 !important;   /* row background */
    color:white !important;        /* text color */
}

.achievement-table tbody tr:hover td{
    background:#5c1515 !important;   /* row background */
    color:white !important;        /* text color */
}

.achievement-table td{
    color: white !important;
}

/*.aa-table-box table tbody tr td{*/
    background:#5c1515;   /* row background */
    color:white;        /* text color */
/*}*/

/*.aa-table-box{*/
    background:#5c1515 !important;   /* row background */
    color:white;        /* text color */
/*}*/











/* ===== Global front-end table refresh (non-admin) ===== */
body:not(.admin-body) table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background-color: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
    font-size: 0.95rem !important;
    color: black !important;
}

/* Header row */
body:not(.admin-body) table thead tr {
    background: #5b0f10 !important; /* deep maroon top band */
}

body:not(.admin-body) table thead th {
    padding: 12px 18px !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    font-weight: 700 !important;
    border-bottom: 0 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
}

body:not(.admin-body) table thead th:last-child {
    border-right: none !important;
}

/* Body cells */
body:not(.admin-body) table tbody td {
    padding: 12px 18px !important;
    border-top: 1px solid #f1f5f9 !important;
    border-right: 1px solid #f1f5f9 !important;
    color: #1f2933 !important;
}

body:not(.admin-body) table tbody td:last-child {
    border-right: none !important;
}

/* Zebra striping */
body:not(.admin-body) table tbody tr:nth-child(odd) {
    background-color: #ffffff !important;
}

body:not(.admin-body) table tbody tr:nth-child(even) {
    background-color: #f9fafb !important;
}

/* Hover effect */
body:not(.admin-body) table tbody tr:hover {
    background-color: #fff7f7 !important; /* light maroon tint */
    transition: background-color 0.15s ease-in-out !important;
}

/* First & last row rounding for nicer card look */
body:not(.admin-body) table tbody tr:first-child td:first-child {
    border-top-left-radius: 0 !important;
}

body:not(.admin-body) table tbody tr:first-child td:last-child {
    border-top-right-radius: 0 !important;
}

body:not(.admin-body) table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px !important;
}

body:not(.admin-body) table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px !important;
}

/* Table captions / titles if used */
body:not(.admin-body) table caption {
    caption-side: top !important;
    padding: 0 0 8px 0 !important;
    font-weight: 600 !important;
    color: #5b0f10 !important;
}

/* Small screens – let table scroll horizontally instead of breaking layout */
@media (max-width: 767px) {
    body:not(.admin-body) table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06) !important;
    }

    body:not(.admin-body) table thead,
    body:not(.admin-body) table tbody,
    body:not(.admin-body) table tr {
        width: 100% !important;
    }
}

.ms-lg-auto{
    margin-left: 10px !important;
}


/*css for mobile app seciton*/

/* SECTION BASE */
.app-promo-section {
    position: relative;
    width: 100%;
    /*padding: 80px 0;*/
    /*background: #5c1515;  fallback #842424 */
    background: radial-gradient(circle, #b54d35 0%, #7b2e1d 50%, #2a0e07 100%);
    overflow: hidden; /* IMPORTANT: prevent overflow */
}

/* OVERLAY */
.app-overlay {
    width: 100%;
}

/* ROW FIX */
.app-promo-section .row {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* LEFT CONTENT */
.app-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.app-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ccc;
}

/* BUTTONS */
.app-buttons img {
    height: 48px;
    margin-right: 12px;
    transition: 0.3s;
}

.app-buttons img:hover {
    transform: scale(1.05);
}

/* RIGHT IMAGE FIX */
.app-image {
    max-width: 100%;
    width: 520px;
    height: auto;
    object-fit: contain;
    max-height: 600px;
}

/* CENTER ALIGN IMAGE */
.app-promo-section .text-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 🔥 MOBILE FIX */
@media (max-width: 992px) {

    .app-promo-section {
        padding: 50px 15px;
        text-align: center;
    }

    .app-content {
        margin-bottom: 30px;
    }

    .app-image {
        width: 280px; /* smaller image */
    }

    .app-buttons img {
        height: 42px;
        margin-bottom: 10px;
    }
}









/* About Section */
/* =========================
   ABOUT SECTION STYLING
========================= */

#about {
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

/* Title */
#about .section-title {
    text-align: center;
    margin-bottom: 65px;
}

#about .section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #7b0f12;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    letter-spacing: 1px;
}

#about .section-title h2::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(to right, #b71c1c, #2f89fc);
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
}

/* Card */
#about .card {
    border: none !important;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(145deg, #7b0f12, #8f1115);
    position: relative;
    transition: all 0.45s ease;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Top Glow */
#about .card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    transition: 0.5s ease;
}

/* Bottom Glow */
#about .card::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 140px;
    height: 140px;
    background: rgba(47, 137, 252, 0.08);
    border-radius: 50%;
    transition: 0.5s ease;
}

/* Hover */
#about .card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow:
        0 20px 45px rgba(123, 15, 18, 0.35),
        0 10px 25px rgba(47, 137, 252, 0.18);
}

#about .card:hover::before {
    transform: scale(1.3);
}

#about .card:hover::after {
    transform: scale(1.4);
}

/* Body */
#about .card-body {
    padding: 45px 30px;
    position: relative;
    z-index: 2;
}

/* Icon Circle */
#about .card i {
    width: 100px;
    height: 100px;
    line-height: 100px !important;
    border-radius: 50%;
    font-size: 38px !important;
    margin-bottom: 28px !important;
    /*background: linear-gradient(135deg, #2f89fc, #58a6ff);*/
    color: #fff !important;
    box-shadow:
        0 0 25px rgba(47, 137, 252, 0.45),
        inset 0 2px 5px rgba(255,255,255,0.3);
    transition: all 0.6s ease;
    background: white;
    color: black !important;
}

/* Icon Animation */
#about .card:hover i {
    transform: rotateY(360deg) scale(1.08);
    box-shadow:
        0 0 35px rgba(47, 137, 252, 0.7),
        0 10px 25px rgba(47, 137, 252, 0.35);
}

/* Title */
#about .card-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
}

/* Text */
#about .card-text {
    color: rgba(255,255,255,0.78) !important;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Button */
#about .btn-primary {
    border: none;
    border-radius: 60px;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 700;
    /*background: linear-gradient(135deg, #2f89fc, #58a6ff);*/
    /*color: #fff;*/
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(47, 137, 252, 0.28);
    background: white !important;
    color: black !important;
}

/* Shine Effect */
#about .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.22);
    transform: skewX(-25deg);
    transition: 0.7s;
}

#about .btn-primary:hover::before {
    left: 130%;
}

#about .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(47, 137, 252, 0.45);
}

/* Entry Animation */
#about .col-md-6 {
    opacity: 0;
    animation: aboutFadeUp 0.8s ease forwards;
}

#about .col-md-6:nth-child(1) {
    animation-delay: 0.1s;
}

#about .col-md-6:nth-child(2) {
    animation-delay: 0.3s;
}

#about .col-md-6:nth-child(3) {
    animation-delay: 0.5s;
}

#about .col-md-6:nth-child(4) {
    animation-delay: 0.7s;
}

/* Animation */
@keyframes aboutFadeUp {
    from {
        opacity: 0;
        transform: translateY(70px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {

    #about .card {
        margin-bottom: 25px;
    }

    #about .section-title h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {

    #about {
        padding: 70px 0;
    }

    #about .section-title {
        margin-bottom: 45px;
    }

    #about .section-title h2 {
        font-size: 2rem;
    }

    #about .card-body {
        padding: 35px 25px;
    }

    #about .card i {
        width: 82px;
        height: 82px;
        line-height: 82px !important;
        font-size: 30px !important;
    }

    #about .card-title {
        font-size: 1.5rem;
    }
}














/* ===================================
   SERVICES SECTION STYLING
=================================== */

.services-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f5f2, #fff);
    overflow: hidden;
}

/* Background Decorative Shapes */
.services-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(123, 15, 18, 0.05);
    border-radius: 50%;
}

.services-section::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 280px;
    height: 280px;
    background: rgba(183, 28, 28, 0.05);
    border-radius: 50%;
}

/* Section Title */
.services-section .section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.services-section .section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #7b0f12;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
}

.services-section .section-title h2::after {
    content: "";
    position: absolute;
    width: 85px;
    height: 5px;
    background: linear-gradient(to right, #7b0f12, #c62828);
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    border-radius: 50px;
}

.services-section .section-title p {
    color: #6c757d;
    font-size: 17px;
    margin-top: 25px;
}

/* Service Card */
.services-section .service-card {
    position: relative;
    height: 100%;
    padding: 45px 32px;
    border-radius: 28px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.45s ease;
    border: 1px solid rgba(123, 15, 18, 0.08);
    box-shadow:
        0 10px 25px rgba(0,0,0,0.05);
    z-index: 1;
}

/* Gradient Overlay */
.services-section .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        #7b0f12,
        #981b1e
    );
    opacity: 0;
    transition: 0.5s ease;
    z-index: -2;
}

/* Decorative Circle */
.services-section .service-card::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: 0.5s ease;
}

/* Hover */
.services-section .service-card:hover {
    transform: translateY(-14px);
    box-shadow:
        0 20px 45px rgba(123, 15, 18, 0.22);
    border-color: transparent;
}

.services-section .service-card:hover::before {
    opacity: 1;
}

.services-section .service-card:hover::after {
    transform: scale(1.3);
}

/* Icon */
.services-section .service-icon {
    width: 95px;
    height: 95px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b0f12, #b71c1c);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 10px 25px rgba(123, 15, 18, 0.25);
    transition: all 0.6s ease;
}

/* Icon Glow */
.services-section .service-icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(123, 15, 18, 0.25);
    animation: rotateCircle 14s linear infinite;
}

/* Icon */
.services-section .service-icon i {
    font-size: 36px;
    color: #fff;
    transition: 0.5s ease;
}

/* Hover Icon */
.services-section .service-card:hover .service-icon {
    background: #ffffff;
    transform: rotateY(360deg) scale(1.08);
}

.services-section .service-card:hover .service-icon i {
    color: #7b0f12;
}

.services-section .service-card:hover .service-icon::before {
    border-color: rgba(255,255,255,0.3);
}

/* Title */
.services-section .service-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
    transition: 0.4s ease;
}

/* Description */
.services-section .service-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #6c757d;
    margin-bottom: 26px;
    transition: 0.4s ease;
}

/* Hover Text */
.services-section .service-card:hover h3,
.services-section .service-card:hover p {
    color: #fff;
}

/* Read More Button */
.services-section .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(123, 15, 18, 0.08);
    color: #7b0f12;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin: auto;
}

/* Button Shine  */
.services-section .btn-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.services-section .btn-link:hover::before {
    left: 130%;
}

.services-section .btn-link i {
    transition: transform 0.4s ease;
}

/* Hover */
.services-section .service-card:hover .btn-link {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.services-section .btn-link:hover i {
    transform: translateX(6px);
}

/* Animation */
.services-section .col-sm-6 {
    opacity: 0;
    animation: serviceFadeUp 0.8s ease forwards;
}

.services-section .col-sm-6:nth-child(1) {
    animation-delay: 0.1s;
}

.services-section .col-sm-6:nth-child(2) {
    animation-delay: 0.2s;
}

.services-section .col-sm-6:nth-child(3) {
    animation-delay: 0.3s;
}

.services-section .col-sm-6:nth-child(4) {
    animation-delay: 0.4s;
}

.services-section .col-sm-6:nth-child(5) {
    animation-delay: 0.5s;
}

.services-section .col-sm-6:nth-child(6) {
    animation-delay: 0.6s;
}

/* Keyframes */
@keyframes serviceFadeUp {
    from {
        opacity: 0;
        transform: translateY(70px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 991px) {

    .services-section .section-title h2 {
        font-size: 2.4rem;
    }

    .services-section .service-card {
        padding: 38px 25px;
    }
}

@media (max-width: 768px) {

    .services-section {
        padding: 70px 0;
    }

    .services-section .section-title {
        margin-bottom: 50px;
    }

    .services-section .section-title h2 {
        font-size: 2rem;
    }

    .services-section .service-icon {
        width: 82px;
        height: 82px;
    }

    .services-section .service-icon i {
        font-size: 30px;
    }

    .services-section .service-card h3 {
        font-size: 1.45rem;
    }
}





.marquee-text-animate {
    display: inline-block;
    white-space: nowrap;
    animation: marqueeMove 45s linear infinite;
}

.marquee-text-animate:hover {
    animation-play-state: paused;
}

@keyframes marqueeMove {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}





/* =========================================
   LOCKER / SECURITY SECTION
========================================= */

.section-padding {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(to bottom, #faf7f5, #ffffff);
    overflow: hidden;
}

/* Decorative Background */
.section-padding::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(123, 15, 18, 0.05);
}

.section-padding::after {
    content: "";
    position: absolute;
    bottom: -140px;
    right: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(183, 28, 28, 0.05);
}

/* =========================================
   SECTION TITLE
========================================= */

.section-padding .section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #7b0f12;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.section-padding .section-title::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(to right, #7b0f12, #c62828);
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
}

/* =========================================
   GRID
========================================= */

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* =========================================
   CARD
========================================= */

.card-light {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 45px 30px;
    overflow: hidden;
    transition: all 0.45s ease;
    border: 1px solid rgba(123, 15, 18, 0.08);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);
    z-index: 1;
}

/* Gradient Background Hover */
.card-light::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        #7b0f12,
        #9f1d21
    );
    opacity: 0;
    transition: 0.5s ease;
    z-index: -2;
}

/* Decorative Circle */
.card-light::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: 0.5s ease;
}

/* Hover Effect */
.card-light:hover {
    transform: translateY(-15px);
    box-shadow:
        0 25px 50px rgba(123, 15, 18, 0.22);
}

.card-light:hover::before {
    opacity: 1;
}

.card-light:hover::after {
    transform: scale(1.25);
}

/* =========================================
   ICON
========================================= */

.card-light h3::before {
    content: "🔒";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b0f12, #b71c1c);
    font-size: 34px;
    box-shadow:
        0 10px 25px rgba(123, 15, 18, 0.25);
    transition: 0.6s ease;
}

/* Rotate Icon on Hover */
.card-light:hover h3::before {
    transform: rotateY(360deg) scale(1.08);
    background: #fff;
}

/* =========================================
   TITLE
========================================= */

.card-light h3 {
    position: relative;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    transition: 0.4s ease;
}

/* =========================================
   TEXT
========================================= */

.card-light p {
    text-align: center;
    font-size: 15px;
    line-height: 1.9;
    color: #6c757d;
    margin: 0;
    transition: 0.4s ease;
}

/* Hover Text */
.card-light:hover h3,
.card-light:hover p {
    color: #fff;
}

/* =========================================
   ENTRY ANIMATION
========================================= */

.grid-4 .card-light {
    opacity: 0;
    animation: securityFadeUp 0.8s ease forwards;
}

.grid-4 .card-light:nth-child(1) {
    animation-delay: 0.1s;
}

.grid-4 .card-light:nth-child(2) {
    animation-delay: 0.3s;
}

.grid-4 .card-light:nth-child(3) {
    animation-delay: 0.5s;
}

.grid-4 .card-light:nth-child(4) {
    animation-delay: 0.7s;
}

/* Animation */
@keyframes securityFadeUp {
    from {
        opacity: 0;
        transform: translateY(70px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .section-padding {
        padding: 75px 0;
    }

    .section-padding .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .grid-4 {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .card-light {
        padding: 38px 24px;
    }

    .card-light h3 {
        font-size: 1.45rem;
    }

    .card-light h3::before {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }
}


/* =========================================
   ELIGIBILITY & REQUIREMENTS SECTION
========================================= */

.section-padding {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #fafafa, #ffffff);
}

/* Decorative Background */
.section-padding::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 280px;
    height: 280px;
    background: rgba(123, 15, 18, 0.05);
    border-radius: 50%;
}

.section-padding::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    background: rgba(183, 28, 28, 0.05);
    border-radius: 50%;
}

/* =========================================
   GRID
========================================= */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    position: relative;
    z-index: 2;
}

/* =========================================
   CARD
========================================= */

.grid-2 .card {
    position: relative;
    border: none;
    border-radius: 30px;
    padding: 45px 35px;
    overflow: hidden;
    background: #fff;
    transition: all 0.45s ease;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(123, 15, 18, 0.08);
    z-index: 1;
}

/* Gradient Background */
.grid-2 .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        #7b0f12,
        #9f1d21
    );
    opacity: 0;
    transition: 0.5s ease;
    z-index: -2;
}

/* Decorative Circle */
.grid-2 .card::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: 0.5s ease;
}

/* Hover */
.grid-2 .card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 25px 50px rgba(123, 15, 18, 0.22);
}

.grid-2 .card:hover::before {
    opacity: 1;
}

.grid-2 .card:hover::after {
    transform: scale(1.3);
}

/* =========================================
   HEADING
========================================= */

.grid-2 .card h3 {
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    color: #7b0f12;
    margin-bottom: 35px;
    padding-bottom: 18px;
    transition: 0.4s ease;
}

/* Underline */
.grid-2 .card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    border-radius: 50px;
    background: linear-gradient(to right, #7b0f12, #c62828);
    transition: 0.4s ease;
}

/* Hover Heading */
.grid-2 .card:hover h3 {
    color: #fff;
}

.grid-2 .card:hover h3::after {
    background: rgba(255,255,255,0.7);
    width: 100px;
}

/* =========================================
   LIST
========================================= */

.grid-2 .list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List Item */
.grid-2 .list li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    transition: 0.4s ease;
}

/* Icon Circle */
.grid-2 .list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b0f12, #b71c1c);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 5px 15px rgba(123, 15, 18, 0.2);
    transition: 0.4s ease;
}

/* Hover List */
.grid-2 .card:hover .list li {
    color: rgba(255,255,255,0.92);
}

.grid-2 .card:hover .list li::before {
    background: #fff;
    color: #7b0f12;
    transform: scale(1.08);
}

/* =========================================
   ENTRY ANIMATION
========================================= */

.grid-2 .card {
    opacity: 0;
    animation: cardFadeUp 0.8s ease forwards;
}

.grid-2 .card:nth-child(1) {
    animation-delay: 0.2s;
}

.grid-2 .card:nth-child(2) {
    animation-delay: 0.5s;
}

/* Animation */
@keyframes cardFadeUp {
    from {
        opacity: 0;
        transform: translateY(70px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {

    .section-padding {
        padding: 70px 0;
    }

    .grid-2 .card {
        padding: 35px 25px;
    }

    .grid-2 .card h3 {
        font-size: 1.6rem;
        margin-bottom: 28px;
    }

    .grid-2 .list li {
        font-size: 14px;
        margin-bottom: 18px;
    }
}


/* =========================================
   OPERATING HOURS SECTION
========================================= */

.section-padding {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to bottom, #faf7f5, #ffffff);
    overflow: hidden;
}

/* Decorative Background */
.section-padding::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 300px;
    height: 300px;
    background: rgba(123, 15, 18, 0.05);
    border-radius: 50%;
}

.section-padding::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    background: rgba(183, 28, 28, 0.05);
    border-radius: 50%;
}

/* =========================================
   SECTION TITLE
========================================= */

.section-padding .section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #7b0f12;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-padding .section-title::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(to right, #7b0f12, #c62828);
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
}

/* =========================================
   GRID
========================================= */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* =========================================
   HOURS CARD
========================================= */

.hours-card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    padding: 50px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.45s ease;
    border: 1px solid rgba(123, 15, 18, 0.08);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);
    z-index: 1;
}

/* Gradient Hover Background */
.hours-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        #7b0f12,
        #9f1d21
    );
    opacity: 0;
    transition: 0.5s ease;
    z-index: -2;
}

/* Decorative Circle */
.hours-card::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: 0.5s ease;
}

/* Hover */
.hours-card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 25px 50px rgba(123, 15, 18, 0.22);
}

.hours-card:hover::before {
    opacity: 1;
}

.hours-card:hover::after {
    transform: scale(1.3);
}

/* =========================================
   ICON
========================================= */

.hours-card h3::before {
    content: "⏰";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b0f12, #b71c1c);
    color: #fff;
    font-size: 34px;
    box-shadow:
        0 10px 25px rgba(123, 15, 18, 0.22);
    transition: 0.6s ease;
}

/* Rotate Icon */
.hours-card:hover h3::before {
    transform: rotateY(360deg) scale(1.08);
    background: #fff;
    color: #7b0f12;
}

/* =========================================
   HEADING
========================================= */

.hours-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #7b0f12;
    margin-bottom: 25px;
    transition: 0.4s ease;
}

/* =========================================
   TEXT
========================================= */

.hours-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 10px;
    transition: 0.4s ease;
}

/* Highlight Last Line */
.hours-card p:last-child {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
}

/* Hover Text */
.hours-card:hover h3,
.hours-card:hover p,
.hours-card:hover p:last-child {
    color: #fff;
}

/* =========================================
   CLOSED CARD SPECIAL
========================================= */

.hours-card[style] {
    border: 2px dashed rgba(123, 15, 18, 0.15);
}

/* Different Icon */
.hours-card[style] h3::before {
    content: "📅";
}

/* =========================================
   ENTRY ANIMATION
========================================= */

.grid-3 .hours-card {
    opacity: 0;
    animation: hoursFadeUp 0.8s ease forwards;
}

.grid-3 .hours-card:nth-child(1) {
    animation-delay: 0.1s;
}

.grid-3 .hours-card:nth-child(2) {
    animation-delay: 0.3s;
}

.grid-3 .hours-card:nth-child(3) {
    animation-delay: 0.5s;
}

/* Animation */
@keyframes hoursFadeUp {
    from {
        opacity: 0;
        transform: translateY(70px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {

    .section-padding {
        padding: 70px 0;
    }

    .section-padding .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .hours-card {
        padding: 38px 25px;
    }

    .hours-card h3 {
        font-size: 1.5rem;
    }

    .hours-card h3::before {
        width: 78px;
        height: 78px;
        font-size: 28px;
    }

    .hours-card p {
        font-size: 15px;
    }

    .hours-card p:last-child {
        font-size: 1.05rem;
    }
}






/* =========================
   INSURANCE SECTION
========================= */

.insurance-section{
    background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* soft animated background circles */
.insurance-section::before,
.insurance-section::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: floatBg 8s ease-in-out infinite;
}

.insurance-section::before{
    width: 260px;
    height: 260px;
    background: rgba(133, 10, 15, 0.06);
    top: -80px;
    left: -80px;
}

.insurance-section::after{
    width: 220px;
    height: 220px;
    background: rgba(193, 39, 45, 0.08);
    bottom: -80px;
    right: -80px;
    animation-delay: 2s;
}

.insurance-section .container{
    position: relative;
    z-index: 2;
}

/* =========================
   TITLE BAR
========================= */

.insurance-title-bar{
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #7f0f13, #b22222);
    border-radius: 14px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(127, 15, 19, 0.2);
    animation: fadeDown 1s ease;
}

.insurance-title{
    margin: 0;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* =========================
   MAIN HEADING
========================= */

.insurance-main-heading{
    font-size: 42px;
    font-weight: 800;
    color: #7f0f13;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    animation: slideLeft 1s ease;
}

.insurance-main-heading::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 70%;
    height: 4px;
    background: linear-gradient(to right, #7f0f13, #d4a017);
    border-radius: 10px;
}

/* =========================
   INTRO TEXT
========================= */

.insurance-intro{
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    max-width: 1100px;
    margin-bottom: 45px;
    animation: fadeUp 1.2s ease;
}

.insurance-intro strong{
    color: #7f0f13;
}

/* =========================
   SUPPORT TEXT
========================= */

.insurance-support-text{
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #7f0f13;
    margin-bottom: 40px;
    animation: pulseText 2s infinite;
}

/* =========================
   CARD ROW
========================= */

.insurance-btn-row{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* =========================
   CARD DESIGN
========================= */

.insurance-card{
    width: 260px;
    background: #fff;
    border-radius: 22px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(127, 15, 19, 0.1);

    box-shadow: 
        0 10px 25px rgba(0,0,0,0.08),
        0 0 0 rgba(127,15,19,0);

    transition: all 0.45s ease;

    animation: fadeUp 1s ease;
}

/* glowing hover effect */
.insurance-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(127,15,19,0.08),
        rgba(212,160,23,0.12)
    );
    opacity: 0;
    transition: 0.4s ease;
}

.insurance-card:hover::before{
    opacity: 1;
}

.insurance-card:hover{
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 18px 40px rgba(127, 15, 19, 0.18),
        0 0 30px rgba(178, 34, 34, 0.15);
}

/* image */
.insurance-card img{
    width: 130px;
    height: auto;
    object-fit: contain;
    margin-bottom: 18px;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.12));
}

.insurance-card:hover img{
    transform: scale(1.08) rotate(-2deg);
}

/* text */
.insurance-card span{
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #7f0f13;
    letter-spacing: 0.4px;
    transition: 0.3s ease;
}

.insurance-card:hover span{
    color: #b22222;
}

/* =========================
   CENTER BUTTON
========================= */

.insurance-btn-center{
    display: flex;
    justify-content: center;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown{
    from{
        opacity: 0;
        transform: translateY(-40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft{
    from{
        opacity: 0;
        transform: translateX(-60px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseText{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.03);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes floatBg{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .insurance-main-heading{
        font-size: 32px;
    }

    .insurance-title{
        font-size: 26px;
    }

    .insurance-intro{
        font-size: 16px;
    }

    .insurance-card{
        width: 100%;
        max-width: 320px;
    }

    .insurance-support-text{
        font-size: 20px;
    }
}




/* =========================
   MSEB SECTION
========================= */

.mseb-section{
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
    overflow: hidden;
}

/* animated background glow */
.mseb-section::before,
.mseb-section::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: floatGlow 8s ease-in-out infinite;
}

.mseb-section::before{
    width: 320px;
    height: 320px;
    background: rgba(127, 15, 19, 0.05);
    top: -100px;
    left: -120px;
}

.mseb-section::after{
    width: 260px;
    height: 260px;
    background: rgba(178, 34, 34, 0.08);
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}

.mseb-section .container{
    position: relative;
    z-index: 2;
}

/* =========================
   TITLE
========================= */

.mseb-title{
    text-align: center;
    font-size: 46px;
    font-weight: 800;
    color: #7f0f13;
    margin-bottom: 60px;
    position: relative;
    animation: fadeDown 1s ease;
}

.mseb-title::after{
    content: "";
    width: 120px;
    height: 5px;
    background: linear-gradient(to right, #7f0f13, #d4a017);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
    border-radius: 20px;
}

/* =========================
   REGION HEADINGS
========================= */

.mseb-region-heading{
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #7f0f13, #b22222);
    padding: 16px 28px;
    border-radius: 16px;
    margin: 70px 0 35px;
    display: inline-block;

    box-shadow:
        0 12px 30px rgba(127,15,19,0.18);

    animation: slideLeft 1s ease;
}

/* =========================
   GRID
========================= */

.mseb-centres-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

/* =========================
   CARD
========================= */

.mseb-centre-item{
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    overflow: hidden;

    border: 1px solid rgba(127,15,19,0.08);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.07);

    transition: all 0.45s ease;

    animation: fadeUp 1s ease;
}

/* animated shine */
.mseb-centre-item::before{
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 70%;
    height: 300%;
    background: rgba(255,255,255,0.4);
    transform: rotate(25deg);
    transition: 0.8s;
}

.mseb-centre-item:hover::before{
    left: 130%;
}

/* hover */
.mseb-centre-item:hover{
    transform: translateY(-10px);
    box-shadow:
        0 18px 40px rgba(127,15,19,0.18);
    border-color: rgba(127,15,19,0.2);
}

/* =========================
   TOP AREA
========================= */

.mseb-top{
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

/* icon */
.mseb-icon{
    width: 70px;
    height: 70px;
    min-width: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: linear-gradient(135deg, #7f0f13, #b22222);

    color: #fff;
    font-size: 28px;

    box-shadow:
        0 10px 25px rgba(127,15,19,0.2);

    transition: all 0.4s ease;
}

.mseb-centre-item:hover .mseb-icon{
    transform: rotate(-8deg) scale(1.08);
}

/* =========================
   TEXT
========================= */

.mseb-centre-name{
    font-size: 24px;
    font-weight: 700;
    color: #7f0f13;
    margin-bottom: 4px;
}

.mseb-state{
    display: inline-block;
    background: rgba(127,15,19,0.08);
    color: #7f0f13;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* =========================
   ADDRESS
========================= */

.mseb-address{
    display: flex;
    align-items: flex-start;
    gap: 14px;

    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.mseb-address i{
    color: #b22222;
    font-size: 18px;
    margin-top: 5px;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown{
    from{
        opacity: 0;
        transform: translateY(-40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft{
    from{
        opacity: 0;
        transform: translateX(-60px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatGlow{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(25px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .mseb-section{
        padding: 60px 0;
    }

    .mseb-title{
        font-size: 34px;
        margin-bottom: 45px;
    }

    .mseb-region-heading{
        font-size: 24px;
        padding: 14px 22px;
    }

    .mseb-centre-item{
        padding: 22px;
    }

    .mseb-centre-name{
        font-size: 20px;
    }

    .mseb-address{
        font-size: 15px;
    }

    .mseb-icon{
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 24px;
    }
}



/*branch page animation*/

/* smooth animation */
.branch-card-inner{
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-origin: center;
}

/* hover animation */
.branch-card-inner:hover{
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}



/*department page*/



/* =========================
   TEAM SECTION
========================= */

.team-section{
    position: relative;
    padding: 90px 0;
    background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
    overflow: hidden;
}

/* animated background circles */
.team-section::before,
.team-section::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: floatingBg 8s ease-in-out infinite;
}

.team-section::before{
    width: 320px;
    height: 320px;
    background: rgba(127, 15, 19, 0.05);
    top: -120px;
    left: -120px;
}

.team-section::after{
    width: 260px;
    height: 260px;
    background: rgba(178, 34, 34, 0.08);
    right: -100px;
    bottom: -100px;
    animation-delay: 2s;
}

.team-section .container{
    position: relative;
    z-index: 2;
}

/* =========================
   HEADER
========================= */

.team-header{
    text-align: center;
    margin-bottom: 70px;
    animation: fadeDown 1s ease;
}

.team-header h2{
    font-size: 48px;
    font-weight: 800;
    color: #7f0f13;
    position: relative;
    display: inline-block;
    margin: 0;
}

.team-header h2::after{
    content: "";
    width: 120px;
    height: 5px;
    border-radius: 20px;
    background: linear-gradient(to right, #7f0f13, #d4a017);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
}

/* =========================
   GRID
========================= */

.team-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/* =========================
   CARD
========================= */

.team-card{
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 35px 25px;
    text-align: center;
    overflow: hidden;

    border: 1px solid rgba(127,15,19,0.08);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.07);

    transition: all 0.45s ease;

    animation: fadeUp 1s ease;
}

/* top gradient strip */
.team-card::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #7f0f13, #d4a017);
}

/* shine effect */
.team-card::before{
    content: "";
    position: absolute;
    top: -150%;
    left: -40%;
    width: 70%;
    height: 300%;
    background: rgba(255,255,255,0.35);
    transform: rotate(25deg);
    transition: 0.8s;
}

.team-card:hover::before{
    left: 130%;
}

/* hover */
.team-card:hover{
    transform: translateY(-12px);
    box-shadow:
        0 20px 45px rgba(127,15,19,0.18);
}

/* =========================
   IMAGE
========================= */

.team-img{
    width: 130px;
    height: 130px;
    margin: 0 auto 24px;
    border-radius: 50%;
    padding: 5px;

    background: linear-gradient(135deg, #7f0f13, #d4a017);

    position: relative;

    transition: all 0.45s ease;
}

.team-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
    transition: all 0.45s ease;
}

/* image hover */
.team-card:hover .team-img{
    transform: rotate(-5deg) scale(1.06);
}

.team-card:hover .team-img img{
    transform: scale(1.08);
}

/* pulse ring */
.team-img::after{
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(127,15,19,0.25);
    animation: spinRing 10s linear infinite;
}

/* =========================
   TEXT
========================= */

.team-name{
    font-size: 24px;
    font-weight: 700;
    color: #7f0f13;
    margin-bottom: 10px;
}

.team-role{
    display: inline-block;
    background: rgba(127,15,19,0.08);
    color: #7f0f13;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.team-dept{
    font-size: 18px;
    font-weight: 600;
    color: #d4a017;
    margin-bottom: 18px;
}

/* =========================
   EMAIL
========================= */

.team-email{
    margin-bottom: 14px;
}

.team-email a{
    color: #555;
    text-decoration: none;
    font-size: 15px;
    word-break: break-word;
    transition: all 0.3s ease;
}

.team-email a:hover{
    color: #b22222;
}

/* =========================
   PHONE
========================= */

.team-phone{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 40px;
    background: linear-gradient(135deg, #7f0f13, #b22222);

    color: #fff;
    font-size: 15px;
    font-weight: 600;

    box-shadow:
        0 10px 20px rgba(127,15,19,0.18);

    transition: all 0.4s ease;
}

.team-card:hover .team-phone{
    transform: scale(1.05);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown{
    from{
        opacity: 0;
        transform: translateY(-40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatingBg{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(25px);
    }
    100%{
        transform: translateY(0px);
    }
}

@keyframes spinRing{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .team-section{
        padding: 70px 0;
    }

    .team-header h2{
        font-size: 34px;
    }

    .team-grid{
        gap: 25px;
    }

    .team-card{
        padding: 28px 20px;
    }

    .team-img{
        width: 110px;
        height: 110px;
    }

    .team-name{
        font-size: 21px;
    }

    .team-dept{
        font-size: 16px;
    }
}

.team-phone {
    color: white !important;
}






/* =========================
   MANAGEMENT SECTION
========================= */

.management-section{
    position: relative;
    background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
    overflow: hidden;
}

/* animated background */
.management-section::before,
.management-section::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: floatBg 8s ease-in-out infinite;
}

.management-section::before{
    width: 320px;
    height: 320px;
    background: rgba(127,15,19,0.05);
    top: -120px;
    left: -120px;
}

.management-section::after{
    width: 260px;
    height: 260px;
    background: rgba(212,160,23,0.08);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

.management-section .container{
    position: relative;
    z-index: 2;
}

/* =========================
   TITLE BAR
========================= */

.management-title-bar{
    text-align: center;
    margin-bottom: 55px;
    animation: fadeDown 1s ease;
}

.management-title{
    display: inline-block;
    position: relative;

    font-size: 50px;
    font-weight: 800;
    color: #7f0f13;

    margin: 0;
}

.management-title::after{
    content: "";
    width: 120px;
    height: 5px;
    border-radius: 20px;

    background: linear-gradient(to right, #7f0f13, #d4a017);

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
}

/* =========================
   SECTION HEADING
========================= */

.management-section-heading{
    display: inline-block;

    font-size: 34px;
    font-weight: 700;

    color: #fff;

    background: linear-gradient(135deg, #7f0f13, #b22222);

    padding: 14px 28px;
    border-radius: 16px;

    margin-bottom: 35px;

    box-shadow:
        0 12px 30px rgba(127,15,19,0.18);

    animation: slideLeft 1s ease;
}

/* =========================
   CARD
========================= */

.management-card{
    position: relative;

    background: #fff;
    border-radius: 28px;

    padding: 35px 25px;

    overflow: hidden;

    border: 1px solid rgba(127,15,19,0.08);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.07);

    transition: all 0.45s ease;

    animation: fadeUp 1s ease;
}

/* top border */
.management-card::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background: linear-gradient(to right, #7f0f13, #d4a017);
}

/* shine effect */
.management-card::before{
    content: "";
    position: absolute;

    top: -150%;
    left: -40%;

    width: 70%;
    height: 300%;

    background: rgba(255,255,255,0.35);

    transform: rotate(25deg);

    transition: 0.8s;
}

.management-card:hover::before{
    left: 130%;
}

/* hover */
.management-card:hover{
    transform: translateY(-12px);
    box-shadow:
        0 20px 45px rgba(127,15,19,0.18);
}

/* =========================
   IMAGE
========================= */

.management-card-img-wrap{
    width: 150px;
    height: 150px;

    margin: 0 auto 24px;

    border-radius: 50%;
    padding: 5px;

    background: linear-gradient(135deg, #7f0f13, #d4a017);

    position: relative;

    transition: all 0.45s ease;
}

.management-card-img{
    width: 100%;
    height: 100%;

    object-fit: cover;
    border-radius: 50%;

    background: #fff;

    transition: all 0.45s ease;
}

/* animated ring */
.management-card-img-wrap::after{
    content: "";
    position: absolute;
    inset: -8px;

    border-radius: 50%;
    border: 2px dashed rgba(127,15,19,0.25);

    animation: spinRing 12s linear infinite;
}

/* image hover */
.management-card:hover .management-card-img-wrap{
    transform: rotate(-5deg) scale(1.05);
}

.management-card:hover .management-card-img{
    transform: scale(1.08);
}

/* =========================
   TEXT
========================= */

.management-card-name{
    font-size: 26px;
    font-weight: 700;
    color: #7f0f13;

    margin-bottom: 12px;
}

.management-card-designation{
    display: inline-block;

    background: rgba(127,15,19,0.08);

    color: #7f0f13;

    padding: 10px 20px;
    border-radius: 30px;

    font-size: 15px;
    font-weight: 700;

    margin: 0;
}

/* =========================
   TABLE
========================= */

.management-table-wrap{
    overflow-x: auto;

    border-radius: 24px;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.08);

    animation: fadeUp 1s ease;
}

.management-table{
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    overflow: hidden;
}

.management-table thead{
    background: linear-gradient(135deg, #7f0f13, #b22222);
}

.management-table thead th{
    color: #fff;

    padding: 18px 22px;

    font-size: 17px;
    font-weight: 700;

    text-align: left;
}

.management-table tbody tr{
    transition: all 0.35s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.management-table tbody tr:hover{
    background: rgba(127,15,19,0.05);
    transform: scale(1.01);
}

.management-table tbody td{
    padding: 18px 22px;

    font-size: 16px;
    color: #444;
}

/* zebra rows */
.management-table tbody tr:nth-child(even){
    background: rgba(250,250,250,0.7);
}

/* =========================
   LEADERSHIP CARDS
========================= */

.management-card-lead{
    min-height: 100%;
}

/* =========================
   EXECUTIVE CARDS
========================= */

.management-card-officer{
    min-height: 100%;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown{
    from{
        opacity: 0;
        transform: translateY(-40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft{
    from{
        opacity: 0;
        transform: translateX(-60px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatBg{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(25px);
    }
    100%{
        transform: translateY(0px);
    }
}

@keyframes spinRing{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .management-title{
        font-size: 36px;
    }

    .management-section-heading{
        font-size: 24px;
        padding: 12px 22px;
    }

    .management-card{
        padding: 28px 20px;
    }

    .management-card-img-wrap{
        width: 120px;
        height: 120px;
    }

    .management-card-name{
        font-size: 22px;
    }

    .management-table thead th,
    .management-table tbody td{
        padding: 14px 16px;
        font-size: 14px;
    }
}









/* =========================
   ACHIEVEMENT SECTION
========================= */

.achievement-section{
    position: relative;
    background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
    overflow: hidden;
}

/* animated background */
.achievement-section::before,
.achievement-section::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: floatBg 8s ease-in-out infinite;
}

.achievement-section::before{
    width: 320px;
    height: 320px;
    background: rgba(127,15,19,0.05);
    top: -120px;
    left: -120px;
}

.achievement-section::after{
    width: 260px;
    height: 260px;
    background: rgba(212,160,23,0.08);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

.achievement-section .container{
    position: relative;
    z-index: 2;
}

/* =========================
   TITLE
========================= */

.achievement-title-bar{
    text-align: center;
    margin-bottom: 45px;
    animation: fadeDown 1s ease;
}

.achievement-title{
    position: relative;
    display: inline-block;

    font-size: 50px;
    font-weight: 800;
    color: #7f0f13;
}

.achievement-title::after{
    content: "";
    width: 120px;
    height: 5px;

    border-radius: 20px;

    background: linear-gradient(to right, #7f0f13, #d4a017);

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
}

/* =========================
   SUB BANNER
========================= */

.achievement-sub-banner{
    width: fit-content;

    margin: 0 auto 40px;

    padding: 14px 34px;

    border-radius: 50px;

    background: linear-gradient(135deg, #7f0f13, #b22222);

    color: #fff;

    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;

    box-shadow:
        0 12px 30px rgba(127,15,19,0.18);

    animation: pulseBanner 2s infinite;
}

/* =========================
   IMAGE COLLAGE
========================= */

.image-collage{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

    max-width: 1100px;
    margin: 0 auto 50px;
}

.image-collage img{
    width: 100%;
    height: 240px;

    object-fit: cover;

    border-radius: 22px;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.08);

    transition: all 0.45s ease;

    animation: fadeUp 1s ease;
}

/* hover effect */
.image-collage img:hover{
    transform: translateY(-10px) scale(1.04) rotate(-1deg);

    box-shadow:
        0 20px 40px rgba(127,15,19,0.18);
}

/* =========================
   INTRO TEXT
========================= */

.achievement-intro{
    text-align: center;

    max-width: 1000px;
    margin: 0 auto 45px;

    font-size: 18px;
    line-height: 1.9;

    color: #555;

    animation: fadeUp 1s ease;
}

/* =========================
   SUB HEADINGS
========================= */

.achievement-subheading{
    display: inline-block;

    font-size: 32px;
    font-weight: 700;

    color: #fff;

    background: linear-gradient(135deg, #7f0f13, #b22222);

    padding: 14px 28px;

    border-radius: 16px;

    margin-bottom: 30px;

    box-shadow:
        0 12px 30px rgba(127,15,19,0.18);

    animation: slideLeft 1s ease;
}

/* =========================
   LISTS
========================= */

.achievement-list{
    list-style: none;
    padding: 0;
    margin: 0 0 50px;
}

.achievement-list li{
    position: relative;

    background: #fff;

    padding: 20px 24px 20px 65px;

    margin-bottom: 18px;

    border-radius: 20px;

    color: #444;

    line-height: 1.8;
    font-size: 16px;

    border: 1px solid rgba(127,15,19,0.08);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.06);

    transition: all 0.4s ease;

    animation: fadeUp 1s ease;
}

/* icon bullet */
.achievement-list li::before{
    content: "★";

    position: absolute;

    left: 22px;
    top: 20px;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(135deg, #7f0f13, #d4a017);

    color: #fff;

    font-size: 13px;
    font-weight: bold;
}

/* hover */
.achievement-list li:hover{
    transform: translateX(10px);

    box-shadow:
        0 18px 35px rgba(127,15,19,0.15);
}

/* =========================
   PERFORMANCE HEADER
========================= */

.achievement-performance-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 25px;
}

.achievement-amount-label{
    background: rgba(127,15,19,0.08);

    color: #7f0f13;

    padding: 10px 18px;

    border-radius: 30px;

    font-size: 15px;
    font-weight: 700;
}

/* =========================
   TABLE
========================= */

.achievement-table-wrap{
    overflow-x: auto;

    border-radius: 24px;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.08);

    animation: fadeUp 1s ease;
}

.achievement-table{
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.achievement-table thead{
    background: linear-gradient(135deg, #7f0f13, #b22222);
}

.achievement-table thead th{
    color: #fff;

    padding: 18px 22px;

    text-align: left;

    font-size: 17px;
    font-weight: 700;
}

.achievement-table tbody tr{
    transition: all 0.35s ease;

    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.achievement-table tbody tr:nth-child(even){
    background: rgba(250,250,250,0.7);
}

.achievement-table tbody tr:hover{
    background: rgba(127,15,19,0.05);

    transform: scale(1.01);
}

.achievement-table tbody td{
    padding: 18px 22px;

    font-size: 16px;
    color: #444;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown{
    from{
        opacity: 0;
        transform: translateY(-40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft{
    from{
        opacity: 0;
        transform: translateX(-60px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatBg{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(25px);
    }
    100%{
        transform: translateY(0px);
    }
}

@keyframes pulseBanner{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.04);
    }
    100%{
        transform: scale(1);
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    .achievement-title{
        font-size: 36px;
    }

    .achievement-subheading{
        font-size: 24px;
        padding: 12px 22px;
    }

    .image-collage{
        grid-template-columns: repeat(2, 1fr);
    }

    .image-collage img{
        height: 200px;
    }

    .achievement-intro{
        font-size: 16px;
    }

    .achievement-performance-header{
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

    .image-collage{
        grid-template-columns: 1fr;
    }

    .image-collage img{
        height: 230px;
    }

    .achievement-list li{
        padding: 18px 18px 18px 58px;
        font-size: 15px;
    }

    .achievement-table thead th,
    .achievement-table tbody td{
        padding: 14px 16px;
        font-size: 14px;
    }
}





/* =========================
   KPI / PERFORMANCE SECTION
========================= */

.aa-section{
    position: relative;
    padding: 90px 0;
    background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
    overflow: hidden;
}

/* animated background */
.aa-section::before,
.aa-section::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: aaFloat 8s ease-in-out infinite;
}

.aa-section::before{
    width: 320px;
    height: 320px;
    background: rgba(127,15,19,0.05);
    top: -120px;
    left: -120px;
}

.aa-section::after{
    width: 260px;
    height: 260px;
    background: rgba(212,160,23,0.08);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

.aa-wrapper{
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

/* =========================
   SECTION TITLE
========================= */

.aa-section-title{
    text-align: center;
    margin-bottom: 70px;

    animation: aaFadeDown 1s ease;
}

.aa-section-title h2{
    position: relative;
    display: inline-block;

    font-size: 50px;
    font-weight: 800;

    color: #7f0f13;

    margin-bottom: 18px;
}

.aa-section-title h2::after{
    content: "";

    width: 120px;
    height: 5px;

    border-radius: 20px;

    background: linear-gradient(to right, #7f0f13, #d4a017);

    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    bottom: -14px;
}

.aa-section-title p{
    font-size: 18px;
    color: #666;
    margin-top: 22px;
}

/* =========================
   GRID
========================= */

.aa-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* =========================
   CARD
========================= */

.aa-card{
    position: relative;

    background: #fff;

    border-radius: 28px;

    padding: 40px 25px;

    text-align: center;

    overflow: hidden;

    border: 1px solid rgba(127,15,19,0.08);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.07);

    transition: all 0.45s ease;

    animation: aaFadeUp 1s ease;
}

/* top gradient line */
.aa-card::after{
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background: linear-gradient(to right, #7f0f13, #d4a017);
}

/* shine effect */
.aa-card::before{
    content: "";

    position: absolute;

    top: -150%;
    left: -40%;

    width: 70%;
    height: 300%;

    background: rgba(255,255,255,0.35);

    transform: rotate(25deg);

    transition: 0.8s;
}

.aa-card:hover::before{
    left: 130%;
}

/* hover effect */
.aa-card:hover{
    transform: translateY(-12px);

    box-shadow:
        0 22px 45px rgba(127,15,19,0.18);
}

/* =========================
   ICON
========================= */

.aa-icon{
    width: 90px;
    height: 90px;

    margin: 0 auto 24px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 38px;
    font-weight: 700;

    color: #fff;

    background: linear-gradient(135deg, #7f0f13, #d4a017);

    box-shadow:
        0 12px 25px rgba(127,15,19,0.2);

    position: relative;

    transition: all 0.45s ease;
}

/* rotating ring */
.aa-icon::after{
    content: "";

    position: absolute;
    inset: -8px;

    border-radius: 50%;

    border: 2px dashed rgba(127,15,19,0.25);

    animation: aaSpin 12s linear infinite;
}

/* icon hover */
.aa-card:hover .aa-icon{
    transform: rotate(-8deg) scale(1.08);
}

/* =========================
   VALUE
========================= */

.aa-value{
    font-size: 38px;
    font-weight: 800;

    color: #7f0f13;

    margin-bottom: 10px;

    transition: all 0.4s ease;
}

.aa-card:hover .aa-value{
    transform: scale(1.05);
}

/* =========================
   LABEL
========================= */

.aa-label{
    font-size: 20px;
    font-weight: 700;

    color: #d4a017;

    margin-bottom: 10px;
}

/* =========================
   SMALL TEXT
========================= */

.aa-card small{
    display: inline-block;

    background: rgba(127,15,19,0.08);

    color: #7f0f13;

    padding: 8px 16px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes aaFadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aaFadeDown{
    from{
        opacity: 0;
        transform: translateY(-40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aaFloat{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(25px);
    }
    100%{
        transform: translateY(0px);
    }
}

@keyframes aaSpin{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    .aa-section{
        padding: 70px 0;
    }

    .aa-section-title h2{
        font-size: 36px;
    }

    .aa-section-title p{
        font-size: 16px;
    }

    .aa-card{
        padding: 32px 22px;
    }

    .aa-icon{
        width: 75px;
        height: 75px;
        font-size: 30px;
    }

    .aa-value{
        font-size: 30px;
    }

    .aa-label{
        font-size: 18px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

    .aa-grid{
        gap: 25px;
    }

    .aa-card{
        padding: 28px 20px;
    }

    .aa-section-title h2{
        font-size: 30px;
    }

    .aa-value{
        font-size: 28px;
    }
}


/* =========================
   FINANCIAL PERFORMANCE
========================= */

.aa-section{
    position: relative;
    padding: 90px 0;
    background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
    overflow: hidden;
}

/* animated background */
.aa-section::before,
.aa-section::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: aaFloat 8s ease-in-out infinite;
}

.aa-section::before{
    width: 320px;
    height: 320px;
    background: rgba(127,15,19,0.05);
    top: -120px;
    left: -120px;
}

.aa-section::after{
    width: 260px;
    height: 260px;
    background: rgba(212,160,23,0.08);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

.aa-wrapper{
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

/* =========================
   SECTION TITLE
========================= */

.aa-section-title{
    text-align: center;
    margin-bottom: 70px;

    animation: aaFadeDown 1s ease;
}

.aa-section-title h2{
    position: relative;
    display: inline-block;

    font-size: 50px;
    font-weight: 800;

    color: #7f0f13;

    margin-bottom: 18px;
}

.aa-section-title h2::after{
    content: "";

    width: 120px;
    height: 5px;

    border-radius: 20px;

    background: linear-gradient(to right, #7f0f13, #d4a017);

    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    bottom: -14px;
}

.aa-section-title p{
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

/* =========================
   GRID
========================= */

.aa-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 40px;
}

/* =========================
   TABLE BOX
========================= */

.aa-table-box{
    position: relative;

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    border: 1px solid rgba(127,15,19,0.08);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.07);

    transition: all 0.45s ease;

    animation: aaFadeUp 1s ease;
}

/* shine effect */
.aa-table-box::before{
    content: "";

    position: absolute;

    top: -150%;
    left: -40%;

    width: 70%;
    height: 300%;

    background: rgba(255,255,255,0.35);

    transform: rotate(25deg);

    transition: 0.8s;
}

.aa-table-box:hover::before{
    left: 130%;
}

/* hover */
.aa-table-box:hover{
    transform: translateY(-12px);

    box-shadow:
        0 22px 45px rgba(127,15,19,0.18);
}

/* =========================
   TABLE HEADER
========================= */

.aa-table-header{
    background: linear-gradient(135deg, #7f0f13, #b22222);

    color: #fff;

    padding: 22px 28px;

    font-size: 24px;
    font-weight: 700;

    text-align: center;

    letter-spacing: 0.5px;

    position: relative;
}

/* animated golden line */
.aa-table-header::after{
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(to right, #d4a017, #fff3c4, #d4a017);
}

/* =========================
   TABLE
========================= */

.aa-table-box table{
    width: 100%;
    border-collapse: collapse;
}

/* rows */
.aa-table-box table tr{
    transition: all 0.35s ease;

    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* zebra rows */
.aa-table-box table tr:nth-child(even){
    background: rgba(250,250,250,0.8);
}

/* hover rows */
.aa-table-box table tr:hover{
    background: rgba(127,15,19,0.05);

    transform: scale(1.01);
}

/* cells */
.aa-table-box table td{
    padding: 18px 24px;

    font-size: 16px;
    color: #444;

    transition: all 0.3s ease;
}

/* first column */
.aa-table-box table td:first-child{
    font-weight: 700;
    color: #7f0f13;
}

/* second column */
.aa-table-box table td:last-child{
    text-align: right;
    font-weight: 600;
    color: #222;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes aaFadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aaFadeDown{
    from{
        opacity: 0;
        transform: translateY(-40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aaFloat{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(25px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    .aa-section{
        padding: 70px 0;
    }

    .aa-grid{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .aa-section-title h2{
        font-size: 36px;
    }

    .aa-section-title p{
        font-size: 16px;
    }

    .aa-table-header{
        font-size: 20px;
        padding: 18px 20px;
    }

    .aa-table-box table td{
        padding: 15px 18px;
        font-size: 15px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

    .aa-section-title h2{
        font-size: 30px;
    }

    .aa-table-header{
        font-size: 18px;
    }

    .aa-table-box{
        border-radius: 22px;
    }

    .aa-table-box table td{
        padding: 14px 14px;
        font-size: 14px;
    }
}


/* =========================
   GROWTH HIGHLIGHTS SECTION
========================= */

.aa-section{
    position: relative;
    padding: 90px 0;
    background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
    overflow: hidden;
}

/* animated background */
.aa-section::before,
.aa-section::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: aaFloat 8s ease-in-out infinite;
}

.aa-section::before{
    width: 320px;
    height: 320px;
    background: rgba(127,15,19,0.05);
    top: -120px;
    left: -120px;
}

.aa-section::after{
    width: 260px;
    height: 260px;
    background: rgba(212,160,23,0.08);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

.aa-wrapper{
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* =========================
   TITLE
========================= */

.aa-section-title{
    text-align: center;
    margin-bottom: 70px;

    animation: aaFadeDown 1s ease;
}

.aa-section-title h2{
    position: relative;
    display: inline-block;

    font-size: 50px;
    font-weight: 800;

    color: #7f0f13;

    margin-bottom: 18px;
}

.aa-section-title h2::after{
    content: "";

    width: 120px;
    height: 5px;

    border-radius: 20px;

    background: linear-gradient(to right, #7f0f13, #d4a017);

    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    bottom: -14px;
}

.aa-section-title p{
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

/* =========================
   GRID
========================= */

.aa-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/* =========================
   HIGHLIGHT CARD
========================= */

.aa-highlight{
    position: relative;

    background: #fff;

    border-radius: 30px;

    padding: 45px 30px;

    text-align: center;

    overflow: hidden;

    border: 1px solid rgba(127,15,19,0.08);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.07);

    transition: all 0.45s ease;

    animation: aaFadeUp 1s ease;
}

/* top border */
.aa-highlight::after{
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background: linear-gradient(to right, #7f0f13, #d4a017);
}

/* shine effect */
.aa-highlight::before{
    content: "";

    position: absolute;

    top: -150%;
    left: -40%;

    width: 70%;
    height: 300%;

    background: rgba(255,255,255,0.35);

    transform: rotate(25deg);

    transition: 0.8s;
}

.aa-highlight:hover::before{
    left: 130%;
}

/* hover effect */
.aa-highlight:hover{
    transform: translateY(-14px) scale(1.02);

    box-shadow:
        0 22px 45px rgba(127,15,19,0.18);
}

/* =========================
   MAIN VALUE
========================= */

.aa-highlight h3{
    position: relative;

    font-size: 42px;
    font-weight: 800;

    color: white;

    margin-bottom: 18px;

    transition: all 0.4s ease;
}

/* golden circle behind heading */
.aa-highlight h3::before{
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    border-radius: 50%;

    background: rgba(212,160,23,0.12);

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    z-index: -1;

    transition: all 0.4s ease;
}

/* hover heading */
.aa-highlight:hover h3{
    transform: scale(1.08);
}

.aa-highlight:hover h3::before{
    transform: translate(-50%, -50%) scale(1.15);
}

/* =========================
   DESCRIPTION
========================= */

.aa-highlight p{
    font-size: 17px;
    line-height: 1.8;

    color: #ffd5d5;

    margin: 0;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes aaFadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aaFadeDown{
    from{
        opacity: 0;
        transform: translateY(-40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aaFloat{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(25px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    .aa-section{
        padding: 70px 0;
    }

    .aa-section-title h2{
        font-size: 36px;
    }

    .aa-section-title p{
        font-size: 16px;
    }

    .aa-highlight{
        padding: 38px 25px;
    }

    .aa-highlight h3{
        font-size: 34px;
    }

    .aa-highlight p{
        font-size: 15px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

    .aa-grid{
        gap: 25px;
    }

    .aa-highlight{
        padding: 32px 22px;
        border-radius: 24px;
    }

    .aa-section-title h2{
        font-size: 30px;
    }

    .aa-highlight h3{
        font-size: 28px;
    }

    .aa-highlight p{
        font-size: 14px;
    }
}



/* =========================
   IMPORTANT NOTES SECTION
========================= */

.aa-section{
    position: relative;
    padding: 90px 0;
    background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
    overflow: hidden;
}

/* animated background */
.aa-section::before,
.aa-section::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: aaFloat 8s ease-in-out infinite;
}

.aa-section::before{
    width: 320px;
    height: 320px;
    background: rgba(127,15,19,0.05);
    top: -120px;
    left: -120px;
}

.aa-section::after{
    width: 260px;
    height: 260px;
    background: rgba(212,160,23,0.08);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

.aa-wrapper{
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}

/* =========================
   NOTES BOX
========================= */

.aa-notes{
    position: relative;

    background: #fff;

    border-radius: 32px;

    padding: 50px 45px;

    overflow: hidden;

    border: 1px solid rgba(127,15,19,0.08);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.08);

    transition: all 0.45s ease;

    animation: aaFadeUp 1s ease;
}

/* top gradient line */
.aa-notes::after{
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background: linear-gradient(to right, #7f0f13, #d4a017);
}

/* shine effect */
.aa-notes::before{
    content: "";

    position: absolute;

    top: -150%;
    left: -40%;

    width: 70%;
    height: 300%;

    background: rgba(255,255,255,0.35);

    transform: rotate(25deg);

    transition: 0.8s;
}

.aa-notes:hover::before{
    left: 130%;
}

/* hover */
.aa-notes:hover{
    transform: translateY(-10px);

    box-shadow:
        0 24px 50px rgba(127,15,19,0.18);
}

/* =========================
   HEADING
========================= */

.aa-notes h3{
    position: relative;

    display: inline-block;

    font-size: 40px;
    font-weight: 800;

    color: #7f0f13;

    margin-bottom: 35px;

    animation: aaFadeDown 1s ease;
}

/* underline */
.aa-notes h3::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: -12px;

    width: 90px;
    height: 5px;

    border-radius: 20px;

    background: linear-gradient(to right, #7f0f13, #d4a017);
}

/* =========================
   NOTES TEXT
========================= */

.aa-notes p{
    position: relative;

    margin-bottom: 18px;

    padding: 18px 20px 18px 65px;

    background: rgba(250,250,250,0.9);

    border-radius: 18px;

    font-size: 17px;
    line-height: 1.8;

    color: #555;

    border: 1px solid rgba(127,15,19,0.06);

    transition: all 0.35s ease;

    animation: aaFadeUp 1s ease;
}

/* icon */
.aa-notes p::before{
    content: "✓";

    position: absolute;

    left: 22px;
    top: 50%;

    transform: translateY(-50%);

    width: 28px;
    height: 28px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #7f0f13, #d4a017);

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 6px 16px rgba(127,15,19,0.18);
}

/* bold text */
.aa-notes p b{
    color: #7f0f13;
}

/* hover */
.aa-notes p:hover{
    transform: translateX(10px);

    background: rgba(127,15,19,0.04);

    box-shadow:
        0 10px 25px rgba(127,15,19,0.12);
}

/* remove last margin */
.aa-notes p:last-child{
    margin-bottom: 0;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes aaFadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aaFadeDown{
    from{
        opacity: 0;
        transform: translateY(-40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aaFloat{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(25px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    .aa-section{
        padding: 70px 0;
    }

    .aa-notes{
        padding: 40px 30px;
    }

    .aa-notes h3{
        font-size: 32px;
    }

    .aa-notes p{
        font-size: 15px;
        padding: 16px 18px 16px 58px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

    .aa-notes{
        padding: 30px 22px;
        border-radius: 24px;
    }

    .aa-notes h3{
        font-size: 28px;
    }

    .aa-notes p{
        font-size: 14px;
        line-height: 1.7;

        padding: 15px 15px 15px 54px;
    }

    .aa-notes p::before{
        left: 16px;
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}



/* =========================
   CUSTOMER SUPPORT SECTION
========================= */

.py-5{
    position: relative;
    padding: 90px 0 !important;
    background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
    overflow: hidden;
}

/* animated background */
.py-5::before,
.py-5::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: supportFloat 8s ease-in-out infinite;
}

.py-5::before{
    width: 320px;
    height: 320px;
    background: rgba(127,15,19,0.05);
    top: -120px;
    left: -120px;
}

.py-5::after{
    width: 260px;
    height: 260px;
    background: rgba(212,160,23,0.08);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

.py-5 > *{
    position: relative;
    z-index: 2;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align: center;
    margin-bottom: 70px;

    animation: supportFadeDown 1s ease;
}

.section-title h2{
    position: relative;
    display: inline-block;

    font-size: 50px;
    font-weight: 800;

    color: #7f0f13;

    margin-bottom: 18px;
}

.section-title h2::after{
    content: "";

    width: 120px;
    height: 5px;

    border-radius: 20px;

    background: linear-gradient(to right, #7f0f13, #d4a017);

    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    bottom: -14px;
}

.section-title p{
    font-size: 18px;
    color: #666;
    margin-top: 22px;
}

/* =========================
   SUPPORT CARD
========================= */

.card{
    position: relative;

    background: #fff !important;

    border-radius: 28px !important;

    overflow: hidden;

    border: 1px solid rgba(127,15,19,0.08) !important;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.07) !important;

    transition: all 0.45s ease;

    animation: supportFadeUp 1s ease;
}

/* top gradient line */
.card::after{
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background: linear-gradient(to right, #7f0f13, #d4a017);
}

/* shine effect */
.card::before{
    content: "";

    position: absolute;

    top: -150%;
    left: -40%;

    width: 70%;
    height: 300%;

    background: rgba(255,255,255,0.35);

    transform: rotate(25deg);

    transition: 0.8s;
}

.card:hover::before{
    left: 130%;
}

/* hover effect */
.card:hover{
    transform: translateY(-14px);

    box-shadow:
        0 24px 50px rgba(127,15,19,0.18) !important;
}

/* =========================
   CARD BODY
========================= */

.card-body{
    padding: 45px 30px !important;
}

/* =========================
   ICONS
========================= */

.card i{
    width: 95px;
    height: 95px;

    margin: 0 auto 24px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #7f0f13, #d4a017);

    color: #fff !important;

    font-size: 34px !important;

    box-shadow:
        0 12px 25px rgba(127,15,19,0.2);

    position: relative;

    transition: all 0.45s ease;
}

/* rotating ring */
.card i::after{
    content: "";

    position: absolute;
    inset: -8px;

    border-radius: 50%;

    border: 2px dashed rgba(127,15,19,0.25);

    animation: supportSpin 12s linear infinite;
}

/* icon hover */
.card:hover i{
    transform: rotate(-8deg) scale(1.08);
}

/* =========================
   CARD TITLE
========================= */

.card h5{
    font-size: 24px;
    font-weight: 700;

    color: white;

    margin-bottom: 15px;
}

/* =========================
   LINKS & TEXT
========================= */

.card a,
.card p{
    font-size: 17px;
    line-height: 1.8;

    color: #f9b9b9;

    text-decoration: none;

    transition: all 0.3s ease;
}

.card a:hover{
    color: #b22222;
}

/* =========================
   BUTTON
========================= */

.btn-primary{
    position: relative;

    background: linear-gradient(135deg, #7f0f13, #b22222) !important;
    color: white !important;

    border: none !important;

    padding: 16px 38px !important;

    border-radius: 50px !important;

    font-size: 17px;
    font-weight: 700;

    overflow: hidden;

    transition: all 0.4s ease;

    box-shadow:
        0 12px 25px rgba(127,15,19,0.18);
}

/* shine effect */
.btn-primary::before{
    content: "";

    position: absolute;

    top: -120%;
    left: -40%;

    width: 60%;
    height: 300%;

    background: rgba(255,255,255,0.35);

    transform: rotate(25deg);

    transition: 0.8s;
}

.btn-primary:hover::before{
    left: 130%;
}

/* button hover */
.btn-primary:hover{
    transform: translateY(-4px) scale(1.03);

    background: linear-gradient(135deg, #5f0b0d, #7f0f13) !important;

    box-shadow:
        0 18px 35px rgba(127,15,19,0.25);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes supportFadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes supportFadeDown{
    from{
        opacity: 0;
        transform: translateY(-40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes supportFloat{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(25px);
    }
    100%{
        transform: translateY(0px);
    }
}

@keyframes supportSpin{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    .py-5{
        padding: 70px 0 !important;
    }

    .section-title h2{
        font-size: 36px;
    }

    .section-title p{
        font-size: 16px;
    }

    .card-body{
        padding: 38px 24px !important;
    }

    .card i{
        width: 80px;
        height: 80px;
        font-size: 28px !important;
    }

    .card h5{
        font-size: 22px;
    }

    .card a,
    .card p{
        font-size: 15px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

    .section-title h2{
        font-size: 30px;
    }

    .card{
        border-radius: 22px !important;
    }

    .card-body{
        padding: 32px 20px !important;
    }

    .card i{
        width: 72px;
        height: 72px;
        font-size: 24px !important;
    }

    .card h5{
        font-size: 20px;
    }

    .btn-primary{
        width: 100%;
        padding: 14px 25px !important;
    }
}







/* =========================================
   CAREER / BANKING POINT PAGE ANIMATION
========================================= */

/*.py-5{*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    background: linear-gradient(180deg,#fff8f8 0%,#f7f9fc 100%);*/
/*}*/

/* floating background circles */

/*.py-5::before,*/
/*.py-5::after{*/
/*    content:"";*/
/*    position:absolute;*/
/*    border-radius:50%;*/
/*    z-index:0;*/
/*    animation:careerFloat 8s ease-in-out infinite;*/
/*}*/

/*.py-5::before{*/
/*    width:320px;*/
/*    height:320px;*/
/*    background:rgba(122,28,28,0.06);*/
/*    top:-120px;*/
/*    left:-120px;*/
/*}*/

/*.py-5::after{*/
/*    width:260px;*/
/*    height:260px;*/
/*    background:rgba(165,42,42,0.08);*/
/*    bottom:-100px;*/
/*    right:-100px;*/
/*    animation-delay:2s;*/
/*}*/

/*.py-5 > *{*/
/*    position:relative;*/
/*    z-index:2;*/
/*}*/

/* =========================================
   HERO CAROUSEL
========================================= */

/*.career-carousel{*/
/*    border-radius:28px;*/
/*    overflow:hidden;*/

/*    box-shadow:*/
/*    0 20px 50px rgba(0,0,0,0.18);*/

/*    animation:careerZoom 1s ease;*/
/*}*/

/*.career-img{*/
/*    height:530px;*/
/*    object-fit:cover;*/
/*    transition:transform 7s ease;*/
/*}*/

/*.carousel-item.active .career-img{*/
/*    transform:scale(1.08);*/
/*}*/

/* dark overlay */

/*.carousel-item{*/
/*    position:relative;*/
/*}*/

/*.carousel-item::after{*/
/*    content:"";*/
/*    position:absolute;*/
/*    inset:0;*/

/*    background:*/
/*    linear-gradient(to top,*/
/*    rgba(0,0,0,0.45),*/
/*    rgba(0,0,0,0.08));*/
/*}*/

/* controls */

/*.carousel-control-prev,*/
/*.carousel-control-next{*/
/*    width:60px;*/
/*}*/

/*.carousel-control-prev-icon,*/
/*.carousel-control-next-icon{*/
/*    background-color:rgba(122,28,28,0.85);*/
/*    border-radius:50%;*/
/*    padding:18px;*/
/*    transition:0.3s;*/
/*}*/

/*.carousel-control-prev:hover .carousel-control-prev-icon,*/
/*.carousel-control-next:hover .carousel-control-next-icon{*/
/*    transform:scale(1.12);*/
/*    background-color:#a52a2a;*/
/*}*/

/* =========================================
   INTRO SECTION
========================================= */

/*.career-intro{*/
/*    position:relative;*/

/*    border-radius:28px;*/

/*    background:#fff;*/

/*    overflow:hidden;*/

/*    border:1px solid rgba(122,28,28,0.08);*/

/*    box-shadow:*/
/*    0 15px 40px rgba(0,0,0,0.08);*/

/*    animation:fadeUp 1s ease;*/
/*}*/

/* top gradient */

/*.career-intro::before{*/
/*    content:"";*/

/*    position:absolute;*/
/*    top:0;*/
/*    left:0;*/

/*    width:100%;*/
/*    height:6px;*/

/*    background:*/
/*    linear-gradient(to right,#3d1a1a,#7a1c1c,#a52a2a);*/
/*}*/

/*.career-intro:hover{*/
/*    transform:translateY(-8px);*/
/*    transition:0.4s ease;*/

/*    box-shadow:*/
/*    0 25px 55px rgba(122,28,28,0.15);*/
/*}*/

/*.career-intro h3{*/
/*    font-size:32px;*/
/*    font-weight:800;*/
/*    margin-bottom:24px;*/
/*}*/

/*.career-intro ul li{*/
/*    margin-bottom:14px;*/
/*    line-height:1.8;*/
/*    position:relative;*/
/*    padding-left:28px;*/
/*}*/

/*.career-intro ul li::before{*/
/*    content:"✔";*/
/*    position:absolute;*/
/*    left:0;*/
/*    color:#a52a2a;*/
/*    font-weight:bold;*/
/*}*/

/* =========================================
   SECTION TITLES
========================================= */

/*.section-title{*/
/*    position:relative;*/

/*    border-radius:18px;*/

/*    padding:16px 26px;*/

/*    overflow:hidden;*/

/*    box-shadow:*/
/*    0 10px 25px rgba(122,28,28,0.15);*/

/*    animation:fadeDown 0.9s ease;*/
/*}*/

/*.section-title::before{*/
/*    content:"";*/

/*    position:absolute;*/
/*    top:0;*/
/*    left:-100%;*/

/*    width:50%;*/
/*    height:100%;*/

/*    background:rgba(255,255,255,0.2);*/

/*    transform:skewX(-25deg);*/

/*    transition:0.8s;*/
/*}*/

/*.section-title:hover::before{*/
/*    left:130%;*/
/*}*/

/* =========================================
   GRID CARDS
========================================= */

/*.bp-card,*/
/*.bp-flex-card{*/
/*    position:relative;*/

/*    overflow:hidden;*/

/*    border-radius:24px;*/

/*    border:none;*/

/*    background:#fff;*/

/*    box-shadow:*/
/*    0 12px 30px rgba(0,0,0,0.08);*/

/*    transition:all 0.45s ease;*/
/*}*/

/* gradient border top */

/*.bp-card::before,*/
/*.bp-flex-card::before{*/
/*    content:"";*/

/*    position:absolute;*/
/*    top:0;*/
/*    left:0;*/

/*    width:100%;*/
/*    height:5px;*/

/*    background:*/
/*    linear-gradient(to right,#3d1a1a,#a52a2a);*/
/*}*/

/* shine effect */

/*.bp-card::after,*/
/*.bp-flex-card::after{*/
/*    content:"";*/

/*    position:absolute;*/

/*    top:-120%;*/
/*    left:-40%;*/

/*    width:60%;*/
/*    height:300%;*/

/*    background:rgba(255,255,255,0.3);*/

/*    transform:rotate(25deg);*/

/*    transition:0.8s;*/
/*}*/

/*.bp-card:hover::after,*/
/*.bp-flex-card:hover::after{*/
/*    left:130%;*/
/*}*/

/*.bp-card:hover,*/
/*.bp-flex-card:hover{*/
/*    transform:*/
/*    translateY(-14px)*/
/*    scale(1.02);*/

/*    box-shadow:*/
/*    0 25px 50px rgba(122,28,28,0.16);*/
/*}*/

/*.bp-card h3,*/
/*.bp-flex-card h4{*/
/*    font-weight:700;*/
/*    margin-bottom:18px;*/
/*}*/

/*.bp-card ul li,*/
/*.bp-flex-card ul li{*/
/*    margin-bottom:10px;*/
/*    position:relative;*/
/*    padding-left:24px;*/
/*}*/

/*.bp-card ul li::before,*/
/*.bp-flex-card ul li::before{*/
/*    content:"";*/
/*    position:absolute;*/
/*    left:0;*/
/*    color:#a52a2a;*/
/*    font-size:20px;*/
/*}*/

/* =========================================
   NOTE BOX
========================================= */

/*.bp-note{*/
/*    border-radius:12px;*/

/*    background:*/
/*    linear-gradient(135deg,#fff4da,#fff8ec);*/

/*    border-left:5px solid #ff9800;*/

/*    animation:pulseNote 3s infinite;*/
/*}*/

/* =========================================
   FEES TABLE
========================================= */

/*.bp-fees-wrapper{*/
/*    border-radius:28px;*/

/*    overflow:hidden;*/

/*    position:relative;*/

/*    box-shadow:*/
/*    0 18px 45px rgba(0,0,0,0.08);*/

/*    transition:0.4s;*/
/*}*/

/*.bp-fees-wrapper:hover{*/
/*    transform:translateY(-8px);*/

/*    box-shadow:*/
/*    0 30px 60px rgba(122,28,28,0.14);*/
/*}*/

/*.bp-fees-header{*/
/*    position:relative;*/
/*    overflow:hidden;*/
/*}*/

/*.bp-fees-header::after{*/
/*    content:"";*/

/*    position:absolute;*/
/*    top:0;*/
/*    left:-100%;*/

/*    width:50%;*/
/*    height:100%;*/

/*    background:rgba(255,255,255,0.2);*/

/*    transform:skewX(-25deg);*/

/*    animation:shineMove 4s infinite;*/
/*}*/

/*.bp-fees-table tbody tr{*/
/*    transition:0.35s ease;*/
/*}*/

/*.bp-fees-table tbody tr:hover{*/
/*    background:#fff1f1;*/
/*    transform:scale(1.01);*/
/*}*/

/* =========================================
   FORM SECTION
========================================= */

/*.form-section{*/
/*    position:relative;*/

/*    border-radius:30px;*/

/*    overflow:hidden;*/

/*    background:#fff;*/

/*    border:1px solid rgba(122,28,28,0.08);*/

/*    box-shadow:*/
/*    0 20px 50px rgba(0,0,0,0.08);*/

/*    animation:fadeUp 1s ease;*/
/*}*/

/*.form-section::before{*/
/*    content:"";*/

/*    position:absolute;*/
/*    top:0;*/
/*    left:0;*/

/*    width:100%;*/
/*    height:6px;*/

/*    background:*/
/*    linear-gradient(to right,#3d1a1a,#a52a2a);*/
/*}*/

/*.form-section:hover{*/
/*    transform:translateY(-10px);*/

/*    transition:0.45s ease;*/

/*    box-shadow:*/
/*    0 30px 65px rgba(122,28,28,0.14);*/
/*}*/

/*.form-section h3{*/
/*    font-size:34px;*/
/*    font-weight:800;*/
/*    margin-bottom:28px;*/
/*}*/

/* inputs */

/*.career-form .form-control{*/
/*    border-radius:14px;*/

/*    padding:14px 16px;*/

/*    border:1px solid #ddd;*/

/*    transition:all 0.35s ease;*/

/*    background:#fff;*/
/*}*/

/*.career-form .form-control:hover{*/
/*    border-color:#a52a2a;*/
/*}*/

/*.career-form .form-control:focus{*/
/*    border-color:#a52a2a;*/

/*    transform:translateY(-2px);*/

/*    box-shadow:*/
/*    0 0 0 4px rgba(165,42,42,0.12);*/
/*}*/

/* button */

/*.career-btn-send{*/
/*    position:relative;*/

/*    overflow:hidden;*/

/*    padding:14px 40px;*/

/*    border-radius:50px;*/

/*    font-size:16px;*/
/*    font-weight:700;*/

/*    letter-spacing:0.5px;*/

/*    box-shadow:*/
/*    0 12px 25px rgba(122,28,28,0.18);*/
/*}*/

/* shine */

/*.career-btn-send::before{*/
/*    content:"";*/

/*    position:absolute;*/

/*    top:-120%;*/
/*    left:-40%;*/

/*    width:60%;*/
/*    height:300%;*/

/*    background:rgba(255,255,255,0.3);*/

/*    transform:rotate(25deg);*/

/*    transition:0.8s;*/
/*}*/

/*.career-btn-send:hover::before{*/
/*    left:130%;*/
/*}*/

/*.career-btn-send:hover{*/
/*    transform:*/
/*    translateY(-4px)*/
/*    scale(1.03);*/
/*}*/

/* =========================================
   ANIMATIONS
========================================= */

/*@keyframes fadeUp{*/
/*    from{*/
/*        opacity:0;*/
/*        transform:translateY(40px);*/
/*    }*/
/*    to{*/
/*        opacity:1;*/
/*        transform:translateY(0);*/
/*    }*/
/*}*/

/*@keyframes fadeDown{*/
/*    from{*/
/*        opacity:0;*/
/*        transform:translateY(-40px);*/
/*    }*/
/*    to{*/
/*        opacity:1;*/
/*        transform:translateY(0);*/
/*    }*/
/*}*/

/*@keyframes careerZoom{*/
/*    from{*/
/*        opacity:0;*/
/*        transform:scale(0.94);*/
/*    }*/
/*    to{*/
/*        opacity:1;*/
/*        transform:scale(1);*/
/*    }*/
/*}*/

/*@keyframes careerFloat{*/
/*    0%{*/
/*        transform:translateY(0px);*/
/*    }*/
/*    50%{*/
/*        transform:translateY(25px);*/
/*    }*/
/*    100%{*/
/*        transform:translateY(0px);*/
/*    }*/
/*}*/

/*@keyframes shineMove{*/
/*    0%{*/
/*        left:-100%;*/
/*    }*/
/*    100%{*/
/*        left:140%;*/
/*    }*/
/*}*/

/*@keyframes pulseNote{*/
/*    0%{*/
/*        box-shadow:0 0 0 rgba(255,152,0,0.2);*/
/*    }*/
/*    50%{*/
/*        box-shadow:0 0 18px rgba(255,152,0,0.22);*/
/*    }*/
/*    100%{*/
/*        box-shadow:0 0 0 rgba(255,152,0,0.2);*/
/*    }*/
/*}*/

/* =========================================
   MOBILE
========================================= */

/*@media(max-width:768px){*/

/*    .career-img{*/
/*        height:260px;*/
/*    }*/

/*    .career-intro h3,*/
/*    .form-section h3{*/
/*        font-size:26px;*/
/*    }*/

/*    .section-title{*/
/*        font-size:16px;*/
/*        padding:14px 18px;*/
/*    }*/

/*    .bp-card,*/
/*    .bp-flex-card{*/
/*        padding:18px;*/
/*    }*/

/*    .career-btn-send{*/
/*        width:100%;*/
/*    }*/
/*}*/


