.social-icon-circle {
    border-radius: 50% !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-align: center;
}

.social-icon-circle i {
    font-size: 18px;
    line-height: 1;
}

.social-icon-circle img {
    width: 18px;
    height: 18px;
    display: block;
}

.social-icon-circle.small {
    width: 40px;
    height: 40px;
}

/*--------------------------------------------------------------
# General - Dark Futuristic Theme
--------------------------------------------------------------*/
:root {
    --neon-blue: #00d4ff;
    --neon-purple: #b026ff;
    --neon-cyan: #00ffff;
    --dark-bg: #0a0e27;
    --dark-bg-secondary: #0f1629;
    --dark-card: #151b2e;
    --text-primary: #e0e6ed;
    --text-secondary: #a8b3c1;
    --accent-blue: #4a9eff;
    --accent-purple: #8b5cf6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-primary);
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #0f1629 50%, #1a1f3a 75%, #0a0e27 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 158, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(176, 38, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#main {
    position: relative;
    z-index: 1;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--neon-blue);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: auto;
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: #fff;
    transition: all 0.3s ease;
    z-index: 99999;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), 0 0 40px rgba(176, 38, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.back-to-top i {
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.back-to-top:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(176, 38, 255, 0.4);
    transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1629 100%);
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 4px solid transparent;
    border-top: 4px solid var(--neon-blue);
    border-bottom: 4px solid var(--neon-purple);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9997;
    transition: all 0.5s;
    padding: 15px;
    overflow-y: auto;
    background: rgba(15, 22, 41, 0.8);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
    width: 86px;
}

@media (min-width: 992px) {
    #header {
        width: 86px;
    }
    
    #header:hover {
        width: 220px;
    }
}

@media (max-width: 992px) {
    #header {
        display: none !important;
    }
    
    .mobile-nav-toggle {
        display: none !important;
    }
}

/*@media (min-width: 992px) {*/
/*  #main {*/
/*    margin-left: 100px;*/
/*  }*/
/*}*/

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
}

.nav-menu a {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    padding: 10px 18px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
    border-radius: 12px;
    background: rgba(21, 27, 46, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.1);
    height: 56px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.nav-menu a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a i {
    font-size: 20px;
    z-index: 1;
}

.nav-menu a span {
    padding: 0 5px 0 7px;
    color: var(--text-secondary);
    z-index: 1;
}

@media (min-width: 992px) {
    .nav-menu a {
        width: 56px;
    }

    .nav-menu a span {
        display: none;
        color: #fff;
    }
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(176, 38, 255, 0.2));
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3), inset 0 0 15px rgba(176, 38, 255, 0.1);
    transform: translateX(5px);
}

.nav-menu a:hover span, .nav-menu .active > a span, .nav-menu li:hover > a span {
    color: #fff;
}

.nav-menu a:hover, .nav-menu li:hover > a {
    width: 100%;
    color: #fff;
}

.nav-menu a:hover span, .nav-menu li:hover > a span {
    display: block;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: rgba(21, 27, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 10px;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav-toggle i {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.mobile-nav-toggle:hover {
    background: rgba(21, 27, 46, 0.95);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active #header {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/hero-bg.jpg") center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 31, 58, 0.75) 50%, rgba(15, 22, 41, 0.85) 100%),
        radial-gradient(circle at 20% 30%, rgba(74, 158, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(176, 38, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

#hero::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@media (min-width: 992px) {
    #hero {
        padding-left: 100px;
    }
}

#hero .hero-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    gap: 60px;
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

@media (min-width: 992px) {
    #hero .hero-wrapper {
        padding-left: 40px;
        padding-right: calc(160px + 40px);
    }
}

@media (max-width: 991px) {
    #hero .hero-wrapper {
        padding-left: 20px;
        padding-right: 20px;
        justify-content: center;
    }
}

#hero .hero-inner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
    max-width: 600px;
    padding-left: 0;
}

#hero .hero-image-right {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    perspective: 1000px;
}

/* 3D Card Container */
#hero .hero-image-right .card-3d-container {
    width: 100%;
    max-width: 700px;
    perspective: 1000px;
    cursor: pointer;
    margin-top: 80px;
    transform: scale(1.3);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

#hero .hero-image-right .card-3d-container.is-active {
    transform: scale(0.65) !important;
}

/* 3D Card Body */
#hero .hero-image-right .card-3d-body {
    position: relative;
    width: 100%;
    height: auto;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 20px;
}

/* 3D Card Item */
#hero .hero-image-right .card-3d-item {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

#hero .hero-image-right .card-3d-item img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 0 30px rgba(0, 212, 255, 0.3)) 
            drop-shadow(0 0 60px rgba(176, 38, 255, 0.2));
    display: block;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Glow effect behind card */
#hero .hero-image-right .card-3d-body::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-cyan));
    border-radius: 30px;
    opacity: 0;
    filter: blur(30px);
    transition: opacity 0.6s ease;
    z-index: -1;
}

/* Border glow effect - removed to prevent square appearance */

/* Hover effects - handled by JavaScript, but keep glow effects */
#hero .hero-image-right .card-3d-container.is-active .card-3d-item {
    transform: translateZ(100px);
}

#hero .hero-image-right .card-3d-container.is-active .card-3d-item img {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6)) 
            drop-shadow(0 0 40px rgba(0, 212, 255, 0.5)) 
            drop-shadow(0 0 80px rgba(176, 38, 255, 0.4));
    transform: translateZ(50px);
}

/* Hero Icons Popup Effect */
#hero .hero-image-right .card-3d-container .hero-icons-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    transform-style: preserve-3d;
}

#hero .hero-image-right .hero-icon-item {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0;
    /* Start from center */
    top: 50%;
    left: 50%;
    transform: scale(0) translate(-50%, -50%) translateZ(-200px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    transform-style: preserve-3d;
}

