/* ==========================================================================
   Yash IMF - Premium Financial Services Website
   Main Styling Sheet (Production Ready)
   Brand Colors:
   - Primary: #263D8B (Deep Banking Blue)
   - Accent: #F7A81D (Vibrant Amber / Gold)
   - Background Light: #F8F9FA
   - Text Dark: #222222
   - Border: #E5E7EB
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #263D8B;
    --primary-dark: #1b2c66;
    --primary-light: #3452b4;
    --primary-bg-light: rgba(38, 61, 139, 0.04);

    --accent: #F7A81D;
    --accent-hover: #e09412;
    --accent-bg-light: rgba(247, 168, 29, 0.1);

    --white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-card: #FFFFFF;
    --text-dark: #222222;
    --text-muted: #555555;
    --text-light: #6C757D;
    --border-color: #E5E7EB;
    --border-light: #F1F3F5;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 8px 24px rgba(38, 61, 139, 0.07);
    --shadow-lg: 0 16px 40px rgba(38, 61, 139, 0.12);
    --shadow-hover: 0 20px 45px rgba(38, 61, 139, 0.16);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --------------------------------------------------------------------------
   01. Base & Global Styles
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.text-primary-custom {
    color: var(--primary) !important;
}

.text-accent-custom {
    color: var(--accent) !important;
}

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

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

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

/* --------------------------------------------------------------------------
   02. Typography & Section Headers
   -------------------------------------------------------------------------- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--accent-bg-light);
    color: #c78008;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(247, 168, 29, 0.25);
}

.section-title {
    font-size: 2.35rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   03. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(38, 61, 139, 0.25);
    transition: var(--transition);
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 61, 139, 0.35);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}



.btn-accent-custom {
    background: linear-gradient(135deg, var(--accent) 0%, #e09412 100%);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(247, 168, 29, 0.3);
    transition: var(--transition);
}

.btn-accent-custom:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 168, 29, 0.45);
}


.btn-yash-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(38, 61, 139, 0.25);
    transition: var(--transition);
}

.btn-yash-white:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 61, 139, 0.35);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   04. Top Header & Sticky Navigation Bar
   -------------------------------------------------------------------------- */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar .top-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar .top-info i {
    color: var(--accent);
    margin-right: 6px;
}

.header-navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
}

body {
    padding-top: 50px !important;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 50px !important;
    }
}

.header-navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding-top: 4px;
    padding-bottom: 4px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.brand-tagline {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--accent-hover);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Axis Bank Inspired Mega Menu */
.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-dark);
    padding: 24px 14px !important;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

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

.navbar-nav .nav-link i.dropdown-chevron {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

/* Hide default bootstrap dropdown caret */
.dropdown-toggle::after {
    display: none !important;
}

.navbar-nav .nav-item:hover .nav-link i.dropdown-chevron {
    transform: rotate(180deg);
}

.has-mega-menu {
    position: static !important;
}

.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--accent);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 30px 0;
    z-index: 1050;
}

.has-mega-menu:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Match normal dropdown hover behavior exactly to mega-menu */
@media (min-width: 992px) {
    .navbar-nav .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        border-top: 3px solid var(--accent);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        box-shadow: var(--shadow-lg);
        margin-top: 0;
        padding: 20px 0;
    }
    
    .navbar-nav .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu .dropdown-item {
    transition: var(--transition);
    padding: 10px 20px;
    font-weight: 600;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background: var(--primary-bg-light);
    transform: translateX(4px);
    color: var(--primary);
}

.mega-menu-column-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-light);

}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
    margin-bottom: 6px;
}

.mega-menu-item:hover {
    background: var(--primary-bg-light);
    transform: translateX(4px);
}

.mega-menu-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(38, 61, 139, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.mega-menu-item:hover .mega-menu-icon {
    background: var(--primary);
    color: var(--white);
}

.mega-menu-text .title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.92rem;
    display: block;
    margin-bottom: 2px;
}

