/* ============================================
   SECUREVERIFY BANK NETWORK — GLOBAL STYLES
   ============================================ */

/* ----- CSS VARIABLES ----- */
:root {
    --primary:       #0A2540;
    --primary-light: #1B3A5C;
    --primary-hover: #0D2F4F;
    --blue:          #2563EB;
    --blue-light:    #3B82F6;
    --gold:          #F3C450;
    --gold-dark:     #9D6F1A;
    --gold-light:    #F5E6C8;
    --purple:        #7C3AED;
    --green:         #10B981;
    --red:           #EF4444;
    --orange:        #F59E0B;
    --cyan:          #06B6D4;
    --white:         #FFFFFF;
    --off-white:     #F8FAFC;
    --gray-50:       #F9FAFB;
    --gray-100:      #F3F4F6;
    --gray-200:      #E5E7EB;
    --gray-300:      #D1D5DB;
    --gray-500:      #6B7280;
    --gray-700:      #374151;
    --gray-900:      #111827;
    --shadow:        0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
    --shadow-md:     0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
    --shadow-lg:     0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.05);
    --shadow-xl:     0 25px 50px -12px rgba(0,0,0,.15);
    --radius:        12px;
    --radius-lg:     16px;
    --transition:    all .3s ease;
}

/* ----- RESET & BASE ----- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { color: var(--primary); font-weight: 700; line-height: 1.3; }

a { text-decoration: none; transition: var(--transition); }

img { max-width: 100%; height: auto; }

::selection { background: var(--gold); color: var(--white); }

/* ============================================
   UTILITY CLASSES
   ============================================ */

.bg-light-custom { background: var(--off-white); }

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-primary-soft  { background: rgba(37,99,235,.1) !important; }
.bg-warning-soft  { background: rgba(245,158,11,.1) !important; }
.bg-success-soft  { background: rgba(16,185,129,.1) !important; }
.bg-info-soft     { background: rgba(6,182,212,.1)  !important; }
.bg-purple-soft   { background: rgba(124,58,237,.1) !important; }

.text-purple { color: var(--purple) !important; }

/* ----- SECTION COMMON ----- */
.section-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(212,168,67,.15), rgba(212,168,67,.05));
    color: var(--gold-dark);
    border: 1px solid rgba(212,168,67,.2);
}

.section-badge.badge-light {
    background: rgba(255,255,255,.15);
    color: var(--white);
    border-color: rgba(255,255,255,.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 650px;
    margin: .5rem auto 0;
}

/* ----- BTN GOLD ----- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 32px;
    box-shadow: 0 4px 15px rgba(212,168,67,.35);
    transition: var(--transition);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,168,67,.45);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    padding: 12px 0;
    transition: var(--transition);
    background: transparent;
}
@media screen and (max-width: 991px) {
    .navbar { padding: 8px 0;
    background: rgba(10,37,64,.97) !important;} 
    
}

.navbar.scrolled {
    background: rgba(10,37,64,.97) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,.15);
    padding: 8px 0;
}
.brand-icon {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: white; 
    padding: 2px; 
}

.brand-icon img {
    width: 110px;
    height: 90px;
    object-fit: cover;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)); /* adds subtle depth */
}

.brand-name {
    display: block;
    font-weight: 800;
    font-size: 1.3rem; /* increased from 1.15rem */
    color: var(--gold);
    line-height: 1.2;
    letter-spacing: -0.5px; /* tighter, more professional */
}

.brand-tagline {
    display: block;
    font-size: 0.65rem;
    color: var(--gold-light);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
}

.navbar .nav-link {
    color: rgba(255,255,255,.8);
    font-weight: 500;
    font-size: .9rem;
    padding: 8px 16px !important;
    transition: var(--transition);
    border-radius: 8px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold);
}

.navbar-toggler {
    border-color: rgba(255,255,255,.3);
    padding: 4px 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0A2540 0%, #1B3A5C 50%, #0D2F4F 100%);
    overflow: hidden;
    min-height: 100vh;
}