/* Double size for Unity, Gamepad, Mobile, Steam, Oculus, Play Store, and App Store icons */
/* Unity at icon 4, Gamepad at icon 5, Mobile at icon 3 */
/* Steam at icon 7, Oculus at icon 6, Play Store at icon 2, App Store at icon 1 */
#hero .hero-image-right .hero-icon-item[data-icon="1"],
#hero .hero-image-right .hero-icon-item[data-icon="2"],
#hero .hero-image-right .hero-icon-item[data-icon="3"],
#hero .hero-image-right .hero-icon-item[data-icon="4"],
#hero .hero-image-right .hero-icon-item[data-icon="5"],
#hero .hero-image-right .hero-icon-item[data-icon="6"],
#hero .hero-image-right .hero-icon-item[data-icon="7"] {
    width: 160px;
    height: 160px;
}

/* Meta icon (icon 9) - 25% larger than base size (80px * 1.25 = 100px) */
#hero .hero-image-right .hero-icon-item[data-icon="9"] {
    width: 100px;
    height: 100px;
}

#hero .hero-image-right .hero-icon-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6)) 
            drop-shadow(0 0 40px rgba(176, 38, 255, 0.4));
    transition: all 0.3s ease;
}

#hero .hero-image-right .hero-icon-item:hover img {
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8)) 
            drop-shadow(0 0 60px rgba(176, 38, 255, 0.6));
    transform: scale(1.2);
}


/* Show icons on hover - pop out from behind (base state, will be overridden by JS) */
#hero .hero-image-right .card-3d-container.is-active .hero-icons-popup .hero-icon-item {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Icon positions with 3D depth - arranged in a circle from 60° to 300° */
/* All icons start from center (50%, 50%) and move outward to circular positions */
/* Circle radius: 67.5% of container (3x the original 22.5%), angles: 60° to 300° (240° span, 9 icons) */
/* Angle between icons: 240° / 8 = 30° */

#hero .hero-image-right .hero-icon-item[data-icon="1"] {
    top: 50%;
    left: 50%;
    transform: scale(0) translate(-50%, -50%) translateZ(-200px);
    transition-delay: 0.1s;
}

#hero .hero-image-right .card-3d-container.is-active .hero-icon-item[data-icon="1"] {
    /* 60° */
    top: calc(50% - 67.5% * 0.866); /* 50% - radius * sin(60°) = 50% - 58.455% */
    left: calc(50% + 67.5% * 0.5); /* 50% + radius * cos(60°) = 50% + 33.75% */
    transform: scale(1) translate(-50%, -50%) translateZ(180px);
}

#hero .hero-image-right .hero-icon-item[data-icon="2"] {
    top: 50%;
    left: 50%;
    transform: scale(0) translate(-50%, -50%) translateZ(-200px);
    transition-delay: 0.15s;
}

#hero .hero-image-right .card-3d-container.is-active .hero-icon-item[data-icon="2"] {
    /* 90° */
    top: calc(50% - 67.5% * 1); /* sin(90°) = 1 */
    left: calc(50% + 0%); /* cos(90°) = 0 */
    transform: scale(1) translate(-50%, -50%) translateZ(190px);
}

#hero .hero-image-right .hero-icon-item[data-icon="3"] {
    top: 50%;
    left: 50%;
    transform: scale(0) translate(-50%, -50%) translateZ(-200px);
    transition-delay: 0.2s;
}

#hero .hero-image-right .card-3d-container.is-active .hero-icon-item[data-icon="3"] {
    /* 120° */
    top: calc(50% - 67.5% * 0.866); /* sin(120°) = 0.866 */
    left: calc(50% - 67.5% * 0.5); /* cos(120°) = -0.5 */
    transform: scale(1) translate(-50%, -50%) translateZ(200px);
}

#hero .hero-image-right .hero-icon-item[data-icon="4"] {
    top: 50%;
    left: 50%;
    transform: scale(0) translate(-50%, -50%) translateZ(-200px);
    transition-delay: 0.25s;
}

#hero .hero-image-right .card-3d-container.is-active .hero-icon-item[data-icon="4"] {
    /* 150° */
    top: calc(50% - 67.5% * 0.5); /* sin(150°) = 0.5 */
    left: calc(50% - 67.5% * 0.866); /* cos(150°) = -0.866 */
    transform: scale(1) translate(-50%, -50%) translateZ(210px);
}

#hero .hero-image-right .hero-icon-item[data-icon="5"] {
    top: 50%;
    left: 50%;
    transform: scale(0) translate(-50%, -50%) translateZ(-200px);
    transition-delay: 0.3s;
}

#hero .hero-image-right .card-3d-container.is-active .hero-icon-item[data-icon="5"] {
    /* 180° */
    top: calc(50% - 0%); /* sin(180°) = 0 */
    left: calc(50% - 67.5%); /* cos(180°) = -1 */
    transform: scale(1) translate(-50%, -50%) translateZ(220px);
}

#hero .hero-image-right .hero-icon-item[data-icon="6"] {
    top: 50%;
    left: 50%;
    transform: scale(0) translate(-50%, -50%) translateZ(-200px);
    transition-delay: 0.35s;
}

#hero .hero-image-right .card-3d-container.is-active .hero-icon-item[data-icon="6"] {
    /* 210° */
    top: calc(50% + 67.5% * 0.5); /* sin(210°) = -0.5 */
    left: calc(50% - 67.5% * 0.866); /* cos(210°) = -0.866 */
    transform: scale(1) translate(-50%, -50%) translateZ(210px);
}

#hero .hero-image-right .hero-icon-item[data-icon="7"] {
    top: 50%;
    left: 50%;
    transform: scale(0) translate(-50%, -50%) translateZ(-200px);
    transition-delay: 0.4s;
}

#hero .hero-image-right .card-3d-container.is-active .hero-icon-item[data-icon="7"] {
    /* 240° */
    top: calc(50% + 67.5% * 0.866); /* sin(240°) = -0.866 */
    left: calc(50% - 67.5% * 0.5); /* cos(240°) = -0.5 */
    transform: scale(1) translate(-50%, -50%) translateZ(200px);
}

#hero .hero-image-right .hero-icon-item[data-icon="8"] {
    top: 50%;
    left: 50%;
    transform: scale(0) translate(-50%, -50%) translateZ(-200px);
    transition-delay: 0.45s;
}