.mega-menu-text .desc {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.3;
    display: block;
}

.mega-menu-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    padding: 24px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.mega-menu-banner::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 120px;
    height: 120px;
    background: var(--accent);
    opacity: 0.15;
    border-radius: 50%;
}

/* --------------------------------------------------------------------------
   05. Premium Cards (20px Border Radius & Soft Shadows)
   -------------------------------------------------------------------------- */
.premium-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(38, 61, 139, 0.2);
}

.premium-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-bg-light) 0%, rgba(247, 168, 29, 0.15) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.premium-card:hover .premium-card-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.glassmorphism-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   06. Hero Banner Slider Section
   -------------------------------------------------------------------------- */
.hero-slider-section {
    position: relative;
    background: linear-gradient(135deg, #0f1c42 0%, var(--primary-dark) 60%, var(--primary) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero-slide-item {
    padding: 90px 0 110px 0;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-title span.highlight {
    background: linear-gradient(120deg, var(--accent), #ffcf54);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(247, 168, 29, 0.2);
    border: 1px solid rgba(247, 168, 29, 0.4);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero-image-box {
    position: relative;
    text-align: center;
}

.hero-image-box img {
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    border: 4px solid rgba(255, 255, 255, 0.15);
    max-width: 100%;
    height: auto;
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    color: var(--text-dark);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.hero-floating-card i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-bg-light);
    color: #c78008;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   07. Stats & Counter Section
   -------------------------------------------------------------------------- */
.stats-section {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   08. Timeline & Process Section
   -------------------------------------------------------------------------- */
.timeline-item {
    position: relative;
    padding-left: 35px;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 30px;
    bottom: -30px;
    width: 2px;
    background: var(--border-color);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(247, 168, 29, 0.2);
}

/* --------------------------------------------------------------------------
   09. Breadcrumbs Header Component
   -------------------------------------------------------------------------- */
.page-breadcrumb-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 60px 0 50px 0;
    position: relative;
}

.breadcrumb-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.breadcrumb-nav ol {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    font-size: 0.95rem;
}

.breadcrumb-nav li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-nav li a {
    color: var(--accent);
}

.breadcrumb-nav li.active {
    color: var(--white);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   10. Sidebar & Form Widgets
   -------------------------------------------------------------------------- */
.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.sidebar-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links-list li {
    margin-bottom: 10px;
}

.sidebar-links-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.sidebar-links-list a:hover,
.sidebar-links-list a.active {
    background: var(--primary);
    color: var(--white);
}

.sidebar-cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   11. FAQ Accordions
   -------------------------------------------------------------------------- */
.custom-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.custom-accordion .accordion-button {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    background: var(--white);
    padding: 18px 24px;
    box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-bg-light);
    color: var(--primary);
}

.custom-accordion .accordion-body {
    padding: 20px 24px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   12. Testimonial & Partner Logos
   -------------------------------------------------------------------------- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    margin: 15px 5px;
}

.testimonial-card i.quote-icon {
    font-size: 2.5rem;
    color: rgba(247, 168, 29, 0.3);
    position: absolute;
    top: 24px;
    right: 24px;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.partner-logo-item {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
    min-height: 90px;
}

.partner-logo-item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   13. Footer Section
   -------------------------------------------------------------------------- */
.footer-section {
    background: #0f1836;
    color: rgba(255, 255, 255, 0.75);
    padding-top: 70px;
    padding-bottom: 25px;
    font-size: 0.92rem;
    border-top: 4px solid var(--accent);
}

.footer-section h5 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-disclaimer-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(247, 168, 29, 0.3);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-top: 30px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    margin-top: 50px;
    font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   14. Floating Widgets (WhatsApp & Call)
   -------------------------------------------------------------------------- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

.back-to-top {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

/* Partner Logo Images Styling */
.partner-logo-item {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-img {
    height: 48px;
    object-fit: contain;
    filter: grayscale(10%) contrast(100%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo-img:hover {
    filter: grayscale(0%) scale(1.08);
}