.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-particles .particle {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(212,168,67,.3);
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212,168,67,.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(37,99,235,.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-section .container { z-index: 2; }

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212,168,67,.15);
    border: 1px solid rgba(212,168,67,.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: .85rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-stats {
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    padding: 10px 0;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ----- HERO ILLUSTRATION ----- */
.illustration-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.float-card {
    position: absolute;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.float-card i { font-size: 1.2rem; color: var(--gold); }

.float-card.card-1 { top: 5%; left: 5%; animation-delay: 0s; }
.float-card.card-2 { top: 5%; right: 5%; animation-delay: 1.2s; }
.float-card.card-3 { bottom: 30%; left: 0; animation-delay: 2.4s; }
.float-card.card-4 { bottom: 30%; right: 0; animation-delay: 3.6s; }
.float-card.card-5 { bottom: 2%; left: 50%; transform: translateX(-50%); animation-delay: 4.8s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-15px); }
}

.float-card.card-5 {
    animation: float5 6s ease-in-out infinite 4.8s;
}

@keyframes float5 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-15px); }
}

.center-shield {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 2.5rem;
    z-index: 3;
}

.pulse-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; height: 100px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: pulse-ring 3s ease-out infinite;
}

.pulse-ring.delay-1 { animation-delay: 1s; }
.pulse-ring.delay-2 { animation-delay: 2s; }

@keyframes pulse-ring {
    0%   { width: 100px; height: 100px; opacity: .8; }
    100% { width: 300px; height: 300px; opacity: 0; }
}

.connection-lines {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.conn-line {
    stroke: rgba(212,168,67,.2);
    stroke-width: 1;
    stroke-dasharray: 5 5;
}

/* ----- SCROLL INDICATOR ----- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 4px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

.scroll-indicator span {
    font-size: .7rem;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   SCENARIO SECTION
   ============================================ */

.scenario-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.scenario-icon {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.scenario-value {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.scenario-value .label {
    font-size: .8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scenario-value .amount {
    font-size: .9rem;
    font-weight: 400;
    color: var(--primary);
}

.scenario-checklist {
    margin-bottom: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: .9rem;
}

.scenario-tag {
    margin-top: auto;
    padding: 8px 16px;
    background: rgba(37,99,235,.08);
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--blue);
}

.scenario-tag.tag-warning {
    background: rgba(245,158,11,.08);
    color: var(--orange);
}

.scenario-tag.tag-success {
    background: rgba(16,185,129,.08);
    color: var(--green);
}

/* ============================================
   TIMELINE / HOW IT WORKS
   ============================================ */

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--blue), var(--green));
    transform: translateX(-50%);
    border-radius: 3px;
    z-index: 0;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 50px 0;
    z-index: 1;
}

.timeline-item.right {
    margin-left: 50%;
    padding: 0 0 50px 40px;
}

.timeline-dot {
    position: absolute;
    top: 15px;
    right: -18px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: .85rem;
    z-index: 2;
    box-shadow: 0 0 0 5px var(--white), 0 0 0 7px var(--gray-200);
}

.timeline-item.right .timeline-dot {
    right: auto;
    left: -18px;
}

.timeline-dot.dot-success {
    background: linear-gradient(135deg, var(--green), #059669);
}

.timeline-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 16px;
    transition: var(--transition);
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-card.card-success {
    border-color: rgba(16,185,129,.3);
    background: linear-gradient(135deg, rgba(16,185,129,.03), var(--white));
}

.timeline-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(212,168,67,.1);
    color: var(--gold);
    font-size: 1.3rem;
}

.timeline-icon.icon-blue   { background: rgba(37,99,235,.1);  color: var(--blue); }
.timeline-icon.icon-purple { background: rgba(124,58,237,.1); color: var(--purple); }
.timeline-icon.icon-gold   { background: rgba(212,168,67,.1); color: var(--gold); }
.timeline-icon.icon-green  { background: rgba(16,185,129,.1); color: var(--green); }

