* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rbd-primary: #1e3c72;
    --rbd-secondary: #2a5298;
    --rbd-accent: #28a745;
    --rbd-dark: #1a1a1a;
    --rbd-light: #f8f9fa;
    --rbd-white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--rbd-light);
    color: #333;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--rbd-primary) 0%, var(--rbd-secondary) 100%);
    color: white;
    position: relative;
    overflow: visible;
    z-index: 1000;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="50%" style="stop-color:rgba(255,255,255,0.05);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /></linearGradient></defs><rect width="100" height="20" fill="url(%23grad)"/></svg>') repeat-x;
    pointer-events: none;
}

.header-top {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 0;
    font-size: 0.85rem;
}

/* Hide header-top on mobile */
@media (max-width: 768px) {
    .header-top {
        display: none !important;
    }
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-info span:hover {
    color: rgba(255,255,255,0.8);
    transform: translateX(3px);
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white !important;
}

.logo:hover {
    color: white !important;
}

.logo-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--rbd-primary);
    font-size: 1.4rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}



.logo-image {
    width: 260px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.1));
}

/* Logo text styles removed - using image only */


/* Modern Navigation Styles */
.modern-nav {
    padding: 1.5rem 0;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modern-toggler {
    border: none;
    padding: 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.modern-toggler:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.toggler-line {
    width: 25px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.modern-nav-menu {
    align-items: center;
    gap: 0.3rem;
}

.modern-nav-menu .nav-link {
    color: white !important;
    padding: 0.6rem 0.9rem !important;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 500;
    font-size: 0.85rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    backdrop-filter: none;
    border: none;
    white-space: nowrap;
}

.modern-nav-menu .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.modern-nav-menu .nav-link:hover::before,
.modern-nav-menu .nav-link.active::before {
    width: 80%;
}

.modern-nav-menu .nav-link:hover,
.modern-nav-menu .nav-link.active {
    transform: translateY(-2px);
    box-shadow: none;
    background: transparent;
    border: none;
}

.nav-icon {
    font-size: 0.8rem;
    transition: all 0.3s ease;
    min-width: 14px;
}

.modern-nav-menu .nav-link:hover .nav-icon {
    transform: scale(1.1);
}

.contact-btn {
    background: transparent !important;
    border: none !important;
    color: var(--rbd-accent) !important;
    font-weight: 600 !important;
    position: relative;
}

@media (max-width: 768px) {
    .contact-btn {
        background: linear-gradient(45deg, var(--rbd-accent), #20c997) !important;
        color: white !important;
        border-radius: 8px !important;
        padding: 0.75rem 1rem !important;
    }
    
    .contact-btn::before {
        display: none;
    }
}

.contact-btn::before {
    background: linear-gradient(45deg, var(--rbd-accent), #20c997) !important;
}

.contact-btn:hover {
    background: transparent !important;
    transform: translateY(-2px) !important;
    color: #20c997 !important;
}

/* Navigation Extras */
.nav-extras {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.btn-search, .btn-login {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 30px;
    padding: 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-search {
    width: 38px;
    height: 38px;
    justify-content: center;
    padding: 0;
    min-width: 38px;
}

.btn-search:hover, .btn-login:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: white;
}

/* Mega Dropdown */
.dropdown-hover {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 500px;
    max-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%) translateY(-15px);
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
    z-index: 9999;
}

.dropdown-hover:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dropdown-column h6 {
    color: var(--rbd-primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.dropdown-column a {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding-left: 0.75rem;
    position: relative;
}

.dropdown-column a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--rbd-primary);
    transition: height 0.3s ease;
    border-radius: 2px;
}

.dropdown-column a:hover {
    color: var(--rbd-primary);
    background: rgba(30,60,114,0.05);
    transform: translateX(5px);
}

.dropdown-column a:hover::before {
    height: 20px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: all 0.3s ease;
    margin-left: 0.3rem;
}

.dropdown-hover:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30,60,114,0.8), rgba(42,82,152,0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    color: white;
    padding: 6rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero .display-4 {
    font-weight: 300;
}

.hero .lead {
    opacity: 0.9;
}

/* Button Styles */
.btn-primary {
    background-color: var(--rbd-accent);
    border-color: var(--rbd-accent);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.btn-outline-light {
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30,60,114,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(42,82,152,0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(40,167,69,0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--rbd-primary);
    padding: 0.75rem 0;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: none;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--rbd-primary), var(--rbd-secondary), var(--rbd-accent));
    border-radius: 2px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--rbd-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--rbd-primary), var(--rbd-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-item {
    position: relative;
}

.feature-content {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.feature-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rbd-primary), var(--rbd-secondary), var(--rbd-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-content {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.95);
}

.feature-item:hover .feature-content::before {
    transform: scaleX(1);
}

.feature-number {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rbd-primary), var(--rbd-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(30,60,114,0.3);
}

.feature-icon-modern {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rbd-primary), var(--rbd-secondary));
    border-radius: 20px;
}

.feature-icon-modern i {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    z-index: 2;
}

.feature-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rbd-primary);
    margin-bottom: 1rem;
}

.feature-info p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    font-size: 0.9rem;
    color: var(--rbd-secondary);
    font-weight: 500;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rbd-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    border-bottom: 2px solid transparent;
}

.feature-link:hover {
    color: var(--rbd-secondary);
    border-bottom-color: var(--rbd-secondary);
    transform: translateX(5px);
}

.feature-link i {
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.feature-link:hover i {
    transform: translateX(3px);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--rbd-primary) 0%, var(--rbd-secondary) 100%);
    color: white;
}

