/* Premium Theme Inspired by Anyloans Logo */

:root {
    --primary-blue: #2078c1;
    --primary-blue-dark: #165b93;
    --accent-cyan: #27aae1;
    --accent-cyan-dark: #1b8ebf;
    --luxury-navy: #07162c;
    --luxury-navy-light: #0d2342;
    --gold-accent: #e5b829;
    --accent-gradient: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary-blue) 100%);
    --luxury-gradient: linear-gradient(135deg, #0d2342 0%, #07162c 100%);
    --glow-gradient: linear-gradient(90deg, #29b1e5 0%, #1b75bc 50%, #29b1e5 100%);
    --bg-light: #f4f7fa;
    --text-muted: #6c757d;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg-dark: rgba(7, 22, 44, 0.75);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--luxury-navy);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--accent-cyan), var(--primary-blue));
    border-radius: 5px;
}

/* ── Nav dropdown chevron ── */
.nav-has-chevron .nav-chevron {
    display: inline-block;
    transition: transform 0.25s ease;
}

.nav-has-chevron:hover>a .nav-chevron,
.nav-has-chevron.open>a .nav-chevron,
.nav-has-chevron.expanded>a .nav-chevron {
    transform: rotate(180deg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

html {
    scroll-behavior: smooth;
}

/* Utilities */
.text-accent-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.bg-primary-blue {
    background-color: var(--primary-blue) !important;
}

.bg-accent-gradient {
    background: var(--accent-gradient) !important;
}

/* Floating Glassmorphic Header & Navigation Menu */
.main-header--two {
    border-bottom: none !important;
    background: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.main-header--two.sticky-header--cloned {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease !important;
}

/* Compact Slim Sticky Header Styles */
.sticky-header--cloned .main-menu .main-menu__list>li {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

.sticky-header--cloned .main-header__logo img {
    
    height: auto !important;
}

.sticky-header--cloned .main-menu .main-menu__list>li>a {
    font-size: 15px !important;
    color: #07162c !important;
    text-shadow: none !important;
}

.sticky-header--cloned .main-menu .main-menu__list>li:hover>a,
.sticky-header--cloned .main-menu .main-menu__list>li.current>a {
    color: #1B75BC !important;
    text-shadow: none !important;
}

.sticky-header--cloned .main-header__call {
    display: flex !important;
    align-items: center !important;
    margin-left: 35px !important;
    gap: 10px !important;
}

.sticky-header--cloned .main-header__call__number {
    margin: 0 !important;
    line-height: 1 !important;
}

.sticky-header--cloned .main-header__call__number a {
    font-size: 15px !important;
    line-height: 1 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    color: #07162c !important;
}

.sticky-header--cloned .main-header__call__icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 205, 229, 0.1) !important;
    border-radius: 50% !important;
    color: #00CDE5 !important;
    border: 1px solid rgba(0, 205, 229, 0.25) !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.sticky-header--cloned .main-header__right {
    gap: 15px !important;
}

.sticky-header--cloned .main-header__inner {
    padding: 0 !important;
}

.sticky-header--cloned .search-toggler,
.sticky-header--cloned .main-header__cart,
.sticky-header--cloned .main-header__login,
.sticky-header--cloned .nav-chevron {
    color: #07162c !important;
}

.sticky-header--cloned .mobile-nav__toggler span,
.sticky-header--cloned .sidebar-btn__toggler span {
    background-color: #07162c !important;
}


/* Navigation Links Style when transparent or cloned header */
.main-header--two .main-menu__list>li>a {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    transition: all 0.3s ease;
   
    letter-spacing: 0.5px;
}

.main-header--two .main-menu__list>li>a:hover,
.main-header--two .main-menu__list>li.current>a {
    color: #2ca1da !important;
    text-shadow: 0 0 15px rgba(44, 161, 218, 0.5);
}

.main-header__auth {
    display: flex;
    align-items: center;
}

.main-header__login {
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.main-header__login:hover {
    color: #2ca1da !important;
}

.ph-btn-sm {
    padding: 12px 28px !important;
    font-size: 13px !important;
}

.main-header--two .mobile-nav__btn span,
.main-header--two .main-header__sidebar-btn span {
    background-color: #ffffff !important;
}

/* Premium Buttons */
.btn-premium {
    background: var(--accent-gradient);
    color: #ffffff !important;
    font-weight: 700;
    padding: 16px 42px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    box-shadow: 0 4px 20px rgba(41, 177, 229, 0.35);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(41, 177, 229, 0.55);
    color: #ffffff !important;
}

.btn-premium:hover::before {
    opacity: 1;
}

/* Hero Section Redesign */
.premium-hero {
    background: #07162c;
    position: relative;
    padding: 140px 0 100px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/resources/hero-loan-banner.jpg') right center/cover no-repeat;
    opacity: 1;
    z-index: 0;
}

.premium-hero::after {
    display: none;
}

/* Decorative Shapes */
.ph-shape {
    position: absolute;
    border-radius: 150px;
    transform: rotate(45deg);
    z-index: 2;
}

/* Left Shapes */
.ph-shape-left-1 {
    width: 250px;
    height: 600px;
    background: #0b3461;
    bottom: -400px;
    left: -100px;
}

.ph-shape-left-2 {
    width: 150px;
    height: 800px;
    background: #0b3461;
    top: -200px;
    left: -350px;
}

.ph-shape-left-3 {
    width: 120px;
    height: 500px;
    background: #2ca1da;
    top: 200px;
    left: -200px;
}

/* Right Shapes */
.ph-shape-right-1 {
    width: 200px;
    height: 800px;
    background: #0b3461;
    bottom: -300px;
    right: -250px;
}

.ph-shape-right-2 {
    width: 250px;
    height: 700px;
    background: #2ca1da;
    top: -400px;
    right: -150px;
}

.ph-shape-right-3 {
    width: 150px;
    height: 500px;
    background: #90d3f4;
    /* Lighter blue variation */
    bottom: -200px;
    right: -200px;
}

/* Small circles */
.ph-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
}

.ph-circle-1 {
    width: 25px;
    height: 25px;
    border: 2px solid #2ca1da;
    top: 30%;
    left: 28%;
}

.ph-circle-2 {
    width: 10px;
    height: 10px;
    background: #2ca1da;
    top: 15%;
    left: 15%;
}

.premium-hero__content {
    position: relative;
    z-index: 5;
}

.premium-hero__title {
    color: #07162c;
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.premium-hero__title span {
    color: #2ca1da;
}

.premium-hero__text {
    color: #4b5563;
    font-size: 1.15rem;
    max-width: 650px;
    margin-bottom: 45px;
    line-height: 1.7;
    font-weight: 400;
}

.ph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00cde5 0%, #1b75bc 100%);
    color: #ffffff !important;
    padding: 16px 36px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(27, 117, 188, 0.4);
    text-decoration: none;
}

.ph-btn:hover {
    background: linear-gradient(135deg, #1b75bc 0%, #00cde5 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(27, 117, 188, 0.6);
    transform: translateY(-3px);
}

/* Floating Glassmorphic Trust Bar */
.premium-trust-bar {
    position: relative;
    z-index: 10;
    margin-top: -90px;
    /* Overlap the hero */
    padding-bottom: 80px;
}

.premium-trust-bar .container {
    background: rgba(13, 35, 66, 0.5) !important;
    /* Sleek glassmorphic slate navy */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    padding: 35px 25px;
}

.premium-trust-bar .premium-feature-box {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 16px;
    padding: 25px 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.premium-trust-bar .premium-feature-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.09) !important;
    border-color: rgba(41, 177, 229, 0.4) !important;
    box-shadow: 0 15px 35px rgba(41, 177, 229, 0.3) !important;
}

.premium-trust-bar .premium-feature-box__icon {
    font-size: 2.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(41, 177, 229, 0.3));
}

.premium-trust-bar .premium-feature-box__title {
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* Elegant About Section */
.premium-about {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.premium-about__blur-1 {
    position: absolute;
    top: 5%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 163, 242, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.premium-about__blur-2 {
    position: absolute;
    bottom: 5%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 205, 229, 0.06) 0%, transparent 70%);
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.premium-about__composition {
    position: relative;
    height: auto;
    z-index: 2;
}

.premium-about__img-container {
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(7, 22, 44, 0.12);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-about__img-container.single-img {
    position: relative;
    width: 100%;
    border-radius: 28px;
    border: 8px solid #ffffff;
    z-index: 2;
}

.premium-about__img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.premium-about__frame-offset {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid rgba(46, 163, 242, 0.25);
    border-radius: 28px;
    z-index: 1;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s ease;
}

.premium-about__dots-grid {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 100px;
    height: 120px;
    background-image: radial-gradient(rgba(46, 163, 242, 0.25) 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 1;
    pointer-events: none;
}

/* Composition Hovers */
.premium-about__composition:hover .premium-about__img-container.single-img {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(7, 22, 44, 0.18);
}

.premium-about__composition:hover .premium-about__img-container img {
    transform: scale(1.04);
}

.premium-about__composition:hover .premium-about__frame-offset {
    transform: translate(8px, 8px);
    border-color: rgba(46, 163, 242, 0.5);
}

.premium-about__floating-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: rgba(7, 22, 44, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 24px 28px;
    width: 190px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.premium-about__badge-num {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--easilon-font-heading, "Outfit", sans-serif);
}

.premium-about__badge-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

.premium-about__composition:hover .premium-about__floating-badge {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(46, 163, 242, 0.3);
}

.premium-about__subtitle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 163, 242, 0.08);
    color: #2ea3f2;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(46, 163, 242, 0.15);
}

.premium-about__subtitle-icon {
    font-size: 11px;
    color: var(--accent-cyan);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.premium-about__title {
    color: var(--luxury-navy) !important;
    font-size: 46px;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
    font-family: var(--easilon-font-heading, "Outfit", sans-serif);
    background: linear-gradient(135deg, #07162c 40%, #2ea3f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.premium-about__text {
    color: #616e7f !important;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 25px;
    margin-bottom: 30px;
}

.premium-about__highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 30px;
}

.premium-about__highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.premium-about__highlight-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(46, 163, 242, 0.08);
    color: #2ea3f2;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(46, 163, 242, 0.1);
}

.premium-about__highlight-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--luxury-navy);
    margin-bottom: 5px;
}

.premium-about__highlight-desc {
    font-size: 13px;
    color: #616e7f;
    line-height: 1.5;
}

.premium-about__highlight-item:hover .premium-about__highlight-icon-box {
    background: var(--accent-gradient);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    border-color: transparent;
    box-shadow: 0 6px 15px rgba(0, 205, 229, 0.3);
}

.btn-premium {
    padding: 15px 36px;
    background: var(--accent-gradient) !important;
    border-radius: 50px;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 25px rgba(46, 163, 242, 0.25) !important;
    border: none !important;
    text-decoration: none;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 205, 229, 0.45) !important;
    filter: brightness(1.05);
}

.btn-premium:active {
    transform: translateY(1px);
}

.btn-premium i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.btn-premium:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .premium-about {
        padding: 40px 0;
    }

    .premium-about__title {
        font-size: 38px;
    }

    .premium-about__composition {
        margin-bottom: 50px;
        padding-right: 20px;
        padding-bottom: 20px;
    }

    .premium-about__frame-offset {
        top: -15px;
        left: -15px;
        right: 15px;
        bottom: 15px;
    }

    .premium-about__floating-badge {
        padding: 16px 20px;
        width: 170px;
    }

    .premium-about__badge-num {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .premium-about__title {
        font-size: 30px;
    }

    .premium-about__highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Carousel Redesign */
.services-two {
    background: #f8fafc;
    position: relative;
}

.premium-service-card {
    position: relative;
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 45px 35px !important;
    box-shadow: 0 15px 45px rgba(15, 43, 70, 0.04) !important;
    border: 1px solid rgba(15, 43, 70, 0.04) !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

/* Beautiful dynamic top border indicator on hover */
.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.premium-service-card:hover::before {
    opacity: 1;
}

.premium-service-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 30px 60px rgba(27, 117, 188, 0.15) !important;
    border-color: rgba(41, 177, 229, 0.3) !important;
}

.premium-service-card__icon-wrapper {
    width: 75px;
    height: 75px;
    background: rgba(41, 177, 229, 0.08) !important;
    border-radius: 18px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent-cyan) !important;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.premium-service-card:hover .premium-service-card__icon-wrapper {
    background: var(--accent-gradient) !important;
    color: #ffffff !important;
    transform: scale(1.08) rotate(5deg) !important;
    box-shadow: 0 10px 25px rgba(41, 177, 229, 0.35);
}

.premium-service-card__image-wrap {
    position: relative;
    margin: -45px -35px 30px -35px;
    height: 220px;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 1;
}

.premium-service-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-service-card:hover .premium-service-card__image-wrap img {
    transform: scale(1.08);
}

/* Glassmorphic border overlay inside image */
.premium-service-card__image-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(7, 22, 44, 0) 60%, rgba(7, 22, 44, 0.25) 100%);
    pointer-events: none;
}

/* Floating Gradient Icon Badge */
.premium-service-card__icon-badge {
    position: absolute;
    bottom: 0;
    right: 30px;
    transform: translateY(50%);
    width: 56px;
    height: 56px;
    background: var(--accent-gradient) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 8px 20px rgba(41, 177, 229, 0.35);
    border: 3px solid #ffffff;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-service-card:hover .premium-service-card__icon-badge {
    transform: translateY(50%) scale(1.1) rotate(10deg);
    box-shadow: 0 12px 25px rgba(41, 177, 229, 0.5);
}

.premium-service-card__title {
    color: var(--luxury-navy) !important;
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.premium-service-card:hover .premium-service-card__title {
    color: var(--primary-blue) !important;
}

.premium-service-card__desc {
    color: var(--text-muted) !important;
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.premium-service-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.premium-service-card__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: #4b5563;
    font-weight: 500;
}

/* Beautiful custom list check bullet styling */
.premium-service-card__list li i {
    color: var(--accent-cyan) !important;
    font-size: 0.85rem;
    background: rgba(41, 177, 229, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.premium-service-card:hover .premium-service-card__list li i {
    background: var(--accent-gradient);
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(41, 177, 229, 0.3);
    transform: scale(1.1);
}

.premium-service-card__footer {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(7, 22, 44, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-service-card__link {
    color: var(--luxury-navy) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-service-card:hover .premium-service-card__link {
    color: var(--accent-cyan) !important;
}

.premium-service-card__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--luxury-navy-light) !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.premium-service-card:hover .premium-service-card__arrow {
    background: var(--accent-gradient) !important;
    color: #ffffff !important;
    transform: translateX(5px) !important;
    box-shadow: 0 8px 20px rgba(41, 177, 229, 0.4) !important;
}

/* Global Section Titles Override */
.sec-title__title {
    color: white;
    font-weight: 800;
}

.sec-title__tagline {
    color: var(--accent-cyan) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================================================
   Loan Calculator Premium Redesign (Fintech Glassmorphic Grid)
   ========================================================================== */

/* Inner container wrap */
.premium-loan__inner {
    border-radius: 32px !important;
    background: linear-gradient(135deg, #07162c, #0b1d3a) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 80px rgba(5, 15, 30, 0.4) !important;
    overflow: hidden !important;
}

/* Override existing form styles inside this component */
.premium-loan__inner .loan-two__form {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    width: 100% !important;
}

/* Left side visual media block */
.premium-loan__media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    /* Ensures height on mobile/tablet when columns stack */
    overflow: hidden;
}

.premium-loan__media-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center left;
    /* Shifts image left to focus on family & house */
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Zoom effect on media block hover */
.premium-loan__media:hover .premium-loan__media-bg {
    transform: scale(1.05);
}

/* Dark, sleek overlay gradient transitioning image to form */
.premium-loan__media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 17, 33, 0) 0%, rgba(11, 17, 33, 0.6) 70%, #0b1121 100%);
    pointer-events: none;
}

@media (max-width: 991px) {
    .premium-loan__media-overlay {
        background: linear-gradient(to bottom, rgba(11, 17, 33, 0) 0%, rgba(11, 17, 33, 0.7) 80%, #0b1121 100%);
    }
}

/* Video Button Styling overrides */
.premium-loan__video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 96px !important;
    height: 96px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(12px) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    z-index: 10;
}

.premium-loan__video-icon {
    font-size: 24px;
    color: var(--accent-cyan);
    margin-left: 4px;
    /* Centering the play triangle */
    transition: color 0.3s ease;
}

.premium-loan__video:hover {
    background: var(--accent-gradient) !important;
    border-color: transparent !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
    box-shadow: 0 20px 40px rgba(0, 205, 229, 0.4) !important;
}

.premium-loan__video:hover .premium-loan__video-icon {
    color: #ffffff;
}

/* Pulsing waves animations */
.premium-loan__video-ripple-1,
.premium-loan__video-ripple-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 205, 229, 0.3);
    pointer-events: none;
}

.premium-loan__video-ripple-1 {
    animation: premiumRipple 3s infinite;
}

.premium-loan__video-ripple-2 {
    animation: premiumRipple 3s infinite;
    animation-delay: 1.5s;
}

@keyframes premiumRipple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }

    100% {
        width: 250%;
        height: 250%;
        opacity: 0;
        box-shadow: 0 0 0 20px rgba(0, 205, 229, 0);
    }
}

/* Form container side */
.premium-loan__form-wrapper {
    background: #0b1121 !important;
    padding: 60px !important;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1199px) {
    .premium-loan__form-wrapper {
        padding: 50px 40px !important;
    }
}

@media (max-width: 575px) {
    .premium-loan__form-wrapper {
        padding: 40px 25px !important;
    }
}

/* Title form override */
.premium-loan__title {
    color: #ffffff !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 35px !important;
    text-transform: none !important;
    /* Premium looks don't need excessive all-caps */
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Overriding range slider styles to fit the layout perfectly */
.premium-loan__form .input-box__top {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-loan__form .input-box__top-border {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
    margin-top: 25px;
}

.premium-loan__form .input-box {
    margin-bottom: 25px;
    position: relative;
}

/* noUiSlider theme custom overrides */
.premium-loan__form .noUi-target {
    background: rgba(255, 255, 255, 0.08) !important;
    border: none !important;
    height: 6px !important;
    border-radius: 10px !important;
    box-shadow: none !important;
}

.premium-loan__form .noUi-connect {
    background: linear-gradient(90deg, var(--accent-cyan), #29b1e5) !important;
    border-radius: 10px;
}

/* Handles styling */
.premium-loan__form .noUi-handle {
    border: 3px solid #ffffff !important;
    background: var(--accent-cyan) !important;
    box-shadow: 0 0 15px rgba(0, 205, 229, 0.6), 0 0 5px rgba(0, 205, 229, 0.3) !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    top: -8px !important;
    cursor: grab !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.premium-loan__form .noUi-handle:active {
    cursor: grabbing !important;
    transform: scale(1.25);
    box-shadow: 0 0 25px rgba(0, 205, 229, 0.9), 0 0 8px rgba(0, 205, 229, 0.5) !important;
}

/* Tooltips styling inside .premium-loan__form */
.premium-loan__form .noUi-tooltip {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 4px 10px !important;
    border-radius: 30px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    bottom: 145% !important;
    display: inline-block !important;
}

.premium-loan__form .noUi-tooltip::after {
    content: '' !important;
    position: absolute !important;
    bottom: -4px !important;
    left: 50% !important;
    transform: translateX(-50%) rotate(45deg) !important;
    width: 8px !important;
    height: 8px !important;
    background: rgba(15, 30, 55, 0.9) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    display: block !important;
}

/* Stats list box */
.premium-loan__stats {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.premium-loan__stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.premium-loan__stat-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.premium-loan__stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.premium-loan__stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-cyan);
    text-shadow: 0 0 15px rgba(0, 205, 229, 0.35);
    font-family: var(--easilon-font-heading, "Outfit", sans-serif);
}

.premium-loan__stat-value i {
    font-style: normal;
}

/* Button overrides */
.premium-loan__btn {
    background: var(--accent-gradient) !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(0, 205, 229, 0.35) !important;
    width: 100% !important;
    height: 58px !important;
    justify-content: center !important;
    border-radius: 16px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.premium-loan__btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 35px rgba(0, 205, 229, 0.5) !important;
    filter: brightness(1.05);
}

.premium-loan__btn:active {
    transform: translateY(1px) !important;
}

.premium-loan__btn .easilon-btn__icon {
    font-size: 14px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.premium-loan__btn:hover .easilon-btn__icon {
    transform: translateX(4px);
}

/* Work Process Redesign */
.work-process-one {
    background: #ffffff;
}

.work-process-one__item__title {
    color: var(--luxury-navy) !important;
    font-weight: 700;
}

/* Responsive Overrides */
@media (max-width: 1199px) {
    .premium-hero__title {
        font-size: 3.8rem;
    }
}

@media (max-width: 767px) {
    .premium-hero {
        padding: 110px 0 60px 0 !important; /* Fits below absolute header on mobile */
    }

    .premium-hero::before {
        display: none !important;
    }

    .premium-hero::after {
        display: none;
    }

    .hero-mobile-image {
        margin-bottom: 20px !important;
    }

    .hero-mobile-image img {
        max-height: 220px !important;
        object-fit: cover !important;
        width: 100% !important;
        border-radius: 16px !important;
        border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
    }

    .hero-glass-box {
        padding: 20px 18px !important;
        background: rgba(255, 255, 255, 0.92) !important;
        border-radius: 16px !important;
        border: 1px solid rgba(255, 255, 255, 0.9) !important;
        box-shadow: 0 15px 35px rgba(7, 22, 44, 0.12) !important;
    }

    .premium-hero__title {
        font-size: 2.1rem;
        margin-bottom: 12px !important;
        line-height: 1.25 !important;
    }

    .premium-hero__text {
        font-size: 0.92rem;
        margin-bottom: 20px !important;
        color: #374151 !important;
        line-height: 1.6 !important;
    }

    .ph-btn {
        padding: 12px 28px !important;
        font-size: 13px !important;
    }

    .premium-trust-bar {
        margin-top: -50px;
    }

    .premium-about__title {
        font-size: 2.2rem;
    }

    /* Prefix-Specific Loan Page Heroes Mobile Optimization */
    .bl-hero, .wcl-hero, .pl-hero, .hl-hero, .lap-hero, .ml-hero, .el-hero, .cl-hero, .al-hero {
        padding: 100px 0 40px 0 !important;
    }

    /* Reduce vertical stacked spacing gap between columns in hero sections on mobile */
    .bl-hero .row, .wcl-hero .row, .pl-hero .row, .hl-hero .row, .lap-hero .row, .ml-hero .row, .el-hero .row, .cl-hero .row, .al-hero .row {
        --bs-gutter-y: 20px !important;
    }

    /* Standardize hero image sizes for loan detail pages */
    .bl-hero img, .wcl-hero img, .pl-hero img, .hl-hero img, .lap-hero img, .ml-hero img, .el-hero img, .cl-hero img, .al-hero img {
        min-height: auto !important;
        max-height: 240px !important;
        object-fit: cover !important;
        border-radius: 16px !important;
        margin-bottom: 15px !important;
    }

    /* Reduce vertical padding for loan hero titles/badges */
    .bl-hero__badge, .wcl-hero__badge, .pl-hero__badge, .hl-hero__badge, .lap-hero__badge, .ml-hero__badge, .el-hero__badge, .cl-hero__badge, .al-hero__badge {
        font-size: 11px !important;
        padding: 6px 12px !important;
        margin-bottom: 12px !important;
    }

    .bl-hero__title, .wcl-hero__title, .pl-hero__title, .hl-hero__title, .lap-hero__title, .ml-hero__title, .el-hero__title, .cl-hero__title, .al-hero__title {
        font-size: 24px !important; /* Smaller, cleaner heading font size on mobile */
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }

    .bl-hero__desc, .wcl-hero__desc, .pl-hero__desc, .hl-hero__desc, .lap-hero__desc, .ml-hero__desc, .el-hero__desc, .cl-hero__desc, .al-hero__desc {
        font-size: 13.5px !important;
        margin-bottom: 20px !important;
        line-height: 1.55 !important;
        color: rgba(255, 255, 255, 0.75) !important;
    }

    /* Standardize CTA button sizes inside loan hero headers for mobile viewports */
    .bl-hero a, .wcl-hero a, .pl-hero a, .hl-hero a, .lap-hero a, .ml-hero a, .el-hero a, .cl-hero a, .al-hero a {
        padding: 10px 22px !important;
        font-size: 13px !important;
        border-radius: 10px !important;
    }

    /* Stats Grid spacing optimization for mobile */
    .bl-hero__stats, .wcl-hero__stats, .pl-hero__stats, .hl-hero__stats, .lap-hero__stats, .ml-hero__stats, .el-hero__stats, .cl-hero__stats, .al-hero__stats {
        margin-top: 25px !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
        padding-top: 20px !important;
    }

    .bl-hero__stat-num, .wcl-hero__stat-num, .pl-hero__stat-num, .hl-hero__stat-num, .lap-hero__stat-num, .ml-hero__stat-num, .el-hero__stat-num, .cl-hero__stat-num, .al-hero__stat-num {
        font-size: 20px !important;
    }

    .bl-hero__stat-label, .wcl-hero__stat-label, .pl-hero__stat-label, .hl-hero__stat-label, .lap-hero__stat-label, .ml-hero__stat-label, .el-hero__stat-label, .cl-hero__stat-label, .al-hero__stat-label {
        font-size: 11px !important;
    }

    /* Global Section Title responsive shrink overrides */
    .sec-title__title {
        font-size: 26px !important;
        line-height: 1.35 !important;
    }

    .sec-title p {
        font-size: 14px !important;
        margin-top: 10px !important;
    }

    /* Clean up and enable swiping/scrolling for all eligibility tables on mobile */
    div:has(> .bl-elig-table),
    div:has(> .wcl-elig-table),
    div:has(> .pl-elig-table),
    div:has(> .hl-elig-table),
    div:has(> .lap-elig-table),
    div:has(> .ml-elig-table),
    div:has(> .el-elig-table),
    div:has(> .cl-elig-table),
    div:has(> .al-elig-table) {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .bl-elig-table, .wcl-elig-table, .pl-elig-table, .hl-elig-table, .lap-elig-table, .ml-elig-table, .el-elig-table, .cl-elig-table, .al-elig-table {
        display: table !important;
        width: 100% !important;
        min-width: 100% !important;
    }

    .bl-elig-table th, .wcl-elig-table th, .pl-elig-table th, .hl-elig-table th, .lap-elig-table th, .ml-elig-table th, .el-elig-table th, .cl-elig-table th, .al-elig-table th {
        padding: 10px 8px !important;
        font-size: 11px !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .bl-elig-table td, .wcl-elig-table td, .pl-elig-table td, .hl-elig-table td, .lap-elig-table td, .ml-elig-table td, .el-elig-table td, .cl-elig-table td, .al-elig-table td {
        padding: 10px 8px !important;
        font-size: 11px !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
}

/* Tooltip styling is now fully handled in the premium calculator section above */

/* Fix Working Process Layout and Overlaps */
.work-process-one__item__content {
    margin-top: 20px !important;
    position: relative;
    z-index: 10;
}

.work-process-one__item__title {
    margin-bottom: 12px !important;
    font-size: 20px !important;
    line-height: 1.4 !important;
}

.work-process-one__item__text {
    color: var(--text-muted) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.work-process-one__item__number {
    z-index: 10 !important;
    box-shadow: 0 4px 10px rgba(0, 205, 229, 0.3) !important;
}

/* Restore missing elements gracefully */
.work-process-one__item:nth-child(1) .work-process-one__item__content {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Premium Services Section Background */
.services-premium {
    position: relative;
    background-color: #f4f7fa !important;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}

.services-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f4f7fa;
    z-index: 0;
}

.services-premium-shape-1 {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 115, 184, 0.05) 0%, rgba(26, 115, 184, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.services-premium-shape-2 {
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 115, 184, 0.04) 0%, rgba(26, 115, 184, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.z-index-1 {
    z-index: 1;
}

/* Premium Service Card v3 (Ultra Modern Clean Layout) */
.premium-service-card-v3 {
    background: #ffffff;
    border-radius: 24px;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(7, 22, 44, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-service-card-v3:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(7, 22, 44, 0.08);
}

.pscv3-image-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 160px;
    margin-bottom: 15px;
}

.pscv3-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.premium-service-card-v3:hover .pscv3-image-box img {
    transform: scale(1.08);
}

.pscv3-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 6px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.pscv3-badge i {
    color: #ffffff;
    font-size: 12px;
}

.pscv3-content {
    padding: 0 10px 10px 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pscv3-title {
    font-size: 20px;
    font-weight: 800;
    color: #07162c;
    margin-bottom: 10px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.premium-service-card-v3:hover .pscv3-title {
    color: #007BFF;
}

.pscv3-desc {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.pscv3-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: auto;
}

.pscv3-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #07162c;
}

.pscv3-feature-item i {
    color: #007BFF;
    background: #eef5fc;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    transition: all 0.3s ease;
}

.premium-service-card-v3:hover .pscv3-feature-item i {
    background: #007BFF;
    color: #ffffff;
    transform: scale(1.1);
}

.pscv3-footer {
    padding-top: 15px;
    border-top: 1px solid #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pscv3-readmore {
    font-size: 12px;
    font-weight: 800;
    color: #007BFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pscv3-readmore i {
    transition: transform 0.3s ease;
}

.pscv3-readmore:hover {
    color: #07162c;
}

.pscv3-readmore:hover i {
    transform: translateX(8px);
}

/* Working Process v2 (Ultra-Premium Redesign) */
.work-process-v2 {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Background glowing accents */
.work-process-v2::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(39, 170, 225, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.work-process-v2::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(32, 120, 193, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.wpv2-grid {
    display: flex;
    gap: 30px;
    position: relative;
    margin-top: 80px;
    z-index: 1;
}

/* The dashed line connecting them */
.wpv2-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    /* center of badges */
    left: 12.5%;
    right: 12.5%;
    border-top: 2px dashed rgba(32, 120, 193, 0.2);
    z-index: 0;
}

.wpv2-card {
    flex: 1;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(7, 22, 44, 0.03);
    box-shadow: 0 12px 35px rgba(7, 22, 44, 0.03);
    padding: 0 24px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    /* space for badge */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wpv2-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(7, 22, 44, 0.08);
    border-color: rgba(32, 120, 193, 0.15);
}

.wpv2-badge-wrap {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.wpv2-badge {
    width: 100px;
    height: 100px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 0 0 10px #ffffff, 0 15px 0 10px var(--primary-blue);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wpv2-badge i {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wpv2-card:hover .wpv2-badge {
    box-shadow: 0 0 0 10px #ffffff, 0 18px 0 10px var(--primary-blue-dark), 0 10px 30px rgba(32, 120, 193, 0.25);
    transform: scale(1.05);
}

.wpv2-card:hover .wpv2-badge i {
    transform: scale(1.1) rotate(8deg);
}

.wpv2-arrow-icon {
    position: absolute;
    top: 0;
    right: -15px;
    /* Centers in the 30px gap */
    transform: translate(50%, -50%);
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: 2px solid #e2f0fb;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(7, 22, 44, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wpv2-card:hover .wpv2-arrow-icon {
    transform: translate(calc(50% + 5px), -50%);
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(32, 120, 193, 0.25);
}

.wpv2-content {
    padding-top: 80px;
}

.wpv2-step {
    font-size: 24px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.wpv2-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--luxury-navy);
    margin: 0 auto 15px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
    max-width: 90%;
}

.wpv2-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 3px;
    background: #cbdff2;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wpv2-card:hover .wpv2-title::after {
    width: 45px;
    background: var(--primary-blue);
}

.wpv2-desc {
    color: #6c757d;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.wpv2-footer-banner {
    background: #ffffff;
    border: 1px solid rgba(7, 22, 44, 0.05);
    border-radius: 100px;
    padding: 15px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 680px;
    margin: 60px auto 0;
    box-shadow: 0 10px 30px rgba(7, 22, 44, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.wpv2-footer-banner:hover {
    box-shadow: 0 15px 40px rgba(32, 120, 193, 0.08);
    border-color: rgba(32, 120, 193, 0.2);
    transform: translateY(-4px);
}

.wpv2-footer-icon {
    background: rgba(32, 120, 193, 0.08);
    color: var(--primary-blue);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.wpv2-footer-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    text-align: left;
}

.wpv2-footer-text strong {
    color: var(--luxury-navy);
    display: block;
    font-size: 15px;
    font-weight: 700;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .wpv2-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .wpv2-grid::before {
        display: none;
        /* Hide connecting line */
    }

    .wpv2-card {
        flex: 0 0 calc(50% - 15px);
        margin-top: 50px;
    }

    .wpv2-arrow-icon {
        display: none;
        /* Hide arrows on wrap */
    }

    .wpv2-footer-banner {
        margin-top: 40px;
        padding: 15px 25px;
        border-radius: 30px;
        flex-direction: column;
        text-align: center;
    }

    .wpv2-footer-text {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .wpv2-card {
        flex: 0 0 100%;
    }
}

/* Premium Header overrides (absolute positioning over hero + Preheader) */
.premium-header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.topbar-premium {
    background: rgba(7, 22, 44, 0.95);
    color: #a0b0c0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-premium a:hover {
    color: #007BFF !important;
}

.premium-header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.premium-header .main-menu__list>li>a {
    color: #07162c !important;
}

.premium-header .main-menu__list>li:hover>a,
.premium-header .main-menu__list>li.current>a {
    color: #1B75BC !important;
}

.premium-header .main-header__call__number a {
    color: #07162c !important;
}

.premium-header .search-toggler,
.premium-header .main-header__cart {
    color: #07162c !important;
}

.premium-header .mobile-nav__toggler span,
.premium-header .sidebar-btn__toggler span {
    background-color: #07162c !important;
}

.premium-header .main-menu .main-menu__list>li {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
}

.premium-header .main-header__logo img {
    max-width: 180px !important;
    height: auto;
}

/* Calculator v2 */
.loan-v2 {
    padding: 80px 0;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.loan-v2-container {
    display: flex;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.loan-v2-img {
    width: 45%;
    position: relative;
}

.loan-v2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loan-v2-play {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.loan-v2-play-btn {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B75BC;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.loan-v2-play-text {
    background: #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
    color: #07162c;
}

.loan-v2-form-wrap {
    width: 55%;
    padding: 60px 70px;
}

.loan-v2-title {
    font-size: 28px;
    font-weight: 800;
    color: #07162c;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loan-v2-title span {
    color: #1B75BC;
}

.loan-v2-slider-box {
    margin-bottom: 40px;
}

.loan-v2-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #07162c;
    margin-bottom: 15px;
}

.loan-v2-slider {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    position: relative;
}

.loan-v2-slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #1B75BC;
    border-radius: 3px;
}

.loan-v2-slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    background: #ffffff;
    border: 4px solid #1B75BC;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #ffffff, 0 4px 10px rgba(0, 0, 0, 0.1);
}

.loan-v2-summary {
    border-top: 1px solid #f2f2f2;
    padding-top: 25px;
}

.loan-v2-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f2f2f2;
}

.loan-v2-row:nth-child(3) {
    border-bottom: none;
    margin-bottom: 25px;
}

.loan-v2-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 700;
    color: #07162c;
}

.loan-v2-label i {
    color: #1B75BC;
    background: #eaf2f9;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
}

.loan-v2-value {
    font-size: 20px;
    font-weight: 800;
    color: #1B75BC;
}

.loan-v2-btn {
    width: 100%;
    background: #0056b3;
    color: #ffffff;
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    letter-spacing: 1px;
}

.loan-v2-btn:hover {
    background: #07162c;
}

/* Why Choose Us Premium Redesign */
.premium-why {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(circle at 10% 20%, rgba(39, 170, 225, 0.02) 0%, rgba(32, 120, 193, 0.02) 90%), #ffffff;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

.premium-why__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.premium-why .container {
    position: relative;
    z-index: 2;
}

.premium-why__content {
    position: relative;
}

.premium-why__description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 35px;
}

/* Benefits Grid */
.premium-why__benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.premium-why__benefit-card {
    background: #ffffff;
    border: 1px solid rgba(32, 120, 193, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(7, 22, 44, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-why__benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(39, 170, 225, 0.3);
    box-shadow: 0 15px 35px rgba(7, 22, 44, 0.08);
}

.premium-why__benefit-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(39, 170, 225, 0.1) 0%, rgba(32, 120, 193, 0.1) 100%);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.premium-why__benefit-card:hover .premium-why__benefit-icon-wrapper {
    background: var(--accent-gradient);
    color: #ffffff;
    transform: rotateY(360deg);
}

.premium-why__benefit-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--luxury-navy);
    margin: 0 0 6px 0;
}

.premium-why__benefit-info p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* Modern Progress Bars */
.premium-why__progress-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.premium-why__progress-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.premium-why__progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-why__progress-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--luxury-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-why__progress-percentage {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-blue);
}

.premium-why__progress-track {
    height: 8px;
    background: #eef2f6;
    border-radius: 10px;
    position: relative;
    overflow: visible;
}

.premium-why__progress-fill {
    height: 100%;
    width: 0;
    /* Animated by JS */
    background: var(--accent-gradient);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 10px rgba(39, 170, 225, 0.2);
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.premium-why__progress-fill::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 3px solid var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(39, 170, 225, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-why__progress-fill.counted::after {
    opacity: 1;
}

.premium-why__progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    border-radius: 10px;
    animation: pw-progress-shimmer 2s infinite linear;
}

@keyframes pw-progress-shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Image Composition */
.premium-why__image-composition {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pw-glow-backdrop {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(39, 170, 225, 0.08) 0%, rgba(32, 120, 193, 0) 70%);
    top: 10%;
    right: 5%;
    z-index: 0;
    pointer-events: none;
}

.pw-dots-grid {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--accent-cyan) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.35;
    z-index: 1;
}

.premium-why__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.premium-why__image-frame-1 {
    width: 82%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    border: 10px solid #ffffff;
    box-shadow: 0 25px 55px rgba(7, 22, 44, 0.1);
    transition: all 0.5s ease;
}

.premium-why__image-frame-1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.premium-why__image-frame-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(7, 22, 44, 0.15);
}

.premium-why__image-frame-1:hover img {
    transform: scale(1.05);
}

.premium-why__image-frame-2 {
    width: 68%;
    position: absolute;
    bottom: -30px;
    right: 0;
    z-index: 4;
    border-radius: 24px;
    overflow: hidden;
    border: 10px solid #ffffff;
    box-shadow: 0 30px 60px rgba(7, 22, 44, 0.14);
    transition: all 0.5s ease;
}

.premium-why__image-frame-2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.premium-why__image-frame-2:hover {
    transform: translate(-5px, -5px);
    box-shadow: 0 40px 80px rgba(7, 22, 44, 0.2);
}

.premium-why__image-frame-2:hover img {
    transform: scale(1.05);
}

/* Floating Glass Badges */
.pw-floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 16px 24px;
    box-shadow: 0 15px 35px rgba(7, 22, 44, 0.08);
    transition: all 0.4s ease;
}

.pw-floating-stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px rgba(7, 22, 44, 0.15);
    background: #ffffff;
    border-color: rgba(39, 170, 225, 0.3);
}

.pw-floating-stat--approval {
    top: 45px;
    right: -25px;
    z-index: 5;
}

.pw-floating-stat--clients {
    bottom: 25px;
    left: -25px;
    z-index: 5;
}

.pw-stat-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(39, 170, 225, 0.3);
}

.pw-stat-info {
    display: flex;
    flex-direction: column;
}

.pw-stat-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--luxury-navy);
    line-height: 1.2;
}

.pw-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Decorative Background Element */
.premium-why__shape {
    position: absolute;
    bottom: 5%;
    right: 2%;
    max-width: 15%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    animation: pw-float 6s ease-in-out infinite alternate;
}

@keyframes pw-float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .pw-floating-stat--approval {
        right: 0px;
    }

    .pw-floating-stat--clients {
        left: 0px;
    }
}

@media (max-width: 991px) {
    .premium-why {
        padding: 80px 0;
    }

    .premium-why__benefits-grid {
        grid-template-columns: 1fr;
    }

    .premium-why__image-composition {
        min-height: 480px;
        margin-top: 60px;
    }

    .premium-why__image-frame-1 {
        width: 80%;
    }

    .premium-why__image-frame-2 {
        width: 65%;
        bottom: -20px;
    }

    .pw-floating-stat--approval {
        top: 20px;
        right: 10px;
    }

    .pw-floating-stat--clients {
        bottom: 10px;
        left: 10px;
    }
}

@media (max-width: 575px) {
    .premium-why {
        padding: 60px 0;
    }

    .premium-why__image-composition {
        min-height: 380px;
        margin-top: 40px;
    }

    .premium-why__image-frame-1 {
        border-width: 6px;
    }

    .premium-why__image-frame-2 {
        border-width: 6px;
        bottom: -10px;
    }

    .pw-floating-stat {
        padding: 10px 16px;
        border-radius: 14px;
        gap: 10px;
    }

    .pw-floating-stat--approval {
        top: 10px;
        right: 5px;
    }

    .pw-floating-stat--clients {
        bottom: 5px;
        left: 5px;
    }

    .pw-stat-icon-box {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .pw-stat-number {
        font-size: 14px;
    }

    .pw-stat-label {
        font-size: 9px;
    }
}

/* Premium Testimonial Section */
.premium-testimonial {
    background: #f8fafc;
    position: relative;
    padding: 100px 0;
}

.premium-testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 15px 45px rgba(15, 43, 70, 0.04);
    border: 1px solid rgba(15, 43, 70, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    margin: 15px 0;
}

.premium-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-testimonial-card:hover::before {
    opacity: 1;
}

.premium-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(27, 117, 188, 0.15);
    border-color: rgba(41, 177, 229, 0.3);
}

.ptc-rating {
    color: var(--gold-accent);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.ptc-quote {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.ptc-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(7, 22, 44, 0.05);
    padding-top: 25px;
    position: relative;
}

.ptc-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
}

.ptc-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ptc-author-info h4 {
    color: var(--luxury-navy);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.ptc-author-info span {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ptc-quote-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 3rem;
    color: rgba(41, 177, 229, 0.1);
    transition: all 0.4s ease;
}

.premium-testimonial-card:hover .ptc-quote-icon {
    color: rgba(41, 177, 229, 0.2);
    transform: scale(1.1) rotate(-5deg);
}

.testimonial-premium-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-premium-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(41, 177, 229, 0.3) !important;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.testimonial-premium-carousel .owl-dot.active span {
    background: var(--accent-cyan) !important;
    transform: scale(1.3);
}

/* ==========================================================================
   Inner Page Header / Breadcrumbs Section
   ========================================================================== */
.inner-page-header {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
}

.inner-page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(7, 22, 44, 0.9) 0%, rgba(7, 22, 44, 0.75) 100%);
    z-index: 1;
}

.inner-page-header-title {
    color: #ffffff;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--easilon-font-heading, "Outfit", sans-serif);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.inner-page-header-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.inner-page-header-breadcrumbs li {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    list-style: none;
}

.inner-page-header-breadcrumbs li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.inner-page-header-breadcrumbs li a:hover {
    color: var(--accent-cyan);
}

.inner-page-header-breadcrumbs li span {
    color: var(--accent-cyan);
    font-weight: bold;
}

/* ==========================================================================
   Core Values Section Style
   ========================================================================== */
.premium-values {
    background: linear-gradient(135deg, #0d2342 0%, #07162c 100%);
    position: relative;
    overflow: hidden;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(39, 170, 225, 0.3);
    box-shadow: 0 20px 40px rgba(39, 170, 225, 0.15);
}

.value-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(39, 170, 225, 0.1);
    color: var(--accent-cyan);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.value-card:hover .value-card-icon {
    background: var(--accent-gradient);
    color: #ffffff;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 20px rgba(39, 170, 225, 0.3);
}

.value-card-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Timeline Section
   ========================================================================== */
.premium-timeline {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.timeline-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #eef2f6;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 50px;
    z-index: 2;
}

.timeline-left {
    left: 0;
    padding-right: 45px;
    text-align: right;
}

.timeline-right {
    left: 50%;
    padding-left: 45px;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 25px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid var(--accent-cyan);
    z-index: 10;
    box-shadow: 0 0 10px rgba(39, 170, 225, 0.4);
    transition: all 0.3s ease;
}

.timeline-left .timeline-dot {
    right: -10px;
}

.timeline-right .timeline-dot {
    left: -10px;
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-cyan);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(39, 170, 225, 0.8);
}

.timeline-content {
    background: #f8fafc;
    border: 1px solid rgba(7, 22, 44, 0.03);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(7, 22, 44, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(39, 170, 225, 0.2);
    box-shadow: 0 15px 40px rgba(7, 22, 44, 0.06);
}

.timeline-year {
    font-size: 26px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-family: var(--easilon-font-heading, "Outfit", sans-serif);
}

.timeline-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--luxury-navy);
    margin-bottom: 10px;
}

.timeline-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .timeline-line {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        width: 100%;
        margin-left: 0;
        margin-bottom: 40px;
    }

    .timeline-left {
        left: 0;
        padding-right: 0;
        padding-left: 45px;
        text-align: left;
    }

    .timeline-right {
        left: 0;
        padding-left: 45px;
        text-align: left;
    }

    .timeline-left .timeline-dot {
        left: 10px;
        right: auto;
    }

    .timeline-right .timeline-dot {
        left: 10px;
    }
}

/* ==========================================================================
   Team Section Style
   ========================================================================== */
.premium-team {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.premium-team-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(7, 22, 44, 0.02);
    border: 1px solid rgba(7, 22, 44, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.premium-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(7, 22, 44, 0.08);
    border-color: rgba(39, 170, 225, 0.15);
}

.ptc-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

.premium-team-card:hover .ptc-img img {
    transform: scale(1.05);
}

.ptc-socials {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 22, 44, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 5;
}

.premium-team-card:hover .ptc-socials {
    bottom: 20px;
    opacity: 1;
}

.ptc-socials a {
    color: #ffffff;
    font-size: 15px;
    transition: color 0.3s ease;
}

.ptc-socials a:hover {
    color: var(--accent-cyan);
}

.ptc-info {
    padding: 25px 20px;
    text-align: center;
}

.ptc-name {
    color: var(--luxury-navy);
    font-size: 18px;
    font-weight: 750;
    margin-bottom: 5px;
}

.ptc-role {
    color: var(--accent-cyan);
    font-size: 13px;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Premium CTA Section
   ========================================================================== */
.premium-cta-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.95) 0%, rgba(13, 35, 66, 0.85) 100%);
    z-index: 1;
}

.cta-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    max-width: 750px;
    margin: 0 auto 20px;
    text-transform: capitalize;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 35px;
}

.btn-premium-outline {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 36px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none;
}

.btn-premium-outline:hover {
    border-color: var(--accent-cyan) !important;
    background: var(--accent-gradient) !important;
    box-shadow: 0 8px 25px rgba(39, 170, 225, 0.3) !important;
    transform: translateY(-2px);
}

.btn-premium-outline i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.btn-premium-outline:hover i {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 15px;
    }
}

/* ==========================================================================
   Unique About Narrative Section
   ========================================================================== */
.about-narrative {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-narrative__blur-1 {
    position: absolute;
    top: -5%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(39, 170, 225, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.about-narrative__blur-2 {
    position: absolute;
    bottom: -5%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(32, 120, 193, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.about-narrative__title {
    color: var(--luxury-navy) !important;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 25px;
    font-family: var(--easilon-font-heading, "Outfit", sans-serif);
}

.about-narrative__title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-narrative__text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 35px;
}

.about-narrative__tab-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-narrative__tab-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8fafc;
    border: 1px solid rgba(7, 22, 44, 0.03);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-narrative__tab-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(39, 170, 225, 0.2);
    box-shadow: 0 12px 35px rgba(7, 22, 44, 0.05);
}

.about-narrative__tab-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(39, 170, 225, 0.1);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-narrative__tab-card:hover .about-narrative__tab-icon {
    background: var(--accent-gradient);
    color: #ffffff;
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 5px 15px rgba(39, 170, 225, 0.3);
}

.about-narrative__tab-info h4 {
    font-size: 18px;
    font-weight: 750;
    color: var(--luxury-navy);
    margin-bottom: 8px;
}

.about-narrative__tab-info p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.about-narrative__composition {
    position: relative;
}

.about-narrative__img-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(7, 22, 44, 0.12);
}

.about-narrative__img-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.about-narrative__img-frame:hover img {
    transform: scale(1.04);
}

.about-narrative__quote-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    background: linear-gradient(to top, rgba(7, 22, 44, 0.95) 40%, rgba(7, 22, 44, 0) 100%);
    color: #ffffff;
    z-index: 2;
    text-align: left;
}

.about-narrative__quote-text {
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.about-narrative__quote-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .about-narrative {
        padding: 80px 0;
    }

    .about-narrative__title {
        font-size: 38px;
    }

    .about-narrative__composition {
        margin-top: 50px;
    }
}

/* Glassmorphism EMI Calculator Styles */
.glass-emi-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, #1e293b 0%, #090e17 80%);
}

.glass-panel {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px;
    color: #ffffff;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 950px;
    margin: 0 auto;
}

.glass-panel-header {
    margin-bottom: 40px;
}

.glass-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.glass-subtitle {
    color: #94a3b8;
    font-size: 16px;
}

.glass-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.g-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 16px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.g-tab.active,
.g-tab:hover {
    background: rgba(0, 205, 229, 0.2);
    border-color: #00cde5;
    color: #ffffff;
}

.g-tab i {
    margin-right: 8px;
    color: #00cde5;
}

.g-input-group {
    margin-bottom: 15px;
}

.g-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.g-label-row label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

.g-val-display {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.g-slider.noUi-target {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    box-shadow: none;
    height: 6px;
}

.g-slider .noUi-connect {
    background: #00cde5;
    box-shadow: 0 0 10px rgba(0, 205, 229, 0.5);
}

.g-slider .noUi-handle {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    background: #00cde5 !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 0 15px rgba(0, 205, 229, 0.8) !important;
    top: -8px !important;
    right: -11px !important;
}

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

.g-tenure-toggle {
    display: flex;
    gap: 10px;
}

.g-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    color: #94a3b8;
    font-size: 11px;
    transition: all 0.3s;
}

.g-toggle-btn.active {
    background: #00cde5;
    color: #ffffff;
    border-color: #00cde5;
}

.glass-results {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.g-chart-wrapper {
    width: 160px;
    margin: 0 auto 20px;
    position: relative;
}

.g-circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 80%;
    max-height: 200px;
    filter: drop-shadow(0 0 10px rgba(0, 205, 229, 0.5));
}

.g-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3.8;
}