.timeline-body h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-body p {
    font-size: .9rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.timeline-tags .badge {
    font-weight: 500;
    font-size: .75rem;
    border-radius: 6px;
    padding: 4px 10px;
}

/* ---- TIMELINE RESPONSIVE ---- */
@media (max-width: 767px) {
    .timeline-line { left: 18px; }

    .timeline-item,
    .timeline-item.right {
        width: 100%;
        margin-left: 0;
        padding: 0 0 40px 55px;
    }

    .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 0;
        right: auto;
    }
}

/* ============================================
   ROLES SECTION
   ============================================ */

.role-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.role-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.role-icon-wrapper {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2rem;
    color: var(--white);
}

.customer-gradient { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.bank-gradient     { background: linear-gradient(135deg, #0A2540, #1B3A5C); }
.agent-gradient    { background: linear-gradient(135deg, #7C3AED, #6D28D9); }
.jeweller-gradient { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }

.role-badge {
    display: inline-block;
    padding: 3px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    background: rgba(37,99,235,.1);
    color: var(--blue);
}

.role-badge.badge-blue   { background: rgba(10,37,64,.1);   color: var(--primary); }
.role-badge.badge-purple { background: rgba(124,58,237,.1); color: var(--purple); }
.role-badge.badge-gold   { background: rgba(212,168,67,.1); color: var(--gold-dark); }

.role-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.role-card p  { font-size: .9rem; color: var(--gray-500); margin-bottom: 20px; }

.role-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
}

.role-features li {
    padding: 6px 0;
    font-size: .85rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.role-features li i {
    color: var(--green);
    font-size: .75rem;
}

/* ============================================
   AGENT DASHBOARD
   ============================================ */

.dash-stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.dash-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.dash-stat-icon {
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
}

.dash-stat-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0;
    line-height: 1;
}

.dash-stat-info p {
    margin-bottom: 0;
    font-size: .8rem;
    color: var(--gray-500);
}

.dashboard-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
}

.dashboard-header h5 { color: var(--primary); }

.dashboard-actions {
    display: flex;
    gap: 8px;
}

.dashboard-tabs {
    padding: 0 24px;
    border-bottom: 2px solid var(--gray-200);
}

.dashboard-tabs .nav-link {
    font-size: .85rem;
    font-weight: 500;
    color: var(--gray-500);
    padding: 12px 20px;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.dashboard-tabs .nav-link.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
    background: none;
}

.dashboard-tabs .nav-link .badge {
    font-size: .65rem;
    padding: 2px 8px;
    border-radius: 50px;
}

.dashboard-table {
    margin-bottom: 0;
}

.dashboard-table thead th {
    background: var(--gray-50);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--gray-500);
    border-bottom-width: 1px;
    padding: 12px 16px;
    white-space: nowrap;
}

.dashboard-table tbody td {
    padding: 14px 16px;
    font-size: .88rem;
    vertical-align: middle;
    white-space: nowrap;
}

.avatar-sm {
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 700;
}

/* ============================================
   JEWELLER NOTIFICATION SYSTEM
   ============================================ */

.notification-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--primary);
    color: var(--white);
    flex-wrap: wrap;
    gap: 10px;
}

.notification-header h5 { color: var(--white); margin-bottom: 0; }

.notification-list {
    max-height: 500px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
    animation: slideIn .5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.notification-item:hover {
    background: var(--gray-50);
}

.notification-item.notif-accepted {
    background: rgba(16,185,129,.03);
    border-left: 3px solid var(--green);
}

.notification-item.notif-rejected {
    background: rgba(239,68,68,.03);
    border-left: 3px solid var(--red);
    opacity: .6;
}

.notif-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
}