#hero .hero-image-right .card-3d-container.is-active .hero-icon-item[data-icon="8"] {
    /* 270° */
    top: calc(50% + 67.5% * 1); /* sin(270°) = -1 */
    left: calc(50% + 0%); /* cos(270°) = 0 */
    transform: scale(1) translate(-50%, -50%) translateZ(190px);
}

#hero .hero-image-right .hero-icon-item[data-icon="9"] {
    top: 50%;
    left: 50%;
    transform: scale(0) translate(-50%, -50%) translateZ(-200px);
    transition-delay: 0.5s;
}

#hero .hero-image-right .card-3d-container.is-active .hero-icon-item[data-icon="9"] {
    /* 300° */
    top: calc(50% + 67.5% * 0.866); /* sin(300°) = -0.866 */
    left: calc(50% + 67.5% * 0.5); /* cos(300°) = 0.5 */
    transform: scale(1) translate(-50%, -50%) translateZ(180px);
}

#hero .hero-image-right .card-3d-container.is-active .card-3d-body::before {
    opacity: 0.6;
}

.hero-speech-bubble {
    position: absolute;
    top: -270px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    width: min(416px, 78vw);
}

.hero-speech-bubble img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(15, 23, 42, 0.45));
}

.hero-speech-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 68%;
    text-align: center;
    font-size: clamp(9px, 1.2vw, 13px);
    color: #020617;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.35;
    font-family: "Press Start 2P", "Courier New", monospace;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    animation: heroSpeechPulse 2.8s ease-in-out infinite;
}

.hero-speech-bubble::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 35px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.hero-speech-bubble.is-hidden {
    opacity: 0;
    transform: translate(-50%, -30px);
}

.hero-speech-bubble.is-hidden .hero-speech-text {
    animation: none;
}

.hero-secret-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 99999;
}

.hero-secret-modal.show {
    opacity: 1;
    visibility: visible;
}

.hero-secret-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(6px);
}

.hero-secret-dialog {
    position: relative;
    z-index: 2;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    scroll-behavior: smooth;
}

.hero-secret-dialog .hero-secret-card {
    margin: auto;
}

/* Custom scrollbar for modal */
.hero-secret-dialog::-webkit-scrollbar {
    width: 8px;
}

.hero-secret-dialog::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
}

.hero-secret-dialog::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.5);
    border-radius: 10px;
}

.hero-secret-dialog::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.7);
}

/* Wider modal for congratulations - matches screen width */
#congratulationsModal .hero-secret-dialog {
    max-width: 98%;
    width: 98%;
    max-height: 95vh;
}

.hero-secret-card {
    position: relative;
    width: 100%;
    padding: clamp(35px, 5vw, 55px);
    border-radius: 28px;
    border: 1px solid rgba(99, 102, 241, 0.35);
    background: radial-gradient(circle at top, rgba(99, 102, 241, 0.35), rgba(15, 23, 42, 0.95)),
                linear-gradient(135deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.95));
    box-shadow: 0 40px 80px rgba(2, 6, 23, 0.9), 0 0 35px rgba(99, 102, 241, 0.35);
    overflow: hidden;
    text-align: center;
}

.hero-secret-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.25), transparent 50%),
                radial-gradient(circle at bottom left, rgba(168, 85, 247, 0.25), transparent 55%);
    filter: blur(40px);
    opacity: 0.9;
}

.hero-secret-card {
    position: relative;
    width: 100%;
    padding: clamp(35px, 5vw, 55px);
    border-radius: 28px;
    border: 1px solid rgba(99, 102, 241, 0.35);
    background: radial-gradient(circle at top, rgba(99, 102, 241, 0.35), rgba(15, 23, 42, 0.95)),
                linear-gradient(135deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.95));
    box-shadow: 0 40px 80px rgba(2, 6, 23, 0.9), 0 0 35px rgba(99, 102, 241, 0.35);
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-secret-content {
    position: relative;
    z-index: 1;
    color: #e2e8f0;
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 520px;
}

/* Wider content for congratulations modal */
#congratulationsModal .hero-secret-content {
    max-width: 95%;
    width: 95%;
}

.secret-title {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: clamp(15px, 2.2vw, 20px);
    margin-bottom: 14px;
    font-weight: 700;
    color: #f8fafc;
}

.secret-body {
    margin-bottom: 12px;
    font-size: clamp(13px, 1.7vw, 15px);
    color: #cbd5f5;
}

.hero-secret-progress {
    font-weight: 700;
    text-transform: uppercase;
    color: #fef3c7;
    margin: 12px 0;
    font-size: clamp(13px, 1.7vw, 15px);
}

.hero-secret-progress span {
    color: #38bdf8;
    margin-right: 4px;
}

.congratulations-badge-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    position: relative;
}

.congratulations-badge {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.congratulations-email-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
}

.congratulations-email-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.5);
    border-radius: 10px;
    color: #e2e8f0;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.congratulations-email-input:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
    background: rgba(15, 23, 42, 0.95);
}

.congratulations-email-input::placeholder {
    color: #64748b;
}

.congratulations-claim-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.congratulations-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
    background: linear-gradient(135deg, #7c3aed, #c084fc);
}

.congratulations-claim-btn:active {
    transform: translateY(0);
}

/* Reduce all modal font sizes by 25% on mobile */
@media (max-width: 992px) {
    .hero-secret-modal .secret-title {
        font-size: clamp(11.25px, 1.65vw, 15px) !important;
        margin-bottom: 10.5px !important;
    }
    
    .hero-secret-modal .secret-body {
        font-size: clamp(9.75px, 1.275vw, 11.25px) !important;
        margin-bottom: 9px !important;
    }
    
    .hero-secret-modal .hero-secret-progress {
        font-size: clamp(9.75px, 1.275vw, 11.25px) !important;
        margin: 9px 0 !important;
    }
    
    .hero-secret-modal .congratulations-email-input {
        font-size: 11.25px !important;
        padding: 10.5px 13.5px !important;
    }
    
    .hero-secret-modal .congratulations-claim-btn {
        font-size: 11.25px !important;
        padding: 10.5px 21px !important;
    }
}

