/* =============================================
   Zhiying Capital - Official Website Stylesheet
   Theme: Modern Gradient with Deep Blue/Purple Tones
   Inspired by StreamAlphaX Design
   ============================================= */

/* CSS Variables - Color Palette */
:root {
    /* Primary Gradients */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #1e3a5f 0%, #0f1c2e 100%);
    --accent-gradient: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    --hero-gradient: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #2d4a7c 100%);
    
    /* Solid Colors */
    --primary-color: #667eea;
    --primary-dark: #5a67d8;
    --primary-light: #8b9ff0;
    
    --secondary-color: #1e3a5f;
    --secondary-dark: #0f2744;
    --secondary-light: #2d5a87;
    
    --accent-color: #38bdf8;
    --accent-dark: #0ea5e9;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    
    /* Background Colors */
    --bg-dark: #0a1628;
    --bg-card: rgba(30, 58, 95, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    /* Accent Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    
    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.3);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-dark);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(102, 126, 234, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: var(--transition);
}

.logo-icon:hover {
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-item a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-item a:hover,
.nav-item a.active {
    color: var(--text-primary);
}

.nav-item a:hover::after,
.nav-item a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(102, 126, 234, 0.5);
    color: var(--primary-light);
}

.btn-outline:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: var(--hero-gradient);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(102, 126, 234, 0.08) 0%, transparent 60%);
    transform: rotate(-15deg);
    pointer-events: none;
}

/* Animated grid pattern */
.hero::before {
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    padding: 40px 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 28px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1c2e 50%, var(--bg-dark) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: linear-gradient(145deg, rgba(30, 58, 95, 0.5) 0%, rgba(15, 28, 46, 0.8) 100%);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.3);
}

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

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.service-icon svg {
    width: 38px;
    height: 38px;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.service-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '▸';
    color: var(--accent-color);
    font-size: 12px;
    margin-top: 3px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 15px;
}

.service-link:hover {
    gap: 16px;
    color: var(--primary-light);
}

.service-link .arrow {
    transition: var(--transition);
}

/* US Stocks Section */
.us-stocks {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a1420 100%);
}

.us-stocks-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.stocks-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-card {
    background: linear-gradient(145deg, rgba(30, 58, 95, 0.4) 0%, rgba(15, 28, 46, 0.6) 100%);
    border-radius: var(--border-radius);
    padding: 28px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.info-card:hover {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.15) 0%, rgba(30, 58, 95, 0.4) 100%);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

.market-features h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.exchange-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.exchange-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(145deg, rgba(30, 58, 95, 0.4) 0%, rgba(15, 28, 46, 0.6) 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.exchange-item:hover {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.15) 0%, rgba(30, 58, 95, 0.4) 100%);
    transform: translateX(10px);
    border-color: rgba(102, 126, 234, 0.3);
}

.exchange-logo {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.exchange-info h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.exchange-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Trading Hours */
.trading-hours {
    padding: 100px 0;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.trading-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(56, 189, 248, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.trading-hours .section-title,
.trading-hours .section-subtitle {
    color: white;
}

.hours-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.time-block {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.time-block:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
}

.time-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.time-label {
    font-size: 22px;
    font-weight: 600;
    color: white;
}

.time-range {
    font-size: 15px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-weight: 500;
}

.time-description p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.hours-note {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    padding: 24px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1c2e 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 28px;
}

.about-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 22px;
}

.about-features {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--text-primary);
    padding: 14px 18px;
    background: rgba(30, 58, 95, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-box {
    background: linear-gradient(145deg, rgba(30, 58, 95, 0.5) 0%, rgba(15, 28, 46, 0.8) 100%);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(102, 126, 234, 0.3);
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Risk Disclosure */
.risk-disclosure {
    padding: 40px 0;
    background: linear-gradient(90deg, #0f1c2e 0%, #1e3a5f 50%, #0f1c2e 100%);
}

.risk-content {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 30px;
    border-left: 4px solid var(--warning-color);
}

.risk-content h3 {
    color: var(--warning-color);
    font-size: 18px;
    margin-bottom: 16px;
}

.risk-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1c2e 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px;
    background: linear-gradient(145deg, rgba(30, 58, 95, 0.3) 0%, rgba(15, 28, 46, 0.5) 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.15) 0%, rgba(30, 58, 95, 0.3) 100%);
    transform: translateX(8px);
    border-color: rgba(102, 126, 234, 0.3);
}

.contact-icon {
    font-size: 30px;
    width: 54px;
    height: 54px;
    background: var(--secondary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-details h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: linear-gradient(145deg, rgba(30, 58, 95, 0.4) 0%, rgba(15, 28, 46, 0.6) 100%);
    border-radius: var(--border-radius-lg);
    padding: 44px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
}

.contact-form-wrapper h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 22px;
    background: rgba(15, 28, 46, 0.8);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a1220 0%, var(--bg-dark) 100%);
    padding: 70px 0 35px;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 45px;
    margin-bottom: 45px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.footer-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
    padding: 6px 0;
}

.footer-links li a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 35px;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.sec-info {
    font-size: 13px;
    color: var(--text-muted);
}

/* =============================================
   Image Carousel Styles - Background Version
   ============================================= */

.carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.carousel-background .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-background .carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.carousel-background .carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.carousel-background .carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    pointer-events: none;
}

.carousel-background .carousel-control {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    color: white;
}

.carousel-background .carousel-control:hover {
    background: rgba(102, 126, 234, 0.5);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-background .carousel-control svg {
    width: 24px;
    height: 24px;
}

.carousel-background .carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.carousel-background .indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-background .indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.carousel-background .indicator.active {
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
    transform: scale(1.3);
}

/* Responsive Design - See responsive.css */