.g-circle {
    fill: none;
    stroke: #00cde5;
    stroke-width: 2.8;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease-out;
}

.g-percentage {
    fill: #ffffff;
    font-family: sans-serif;
    font-size: 0.4em;
    text-anchor: middle;
    font-weight: bold;
}

.g-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    text-align: left;
}

.g-b-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.g-b-label {
    color: #cbd5e1;
    display: flex;
    align-items: center;
}

.g-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.principal-dot {
    background: #00cde5;
    box-shadow: 0 0 8px rgba(0, 205, 229, 0.8);
}

.interest-dot {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.g-b-value {
    color: #ffffff;
    font-weight: 700;
}

.g-total-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.g-emi-title {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 5px;
}

.g-emi-amount {
    color: #00cde5;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.g-total-payable {
    color: #cbd5e1;
    font-size: 13px;
}

.g-total-payable span {
    color: #ffffff;
    font-weight: 700;
}

.g-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #00cde5, #0096b8);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(0, 205, 229, 0.3);
}

.g-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0, 205, 229, 0.4);
    color: #ffffff;
}

/* Owl Carousel Equal Height Fix */
.services-two__carousel .owl-stage {
    display: flex;
}

.services-two__carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.services-two__carousel .owl-item>.item {
    display: flex;
    width: 100%;
}