/* Responsive styles for congratulations modal */
@media (max-width: 768px) {
    #congratulationsModal .hero-secret-dialog {
        max-width: 95%;
        margin: 20px;
    }
    
    #congratulationsModal .hero-secret-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .congratulations-badge {
        max-width: 220px;
    }
    
    .congratulations-email-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    #congratulationsModal .hero-secret-dialog {
        max-width: 98%;
        margin: 10px;
    }
    
    .congratulations-badge {
        max-width: 180px;
    }
}

.hero-secret-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.9);
    color: #cfd8ff;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-secret-close:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.hero-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}

.hero-confetti-piece {
    position: absolute;
    width: 8px;
    height: 16px;
    border-radius: 4px;
    opacity: 0;
    animation: none;
    filter: drop-shadow(0 0 6px rgba(148, 163, 184, 0.5));
}

.hero-confetti-piece:nth-child(odd) {
    background: #38bdf8;
}

.hero-confetti-piece:nth-child(even) {
    background: #a855f7;
}

.hero-confetti-piece:nth-child(3n) {
    background: #fcd34d;
}

.hero-confetti-piece:nth-child(1) { top: 10%; left: 15%; --confetti-index: 0; }
.hero-confetti-piece:nth-child(2) { top: 5%; left: 45%; --confetti-index: 1; }
.hero-confetti-piece:nth-child(3) { top: 15%; left: 75%; --confetti-index: 2; }
.hero-confetti-piece:nth-child(4) { top: 25%; left: 30%; --confetti-index: 3; }
.hero-confetti-piece:nth-child(5) { top: 20%; left: 60%; --confetti-index: 4; }
.hero-confetti-piece:nth-child(6) { top: 8%; left: 85%; --confetti-index: 5; }
.hero-confetti-piece:nth-child(7) { top: 12%; left: 5%; --confetti-index: 6; }
.hero-confetti-piece:nth-child(8) { top: 18%; left: 40%; --confetti-index: 7; }
.hero-confetti-piece:nth-child(9) { top: 6%; left: 65%; --confetti-index: 8; }
.hero-confetti-piece:nth-child(10) { top: 22%; left: 50%; --confetti-index: 9; }
.hero-confetti-piece:nth-child(11) { top: 14%; left: 25%; --confetti-index: 10; }
.hero-confetti-piece:nth-child(12) { top: 4%; left: 70%; --confetti-index: 11; }

.hero-secret-modal.show .hero-confetti-piece {
    opacity: 1;
    animation: heroConfettiFall 3.2s ease-in forwards;
    animation-delay: calc(var(--confetti-index, 0) * 0.1s);
}

.hero-secret-modal.show .hero-secret-content {
    animation: heroSecretPulse 2.2s ease-in-out infinite;
}

@keyframes heroConfettiFall {
    0% {
        opacity: 0;
        transform: translateY(-20px) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(140px) rotate(360deg);
    }
}

@keyframes heroSecretPulse {
    0% {
        opacity: 0.85;
        transform: scale(0.98);
    }
    50% {
        opacity: 1;
        transform: scale(1.01);
    }
    100% {
        opacity: 0.85;
        transform: scale(0.98);
    }
}


@keyframes heroSpeechPulse {
    0% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(0.98);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
    100% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(0.98);
    }
}

@keyframes shakeButton {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-3px) rotate(-1deg);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(3px) rotate(1deg);
    }
}


#hero h1 {
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    letter-spacing: -1px;
}

#hero .hero-achievements {
    color: #ffffff;
    margin: 15px 0 0 0;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    letter-spacing: 0.5px;
    line-height: 1.5;
}

/* Hide hero achievements text on mobile */
@media (max-width: 992px) {
    #hero .hero-achievements {
        display: none !important;
    }
}

#hero p {
    color: var(--text-primary);
    margin: 20px 0 0 0;
    font-size: 26px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}

#hero p span {
    color: var(--neon-cyan);
    letter-spacing: 1px;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

/* Hero Badges */
#hero .hero-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
}

#hero .hero-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(21, 27, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

#hero .hero-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#hero .hero-badge:hover::before {
    left: 100%;
}

#hero .hero-badge:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4),
                0 0 40px rgba(176, 38, 255, 0.2);
    transform: translateX(5px);
    background: rgba(21, 27, 46, 0.95);
}

#hero .badge-icon {
    font-size: 32px;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
    transition: transform 0.3s ease;
}

#hero .hero-badge:hover .badge-icon {
    transform: scale(1.1) rotate(5deg);
}

#hero .badge-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#hero .badge-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

#hero .badge-subtitle {
    color: var(--neon-cyan);
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

#hero .badge-arrow {
    font-size: 24px;
    color: var(--neon-cyan);
    margin-left: auto;
    transition: transform 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

#hero .hero-badge:hover .badge-arrow {
    transform: translateX(5px);
    color: var(--neon-blue);
}

@media (max-width: 768px) {
    #hero .hero-badge {
        padding: 12px 15px;
    }
    
    #hero .badge-icon {
        font-size: 28px;
    }
    
    #hero .badge-title {
        font-size: 14px;
    }
    
    #hero .badge-subtitle {
        font-size: 12px;
    }
}

/* Social Links in Top Left Corner */
#hero .hero-social-links-top {
    position: absolute;
    top: 30px;
    left: auto;
    right: 0;
    z-index: 10;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-end;
    padding-right: 0;
    padding-left: 0;
}

@media (min-width: 992px) {
    #hero .hero-social-links-top {
        padding-right: calc(160px + 40px);
    }
}

@media (max-width: 991px) {
    #hero .hero-social-links-top {
        padding-right: 20px;
        padding-left: 0;
    }
}

#hero .hero-social-links-top a {
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--text-secondary);
    line-height: 1;
    transition: all 0.3s ease;
    background: rgba(21, 27, 46, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#hero .hero-social-links-top a img {
    width: 24px;
    height: 24px;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

#hero .hero-social-links-top a.contact-link {
    min-width: 140px;
    width: auto;
    padding: 0 20px;
    height: 56px;
    border-radius: 16px !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    gap: 10px;
    justify-content: center;
}

#hero .hero-social-links-top a.contact-link i {
    margin-right: 0;
    font-size: 20px;
}