.notif-title {
    font-weight: 600;
    font-size: .95rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.notif-body p {
    font-size: .85rem;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.notif-meta {
    display: flex;
    gap: 16px;
    font-size: .78rem;
    color: var(--gray-500);
}

.notif-actions {
    display: flex;
    gap: 8px;
}

/* ----- JEWELLER STATUS PANEL ----- */
.jeweller-status-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.jeweller-profile { text-align: center; }

.jeweller-avatar {
    width: 70px; height: 70px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 1.8rem;
}

.jeweller-rating {
    font-size: .85rem;
    color: var(--gray-500);
}

.mini-stat {
    text-align: center;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.mini-stat i { font-size: 1.2rem; margin-bottom: 4px; }
.mini-stat h6 { margin-bottom: 0; font-size: 1rem; }
.mini-stat small { color: var(--gray-500); font-size: .75rem; }

.activity-feed { max-height: 220px; overflow-y: auto; }

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: .85rem;
}

.activity-dot {
    width: 10px; height: 10px;
    min-width: 10px;
    border-radius: 50%;
    margin-top: 5px;
}

/* ============================================
   LOAN CALCULATOR
   ============================================ */

.calculator-section {
    background: linear-gradient(135deg, #0A2540 0%, #1B3A5C 100%);
    position: relative;
}

.calculator-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.calc-input-section {
    padding: 40px;
    background: var(--white);
}

.calc-result-section {
    padding: 40px;
    background: linear-gradient(135deg, var(--off-white), var(--white));
    height: 100%;
}

.calc-field {
    margin-bottom: 24px;
}

.calc-field label {
    font-weight: 600;
    font-size: .85rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-range {
    accent-color: var(--gold);
}

.range-value {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary);
    color: var(--gold);
    border-radius: 6px;
    font-weight: 700;
    font-size: .85rem;
    min-width: 60px;
    text-align: center;
    margin-left: 12px;
}

.purity-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.purity-btn {
    padding: 10px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-700);
    flex: 1;
    min-width: 80px;
    text-align: center;
}

.purity-btn small {
    display: block;
    font-size: .7rem;
    color: var(--gray-500);
    font-weight: 400;
}

.purity-btn.active,
.purity-btn:hover {
    border-color: var(--gold);
    background: rgba(212,168,67,.08);
    color: var(--gold-dark);
}

.result-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.result-card.main-result {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    padding: 24px;
}

.result-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.main-result .result-label { color: rgba(255,255,255,.7); }

.result-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.result-sub {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
}

.result-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.interest-info {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid var(--gray-200);
}

.interest-info h6 {
    font-size: .85rem;
    margin-bottom: 10px;
}

.interest-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: .85rem;
    border-bottom: 1px solid var(--gray-100);
}

.interest-row:last-child { border-bottom: none; }

.interest-row .rate {
    font-weight: 700;
    color: var(--green);
}

/* ============================================
   COLLABORATION SECTION
   ============================================ */

.collab-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.collab-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.collab-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
    background: rgba(37,99,235,.1);
    color: var(--blue);
}

.collab-icon.icon-security { background: rgba(16,185,129,.1); color: var(--green); }
.collab-icon.icon-realtime { background: rgba(245,158,11,.1); color: var(--orange); }
.collab-icon.icon-speed    { background: rgba(124,58,237,.1); color: var(--purple); }

.collab-card h5 { font-size: 1.1rem; margin-bottom: 10px; }
.collab-card p  { font-size: .88rem; color: var(--gray-500); flex-grow: 1; }

.collab-stats {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.collab-stat-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary);
}

.collab-stat-item span {
    font-size: .75rem;
    color: var(--gray-500);
}

.trust-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 40px;
}

.trust-item i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.trust-item h4 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.trust-item p {
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    margin-bottom: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
}

.contact-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 1rem;
}

.contact-info-item h6 {
    font-size: .9rem;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: .85rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--gray-100);
    color: var(--gray-700);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact-form-card .form-label {
    font-weight: 600;
    font-size: .85rem;
    color: var(--primary);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 10px;
    padding: 10px 14px;
    border-color: var(--gray-200);
    font-size: .9rem;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,168,67,.15);
}

.contact-form-card .input-group-text {
    border-radius: 10px 0 0 10px;
    border-color: var(--gray-200);
    background: var(--gray-50);
    color: var(--gray-500);
}

/* ============================================
   FOOTER
   ============================================ */