.stat-item .display-4 {
    font-weight: 700;
}

.stat-item .fs-5 {
    opacity: 0.9;
}

/* Credentials Section */
.credentials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}



.credentials .display-6 {
    color: var(--rbd-primary);
    font-weight: 600;
}

.credential-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(30,60,114,0.1);
    position: relative;
    overflow: hidden;
}

.credential-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rbd-primary), var(--rbd-secondary), var(--rbd-accent));
}

.credential-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.credential-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rbd-primary), var(--rbd-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
}

.credential-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--rbd-primary), var(--rbd-secondary), var(--rbd-accent));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.credential-card:hover .credential-icon::after {
    opacity: 1;
}

.credential-card h5 {
    color: var(--rbd-primary);
    font-weight: 600;
    font-size: 1.3rem;
}

.credential-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.credential-badge {
    background: linear-gradient(45deg, var(--rbd-primary), var(--rbd-secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Compliance Section */
.compliance-info {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(30,60,114,0.1);
    margin-top: 2rem;
}

.compliance-info h4 {
    color: var(--rbd-primary);
    font-weight: 600;
    font-size: 1.5rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    font-weight: 500;
    color: #333;
}

.compliance-item i {
    color: var(--rbd-accent);
    font-size: 1.1rem;
}

.trust-seal {
    background: linear-gradient(135deg, var(--rbd-primary), var(--rbd-secondary));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(30,60,114,0.2);
}

.trust-seal i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--rbd-accent);
}

.trust-seal h6 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.trust-seal p {
    opacity: 0.9;
    margin: 0;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30,60,114,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(42,82,152,0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(40,167,69,0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Contact Cards */
.contact-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rbd-primary), var(--rbd-secondary), var(--rbd-accent));
}

.contact-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rbd-primary), var(--rbd-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-badge {
    background: linear-gradient(45deg, var(--rbd-accent), #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-content h4 {
    color: var(--rbd-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--rbd-secondary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-info h6 {
    color: var(--rbd-primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.contact-info p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rbd-accent), #20c997, var(--rbd-secondary));
}

.contact-form-header h4 {
    color: var(--rbd-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: #64748b;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    color: var(--rbd-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
}

.form-control {
    border: 2px solid rgba(30,60,114,0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.8);
}

.form-control:focus {
    border-color: var(--rbd-secondary);
    box-shadow: 0 0 0 0.2rem rgba(42,82,152,0.25);
    background: white;
}

/* Satellite Office Cards */
.satellite-office-card {
    background: white;
    border: 1px solid rgba(30,60,114,0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.satellite-office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--rbd-secondary), var(--rbd-accent));
}

.satellite-office-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.office-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(30,60,114,0.1);
}

.office-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rbd-secondary), var(--rbd-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.office-header h5 {
    color: var(--rbd-primary);
    font-weight: 600;
    margin: 0;
    font-size: 1.2rem;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.office-item i {
    color: var(--rbd-secondary);
    font-size: 1rem;
    margin-top: 0.1rem;
    min-width: 16px;
}

.office-item p {
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

/* ATM Services Special Styling */
.atm-services {
    background: linear-gradient(135deg, rgba(40,167,69,0.05), rgba(32,201,151,0.05));
    border-color: rgba(40,167,69,0.2);
}

.atm-services::before {
    background: linear-gradient(90deg, var(--rbd-accent), #20c997);
}

.atm-services .office-icon {
    background: linear-gradient(135deg, var(--rbd-accent), #20c997);
}

/* Branch Network Cards Special Styling */
.main-branch-card {
    background: linear-gradient(135deg, rgba(30,60,114,0.05), rgba(42,82,152,0.05));
    border-color: rgba(30,60,114,0.2);
}

.main-branch-card::before {
    background: linear-gradient(90deg, var(--rbd-primary), var(--rbd-secondary));
}

.main-branch-card .office-icon {
    background: linear-gradient(135deg, var(--rbd-primary), var(--rbd-secondary));
}

.stats-card {
    background: linear-gradient(135deg, rgba(42,82,152,0.05), rgba(40,167,69,0.05));
    border-color: rgba(42,82,152,0.2);
}

.stats-card::before {
    background: linear-gradient(90deg, var(--rbd-secondary), var(--rbd-accent));
}

.stats-card .office-icon {
    background: linear-gradient(135deg, var(--rbd-secondary), var(--rbd-accent));
}

.satellite-network-card {
    background: linear-gradient(135deg, rgba(40,167,69,0.05), rgba(32,201,151,0.05));
    border-color: rgba(40,167,69,0.2);
}

.satellite-network-card::before {
    background: linear-gradient(90deg, var(--rbd-accent), #20c997);
}

.satellite-network-card .office-icon {
    background: linear-gradient(135deg, var(--rbd-accent), #20c997);
}

/* Branch Section Styles */
.branch-stat {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.branch-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--rbd-primary), var(--rbd-secondary), var(--rbd-accent));
}

.branch-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--rbd-primary), var(--rbd-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    position: relative;
}

.stat-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--rbd-primary), var(--rbd-secondary), var(--rbd-accent));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.branch-stat:hover .stat-icon::after {
    opacity: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rbd-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--rbd-primary), var(--rbd-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
}

/* Branch Categories */
.branch-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category-item {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.main-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rbd-primary), var(--rbd-secondary));
}

.satellite-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rbd-secondary), var(--rbd-accent));
}