#hero .hero-social-links-top a.contact-link span {
    text-transform: uppercase;
    font-size: 13px;
    white-space: nowrap;
}

#hero .hero-social-links-top a:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
    background: rgba(21, 27, 46, 0.95);
}

#hero .hero-social-links-top a:hover img {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
}

@media (max-width: 992px) {
    #hero {
        text-align: center;
        padding-left: 0;
        background-attachment: scroll;
        justify-content: center;
    }

    #hero .hero-social-links-top {
        top: 20px;
        left: auto;
        right: 0;
        gap: 6px;
        padding-right: 10px;
        padding-left: 10px;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
    }

    #hero .hero-social-links-top a {
        width: 38px;
        height: 38px;
        font-size: 16px;
        flex-shrink: 0;
    }

    #hero .hero-social-links-top a img {
        width: 16px;
        height: 16px;
    }
    
    #hero .hero-social-links-top a.contact-link {
        min-width: auto;
        width: 38px;
        height: 38px;
        padding: 0;
        border-radius: 50% !important;
    }
    
    #hero .hero-social-links-top a.contact-link span {
        display: none;
    }
    
    #hero .hero-social-links-top a.contact-link i {
        font-size: 16px;
        margin-right: 0;
    }
}

/* Additional optimization for smaller mobile screens */
@media (max-width: 768px) {
    #hero .hero-social-links-top {
        gap: 5px;
        padding-right: 8px;
        padding-left: 8px;
    }

    #hero .hero-social-links-top a {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    #hero .hero-social-links-top a img {
        width: 15px;
        height: 15px;
    }
    
    #hero .hero-social-links-top a.contact-link {
        width: 36px;
        height: 36px;
    }
    
    #hero .hero-social-links-top a.contact-link i {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    #hero .hero-social-links-top {
        gap: 4px;
        padding-right: 5px;
        padding-left: 5px;
    }

    #hero .hero-social-links-top a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    #hero .hero-social-links-top a img {
        width: 14px;
        height: 14px;
    }
    
    #hero .hero-social-links-top a.contact-link {
        width: 34px;
        height: 34px;
    }
    
    #hero .hero-social-links-top a.contact-link i {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    #hero .hero-wrapper {
        flex-direction: column;
        padding: 0 20px;
        gap: 40px;
    }

    #hero .hero-inner-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    #hero .hero-image-right {
        max-width: 100%;
        order: 1;
    }

    #hero .hero-badge:nth-child(3) {
        display: none;
    }

    .hero-speech-bubble {
        top: calc(-240px + 200px);
        width: min(408px, 80vw) !important;
        transform: translateX(-50%) scale(0.5) !important;
    }
    
    .hero-speech-bubble img {
        width: 100%;
    }
    
    .hero-speech-text {
        font-size: clamp(16px, 0.6vw, 6.5px) !important;
    }

    #hero .hero-image-right .card-3d-container {
        max-width: 100%;
        margin-top: 180px;
    }

    #hero .hero-image-right .card-3d-item img {
        max-height: 60vh;
    }

    #hero .hero-image-right .hero-icon-item {
        width: 60px;
        height: 60px;
    }

    #hero .hero-inner-content {
        position: relative;
        top: 100px !important;
    }

    #hero .hero-inner-content h1 {
        font-size: 42px;
        line-height: 1.2;
        margin-top: 0 !important;
    }

    #hero .hero-inner-content p:not(.hero-achievements) {
        margin-top: 15px;
        font-size: 20px;
        line-height: 1.5;
    }
    
    #hero .hero-badges {
        margin-top: 30px;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

@media (min-width: 992px) {
    section {
        padding-left: 100px;
    }
}

@media (max-width: 991px) {
    section {
        padding-left: 0;
    }
}

section.section-bg {
    background: rgba(15, 22, 41, 0.4);
    backdrop-filter: blur(5px);
}