.footer-section {
    background: var(--primary);
    color: rgba(255,255,255,.7);
}

.footer-brand .brand-icon {
    width: 110px;
    height: 70px;
}

.footer-heading {
    color: var(--white);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li { padding: 5px 0; }

.footer-links a {
    color: rgba(255,255,255,.6);
    font-size: .88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}

.footer-badges {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-badges span {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
}

/* ============================================
   NOTIFICATION MODAL
   ============================================ */

.notification-modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.notification-modal-content .modal-header {
    justify-content: center;
    padding-top: 30px;
}

.modal-icon-wrapper {
    width: 70px; height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245,158,11,.1);
    color: var(--orange);
    font-size: 1.8rem;
}

.modal-details {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 16px;
    text-align: left;
}

.modal-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: .88rem;
    border-bottom: 1px solid var(--gray-200);
}

.modal-detail-row:last-child { border-bottom: none; }

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px; height: 46px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212,168,67,.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* ============================================
   TOAST STYLING
   ============================================ */

.toast {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .illustration-container { width: 350px; height: 350px; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-slide{min-height: 100vh;}
    .hero-stats { gap: 16px; }
    .stat-number { font-size: 1.4rem; }
    .section-title { font-size: 1.75rem; }
    .calc-input-section,
    .calc-result-section {
        padding: 24px;
    }
    .result-amount { font-size: 1.8rem; }
    .dashboard-tabs .nav-link { padding: 10px 12px; font-size: .8rem; }
    .notification-header { flex-direction: column; text-align: center; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 1.7rem; }
    .hero-slide{min-height: 100vh;}
    .hero-cta .btn { width: 100%; }
    .hero-stats { justify-content: center; }
    .purity-btn { min-width: 60px; padding: 8px 10px; font-size: .8rem; }
    .footer-badges { justify-content: center; }
}

/* ============================================
   HERO CAROUSEL — NEW STYLES
   ============================================ */

.hero-carousel-section {
    position: relative;
}

.hero-carousel-section .carousel,
.hero-carousel-section .carousel-inner,
.hero-carousel-section .carousel-item {
    height: 100vh;
    min-height: 600px;
}

.hero-slide {
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Slide Backgrounds */
.slide-gold {
    background:
        linear-gradient(135deg, rgba(10,37,64,.92) 0%, rgba(27,58,92,.88) 50%, rgba(13,47,79,.92) 100%),
        url('https://images.unsplash.com/photo-1610375461246-83df859d849d?w=1920&q=80') center/cover no-repeat;
}

.slide-network {
    background:
        linear-gradient(135deg, rgba(10,37,64,.9) 0%, rgba(37,99,235,.85) 100%),
        url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?w=1920&q=80') center/cover no-repeat;
}

.slide-speed {
    background:
        linear-gradient(135deg, rgba(10,37,64,.9) 0%, rgba(16,185,129,.8) 100%),
        url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1920&q=80') center/cover no-repeat;
}

.slide-offer {
    background:
        linear-gradient(135deg, rgba(10,37,64,.88) 0%, rgba(212,168,67,.7) 100%),
        url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1920&q=80') center/cover no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(212,168,67,.06) 0%, transparent 50%);
}

.slide-overlay.overlay-blue {
    background: radial-gradient(ellipse at 80% 30%, rgba(37,99,235,.08) 0%, transparent 50%);
}

.slide-overlay.overlay-green {
    background: radial-gradient(ellipse at 30% 70%, rgba(16,185,129,.08) 0%, transparent 50%);
}

.slide-overlay.overlay-gold {
    background: radial-gradient(ellipse at 50% 50%, rgba(212,168,67,.08) 0%, transparent 60%);
}

.slide-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 5;
    padding: 40px 0;
}

.slide-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212,168,67,.15);
    border: 1px solid rgba(212,168,67,.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.slide-badge.badge-blue { background: rgba(37,99,235,.15); border-color: rgba(37,99,235,.3); color: var(--blue-light); }
.slide-badge.badge-green { background: rgba(16,185,129,.15); border-color: rgba(16,185,129,.3); color: var(--green); }
.slide-badge.badge-gold { background: rgba(212,168,67,.2); border-color: rgba(212,168,67,.4); color: var(--gold); }

.slide-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.slide-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 540px;
}