.category-item:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rbd-primary), var(--rbd-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.satellite-category .category-icon {
    background: linear-gradient(135deg, var(--rbd-secondary), var(--rbd-accent));
}

.category-info h4 {
    color: var(--rbd-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.category-info p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-badge {
    background: rgba(30,60,114,0.1);
    color: var(--rbd-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(30,60,114,0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: var(--rbd-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30,60,114,0.3);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,249,250,0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.contact-cta h4 {
    color: var(--rbd-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-card,
    .contact-form-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .satellite-office-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .office-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
    }
    
    .contact-item,
    .office-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i,
    .office-item i {
        margin-top: 0;
    }
    
    /* Branch Section Mobile Responsive */
    .branch-stat {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .branch-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-item {
        padding: 2rem 1.5rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .category-info {
        text-align: center;
    }
    
    .category-features {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Reports Section */
.reports {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.reports::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30,60,114,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(42,82,152,0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(40,167,69,0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Report Cards */
.report-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rbd-primary), var(--rbd-secondary), var(--rbd-accent));
}

.report-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, rgba(30,60,114,0.05), rgba(42,82,152,0.05));
}

.report-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rbd-primary), var(--rbd-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.report-year {
    background: linear-gradient(45deg, var(--rbd-accent), #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.report-content {
    padding: 1rem 2rem 2rem;
}

.report-content h5 {
    color: var(--rbd-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.report-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.report-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.report-size,
.report-format,
.report-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.report-size i,
.report-format i,
.report-date i {
    color: var(--rbd-secondary);
    width: 16px;
}

.report-actions {
    padding: 0 2rem 2rem;
}

/* Archive Card Special Styling */
.archive-card .report-header {
    background: linear-gradient(135deg, rgba(40,167,69,0.05), rgba(32,201,151,0.05));
}

.archive-card .report-icon {
    background: linear-gradient(135deg, var(--rbd-accent), #20c997);
}

/* Download Cards */
.download-card {
    background: white;
    border: 1px solid rgba(30,60,114,0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--rbd-secondary), var(--rbd-accent));
}

.download-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.download-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(30,60,114,0.1);
}

.download-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rbd-secondary), var(--rbd-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.download-header h6 {
    color: var(--rbd-primary);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: #64748b;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.download-item:hover {
    background: rgba(30,60,114,0.05);
    color: var(--rbd-primary);
    border-color: rgba(30,60,114,0.1);
}

.download-item i {
    color: var(--rbd-secondary);
    font-size: 1rem;
    min-width: 20px;
}

.download-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Download Statistics */
.download-stats {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,249,250,0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.download-stats h4 {
    color: var(--rbd-primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.download-stats .stat-item {
    padding: 1rem;
}

.download-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rbd-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--rbd-primary), var(--rbd-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-stats .stat-label {
    color: #64748b;
    font-weight: 500;
    margin: 0;
    font-size: 0.9rem;
}

/* Download Button Loading State */
.btn-downloading {
    position: relative;
    pointer-events: none;
}

.btn-downloading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for Reports */
@media (max-width: 768px) {
    .report-card {
        margin-bottom: 1.5rem;
    }
    
    .report-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .report-content {
        padding: 1rem 1.5rem;
    }
    
    .report-actions {
        padding: 0 1.5rem 1.5rem;
    }
    
    .download-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .download-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .download-stats {
        padding: 2rem 1.5rem;
    }
    
    .download-stats .stat-number {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background-color: var(--rbd-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-section h4 {
    color: var(--rbd-secondary);
    font-size: 1.2rem;
}

.footer-section a {
    color: #ccc !important;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--rbd-secondary) !important;
}

.footer-bottom {
    border-top: 1px solid #333 !important;
    color: #999;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--rbd-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--rbd-primary);
    transform: translateY(-2px);
}

/* Bootstrap Overrides */
.container {
    max-width: 1200px;
}

/* Additional Navigation Fixes */
@media (max-width: 1200px) {
    .modern-nav-menu .nav-link {
        padding: 0.5rem 0.7rem !important;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .nav-icon {
        font-size: 0.75rem;
    }
    
    .mega-dropdown {
        min-width: 400px;
        padding: 1.2rem;
    }
    
    .dropdown-grid {
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    .modern-nav-menu .nav-link span {
        display: block;
        font-size: 0.8rem;
        margin-top: 0.25rem;
    }
    
    .modern-nav-menu .nav-link .nav-icon {
        color: var(--rbd-primary);
        font-size: 1rem;
    }
    
    .modern-nav-menu .nav-link {
        padding: 0.6rem !important;
        min-width: 40px;
        justify-content: center;
    }
    
    .nav-extras .btn-login span {
        display: none;
    }
    
    .dropdown-arrow {
        display: none;
    }
}

/* Responsive Design Enhancements */
    /* Sidebar overlay */
    .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        backdrop-filter: blur(2px);
    }
    
    /* Close button for sidebar */
    .modern-nav-menu::before {
        content: '✕';
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 35px;
        height: 35px;
        background: rgba(30,60,114,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.2rem;
        color: var(--rbd-primary);
        transition: all 0.3s ease;
    }
    
    .modern-nav-menu::before:hover {
        background: rgba(30,60,114,0.2);
    }

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
        min-height: 60vh;
    }
    
    .hero .display-4 {
        font-size: 2rem;
    }
    
    .logo-text h1 {
        font-size: 1.8rem;
    }
    
    .logo-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    .logo-image {
        width: 220px;
        height: 80px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .modern-nav {
        padding: 1rem 0;
    }
    
    .modern-nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(30px);
        border-right: 1px solid rgba(30,60,114,0.1);
        padding: 2rem 1.5rem;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 9999;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .navbar-collapse.show .modern-nav-menu {
        left: 0;
    }
    
    .modern-nav-menu .nav-link {
        margin: 0.3rem 0;
        text-align: left;
        justify-content: flex-start;
        width: 100%;
        padding: 1rem 1.5rem !important;
        background: transparent !important;
        border: none !important;
        color: var(--rbd-primary) !important;
        border-radius: 12px;
        transition: all 0.3s ease;
        font-size: 1rem;
        font-weight: 500;
        border-left: 3px solid transparent;
    }
    
    .modern-nav-menu .nav-link:hover,
    .modern-nav-menu .nav-link.active {
        background: rgba(30,60,114,0.08) !important;
        color: var(--rbd-primary) !important;
        border-left-color: var(--rbd-primary);
        transform: translateX(5px);
    }
    
    .nav-extras {
        margin-left: 0;
        margin-top: 2rem;
        justify-content: flex-start;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(30,60,114,0.1);
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .nav-extras .btn-search,
    .nav-extras .btn-login {
        background: rgba(30,60,114,0.1) !important;
        color: var(--rbd-primary) !important;
        border: 1px solid rgba(30,60,114,0.2) !important;
        width: 100%;
        justify-content: flex-start;
        border-radius: 8px;
        padding: 0.8rem 1rem;
    }
    
    .mega-dropdown {
        position: static;
        transform: none;
        min-width: auto;
        width: 100%;
        margin-top: 0.5rem;
        margin-left: 1rem;
        border-radius: 10px;
        background: rgba(30,60,114,0.05);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(30,60,114,0.1);
        box-shadow: none;
        padding: 1rem;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dropdown-hover:hover .mega-dropdown {
        transform: none;
    }
    
    .credential-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .compliance-info {
        padding: 2rem;
        margin-top: 1.5rem;
    }
    
    .trust-seal {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .trust-seal i {
        font-size: 2.5rem;
    }
    
    /* Modern Features Responsive */
    .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature-content {
        padding: 2rem;
    }
    
    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -8px;
        right: 15px;
    }
    
    .feature-icon-modern {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon-modern i {
        font-size: 1.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--rbd-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--rbd-primary);
}