.section-title {
    text-align: center;
    padding-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
    bottom: 1px;
    left: calc(50% - 60px);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    bottom: 0;
    left: calc(50% - 30px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    border-radius: 2px;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 700;
    font-size: 28px;
    color: var(--neon-cyan);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 15px;
    color: var(--text-primary);
    font-size: 16px;
}

.about .content ul li strong {
    color: var(--neon-blue);
    font-weight: 600;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 8px;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

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

.about .content p:last-child {
    margin-bottom: 0;
}

.about .about-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.about .about-intro strong {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.about .about-focus {
    margin: 30px 0;
    padding: 20px;
    background: rgba(21, 27, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
}

.about .about-focus-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.about .about-focus-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

@media (max-width: 1200px) {
    .about .about-focus-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .about .about-focus-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about .about-focus-list {
        grid-template-columns: 1fr;
    }
}

.about .about-focus-list li {
    position: relative;
    padding-left: 25px;
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
}

.about .about-focus-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-size: 20px;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.about .about-goal {
    font-size: 16px;
    margin-top: 25px;
    color: var(--text-primary);
}

.about .about-goal strong {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.about .content p strong {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .count-box {
    padding: 30px 30px 25px 30px;
    margin-top: 30px;
    width: 100%;
    position: relative;
    text-align: center;
    background: #fff;
}

.facts .count-box i {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background: #2ebcbc;
    padding: 12px;
    color: #fff;
    border-radius: 50px;
}

.facts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: #011426;
}

.facts .count-box p {
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
/* Skills Tags Container */
.skills-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
}

/* Skill Tag - Neon Pill Style */
.skill-tag {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(21, 27, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2), 
                inset 0 0 10px rgba(176, 38, 255, 0.1);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

/* Skill Tag Hover Effect */
.skill-tag:hover {
    transform: translateY(-2px);
    border-color: var(--neon-blue);
    background: rgba(21, 27, 46, 0.8);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5),
                0 0 40px rgba(176, 38, 255, 0.3),
                inset 0 0 15px rgba(0, 212, 255, 0.1);
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6),
                 0 0 25px rgba(176, 38, 255, 0.4);
}

/* Skill Tag Glow Effect */
.skill-tag::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(176, 38, 255, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.skill-tag:hover::before {
    opacity: 1;
}

.secret-trigger-sentinel {
    width: 100%;
    height: 1px;
}

.skill-tag.secret-triggered {
    border-color: rgba(59, 130, 246, 0.9);
    background: rgba(59, 130, 246, 0.25);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.services .icon-box.service-secret-triggered {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.footer-secret-trigger {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    padding: 0;
    cursor: pointer;
}

.footer-secret-trigger:hover {
    text-decoration: underline;
}

.secret-trigger-sentinel {
    width: 100%;
    height: 1px;
}

/* Responsive Design for Skills Tags */
@media (max-width: 768px) {
    .skills-tags-container {
        gap: 12px;
    }
    .skill-tag {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .skills-tags-container {
        gap: 10px;
    }
    
    .skill-tag {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Experience Snapshot
--------------------------------------------------------------*/
.experience-snapshot {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(21, 27, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 212, 255, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.experience-item:hover::before {
    left: 100%;
}

.experience-item:hover {
    transform: translateX(10px);
    border-color: var(--neon-blue);
    background: rgba(21, 27, 46, 0.8);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4),
                0 0 50px rgba(176, 38, 255, 0.2);
}

.experience-icon {
    font-size: 40px;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.experience-item:hover .experience-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
}

.experience-text h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.experience-item:hover .experience-text h3 {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6),
                 0 0 30px rgba(176, 38, 255, 0.4);
}

/* Resume Download Button */
.resume-download-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.resume-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: rgba(21, 27, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50px;
    color: var(--text-primary);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3),
                inset 0 0 20px rgba(176, 38, 255, 0.1);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.resume-download-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(0, 212, 255, 0.2) 0%, 
        rgba(176, 38, 255, 0.1) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.resume-download-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.resume-download-btn:hover::before {
    opacity: 1;
}

.resume-download-btn:hover::after {
    left: 100%;
}

.resume-download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--neon-blue);
    background: rgba(21, 27, 46, 0.95);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6),
                0 0 60px rgba(176, 38, 255, 0.4),
                inset 0 0 30px rgba(0, 212, 255, 0.2);
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8),
                 0 0 30px rgba(176, 38, 255, 0.6);
}

.resume-download-btn .btn-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
    transition: all 0.3s ease;
}

.resume-download-btn:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.9));
}

.resume-download-btn .btn-text {
    position: relative;
    z-index: 1;
}

.resume-download-btn .btn-arrow {
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.resume-download-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Responsive Design for Experience Section */
@media (max-width: 768px) {
    .experience-item {
        padding: 20px 25px;
        gap: 15px;
    }
    
    .experience-icon {
        font-size: 32px;
    }
    
    .experience-text h3 {
        font-size: 18px;
    }
    
    .resume-download-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .experience-item {
        padding: 18px 20px;
        gap: 12px;
    }
    
    .experience-icon {
        font-size: 28px;
    }
    
    .experience-text h3 {
        font-size: 16px;
    }
    
    .resume-download-btn {
        padding: 12px 25px;
        font-size: 13px;
        gap: 10px;
    }
    
    .resume-download-btn .btn-icon {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
    --portfolio-card-bg: linear-gradient(145deg, #020617, #030b2f, #020617);
    --portfolio-border: rgba(148, 163, 184, 0.25);
    --portfolio-shadow: 0 20px 40px rgba(15, 23, 42, 0.85);
}

.portfolio-featured {
    margin-bottom: 50px;
}

.portfolio-featured-card {
    background: var(--portfolio-card-bg);
    border-radius: 18px;
    border: 1px solid var(--portfolio-border);
    padding: 45px;
    box-shadow: var(--portfolio-shadow);
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 35px;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    align-items: center;
    transition: all 0.35s ease;
}

.portfolio-featured-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.25), transparent 45%),
                radial-gradient(circle at bottom left, rgba(168, 85, 247, 0.2), transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.portfolio-featured-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid transparent;
    transition: inherit;
    pointer-events: none;
    z-index: 1;
}

.portfolio-featured-card:hover {
    transform: translateY(-16px) scale(1.015);
    border-color: rgba(99, 102, 241, 0.75);
    box-shadow: 0 45px 80px rgba(15, 23, 42, 0.95), 0 0 40px rgba(99, 102, 241, 0.35);
}

.portfolio-featured-card:hover::before {
    border-color: rgba(168, 85, 247, 0.7);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.4), 0 0 90px rgba(168, 85, 247, 0.35);
}

.project-label {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a5b4fc;
    margin-bottom: 15px;
}

.portfolio-featured-card h3,
.project-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #f8fafc;
}

.project-tags {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 18px;
    font-weight: 600;
}

.project-summary {
    color: #e2e8f0;
    margin-bottom: 24px;
    line-height: 1.7;
}

.project-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.project-btn {
    border-radius: 30px;
    padding: 12px 26px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    z-index: 3;
    pointer-events: auto;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.project-btn.primary {
    background: linear-gradient(120deg, #6366f1, #a855f7);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.45);
}

.project-btn.secondary {
    background: transparent;
    border-color: rgba(99, 102, 241, 0.6);
    color: #c7d2fe;
}

.project-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.55);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

@media (min-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.project-card {
    background: var(--portfolio-card-bg);
    border-radius: 18px;
    border: 1px solid var(--portfolio-border);
    padding: 30px;
    box-shadow: var(--portfolio-shadow);
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    user-select: text;
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid transparent;
    transition: inherit;
    pointer-events: none;
    z-index: 0;
}

.project-card:hover {
    transform: translateY(-16px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.75);
    box-shadow: 0 40px 70px rgba(15, 23, 42, 0.92), 0 0 35px rgba(99, 102, 241, 0.35);
}

.project-card:hover::before {
    border-color: rgba(168, 85, 247, 0.65);
    box-shadow: 0 0 55px rgba(99, 102, 241, 0.35);
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.project-media {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 60%);
    border: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow: inset 0 0 20px rgba(99, 102, 241, 0.1);
    z-index: 1;
}

.project-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.45));
    pointer-events: none;
}

.project-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.project-card:hover .project-media::after,
.portfolio-featured-card:hover .project-media::after {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.15), rgba(15, 23, 42, 0.55));
}

