/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a8a;
    --dark-blue: #0f172a;
    --light-blue: #3b82f6;
    --accent-pink: #ec4899;
    --accent-yellow: #fbbf24;
    --accent-teal: #14b8a6;
    --text-white: #ffffff;
    --text-gray: #cbd5e1;
    --bg-dark: #0a0e27;
    --bg-card: rgba(30, 58, 138, 0.1);
    --border-color: rgba(59, 130, 246, 0.3);
    --success-green: #10b981;
    --danger-red: #ef4444;
    --warning-yellow: #f59e0b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-shield {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.logo-text {
    font-weight: 900;
}

.logo-blue {
    color: var(--light-blue);
}

.logo-pink {
    color: var(--accent-pink);
    background: linear-gradient(135deg, var(--accent-pink), #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--light-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1e293b 100%);
    z-index: -2;
}

.chart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: -1;
}

.glow-line {
    position: absolute;
    top: 33%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--success-green), transparent);
    box-shadow: 0 0 20px var(--success-green);
    z-index: 0;
    /* sits behind logo/text but above background grid */
}

@media (max-width: 768px) {
    .glow-line {
        top: 35%;
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-logo-large {
    margin-bottom: 2rem;
}

.shield-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0));
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.25);
    /* animation: pulse 2s infinite; */
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-blue {
    color: var(--light-blue);
}

.title-pink {
    color: var(--accent-pink);
    background: linear-gradient(135deg, var(--accent-pink), #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.hero-slogan {
    font-size: 1.8rem;
    color: var(--accent-yellow);
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--light-blue), var(--accent-pink));
    color: var(--text-white);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--light-blue);
}

.btn-secondary:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-gray);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: var(--light-blue);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid var(--light-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-tag i {
    color: var(--light-blue);
}

.market-compatibility {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid var(--accent-teal);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.market-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-white);
}

/* ... existing code ... */

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.market-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
}

.market-item i {
    font-size: 3rem;
    color: var(--accent-teal);
}

/* LiveFinTech Indicator Section */
.indicator-section {
    padding: 40px 0 100px;
    background: linear-gradient(180deg, var(--bg-dark), #1e293b);
}

.indicator-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.indicator-feature {
    margin-bottom: 4rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.indicator-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.indicator-subtitle i {
    color: var(--light-blue);
    font-size: 1.8rem;
}

.indicator-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.indicator-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.indicator-feature-card {
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.indicator-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--light-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.indicator-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-white);
    margin: 0 auto 1rem;
}

.indicator-feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.indicator-feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.signal-pair {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.signal-levels {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark), #1e293b);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-pink);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-pink), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-white);
    margin: 0 auto 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.feature-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Dashboard Section */
.dashboard {
    padding: 100px 0;
    background: var(--bg-dark);
}

.dashboard-section {
    margin-bottom: 4rem;
}

.dashboard-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.timeframe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.timeframe-item {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.timeframe-item.buy {
    border-color: var(--success-green);
    background: rgba(16, 185, 129, 0.1);
}

.timeframe-item.sell {
    border-color: var(--danger-red);
    background: rgba(239, 68, 68, 0.1);
}

.timeframe-item.neutral {
    border-color: var(--warning-yellow);
    background: rgba(245, 158, 11, 0.1);
}

.timeframe-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.timeframe-signal {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 8px;
}

.timeframe-item.buy .timeframe-signal {
    background: var(--success-green);
    color: var(--text-white);
}

.timeframe-item.sell .timeframe-signal {
    background: var(--danger-red);
    color: var(--text-white);
}

.timeframe-item.neutral .timeframe-signal {
    background: var(--warning-yellow);
    color: var(--text-white);
}

.signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.signal-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.signal-card.buy-signal {
    border-color: var(--success-green);
    background: rgba(16, 185, 129, 0.1);
}

.signal-card.sell-signal {
    border-color: var(--danger-red);
    background: rgba(239, 68, 68, 0.1);
}

.signal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.signal-card.buy-signal .signal-header {
    color: var(--success-green);
}

.signal-card.sell-signal .signal-header {
    color: var(--danger-red);
}

.signal-details {
    color: var(--text-gray);
    line-height: 1.8;
}

.signal-details p {
    margin-bottom: 0.5rem;
}

.dashboard-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.dashboard-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    font-weight: 600;
}

.dashboard-feature i {
    font-size: 2.5rem;
    color: var(--accent-pink);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-blue), #1e293b);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--light-blue);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-white);
    margin: 0 auto 1rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--light-blue);
}

.social-section {
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

.social-handle {
    color: var(--text-gray);
    font-weight: 600;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .hero-slogan {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .market-grid {
        grid-template-columns: 1fr;
    }

    .indicator-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .indicator-feature {
        padding: 2rem 1.5rem;
    }

    .indicator-subtitle {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .indicator-features-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .timeframe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .signals-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-slogan {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .indicator-feature {
        padding: 1.5rem 1rem;
    }

    .indicator-subtitle {
        font-size: 1.3rem;
    }

    .indicator-description {
        font-size: 1rem;
    }

    .timeframe-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-features {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--light-blue), var(--accent-pink));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-pink), var(--light-blue));
}

/* Contact Section Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--light-blue);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: var(--text-white);
}

.contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--light-blue);
}

/* Social Section */
.social-section {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: var(--text-gray);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    /* Reduced from 1.5rem for better mobile fit */
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    /* Rigidly enforce width */
    min-height: 45px !important;
    /* Rigidly enforce height */
    max-width: 45px !important;
    max-height: 45px !important;
    box-sizing: border-box;
    border-radius: 50%;
    /* Reverting to gradient background as per user request */
    background: linear-gradient(135deg, var(--light-blue), var(--accent-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-white);
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
    /* Prevent squashing on mobile */
    aspect-ratio: 1 / 1;
    /* Enforce circular shape */
}

.social-link:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.social-handle {
    color: var(--light-blue);
    font-weight: 500;
}

/* Device Compatibility Slider */
.device-slider-section {
    position: relative;
    width: 100%;
    margin: 3rem 0;
    overflow: hidden;
}

.device-slider-container {
    max-width: 900px;
    height: 500px;
    /* Fixed height to prevent jumping/blank space */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #0f172a;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    /* Fill container */
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    /* Fill wrapper */
    position: relative;
    display: flex;
    /* Center image */
    justify-content: center;
    align-items: center;
    background: #1e293b;
    /* Dark bg for empty areas */
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    /* Override width:100% */
    height: auto;
    display: block;
    object-fit: contain;
    /* Ensure image fits */
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(4px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.device-slider-container:hover .slide-caption {
    transform: translateY(0);
}

/* Make it responsive specifically for the different views */
@media(max-width: 768px) {
    .device-slider-container {
        margin: 0 15px;
    }

    .slide-caption {
        font-size: 0.9rem;
        padding: 8px;
        transform: translateY(0);
        /* Always show on mobile */
    }
}