.slide-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.slide-cta .btn { border-radius: 50px; font-weight: 600; }

/* Slide Stats */
.slide-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.ss-item { text-align: center; }
.ss-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.ss-label { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }

/* Offer Highlights */
.offer-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
}

.oh-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;
    color: var(--white);
    font-size: .85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.oh-item i { color: var(--gold); }

/* Carousel Controls */
.carousel-ctrl-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.carousel-ctrl-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    padding: 0 20px;
    opacity: .7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; }

.carousel-indicators { bottom: 30px; z-index: 10; }

.carousel-indicators button {
    width: 40px; height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,.3);
    border: none;
    transition: var(--transition);
}

.carousel-indicators button .active {
    background: var(--gold);
    width: 60px;
}

/* ---- Slide Visual: Shield Orbit ---- */
.slide-visual {
    position: relative;
    width: 300px; height: 300px;
}

.sv-shield {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90px; height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 2.2rem;
    z-index: 3;
}

.sv-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90px; height: 90px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: pulse-ring 3s ease-out infinite;
}

.sv-pulse.delay-1 { animation-delay: 1.5s; }

.sv-orbit {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 260px; height: 260px;
    border-radius: 50%;
    border: 1px dashed rgba(212,168,67,.2);
    animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(360deg); } }

.sv-planet {
    position: absolute;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--gold);
    font-size: 1rem;
    animation: spin-slow 20s linear infinite reverse;
}

.sv-planet.p1 { top: -22px; left: 50%; transform: translateX(-50%); }
.sv-planet.p2 { bottom: -22px; left: 50%; transform: translateX(-50%); }
.sv-planet.p3 { top: 50%; left: -22px; transform: translateY(-50%); }
.sv-planet.p4 { top: 50%; right: -22px; transform: translateY(-50%); }

/* ---- Slide Visual: Network ---- */
.slide-visual-network {
    position: relative;
    width: 400px; height: 400px;
}

.network-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.network-node i {
    width: 54px; height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--gold);
    font-size: 1.3rem;
}

.network-node span { font-size: .7rem; color: rgba(255,255,255,.6); font-weight: 600; }
.center-node { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.center-node i { width: 70px; height: 70px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); font-size: 1.8rem; border: none; }
.node-1 { top: 8%; left: 12%; animation: float 4s ease-in-out infinite; }
.node-2 { top: 8%; right: 12%; animation: float 4s ease-in-out infinite 1s; }
.node-3 { bottom: 8%; left: 12%; animation: float 4s ease-in-out infinite 2s; }
.node-4 { bottom: 8%; right: 12%; animation: float 4s ease-in-out infinite 3s; }