.project-card:hover .project-media img,
.portfolio-featured-card:hover .project-media img {
    transform: scale(1.1);
}

.more-projects {
    margin-top: 60px;
    text-align: center;
}

.more-projects-toggle {
    background: rgba(15, 23, 42, 0.8);
    color: #c7d2fe;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.6);
    padding: 12px 32px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    animation: shakeButton 2s ease-in-out infinite;
}

.more-projects-toggle:hover {
    color: #ffffff;
    border-color: #a855f7;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.75);
    animation-play-state: paused;
    transform: translateY(-3px);
}

.more-projects-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s ease, opacity 0.3s ease;
    opacity: 0;
}

.more-projects-panel.open {
    opacity: 1;
    margin-top: 30px;
}

.more-projects-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.more-projects-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
    text-align: left;
}

.more-project-title {
    font-weight: 600;
}

.more-project-meta {
    font-size: 14px;
    color: #94a3b8;
}

.connect-panel {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(2, 6, 23, 0.75);
    color: #e2e8f0;
    text-align: left;
}

.connect-panel h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #f8fafc;
}

.connect-intro {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #cbd5f5;
}

.highlight-metric {
    color: #38bdf8;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
    white-space: nowrap;
}

.connect-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.connect-card {
    flex: 1;
    background: rgba(21, 27, 46, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 18px;
    padding: 25px;
    box-shadow: inset 0 0 25px rgba(99, 102, 241, 0.05);
}

.connect-card h4 {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: #c7d2fe;
}

.connect-note {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #94a3b8;
    letter-spacing: 0.02em;
}

.connect-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.connect-links li {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 15px;
}

.connect-links li span {
    color: #a5b4fc;
    font-weight: 600;
}

.connect-links a {
    color: #7dd3fc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.connect-links a:hover {
    color: #38bdf8;
}

@media (min-width: 992px) {
    .connect-columns {
        flex-direction: row;
    }
}

@media (max-width: 992px) {
    .portfolio-featured-card {
        padding: 35px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .portfolio-featured-card {
        padding: 28px;
        gap: 24px;
    }

    .project-actions {
        flex-direction: column;
    }

    .project-btn {
        width: 100%;
        text-align: center;
    }

    .more-projects-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    transition: all ease-in-out 0.3s;
    background: rgba(21, 27, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.services .icon-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services .icon-box:hover::before {
    opacity: 1;
}

.services .icon-box .icon {
    width: 100%;
    height: 15rem;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
    border: 2px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.services .icon-box:hover .icon {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

/* Don't apply translateY transform for 3D card containers - JavaScript handles it */
.service-card-3d-container .icon-box:hover .icon {
    transform: none;
}

.services .icon-box .icon img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Don't apply scale transform for 3D card containers - JavaScript handles it */
.service-card-3d-container .icon-box:hover .icon img {
    transform: none;
}

.services .icon-box .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
}

.services .icon-box .icon svg {
    position: absolute;
    top: 0;
    left: 0;
}

.services .icon-box .icon svg path {
    transition: 0.5s;
    fill: #f5f5f5;
}

.services .icon-box h4 {
    font-weight: 600;
    margin: 15px 0 15px 0;
    font-size: 22px;
    position: relative;
    z-index: 1;
}

.services .icon-box h4 a {
    color: var(--text-primary);
    transition: ease-in-out 0.3s;
}

.services .icon-box:hover h4 a {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.services .icon-box p {
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 0;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Service Emoji Styling */
.services .icon-box .icon .service-emoji {
    font-size: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    transition: all 0.3s ease;
}

/* Adjust icon height when using emoji */
.services .icon-box .icon:has(.service-emoji) {
    height: 10rem;
    background: rgba(0, 212, 255, 0.03);
}

.services .icon-box:hover .icon .service-emoji {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
}

/* Service List Styling */
.services .icon-box .service-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.services .icon-box .service-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.services .icon-box .service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transition: all 0.3s ease;
}

.services .icon-box:hover .service-list li {
    color: var(--text-primary);
    padding-left: 25px;
}

.services .icon-box:hover .service-list li::before {
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    transform: scale(1.2);
}

/* Service Card 3D Container */
.service-card-3d-container {
    width: 100%;
    height: 100%;
    perspective: 1000px;
    perspective-origin: center center;
    cursor: pointer;
    position: relative;
}

/* Service Card 3D Body */
.service-card-3d-body {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
    transform: translateZ(0);
}

/* Ensure icon-box and its children can have 3D transforms */
.service-card-3d-body .icon-box {
    transform-style: preserve-3d !important;
    position: relative;
    transform: translateZ(0);
}

.service-card-3d-body .icon-box .icon {
    transform-style: preserve-3d !important;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(0);
}

.service-card-3d-body .icon-box .icon img {
    transform-style: preserve-3d !important;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(0);
    display: block;
}

.service-card-3d-body .icon-box .p-2 {
    transform-style: preserve-3d !important;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(0);
}

.service-card-3d-body .icon-box h4,
.service-card-3d-body .icon-box .service-list {
    transform-style: preserve-3d !important;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(0);
}

/* Glow effect behind service card */
.service-card-3d-body::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-cyan));
    border-radius: 15px;
    opacity: 0;
    filter: blur(25px);
    transition: opacity 0.6s ease;
    z-index: -1;
}

.service-card-3d-container:hover .service-card-3d-body::before {
    opacity: 0.6;
}

/* Ensure icon-box fills the container */
.service-card-3d-container .icon-box {
    height: 100%;
    width: 100%;
}

.service-card-3d-container:hover .icon-box {
    border-color: var(--neon-blue);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3), 0 0 80px rgba(176, 38, 255, 0.2);
}

.services .iconbox-blue i {
    color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
    color: #fff;
}

.services .iconbox-blue:hover .icon path {
    fill: #47aeff;
}

.services .iconbox-orange i {
    color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
    color: #fff;
}

.services .iconbox-orange:hover .icon path {
    fill: #ffa76e;
}

.services .iconbox-pink i {
    color: #e80368;
}

.services .iconbox-pink:hover .icon i {
    color: #fff;
}

.services .iconbox-pink:hover .icon path {
    fill: #e80368;
}

.services .iconbox-yellow i {
    color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
    color: #fff;
}

.services .iconbox-yellow:hover .icon path {
    fill: #ffbb2c;
}

.services .iconbox-red i {
    color: #ff5828;
}

.services .iconbox-red:hover .icon i {
    color: #fff;
}

.services .iconbox-red:hover .icon path {
    fill: #ff5828;
}

.services .iconbox-teal i {
    color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
    color: #fff;
}

.services .iconbox-teal:hover .icon path {
    fill: #11dbcf;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonial-item {
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: #90c8fc;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .owl-nav, .testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.testimonials .owl-dot.active {
    background-color: #2ebcbc !important;
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: transparent;
}

.contact .info > div {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(21, 27, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact .info > div:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    transform: translateX(10px);
}

.contact .info i {
    font-size: 24px;
    color: var(--neon-cyan);
    float: left;
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    border: 2px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.contact .info h4 {
    padding: 0 0 0 70px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact .info p {
    padding: 0 0 0 70px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.contact .info p a {
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

.contact .info p a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.contact .info .email, .contact .info .phone, .contact .info .address, .contact .info .contact-links-card {
    margin-top: 0;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i, .contact .info .contact-links-card:hover i {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: #fff;
    border-color: var(--neon-blue);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    transform: scale(1.1) rotate(5deg);
}

.contact-links-card {
    margin-bottom: 20px;
}

.contact-links-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 70px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.contact-links-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7dd3fc;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.4);
}

.contact-links-list li:hover .contact-link-icon {
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.8);
    box-shadow: 0 8px 18px rgba(56, 189, 248, 0.35);
    transform: scale(1.08) rotate(5deg);
}

.contact-link-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%) invert(55%) sepia(37%) saturate(564%) hue-rotate(158deg) brightness(110%) contrast(101%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.contact-links-list li:hover .contact-link-icon img {
    filter: brightness(0) saturate(100%) invert(72%) sepia(89%) saturate(705%) hue-rotate(167deg) brightness(115%) contrast(102%);
    transform: scale(1.08);
}

.contact-link-body span {
    color: var(--text-primary);
    font-weight: 600;
    margin-right: 4px;
}

.contact-links-list a {
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

.contact-links-list a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.contact .php-email-form,
.contact .submitForm {
    width: 100%;
    background: rgba(21, 27, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.contact .php-email-form .form-group,
.contact .submitForm .form-group {
    padding-bottom: 20px;
}

.contact .php-email-form .validate,
.contact .submitForm .validate {
    display: none;
    color: #ff6b6b;
    margin: 5px 0 0 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message,
.contact .submitForm .error-message {
    display: none;
    color: #fff;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    text-align: left;
    padding: 15px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact .php-email-form .error-message br + br,
.contact .submitForm .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message,
.contact .submitForm .sent-message {
    display: none;
    color: #fff;
    background: linear-gradient(135deg, #18d26e, #0fb85a);
    text-align: center;
    padding: 15px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact .php-email-form .loading,
.contact .submitForm .loading {
    display: none;
    background: transparent;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before,
.contact .submitForm .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--neon-blue);
    border-top-color: transparent;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea,
.contact .submitForm input,
.contact .submitForm textarea {
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
    background: rgba(15, 22, 41, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-primary);
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus,
.contact .submitForm input:focus,
.contact .submitForm textarea:focus {
    background: rgba(15, 22, 41, 0.95);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    outline: none;
    color: var(--text-primary);
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder,
.contact .submitForm input::placeholder,
.contact .submitForm textarea::placeholder {
    color: var(--text-secondary);
}

.contact .php-email-form input {
    height: 50px;
}

.contact .php-email-form textarea,
.contact .submitForm textarea {
    padding: 12px 15px;
    min-height: 150px;
    resize: vertical;
}

.contact .php-email-form button[type="submit"],
.contact .submitForm button[type="submit"],
.contact .submitForm .btn {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border: 0;
    padding: 12px 40px;
    color: #fff;
    transition: all 0.4s ease;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact .php-email-form button[type="submit"]:hover,
.contact .submitForm button[type="submit"]:hover,
.contact .submitForm .btn:hover {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(176, 38, 255, 0.4);
    transform: translateY(-3px);
}

.contact .php-email-form button[type="submit"]:disabled,
.contact .submitForm button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.sendResponse p {
    margin: 0;
    padding: 10px;
    border-radius: 8px;
}

.sendResponse .text-success {
    color: #18d26e;
    background: rgba(24, 210, 110, 0.1);
    border: 1px solid rgba(24, 210, 110, 0.3);
}

.sendResponse .text-danger {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding: 40px 0;
}

.portfolio-details .portfolio-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #2ebcbc !important;
}

.portfolio-details .portfolio-info {
    padding-top: 45px;
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-info p {
    font-size: 15px;
    padding: 15px 0 0 0;
}

@media (max-width: 992px) {
    .portfolio-details .portfolio-info {
        padding-top: 20px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 14px;
    text-align: center;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
}

#footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

#footer h3 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#footer p {
    font-size: 15px;
    font-style: italic;
    padding: 0;
    margin: 0 0 40px 0;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#footer .social-links {
    margin: 0 0 40px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 27, 46, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-secondary);
    line-height: 1;
    padding: 0;
    border-radius: 50%;
    text-align: center;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#footer .social-links a img {
    width: 20px;
    height: 20px;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

#footer .social-links a:hover {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-color: var(--neon-blue);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
    transform: translateY(-5px) scale(1.1);
}

#footer .social-links a:hover img {
    filter: brightness(1.5) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

#footer .copyright {
    margin: 0 0 5px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

#footer .copyright strong {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

#footer .credits {
    font-size: 13px;
    color: var(--text-secondary);
}

header::-webkit-scrollbar {
    display: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 22, 41, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-blue), var(--neon-purple));
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-purple), var(--neon-blue));
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.6);
}

#hero .hero-inner-content {
    position: relative;
    z-index: 2;
}

#hero .hero-inner-content a img {
    width: 24px;
    height: 24px;
}