.services-two__carousel .owl-item>.item>.premium-service-card-v3 {
    width: 100%;
}

/* Hide Owl Carousel nav and dots in mobile/tablet view */
@media (max-width: 767px) {

    .owl-carousel .owl-nav,
    .owl-carousel .owl-dots {
        display: none !important;
    }
}

/* Mobile Optimization for Glassmorphism EMI Calculator & Layout Cleanup */
@media (max-width: 767px) {
    /* Hide vertical rotated scroll-to-top button to prevent overlapping results on mobile */
    .scroll-to-top {
        display: none !important;
    }

    /* Restrict hero image banner height on mobile for glass-emi-section */
    .glass-emi-section .row > div:first-child {
        margin-bottom: 20px !important;
        display: block !important;
    }
    .glass-emi-section img {
        height: 240px !important;
        min-height: auto !important;
        object-fit: cover !important;
        border-radius: 16px !important;
    }

    /* Reduce panel padding to give layout maximum horizontal breathing room */
    .glass-panel {
        padding: 16px 12px !important;
        border-radius: 16px !important;
    }

    .glass-panel-header {
        margin-bottom: 15px !important;
    }

    .glass-title {
        font-size: 20px !important;
    }

    .glass-subtitle {
        font-size: 11px !important;
    }

    /* Elegant 2x2 symmetrical grid for calculator tabs on mobile */
    .glass-tabs {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        margin-bottom: 15px !important;
    }

    .g-tab {
        padding: 6px 10px !important;
        font-size: 11px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        width: 100% !important;
        margin: 0 !important;
        border-radius: 6px !important;
    }

    .g-tab i {
        margin-right: 0 !important;
        font-size: 10px !important;
    }

    .g-input-group {
        margin-bottom: 10px !important;
    }

    .g-label-row label {
        font-size: 10px !important;
    }

    .g-val-display {
        font-size: 13px !important;
    }

    .g-slider.noUi-target {
        height: 4px !important;
    }

    .g-slider .noUi-handle {
        width: 18px !important;
        height: 18px !important;
        top: -7px !important;
    }

    .g-tenure-toggle {
        margin-top: 6px !important;
        gap: 8px !important;
    }

    .g-toggle-btn {
        flex: 1;
        padding: 4px 10px !important;
        font-size: 10px !important;
        text-align: center;
    }

    /* Reduce results card padding on narrow viewports */
    .glass-results {
        padding: 12px 10px !important;
        border-radius: 12px !important;
    }

    .g-chart-wrapper {
        width: 60px !important;
        margin: 0 auto 8px !important;
    }

    .g-circular-chart {
        max-height: 60px !important;
    }

    .g-b-row {
        font-size: 10px !important;
    }

    .g-total-box {
        padding: 6px !important;
        border-radius: 8px !important;
    }

    .g-emi-title {
        font-size: 10px !important;
        margin-bottom: 2px !important;
    }

    .g-emi-amount {
        font-size: 16px !important;
        margin-bottom: 2px !important;
    }

    .g-total-payable {
        font-size: 10px !important;
    }

    .g-btn-primary {
        padding: 6px 16px !important;
        font-size: 10px !important;
        margin-top: 8px !important;
    }

    /* Global Mobile Optimization for all Prefix-Specific Loan Calculators */
    .bl-calc, .wcl-calc, .pl-calc, .hl-calc, .lap-calc, .ml-calc, .el-calc, .cl-calc, .al-calc {
        padding: 20px 16px !important;
        border-radius: 16px !important;
    }

    .bl-calc h4, .wcl-calc h4, .pl-calc h4, .hl-calc h4, .lap-calc h4, .ml-calc h4, .el-calc h4, .cl-calc h4, .al-calc h4 {
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }

    .bl-slider, .wcl-slider, .pl-slider, .hl-slider, .lap-slider, .ml-slider, .el-slider, .cl-slider, .al-slider {
        margin-bottom: 12px !important;
    }

    .bl-range-label, .wcl-range-label, .pl-range-label, .hl-range-label, .lap-range-label, .ml-range-label, .el-range-label, .cl-range-label, .al-range-label {
        font-size: 10px !important;
        margin-bottom: 4px !important;
    }

    /* Force results grid to stack vertically on mobile to prevent squishing */
    .bl-calc .col-4, .wcl-calc .col-4, .pl-calc .col-4, .hl-calc .col-4, .lap-calc .col-4, .ml-calc .col-4, .el-calc .col-4, .cl-calc .col-4, .al-calc .col-4 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Format each stacked box as an elegant horizontal flex row */
    .bl-calc-result, .wcl-calc-result, .pl-calc-result, .hl-calc-result, .lap-calc-result, .ml-calc-result, .el-calc-result, .cl-calc-result, .al-calc-result {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 16px !important;
        border-radius: 10px !important;
        margin-top: 0 !important;
        margin-bottom: 8px !important;
    }

    .bl-calc-result__label, .wcl-calc-result__label, .pl-calc-result__label, .hl-calc-result__label, .lap-calc-result__label, .ml-calc-result__label, .el-calc-result__label, .cl-calc-result__label, .al-calc-result__label {
        font-size: 11px !important;
        margin-bottom: 0 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    .bl-calc-result__value, .wcl-calc-result__value, .pl-calc-result__value, .hl-calc-result__value, .lap-calc-result__value, .ml-calc-result__value, .el-calc-result__value, .cl-calc-result__value, .al-calc-result__value {
        font-size: 15px !important;
        font-weight: 800 !important;
    }

    .bl-calc a, .wcl-calc a, .pl-calc a, .hl-calc a, .lap-calc a, .ml-calc a, .el-calc a, .cl-calc a, .al-calc a {
        padding: 10px 20px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
        margin-top: 15px !important;
    }

    /* Normalize all dreams image wrappers on mobile */
    div[class*="-dreams-img-wrap"] {
        padding-right: 0 !important;
        padding-bottom: 0 !important;
        margin-bottom: 20px !important;
    }

    /* Hide the offset border background block to prevent clutter on mobile screens */
    div[class*="-dreams-img-wrap"] > div:first-child {
        display: none !important;
    }

    /* Restrict maximum height of stacked loan images */
    div[class*="-dreams-img-wrap"] img {
        max-height: 260px !important;
        object-fit: cover !important;
        border-radius: 16px !important;
    }

    /* Make the text overlay container inside the image extremely compact */
    div[class*="-dreams-img-wrap"] div[class*="-img-hover-effect"] {
        border-radius: 16px !important;
    }

    div[class*="-dreams-img-wrap"] div[class*="-img-hover-effect"] > div {
        bottom: 12px !important;
        left: 12px !important;
        right: 12px !important;
        padding: 12px 16px !important;
        border-radius: 12px !important;
        background: rgba(7, 22, 44, 0.85) !important;
    }

    div[class*="-dreams-img-wrap"] div[class*="-img-hover-effect"] > div h4 {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    div[class*="-dreams-img-wrap"] div[class*="-img-hover-effect"] > div span {
        font-size: 9px !important;
    }

    div[class*="-dreams-img-wrap"] div[class*="-img-hover-effect"] > div div[style*="width: 10px"] {
        width: 8px !important;
        height: 8px !important;
    }
}

/* Testimonials Carousel Equal Height & Bottom-Alignment Fix */
.testimonial-premium-carousel .owl-stage {
    display: flex !important;
}

.testimonial-premium-carousel .owl-item {
    display: flex !important;
    flex: 1 0 auto !important;
}

.testimonial-premium-carousel .owl-item>.item {
    display: flex !important;
    width: 100% !important;
}

.testimonial-premium-carousel .owl-item>.item>.premium-testimonial-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: calc(100% - 30px) !important;
    /* Account for top and bottom margin */
    margin: 15px 0 !important;
}

.testimonial-premium-carousel .premium-testimonial-card .ptc-quote {
    flex-grow: 1 !important;
}

/* ==========================================================================
   Premium Mobile Navigation & Sidebar Custom Overrides
   ========================================================================== */

/* 1. Deep luxury navy background & elegant glassmorphism for mobile navigation drawer */
.mobile-nav__content {
    background-color: var(--luxury-navy, #07162c) !important;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

/* 2. Invert the dark logo to high-contrast white in mobile nav drawer & secondary desktop sidebar */
.mobile-nav__content .logo-box img,
.sidebar-one__logo img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(39, 170, 225, 0.45)) !important;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.mobile-nav__content .logo-box img:hover,
.sidebar-one__logo img:hover {
    transform: scale(1.03) !important;
}

/* 3. Hide redundant SVG dropdown arrow (cloned from desktop main-menu) in mobile nav list */
.mobile-nav__container .nav-chevron {
    display: none !important;
}

/* 4. Elegant custom circular/glassmorphic Close Buttons */
.mobile-nav__close,
.sidebar-one__close {
    color: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    top: 24px !important;
    right: 24px !important;
    font-size: 14px !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

.mobile-nav__close:hover,
.sidebar-one__close:hover {
    color: #ffffff !important;
    background: var(--accent-gradient) !important;
    border-color: transparent !important;
    box-shadow: 0 0 15px rgba(39, 170, 225, 0.6) !important;
    transform: rotate(90deg) !important;
}

/* 5. Custom styles for main menu links on mobile */
.mobile-nav__content .main-menu__list li>a {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    height: auto !important;
    transition: all 0.3s ease !important;
}

.mobile-nav__content .main-menu__list li>a:hover,
.mobile-nav__content .main-menu__list li.current>a {
    color: var(--accent-cyan, #27aae1) !important;
    padding-left: 5px !important;
}

/* 6. Mobile Dropdown Toggler Button redesign - resolves alignment & styling issues */
.mobile-nav__content .main-menu__list li a button {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: rotate(-90deg) !important;
    /* Point right default (collapsed) */
    outline: none !important;
    margin-left: auto !important;
    /* Ensure it is pushed perfectly to the far right */
}

.mobile-nav__content .main-menu__list li a button:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg) !important;
    /* Point down when expanded */
    background: var(--accent-gradient) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 0 12px rgba(39, 170, 225, 0.5) !important;
}

/* 7. Nested Submenu Styling inside mobile navigation */
.mobile-nav__content .main-menu__list ul {
    background: rgba(255, 255, 255, 0.02) !important;
    border-top: none !important;
    padding-left: 15px !important;
    border-left: 2px solid rgba(39, 170, 225, 0.25) !important;
    margin: 6px 0 12px 12px !important;
    border-radius: 4px !important;
}

.mobile-nav__content .main-menu__list ul li>a {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border-bottom: none !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.mobile-nav__content .main-menu__list ul li>a:hover,
.mobile-nav__content .main-menu__list ul li.current>a {
    color: var(--accent-cyan, #27aae1) !important;
    padding-left: 5px !important;
}

/* 8. Contact Info List styling in drawer */
.mobile-nav__contact {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 30px !important;
}

.mobile-nav__contact li {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
}

.mobile-nav__contact li a {
    color: rgba(255, 255, 255, 0.85) !important;
    transition: all 0.3s ease !important;
}

.mobile-nav__contact li a:hover {
    color: var(--accent-cyan, #27aae1) !important;
    text-shadow: 0 0 10px rgba(39, 170, 225, 0.3) !important;
}

.mobile-nav__contact__icon {
    background: var(--accent-gradient) !important;
    box-shadow: 0 0 10px rgba(39, 170, 225, 0.3) !important;
    border: none !important;
    color: #ffffff !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    margin-right: 12px !important;
}

/* 9. Social Media Icons in mobile navigation drawer */
.mobile-nav__social {
    gap: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 30px !important;
    display: flex !important;
    align-items: center !important;
}

.mobile-nav__social a {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 15px !important;
    margin: 0 !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.mobile-nav__social a:hover {
    background: var(--accent-gradient) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 5px 15px rgba(39, 170, 225, 0.45) !important;
}

/* ==========================================================================
   Premium Desktop Sidebar (aside.sidebar-one) Custom Overrides
   ========================================================================== */

/* 1. Deep luxury navy background & elegant glassmorphism for desktop sidebar */
.sidebar-one__content {
    background-color: var(--luxury-navy, #07162c) !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
}

/* 2. Style sidebar titles and underlines */
.sidebar-one__title {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

.sidebar-one__title::before,
.sidebar-one__title::after {
    background-color: var(--accent-cyan, #27aae1) !important;
}

/* 3. Text contrast and font sizes */
.sidebar-one__about__text {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
    margin-bottom: 25px !important;
}

.sidebar-one__info__list li {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
}

.sidebar-one__info__list li address {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
}

.sidebar-one__info__list li a {
    color: rgba(255, 255, 255, 0.85) !important;
    transition: all 0.3s ease !important;
}

.sidebar-one__info__list li a:hover {
    color: var(--accent-cyan, #27aae1) !important;
    text-shadow: 0 0 10px rgba(39, 170, 225, 0.3) !important;
}

/* 4. Elegant custom circular contact icons */
.sidebar-one__info__list li .sidebar-one__info__icon {
    background: var(--accent-gradient) !important;
    box-shadow: 0 0 10px rgba(39, 170, 225, 0.3) !important;
    border: none !important;
    color: #ffffff !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    margin-right: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 5. Social Media Icons in desktop sidebar */
.sidebar-one__social {
    gap: 12px !important;
    display: flex !important;
    align-items: center !important;
    margin-bottom: 40px !important;
}

.sidebar-one__social a {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 15px !important;
    margin: 0 !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.sidebar-one__social a:hover {
    background: var(--accent-gradient) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 5px 15px rgba(39, 170, 225, 0.45) !important;
}

.sidebar-one__social a .social-links-two__icon {
    background: transparent !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    color: inherit !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 6. Newsletter Input and Submit Button Styling */
.sidebar-one__newsletter__inner {
    position: relative !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.sidebar-one__newsletter__inner:focus-within {
    border-color: rgba(39, 170, 225, 0.5) !important;
    box-shadow: 0 0 15px rgba(39, 170, 225, 0.25) !important;
}

.sidebar-one__newsletter__input {
    background: transparent !important;
    padding-left: 20px !important;
    height: 50px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    width: calc(100% - 50px) !important;
    border: none !important;
}

.sidebar-one__newsletter__btn {
    background: var(--accent-gradient) !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    width: 50px !important;
    height: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    border: none !important;
    outline: none !important;
}

.sidebar-one__newsletter__btn:hover {
    background: var(--accent-gradient) !important;
    filter: brightness(1.15) !important;
    color: #ffffff !important;
}

/* 7. Completely disable and hide cosmetic preloader to eliminate stuck loading screen glitches */
.preloader {
    display: none !important;
}

/* ==========================================================================
   Premium Topbar / Preheader Custom Styling
   ========================================================================== */
.topbar-premium {
    background: rgba(7, 22, 44, 0.95) !important;
    color: #a0b0c0 !important;
    font-size: 13px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    font-family: 'Montserrat', sans-serif !important;
}

.topbar-premium__inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 8px 0 !important;
}

.topbar-premium__info {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.topbar-premium__info li {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.topbar-premium__info li a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
}

.topbar-premium__info li a:hover {
    color: var(--accent-cyan, #27aae1) !important;
}

.topbar-premium__info__icon {
    color: var(--accent-cyan, #27aae1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
}

.topbar-premium__right {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
}

.topbar-premium__social {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.topbar-premium__social a {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.topbar-premium__social a:hover {
    color: var(--accent-cyan, #27aae1) !important;
}

.topbar-premium__hours {
    color: rgba(255, 255, 255, 0.6) !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-weight: 500 !important;
}

@media (max-width: 991px) {
    .topbar-premium {
        display: none !important;
        /* Keep mobile screen tidy */
    }

    /* Remove sticky header in mobile/tablet view */
    .sticky-header--cloned {
        display: none !important;
    }
}

/* Hide hamburger menu on desktop */
@media (min-width: 1200px) {
    .mobile-nav__btn,
    .mobile-nav__toggler {
        display: none !important;
    }
}