.network-lines { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.nline { stroke: rgba(212,168,67,.15); stroke-width: 1; stroke-dasharray: 6 4; }

/* ---- Slide Visual: Speed ---- */
.slide-visual-speed {
    position: relative;
    width: 250px; height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speed-circle {
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(16,185,129,.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.speed-num { font-size: 3.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.speed-unit { font-size: 1rem; font-weight: 700; color: var(--white); letter-spacing: 3px; }
.speed-label { font-size: .65rem; color: rgba(255,255,255,.5); margin-top: 4px; }

.speed-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(16,185,129,.15);
    animation: pulse-ring 4s ease-out infinite;
}

.speed-ring.r1 { width: 180px; height: 180px; }
.speed-ring.r2 { width: 220px; height: 220px; animation-delay: 1.3s; }
.speed-ring.r3 { width: 260px; height: 260px; animation-delay: 2.6s; }

/* ============================================
   PARALLAX BANNERS
   ============================================ */

.parallax-banner {
    position: relative;
    padding: 80px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.parallax-trust {
    background:
        linear-gradient(135deg, rgba(10,37,64,.92), rgba(27,58,92,.92)),
        url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=1920&q=80') center/cover fixed no-repeat;
}

.parallax-gold {
    background:
        linear-gradient(135deg, rgba(10,37,64,.88), rgba(184,145,45,.6)),
        url('https://images.unsplash.com/photo-1610375461246-83df859d849d?w=1920&q=80') center/cover fixed no-repeat;
}

.parallax-security {
    background:
        linear-gradient(135deg, rgba(124,58,237,.85), rgba(10,37,64,.9)),
        url('https://images.unsplash.com/photo-1563986768609-322da13575f2?w=1920&q=80') center/cover fixed no-repeat;
}

.parallax-cta {
    background:
        linear-gradient(135deg, rgba(10,37,64,.9), rgba(212,168,67,.7)),
        url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1920&q=80') center/cover fixed no-repeat;
}

.parallax-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(0,0,0,.2) 100%);
}

.parallax-overlay.overlay-dark { background: rgba(0,0,0,.3); }
.parallax-overlay.overlay-purple { background: rgba(0,0,0,.2); }
.parallax-overlay.overlay-cta { background: rgba(0,0,0,.15); }

.parallax-content { position: relative; z-index: 2; }

.parallax-icon {
    width: 70px; height: 70px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212,168,67,.15);
    color: var(--gold);
    font-size: 1.8rem;
    border: 2px solid rgba(212,168,67,.3);
}

.parallax-content h2 {
    color: var(--white);
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.parallax-content p {
    color: rgba(255,255,255,.6);
    font-size: 1rem;
    margin-bottom: 24px;
}

/* Parallax Stats */
.parallax-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ps-item { text-align: center; }
.ps-num { display: block; font-size: 2rem; font-weight: 800; color: var(--gold); }
.ps-label { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }

/* Parallax Features */
.parallax-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pf-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;
    color: var(--white);
    font-size: .82rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.pf-item i { color: var(--gold); font-size: 1rem; }

/* Gold Visual */
.gold-visual {
    position: relative;
    width: 250px; height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gv-center {
    width: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 2rem;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.gv-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212,168,67,.2);
}

.gv-ring.r1 { width: 140px; height: 140px; animation: spin-slow 15s linear infinite; }
.gv-ring.r2 { width: 200px; height: 200px; animation: spin-slow 25s linear infinite reverse; border-style: dashed; }

.gv-tag {
    position: absolute;
    padding: 6px 14px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    color: var(--gold);
    font-size: .8rem;
    font-weight: 700;
    z-index: 4;
    animation: float 5s ease-in-out infinite;
}

.gv-tag.tag1 { top: 5%; right: 10%; animation-delay: 0s; }
.gv-tag.tag2 { bottom: 5%; right: 5%; animation-delay: 1.2s; }
.gv-tag.tag3 { bottom: 10%; left: 5%; animation-delay: 2.4s; }
.gv-tag.tag4 { top: 10%; left: 5%; animation-delay: 3.6s; }

/* Security Visual */
.security-visual {
    position: relative;
    width: 280px; height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-lock {
    width: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), #6D28D9);
    color: var(--white);
    font-size: 2rem;
    z-index: 3;
}

.sv-orbit-ring {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,.15);
    animation: spin-slow 20s linear infinite;
}

.sv-float-badge {
    position: absolute;
    padding: 8px 16px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    color: var(--white);
    font-size: .75rem;
    font-weight: 600;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: float 5s ease-in-out infinite;
}

.sv-float-badge i { color: var(--gold); }
.svb1 { top: 5%; right: 0; }
.svb2 { bottom: 15%; left: 0; animation-delay: 1.5s; }
.svb3 { bottom: 5%; right: 10%; animation-delay: 3s; }

.security-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.sec-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.sec-card i { font-size: 1.2rem; color: var(--gold); }
.sec-card strong { display: block; font-size: .82rem; color: var(--white); }
.sec-card span { font-size: .7rem; color: rgba(255,255,255,.5); }

/* ============================================
   IMAGE BANNER — COLLABORATION
   ============================================ */

.image-banner {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.banner-collab {
    background:
        linear-gradient(135deg, rgba(10,37,64,.95), rgba(27,58,92,.9)),
        url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=1920&q=80') center/cover no-repeat;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.banner-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.bv-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    color: var(--white);
    min-width: 100px;
    text-align: center;
    transition: var(--transition);
}

.bv-card:hover { background: rgba(212,168,67,.15); border-color: var(--gold); transform: translateY(-4px); }
.bv-card i { font-size: 1.8rem; color: var(--gold); }
.bv-card span { font-size: .75rem; font-weight: 600; }
.bv-connector { color: rgba(255,255,255,.3); font-size: .8rem; }

.banner-content { position: relative; z-index: 2; }

.banner-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(212,168,67,.15);
    border: 1px solid rgba(212,168,67,.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.banner-badge.badge-purple { background: rgba(124,58,237,.15); border-color: rgba(124,58,237,.3); color: #A78BFA; }

.banner-content h2 {
    color: var(--white);
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

.banner-content p {
    color: rgba(255,255,255,.6);
    font-size: .95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ============================================
   COMPACT STEPS
   ============================================ */

.steps-compact {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-compact-item {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    text-align: center;
    padding: 0 10px;
}

.sci-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-size: .75rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.sci-num.sci-done { background: var(--green); }

.sci-icon {
    width: 56px; height: 56px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(212,168,67,.1);
    color: var(--gold);
    font-size: 1.3rem;
}

.sci-icon.sci-blue { background: rgba(37,99,235,.1); color: var(--blue); }
.sci-icon.sci-purple { background: rgba(124,58,237,.1); color: var(--purple); }
.sci-icon.sci-gold { background: rgba(212,168,67,.1); color: var(--gold-dark); }
.sci-icon.sci-green { background: rgba(16,185,129,.1); color: var(--green); }

.step-compact-item h5 { font-size: .9rem; margin-bottom: 6px; }
.step-compact-item p { font-size: .78rem; color: var(--gray-500); margin-bottom: 0; }

.step-compact-connector {
    display: flex;
    align-items: center;
    color: var(--gray-300);
    font-size: .8rem;
    padding-top: 55px;
}

/* ============================================
   PARTNER LOGOS STRIP
   ============================================ */

.partner-logos-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: default;
}

.logo-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.logo-item i { font-size: 1.4rem; color: var(--primary); }
.logo-item span { font-size: .75rem; font-weight: 700; color: var(--primary); }

/* ============================================
   RESPONSIVE — CAROUSEL & PARALLAX
   ============================================ */

@media (max-width: 991px) {
    .slide-title { font-size: 2.2rem; }
    .security-cards { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .hero-carousel-section .carousel,
    .hero-carousel-section .carousel-inner,
    .hero-carousel-section .carousel-item { min-height: 100vh; height: auto; }
    .hero-slide { padding: 120px 0 80px; }
    .slide-title { font-size: 1.8rem; }
    .slide-text { font-size: .95rem; }
    .slide-cta .btn { width: 100%; }
    .parallax-banner { background-attachment: scroll; padding: 50px 0; }
    .parallax-content h2 { font-size: 1.5rem; }
    .parallax-stats { gap: 20px; }
    .ps-num { font-size: 1.5rem; }
    .steps-compact { flex-direction: column; align-items: center; }
    .step-compact-connector { transform: rotate(90deg); padding: 8px 0; }
    .step-compact-item { max-width: 280px; }
    .banner-visual { margin-bottom: 24px; }
    .carousel-control-prev, .carousel-control-next { display: none; }
}

@media (max-width: 575px) {
    .slide-title { font-size: 1.5rem; }
    .oh-item { font-size: .75rem; padding: 6px 12px; }
    .ss-num { font-size: 1.3rem; }
}

/* iOS parallax fix */
@supports (-webkit-touch-callout: none) {
    .parallax-banner { background-attachment: scroll; }
}