﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bowlby+One&family=Days+One&family=Lilita+One&family=Titan+One&display=swap');


body {
    font-family: "Open Sans", sans-serif;
    background-color: #121942;
}

a {
    color: #000000;
    text-decoration: none;
}

    a:hover {
        color: #5faee3;
        text-decoration: none;
    }

h1,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

h2,
h3 {
    font-family: 'Alegreya Sans SC', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
/* Back to Top Button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 20px;
    bottom: 20px;
    z-index: 996;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.9), rgba(255, 0, 204, 0.9));
    border: 2px solid #00eaff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.5);
    transition: all 0.4s ease;
    overflow: hidden;
}

    .back-to-top i {
        font-size: 24px;
        color: #1a0b2e;
        transition: transform 0.4s ease;
    }

    .back-to-top:hover {
        background: linear-gradient(135deg, rgba(255, 0, 204, 0.9), rgba(0, 234, 255, 0.9));
        box-shadow: 0 0 25px rgba(255, 0, 204, 0.8);
        transform: translateY(-5px);
    }

        .back-to-top:hover i {
            transform: rotate(360deg) scale(1.2);
        }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

        .back-to-top.active::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 70px;
            height: 70px;
            background: radial-gradient(circle, rgba(0, 234, 255, 0.3), transparent);
            transform: translate(-50%, -50%);
            border-radius: 50%;
        }


/* Responsive Adjustments */
@media (max-width: 576px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        left: 15px;
        bottom: 15px;
    }

        .back-to-top i {
            font-size: 20px;
        }

        .back-to-top.active::before {
            width: 60px;
            height: 60px;
        }
}

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


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    z-index: 997;
    transition: all 0.5s ease;
    padding: 16px 0;
    background: rgb(20 20 60);
    width: 100%;
    margin: 0px auto 0;
}

    #header .logo h1 {
        font-size: 28px;
        font-family: 'Alegreya Sans SC', sans-serif;
        font-weight: 900;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1px;
        color: #ffffff;
    }

        #header .logo h1 a,
        #header .logo h1 a:hover {
            color: #ccd6f6;
            text-decoration: none;
        }

.logo h1 a {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .logo h1 a:hover {
        transform: scale(1.05);
    }

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 50px;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-menu li {
        margin: 0 20px;
        position: relative;
    }

/* Explicitly control all link states */
.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #ccd6f6 !important; /* Default color, !important to override browser defaults */
    text-decoration: none !important;
    font-family: 'Roboto', sans-serif;
    padding: 8px 12px;
    position: relative;
    display: block;
    transition: all 0.3s ease;
}

    /* Remove visited behavior and ensure consistent color */
    .nav-link:link,
    .nav-link:visited,
    .nav-link:active {
        color: #ccd6f6 !important; /* Match default color */
        text-decoration: none !important;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #00eaff;
        box-shadow: 0 0 5px rgba(0, 212, 255, 0.7);
        transition: width 0.3s ease, left 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        width: 100%;
        left: 0;
        transform: translateX(0);
    }

    .nav-link:hover,
    .nav-link.active {
        color: #00eaff !important; /* Active/hover color */
        text-shadow: 0 0 8px rgba(51, 255, 214, 0.46);
        transform: translateY(-2px);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(0, 212, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
        z-index: -1;
    }

    .nav-link:hover::after {
        width: 40px;
        height: 40px;
    }

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1100;
}

    .mobile-nav-toggle:hover {
        color: #e0e1dd;
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.7);
    }

/* Responsive Adjustments */
@media (max-width: 968px) {
    #header {
        padding: 10px 0;
    }

    .container {
        position: relative;
    }

    .logo {
        order: 1;
    }

    .navbar {
        order: 2;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100vh;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        background: rgba(13, 27, 42, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 70px 0 20px;
        border-top: 1px solid rgba(0, 212, 255, 0.3);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(-100%);
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

        .nav-menu.active {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .nav-menu li {
            margin: 25px 0;
        }

    .nav-link {
        font-size: 20px;
        padding: 15px 30px;
        color: #e0e1dd !important; /* Adjusted for mobile */
    }

        .nav-link:link,
        .nav-link:visited,
        .nav-link:active {
            color: #e0e1dd !important; /* Match mobile default */
        }

        .nav-link:hover,
        .nav-link.active {
            color: #00d4ff !important; /* Mobile active/hover color */
            transform: none;
        }

        .nav-link::before {
            bottom: 5px;
        }

        .nav-link::after {
            width: 0;
            height: 0;
        }

        .nav-link:hover::after {
            width: 60px;
            height: 60px;
        }

    .mobile-nav-toggle {
        display: block;
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .logo img {
        max-height: 40px;
    }

    .logo h1 {
        font-size: 24px;
    }

    .nav-menu {
        padding: 60px 0 20px;
    }

        .nav-menu li {
            margin: 20px 0;
        }

    .nav-link {
        font-size: 18px;
        padding: 12px 25px;
    }

    .mobile-nav-toggle {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .logo img {
        max-height: 35px;
    }

    .nav-link {
        font-size: 16px;
    }

    .mobile-nav-toggle {
        font-size: 22px;
    }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #0f1c47 100%);
    font-family: 'Alegreya Sans SC', sans-serif;
    color: #f0f0f5;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Background Elements */
.bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particleDrift 6s ease-in-out infinite;
}

.bg-rings {
    position: absolute;
    top: 50%;
    left: 75%;
    width: 18.75rem;
    height: 18.75rem;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0.125rem solid rgba(0, 234, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 1.25rem rgba(0, 234, 255, 0.6);
    animation: ringPulse 4s ease-in-out infinite;
}

.r1 {
    transform: rotateX(65deg) rotateZ(45deg);
    animation-delay: 0s;
}

.r2 {
    border-color: rgba(0, 255, 102, 0.5);
    box-shadow: 0 0 1.25rem rgba(0, 255, 102, 0.6);
    animation-delay: 2s;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, rgba(0, 234, 255, 0.08) 0, rgba(0, 234, 255, 0.08) 0.0625rem, transparent 0.0625rem, transparent 1.5625rem), repeating-linear-gradient(90deg, rgba(0, 234, 255, 0.08) 0, rgba(0, 234, 255, 0.08) 0.0625rem, transparent 0.0625rem, transparent 1.5625rem);
    animation: gridShift 15s linear infinite;
}

.container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3.125rem;
}

/* Hero Text */
.hero-text {
    flex: 1;
    max-width: 37.5rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.375rem;
    color: #00eaff;
    animation: neonPulse 1.5s ease-in-out infinite alternate, slideInLeft 1s ease-out forwards;
    position: relative;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: #d8e0ff;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    margin: 1.25rem 0;
    opacity: 0;
    animation: fadeSlide 1s ease-out 0.5s forwards;
}

.hero-desc {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #d8e0ff;
    margin-bottom: 1.875rem;
    opacity: 0;
    animation: fadeSlide 1s ease-out 0.8s forwards;
}

.hero-cta {
    position: relative;
    display: inline-block;
    padding: 0.9375rem 2.5rem;
    background: transparent;
    color: #00eaff;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    border: 0.125rem solid #00eaff;
    border-radius: 3.125rem;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeSlide 1s ease-out 1s forwards;
}

.cta-surge {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 255, 102, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-cta:hover {
    color: #00ff66;
    border-color: #00ff66;
    box-shadow: 0 0 1.25rem rgba(0, 255, 102, 0.8);
}

    .hero-cta:hover .cta-surge {
        animation: surgeExpand 0.8s ease-out forwards;
    }

/* Hero 3D Object - Battery */
.hero-3d {
    flex: 1;
    position: relative;
    height: 25rem;
    max-width: 25rem;
    perspective: 62.5rem;
}

.tech-battery {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7.5rem;
    height: 15rem;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
}

.battery-shell {
    position: absolute;
    width: 7.5rem;
    height: 15rem;
    background: linear-gradient(135deg, rgba(15, 28, 71, 0.95), rgba(26, 11, 46, 0.95));
    border: 0.125rem solid #00eaff;
    border-radius: 0.9375rem;
    transform: translateZ(-1.25rem);
    box-shadow: 0 0 1.5625rem rgba(0, 234, 255, 0.6);
    overflow: hidden;
}

.battery-cap {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    width: 2.5rem;
    height: 1.25rem;
    background: #0f1c47;
    border: 0.125rem solid #00eaff;
    border-radius: 0.3125rem 0.3125rem 0 0;
    transform: translateX(-50%) translateZ(1.25rem);
    box-shadow: 0 0 0.9375rem rgba(0, 234, 255, 0.6);
}

.battery-bricks {
    position: absolute;
    bottom: 0.625rem;
    left: 0.625rem;
    width: 6.25rem;
    height: 13.75rem;
    transform: translateZ(0);
}

.brick {
    position: absolute;
    width: 5rem;
    background: #00ff66;
    border-radius: 0.3125rem;
    left: 50%;
    transform: translateX(-50%);
    height: 0;
    box-shadow: 0 0 0.75rem rgba(0, 255, 102, 0.8);
    animation: brickFillOnce 3s ease-out forwards;
}

.brick-1 {
    bottom: 0;
    animation-delay: 0s;
}

.brick-2 {
    bottom: 20%;
    animation-delay: 4s;
}

.brick-3 {
    bottom: 40%;
    animation-delay: 8s;
}

.brick-4 {
    bottom: 60%;
    animation-delay: 12s;
}

.brick-5 {
    bottom: 80%;
    animation-delay: 16s;
}

.hero-3d:hover .battery-shell,
.hero-3d:hover .battery-cap {
    border-color: #00ff66;
    box-shadow: 0 0 2.1875rem rgba(0, 255, 102, 0.9);
}

.hero-3d:hover .brick {
    animation: brickFillHover 0.5s ease-in-out forwards;
}

.hero-3d:hover .brick-1 {
    animation-delay: 0s;
}

.hero-3d:hover .brick-2 {
    animation-delay: 0.5s;
}

.hero-3d:hover .brick-3 {
    animation-delay: 1s;
}

.hero-3d:hover .brick-4 {
    animation-delay: 1.5s;
}

.hero-3d:hover .brick-5 {
    animation-delay: 2s;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-3.75rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes particleDrift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: translate(2.5rem, -1.875rem) scale(1.3);
        opacity: 0.6;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.9;
    }
}

@keyframes ringPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
        border-width: 0.125rem;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
        border-width: 0.25rem;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
        border-width: 0.125rem;
    }
}

@keyframes gridShift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1.5625rem 1.5625rem;
    }
}

@keyframes brickFillOnce {
    0% {
        height: 0;
        opacity: 0;
    }

    50% {
        height: 2.5rem;
        opacity: 1;
    }

    100% {
        height: 2.5rem;
        opacity: 1;
    }
}

@keyframes brickFillHover {
    0% {
        height: 0;
        opacity: 0;
    }

    100% {
        height: 2.5rem;
        opacity: 1;
    }
}

@keyframes surgeExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 0.9;
    }

    100% {
        width: 15.625rem;
        height: 15.625rem;
        opacity: 0;
    }
}

/* Responsive Adjustments */


@media (max-width: 1024px) {

    .bg-rings {
        top: 50%;
        left: 77%;
    }
}

@media (max-width: 968px) {
    .hero {
        padding: 6.25rem 0;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-desc {
        font-size: 1.6rem;
    }

    .hero-3d {
        margin-top: 7rem;
        height: 20rem;
        max-width: 20rem;
    }

    .tech-battery {
        width: 6rem;
        height: 12rem;
    }

    .battery-shell {
        width: 6rem;
        height: 12rem;
        border-radius: 0.75rem;
    }

    .battery-cap {
        top: -1rem;
        width: 2rem;
        height: 1rem;
        border-radius: 0.25rem 0.25rem 0 0;
    }

    .battery-bricks {
        bottom: 0.5rem;
        left: 0.5rem;
        width: 5rem;
        height: 11rem;
    }

    .brick {
        width: 4rem;
        border-radius: 0.25rem;
    }


    @media (max-width: 1024px) {

        .bg-rings {
            top: 75%;
            left: 50%;
        }
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 9rem 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-desc {
        font-size: 0.875rem;
    }

    .hero-cta {
        padding: 0.75rem 1.875rem;
        font-size: 1rem;
    }

    .tech-battery {
        width: 5.5rem;
        height: 11rem;
    }

    .battery-shell {
        width: 5.5rem;
        height: 11rem;
        border-radius: 0.625rem;
    }

    .battery-cap {
        top: -0.875rem;
        width: 1.75rem;
        height: 0.875rem;
        border-radius: 0.1875rem 0.1875rem 0 0;
    }

    .battery-bricks {
        bottom: 0.4375rem;
        left: 0.4375rem;
        width: 4.625rem;
        height: 10.125rem;
    }

    .brick {
        width: 3.625rem;
        border-radius: 0.1875rem;
    }

    .brick-1 {
        bottom: 0;
    }

    .brick-2 {
        bottom: 20%;
    }

    .brick-3 {
        bottom: 40%;
    }

    .brick-4 {
        bottom: 60%;
    }

    .brick-5 {
        bottom: 80%;
    }

    @keyframes brickFillOnce {
        0% {
            height: 0;
            opacity: 0;
        }

        50% {
            height: 1.875rem;
            opacity: 1;
        }

        100% {
            height: 1.875rem;
            opacity: 1;
        }
    }

    @keyframes brickFillHover {
        0% {
            height: 0;
            opacity: 0;
        }

        100% {
            height: 1.875rem;
            opacity: 1;
        }
    }

    .bg-rings {
        top: 80%;
        left: 50%;
        width: 12.5rem;
        height: 12.5rem;
    }

    .ring {
        border: 0.0875rem solid rgba(0, 234, 255, 0.5);
        box-shadow: 0 0 0.875rem rgba(0, 234, 255, 0.6);
    }

    .r2 {
        border-color: rgba(0, 255, 102, 0.5);
        box-shadow: 0 0 0.875rem rgba(0, 255, 102, 0.6);
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-desc {
        font-size: 0.8125rem;
    }

    .hero-cta {
        padding: 0.625rem 1.5625rem;
        font-size: 0.875rem;
    }

    .tech-battery {
        width: 5rem;
        /* Increased from 4rem */
        height: 10rem;
        /* Increased from 8rem */
    }

    .battery-shell {
        width: 5rem;
        height: 10rem;
        border-radius: 0.5rem;
    }

    .battery-cap {
        top: -0.75rem;
        width: 1.5rem;
        height: 0.75rem;
        border-radius: 0.1875rem 0.1875rem 0 0;
    }

    .battery-bricks {
        bottom: 0.375rem;
        left: 0.375rem;
        width: 4.25rem;
        height: 9.25rem;
    }

    .brick {
        width: 3.5rem;
        border-radius: 0.1875rem;
    }

    .brick-1 {
        bottom: 0;
    }

    .brick-2 {
        bottom: 20%;
    }

    .brick-3 {
        bottom: 40%;
    }

    .brick-4 {
        bottom: 60%;
    }

    .brick-5 {
        bottom: 80%;
    }

    @keyframes brickFillOnce {
        0% {
            height: 0;
            opacity: 0;
        }

        50% {
            height: 1.75rem;
            /* Increased from 1.25rem */
            opacity: 1;
        }

        100% {
            height: 1.75rem;
            opacity: 1;
        }
    }

    @keyframes brickFillHover {
        0% {
            height: 0;
            opacity: 0;
        }

        100% {
            height: 1.75rem;
            opacity: 1;
        }
    }

    .bg-rings {
        top: 80%;
        left: 50%;
        width: 10rem;
        height: 10rem;
    }

    .ring {
        border: 0.075rem solid rgba(0, 234, 255, 0.5);
        box-shadow: 0 0 0.75rem rgba(0, 234, 255, 0.6);
    }

    .r2 {
        border-color: rgba(0, 255, 102, 0.5);
        box-shadow: 0 0 0.75rem rgba(0, 255, 102, 0.6);
    }
}

/*--------------------------------------------------------------
# Overview Section
--------------------------------------------------------------*/
/* Overview Section */
.overview {
    position: relative;
    padding: 120px 0;
    font-family: 'Alegreya Sans SC', sans-serif;
    color: #f0f0f5;
    overflow: hidden;
    will-change: transform;
}

.ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(0, 234, 255, 0.4);
    animation: rippleExpand 6s ease-out infinite;
    opacity: 0;
    will-change: transform, opacity;
}

.ripple-2 {
    border-color: rgba(255, 0, 204, 0.4);
    animation-delay: 2s;
}

.overview-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.neon-title {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 5px;
    color: #00eaff;
    animation: neonPulse 2.5s infinite alternate;
    position: relative;
}

.overview-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #ff00cc;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.overview-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.overview-item {
    flex: 1;
    text-align: center;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border: 2px solid #00eaff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
}

.overview-icon {
    width: 50px;
    height: 50px;
}

.item-title {
    font-size: 28px;
    font-weight: 700;
    color: #00eaff;
    margin-bottom: 15px;
}

.item-text {
    font-size: 20px;
    line-height: 1.6;
    color: #d8e0ff;
}

/* Hover Effects */
.overview-item:hover .icon-wrapper {
    transform: scale(1.2) rotate(15deg);
    border-color: #ff00cc;
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.8);
}

.overview-item:hover .item-title {
    color: #ff00cc;
}

.overview-item:hover .item-text {
    color: #f0f0f5;
}

/* Animations */
@keyframes rippleExpand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(5);
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .overview {
        padding: 80px 10px;
    }

    .overview-content {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .neon-title {
        font-size: 48px;
    }

    .overview-subtitle {
        font-size: 20px;
    }

    .overview-item {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .neon-title {
        font-size: 40px;
    }

    .overview-subtitle {
        font-size: 18px;
    }

    .item-title {
        font-size: 24px;
    }

    .item-text {
        font-size: 14px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .overview-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .overview {
        padding: 60px 20px;
    }

    .ripple,
    .ripple-2 {
        display: none;
    }

    .neon-title {
        font-size: 32px;
    }

    .overview-subtitle {
        font-size: 16px;
    }

    .item-title {
        font-size: 20px;
    }

    .overview-item:hover .icon-wrapper,
    .overview-item:hover .item-title,
    .overview-item:hover .item-text {
        transform: none;
        border-color: #00eaff;
        box-shadow: none;
        color: inherit;
    }
}

/*--------------------------------------------------------------
# About Section - Updated Car Wash Design
--------------------------------------------------------------*/
.about {
    position: relative;
    padding: 7.5rem 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #0f1c47 100%);
    font-family: 'Alegreya Sans SC', sans-serif;
    color: #f0f0f5;
    overflow: hidden;
    height: 100%;
}

.bg-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    will-change: transform, opacity;
}

.container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 4.375rem;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #ff00cc;
    text-transform: uppercase;
    letter-spacing: 0.1875rem;
}

.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3.125rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    max-width: 34.375rem;
    min-width: 0;
}

.text-card {
    background: rgba(15, 28, 71, 0.9);
    padding: 1.5625rem;
    border: 0.125rem solid #00eaff;
    border-radius: 0.9375rem;
    box-shadow: 0 0 1.25rem rgba(0, 234, 255, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .text-card:hover {
        transform: translateY(-0.625rem);
        box-shadow: 0 0 1.875rem rgba(0, 234, 255, 0.8), 0 0 3.125rem rgba(255, 0, 204, 0.6);
    }

.text-glow {
    font-size: clamp(0.875rem, 2vw + 0.25rem, 1.325rem);
    line-height: 1.7;
    color: #d8e0ff;
    margin-bottom: 1.25rem;
    position: relative;
}

    .text-glow::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgb(0 234 255 / 9%), transparent);
        animation: textShine 3s infinite;
        z-index: -10;
    }

.tech-device {
    flex: 1;
    position: relative;
    min-width: 0;
    height: clamp(18.75rem, 50vw, 28.125rem);
    max-width: 28.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-frame {
    width: clamp(11.25rem, 20vw, 13.75rem);
    height: clamp(20rem, 35vw, 23.75rem);
    background: linear-gradient(135deg, #1a0b2e, #0f1c47);
    border: 0.25rem solid #00eaff;
    border-radius: 1.5625rem;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    will-change: transform;
}

.device-screen {
    position: absolute;
    top: 1.25rem;
    left: 0.9375rem;
    width: calc(100% - 1.875rem);
    height: calc(100% - 2.5rem);
    background: rgba(15, 28, 71, 0.9);
    border-radius: 0.9375rem;
    overflow: hidden;
}

.screen-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(5rem, 15vw, 10.625rem);
    height: clamp(5rem, 15vw, 11.25rem);
    background: radial-gradient(circle, rgb(0 234 255 / 20%), transparent);
    transform: translate(-50%, -50%);
    animation: pulseEffect 6s ease-in-out infinite;
    will-change: transform, opacity;
}

.screen-cracks {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: crackCycle 6s ease-in-out infinite;
}

.crack {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0.3125rem rgba(255, 255, 255, 0.8), 0 0 0.625rem rgba(0, 234, 255, 0.5);
    opacity: 0;
    animation: crackFade 4s ease-in-out infinite;
    will-change: transform, opacity;
}

.crack-1 {
    top: 10%;
    left: 5%;
    width: clamp(3.125rem, 5vw, 3.4375rem);
    height: 0.125rem;
    transform: rotate(25deg) !important;
    clip-path: polygon(0 0, 20% 100%, 40% 0, 60% 100%, 80% 0, 100% 0);
    animation-delay: 0s;
}

.crack-2 {
    top: 25%;
    left: 70%;
    width: clamp(3.125rem, 5vw, 3.75rem);
    height: 0.125rem;
    transform: rotate(25deg) !important;
    clip-path: polygon(0 0, 15% 100%, 30% 0, 50% 100%, 70% 0, 85% 100%, 100% 0);
    animation-delay: 0.2s;
}

.crack-3 {
    top: 50%;
    left: 10%;
    width: clamp(3.75rem, 6vw, 4.0625rem);
    height: 0.125rem;
    transform: rotate(20deg) !important;
    clip-path: polygon(0 0, 25% 100%, 45% 0, 65% 100%, 85% 0, 100% 0);
    animation-delay: 0.4s;
}

.crack-4 {
    top: 70%;
    left: 65%;
    width: clamp(3.125rem, 5vw, 4.0625rem);
    height: 0.125rem;
    transform: rotate(-60deg) !important;
    clip-path: polygon(0 0, 20% 100%, 35% 0, 55% 100%, 75% 0, 90% 100%, 100% 0);
    animation-delay: 0.6s;
}

.crack-5 {
    top: 80%;
    left: 10%;
    width: clamp(4.0625rem, 7vw, 5.3125rem);
    height: 0.125rem;
    transform: rotate(-30deg) !important;
    clip-path: polygon(0 0, 15% 100%, 30% 0, 45% 100%, 60% 0, 80% 100%, 100% 0);
    animation-delay: 0.8s;
}

.device-base {
    position: absolute;
    bottom: 0.9375rem;
    left: 50%;
    width: clamp(2.5rem, 4vw, 3.125rem);
    height: clamp(2.5rem, 4vw, 3.125rem);
    background: #112f53;
    border: 0.1875rem solid #00eaff;
    border-radius: 50%;
    transform: translateX(-50%);
    transition: transform 0.5s ease;
    will-change: transform;
}

.tech-device:hover .device-frame {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 0 2.5rem rgba(0, 234, 255, 0.9), 0 0 3.75rem rgba(255, 0, 204, 0.7);
}

.tech-device:hover .device-base {
    transform: translateX(-50%) scale(1.2) rotate(180deg);
}

.tech-device:hover .screen-cracks,
.tech-device:hover .crack {
    opacity: 0;
    animation: none;
}

@keyframes pulseEffect {

    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0;
    }
}

@keyframes crackCycle {

    0%, 100% {
        opacity: 0;
    }

    20%, 60% {
        opacity: 0.9;
    }
}

@keyframes crackFade {

    0%, 100% {
        opacity: 0;
        transform: scale(1) translateY(0);
    }

    20%, 60% {
        opacity: 0.9;
        transform: scale(1) translateY(0);
    }

    80% {
        opacity: 0;
        transform: scale(1.1) translateY(-0.25rem);
    }
}

@keyframes textShine {
    0% {
        transform: translateX(-100%);
    }

    50%, 100% {
        transform: translateX(100%);
    }
}

@media (max-width: 968px) {
    .about {
        padding: 5rem 0;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }

    .about-text {
        max-width: 70%;
    }

    .about-subtitle {
        font-size: 20px;
    }

    .tech-device {
        margin-top: 2.5rem;
        height: clamp(15rem, 40vw, 20rem);
    }

    .device-frame {
        width: clamp(10rem, 18vw, 12.5rem);
        height: clamp(18rem, 32vw, 21.25rem);
    }

    .screen-pulse {
        animation: pulseEffect 4s ease-in-out infinite;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }

    .about-subtitle {
        font-size: 18px;
    }

    .about-header {
        margin-bottom: 2.5rem;
    }

    .tech-device {
        height: clamp(12.5rem, 35vw, 18.75rem);
    }

    .device-frame {
        width: clamp(9rem, 16vw, 11.25rem);
        height: clamp(16rem, 28vw, 20rem);
    }

    .text-card:hover {
        transform: none;
        box-shadow: 0 0 1.25rem rgba(0, 234, 255, 0.4);
    }
}

@media (max-width: 576px) {
    .about {
        padding: 3.75rem 0;
        min-height: 100vh;
    }

    .bg-particles {
        display: none;
    }

    /* Remove particles in mobile */
    .about-header {
        margin-bottom: 2rem;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .about-text {
        max-width: 100%;
    }

    .about-wrapper {
        gap: 1.875rem;
    }

    .text-card {
        padding: 1rem;
    }

    .text-glow::before {
        content: none;
    }

    /* Remove text glow animation in mobile */
    .tech-device {
        margin-top: 1.875rem;
        height: clamp(11.25rem, 30vw, 15rem);
    }

    .device-frame {
        width: clamp(9rem, 14vw, 10rem);
        height: clamp(15rem, 25vw, 17.5rem);
    }
}

/*--------------------------------------------------------------
# Call to Action Section
--------------------------------------------------------------*/

.cta {
    position: relative;
    padding: 7.5rem 0;
    background: linear-gradient(135deg, #0f1c47 0%, #1a0b2e 100%);
    font-family: 'Alegreya Sans SC', sans-serif;
    color: #f0f0f5;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 234, 255, 0.15), transparent 70%);
    z-index: 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.3125rem;
    color: #00eaff;
    animation: neonPulse 2s infinite alternate;
    margin-bottom: 1.5rem;
    position: relative;
}


.cta-desc {
    font-size: 1.4rem;
    color: #d8e0ff;
    line-height: 1.7;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

/* CTA Button */
.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(15, 28, 71, 0.9);
    border: 0.1875rem solid #00eaff;
    text-decoration: none;
    overflow: hidden;
    border-radius: 10px;
    animation: borderPulse 3s ease-in-out infinite;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    gap: 0.5rem;
}

.whatsapp-icon {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
    color: #00eaff;
    transition: color 0.4s ease;
}

.button-text {
    font-size: 1.0rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    color: #00eaff;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.button-surge {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 255, 102, 0.6);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.button-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, transparent 0, transparent 0.3125rem, rgba(0, 234, 255, 0.3) 0.3125rem, rgba(0, 234, 255, 0.3) 0.375rem), repeating-linear-gradient(90deg, transparent 0, transparent 0.3125rem, rgba(0, 234, 255, 0.3) 0.3125rem, rgba(0, 234, 255, 0.3) 0.375rem);
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    z-index: 1;
}

/* Hover Effects */
.cta-button:hover {
    border-color: #00ff66;
    background: rgba(15, 28, 71, 0.95);
    box-shadow: 0 0 1.5rem rgba(0, 255, 102, 0.9), 0 0 3rem rgba(0, 234, 255, 0.7);
    animation: none;
}

    .cta-button:hover .whatsapp-icon {
        color: #00ff66;
    }

    .cta-button:hover .button-text {
        color: #00ff66;
    }

    .cta-button:hover .button-surge {
        animation: surgeExpandSquare 0.6s ease-out forwards;
    }

    .cta-button:hover .button-grid {
        animation: gridExpand 0.8s ease-out forwards;
    }


@keyframes borderPulse {

    0%, 100% {
        border-color: #00eaff;
        box-shadow: 0 0 0.625rem rgba(0, 234, 255, 0.6);
    }

    50% {
        border-color: #00ccff;
        box-shadow: 0 0 1.25rem rgba(0, 234, 255, 0.9);
    }
}

@keyframes surgeExpandSquare {
    0% {
        width: 0;
        height: 0;
        opacity: 0.9;
    }

    100% {
        width: 150%;
        height: 150%;
        opacity: 0;
    }
}

@keyframes gridExpand {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .cta {
        padding: 5rem 0;
    }

    .cta-title {
        margin-bottom: 1.25rem;
    }

    .cta-desc {
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 4rem 0;
    }

    .cta-button {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .cta {
        padding: 3.5rem 0;
    }

    .cta-desc {
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.875rem;
    }

    .button-text {
        font-size: clamp(0.75rem, 1.2vw + 0.25rem, 1rem);
    }

    .whatsapp-icon {
        font-size: clamp(0.875rem, 1.2vw + 0.25rem, 1.25rem);
    }

    @keyframes surgeExpandSquare {
        0% {
            width: 0;
            height: 0;
            opacity: 0.9;
        }

        100% {
            width: 120%;
            height: 120%;
            opacity: 0;
        }
    }
}


/* Services Section */
.services {
    position: relative;
    padding: 130px 0;
    background: linear-gradient(180deg, #1a0b2e, #0f1c47);
    font-family: 'Alegreya Sans SC', sans-serif;
    color: #f0f0f5;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 90px;
    z-index: 2;
}

.services-slabs {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    z-index: 2;
}

.service-slab {
    padding: 25px;
    background: rgba(15, 28, 71, 0.9);
    border: 2px solid rgba(0, 234, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .service-slab:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 0 20px rgb(0 234 255 / 32%), 0 0 30px rgb(255 0 204 / 28%);
        border-color: #ff00cc;
        background: rgb(15 28 71 / 78%);
    }

.slab-holo {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #00eaff, #ff00cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.8);
    animation: floatPulse 4s ease-in-out infinite;
}

    .slab-holo i {
        font-size: 32px;
        color: #1a0b2e;
    }

.slab-content {
    margin-top: 30px;
}

    .slab-content h3 {
        font-size: 22px;
        font-weight: 700;
        color: #f0f0f5;
        margin-bottom: 15px;
    }

    .slab-content p {
        font-size: 18px;
        line-height: 1.6;
        color: #d8e0ff;
    }

/* Animations */
@keyframes floatPulse {

    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 0 25px rgba(0, 234, 255, 0.8);
    }

    50% {
        transform: translateY(-10px);
        box-shadow: 0 0 35px rgba(0, 234, 255, 0.6);
    }
}

/* Responsive */
@media (max-width: 576px) {
    .services {
        padding: 60px 0;
    }

    .services-slabs {
        grid-template-columns: 1fr;
    }

    .service-slab:hover {
        transform: none;
        box-shadow: 0 0 20px rgba(0, 234, 255, 0.3);
        border-color: rgba(0, 234, 255, 0.5);
        background: rgba(15, 28, 71, 0.9);
    }

    .slab-holo {
        animation: none;
    }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/

.pricing {
    padding: 150px 0;
    background: linear-gradient(180deg, #1a0b2e, #0f1c47);
    font-family: 'Alegreya Sans SC', sans-serif;
    color: #f0f0f5;
    overflow: hidden;
    position: relative;
}


.pricing-header {
    text-align: center;
    margin-bottom: 90px;
    z-index: 2;
}


.pricing-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #ff00cc;
    letter-spacing: 3px;
    margin-top: 20px;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 2;
}

.pricing-tier {
    padding: 40px;
    background: rgba(15, 28, 71, 0.9);
    border: 2px solid rgba(0, 234, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    /* Consolidated transitions */
    position: relative;
}

    .pricing-tier.featured {
        border-color: #ff00cc;
        box-shadow: 0 0 35px rgba(255, 0, 204, 0.5);
        transform: scale(1.05);
    }

    .pricing-tier:hover {
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 0 50px rgba(0, 234, 255, 0.8);
        border-color: #00eaff;
    }

    .pricing-tier.featured:hover {
        box-shadow: 0 0 60px rgba(255, 0, 204, 0.8);
        border-color: #ff00cc;
    }

.tier-header h3 {
    font-size: 28px;
    color: #f0f0f5;
    margin-bottom: 15px;
}

.tier-price {
    font-size: 21px;
    color: #d8e0ff;
}

    .tier-price span {
        font-size: 40px;
        color: #00eaff;
        font-weight: 700;
    }

.pricing-tier.featured .tier-price span {
    color: #ff00cc;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

    .tier-features li {
        font-size: 19px;
        color: #d8e0ff;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
    }

        .tier-features li i {
            margin-right: 10px;
            font-size: 18px;
        }

        .tier-features li .fa-check {
            color: #00ff66;
        }

        .tier-features li .fa-times {
            color: #ff3366;
        }


/* Responsive */
@media (max-width: 968px) {
    .pricing {
        padding: 120px 0;
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .pricing-header {
        margin-bottom: 70px;
    }

    .neon-title {
        font-size: 48px;
    }

    .pricing-subtitle {
        font-size: 20px;
    }

    .pricing-tier.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 100px 0;
    }

    .neon-title {
        font-size: 40px;
    }

    .pricing-subtitle {
        font-size: 18px;
    }

    .pricing-tier {
        padding: 30px;
    }

    .tier-header h3 {
        font-size: 24px;
    }

    .tier-price span {
        font-size: 36px;
    }

    .tier-features li {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .pricing {
        padding: 80px 0;
    }

    .neon-title {
        font-size: 32px;
    }

    .pricing-subtitle {
        font-size: 16px;
    }

    .pricing-tiers {
        gap: 30px;
    }

    .pricing-tier {
        padding: 25px;
    }

    .tier-header h3 {
        font-size: 22px;
    }

    .tier-price span {
        font-size: 32px;
    }

    .tier-features li {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #1a0b2e, #0f1c47);
    font-family: 'Alegreya Sans SC', sans-serif;
    color: #f0f0f5;
    overflow: hidden;
}


.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}


.testimonials-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #ff00cc;
    text-transform: uppercase;
    letter-spacing: 3px;
    will-change: opacity, transform;
    /* GPU hint */
}

.testimonials-carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.carousel-track {
    display: flex;
    width: calc(320px * 8);
    animation: carouselScroll 25s linear infinite;
    will-change: transform;
    /* GPU hint */
}

.testimonials-carousel:hover .carousel-track {
    animation-play-state: paused;
}

.testimonial-item {
    flex: 0 0 320px;
    padding: 25px;
    background: rgba(15, 28, 71, 0.9);
    border: 2px solid rgba(0, 234, 255, 0.5);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.3);
    margin-right: 70px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    /* Consolidated transitions */
    position: relative;
    height: 250px;
}

    .testimonial-item:hover {
        transform: scale(1.05) rotate(2deg);
        box-shadow: 0 0 40px rgba(0, 234, 255, 0.7);
        border-color: #ff00cc;
    }


.testimonial-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #d8e0ff;
    margin-bottom: 15px;
    font-style: italic;
    position: relative;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .testimonial-text::before,
    .testimonial-text::after {
        content: '"';
        position: absolute;
        font-size: 40px;
        color: #00eaff;
        opacity: 0.3;
    }

    .testimonial-text::before {
        top: -10px;
        left: -10px;
    }

    .testimonial-text::after {
        bottom: -20px;
        right: -10px;
    }

.testimonial-author {
    text-align: right;
}

    .testimonial-author h4 {
        font-size: 18px;
        font-weight: 700;
        color: #f0f0f5;
        margin-bottom: 5px;
    }

    .testimonial-author .author-role {
        font-size: 16px;
        color: #b0c4ff;
    }

/* Carousel Animation */
@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-320px * 4));
    }
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .testimonials {
        padding: 80px 0;
    }

    .neon-title {
        font-size: 48px;
    }

    .testimonials-subtitle {
        font-size: 20px;
    }

    .carousel-track {
        width: calc(280px * 8);
    }

    .testimonial-item {
        flex: 0 0 280px;
        margin-right: 15px;
        height: 230px;
    }
}

@media (max-width: 768px) {
    .carousel-track {
        width: calc(260px * 8);
    }

    .testimonial-item {
        flex: 0 0 260px;
        padding: 20px;
        height: 220px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .testimonial-author h4 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 60px 0;
    }

    .neon-title {
        font-size: 34px;
    }

    .testimonials-subtitle {
        font-size: 16px;
    }

    .carousel-track {
        width: calc(240px * 8);
    }

    .testimonial-item {
        flex: 0 0 240px;
        padding: 15px;
        margin-right: 30px;
        height: 200px;
    }

    .testimonial-text {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
/* FAQ Section */
.faq {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #1a0b2e, #0f1c47);
    font-family: 'Alegreya Sans SC', sans-serif;
    color: #f0f0f5;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #ff00cc;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    position: relative;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(15, 28, 71, 0.9);
    border: 2px solid rgba(0, 234, 255, 0.5);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .faq-question span {
        font-size: 21px;
        font-weight: 600;
        color: #f0f0f5;
    }

    .faq-question i {
        font-size: 20px;
        color: #00eaff;
        transition: transform 0.3s ease;
    }

    .faq-question:hover {
        border-color: #ff00cc;
        box-shadow: 0 0 15px rgba(255, 0, 204, 0.5);
    }

    .faq-question::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 200%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 234, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .faq-question:hover::before {
        left: 100%;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(15, 28, 71, 0.95);
    border-radius: 0 0 10px 10px;
    transition: max-height 0.4s ease;
}

    .faq-answer p {
        padding: 23px;
        font-size: 16px;
        line-height: 1.6;
        color: #d8e0ff;
        margin: 0;
    }

    .faq-answer a {
        color: #00eaff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .faq-answer a:hover {
            color: #ff00cc;
        }

.faq-toggle:checked + .faq-question {
    border-color: #ff00cc;
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.6);
}

    .faq-toggle:checked + .faq-question i {
        transform: rotate(180deg);
    }

.faq-toggle:checked ~ .faq-answer {
    max-height: 200px;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .faq {
        padding: 80px 0;
    }

    .faq-subtitle {
        font-size: 18px;
    }

    .faq-question span {
        font-size: 19px;
    }

    .faq-answer p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-answer p {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .faq {
        padding: 50px 0;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-question::before,
    .faq-question:hover::before {
        display: none;
    }

    /* Remove shine animation */
    .faq-question:hover,
    .faq-answer a:hover {
        border-color: inherit;
        box-shadow: none;
        color: #00eaff;
    }

    /* Remove hover effects */
}

/*--------------------------------------------------------------
# Contact Us Section
--------------------------------------------------------------*/

.contact {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #1a0b2e, #0f1c47);
    font-family: 'Alegreya Sans SC', sans-serif;
    color: #f0f0f5;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}


.contact-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #ff00cc;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-form {
    flex: 1;
    max-width: 550px;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    position: relative;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px 18px;
        background: rgba(15, 28, 71, 0.95);
        border: 2px solid #00eaff;
        border-radius: 8px;
        font-size: 15px;
        color: #f0f0f5;
        font-family: 'Alegreya Sans SC', sans-serif;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #ff00cc;
            box-shadow: 0 0 15px rgba(255, 0, 204, 0.5);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #b0c4ff;
            opacity: 0.8;
        }


.submit-btn {
    width: 100%;
    padding: 15px 0;
    background: linear-gradient(90deg, #00eaff, #ff00cc);
    color: #1a0b2e;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    .submit-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 20px rgba(0, 234, 255, 0.7), 0 0 30px rgba(255, 0, 204, 0.5);
    }


.button-area span {
    text-align: center;
    margin-top: 20px;
}

.contact-details {
    flex: 1;
    max-width: 400px;
}

.details-card {
    background: rgba(15, 28, 71, 0.95);
    border: 2px solid #00eaff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.3);
}

    .details-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 30px rgba(0, 234, 255, 0.5);
    }

.details-header {
    margin-bottom: 25px;
}

    .details-header h3 {
        font-size: 28px;
        font-weight: 700;
        color: #00eaff;
    }

.details-subtitle {
    font-size: 17px;
    color: #b0c4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.details-content {
    flex-grow: 1;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .detail-item i {
        font-size: 20px;
        color: #ff00cc;
        margin-right: 15px;
        transition: transform 0.3s ease;
    }

    .detail-item:hover i {
        transform: scale(1.2);
    }

    .detail-item p {
        font-size: 18px;
        color: #f0f0f5;
        margin: 0;
    }

    .detail-item a {
        color: #f0f0f5;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .detail-item a:hover {
            color: #ff00cc;
        }

.social-orbit {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    position: relative;
}

    .social-orbit::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, #00eaff, transparent);
        opacity: 0.5;
    }

.orbit-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a0b2e;
    border: 2px solid #00eaff;
    border-radius: 50%;
    color: #00eaff;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    /* Consolidated transitions */
    position: relative;
    z-index: 1;
}

    .orbit-link i {
        font-size: 18px;
    }

    .orbit-link:hover {
        background: #00eaff;
        color: #1a0b2e;
        transform: rotate(360deg);
        box-shadow: 0 0 15px rgba(0, 234, 255, 0.8);
    }

    .orbit-link.whatsapp:hover {
        background: #099709;
        border-color: #189011;
    }

    .orbit-link.facebook:hover {
        background: #3B5998;
        border-color: #3B5998;
    }

    .orbit-link.instagram:hover {
        background: #E1306C;
        border-color: #E1306C;
    }

    .orbit-link.linkedin:hover {
        background: #0077B5;
        border-color: #0077B5;
    }

/* Animations */


@keyframes neonFlicker {
    0% {
        text-shadow: 0 0 12px rgb(0 234 255 / 34%), 0 0 25px rgb(255 0 204 / 38%);
    }

    100% {
        text-shadow: 0 0 15px rgb(0 234 255 / 50%), 0 0 30px rgb(255 0 204 / 50%);
    }
}


/* Responsive Adjustments */
@media (max-width: 968px) {
    .contact {
        padding: 80px 0;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .neon-title {
        font-size: 48px;
    }

    .contact-subtitle {
        font-size: 18px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form,
    .contact-details {
        max-width: 100%;
    }

    .details-header {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .neon-title {
        font-size: 40px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 12px 16px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 12px 0;
    }

    .details-header h3 {
        font-size: 24px;
    }

    .detail-item p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 60px 0;
    }

    .neon-title {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 14px;
    }


    .social-orbit {
        gap: 15px;
    }

    .orbit-link {
        width: 40px;
        height: 40px;
    }

        .orbit-link i {
            font-size: 16px;
        }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    position: relative;
    background: linear-gradient(180deg, #0f1c47, #1a0b2e);
    padding: 80px 0 40px;
    font-family: 'Alegreya Sans SC', sans-serif;
    color: #f0f0f5;
    overflow: hidden;
    will-change: transform;
    /* GPU hint */
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-container {
    position: relative;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 34px;
    font-weight: 900;
    color: #00eaff;
    text-shadow: 0 0 12px rgba(0, 234, 255, 0.8);
    letter-spacing: 2px;
    transition: transform 0.3s ease;
    will-change: transform;
    /* GPU hint */
}

.logo-container:hover .footer-logo {
    transform: scale(1.1) rotate(2deg);
}

.footer-tagline {
    font-size: 16px;
    color: #ff00cc;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgb(24 21 56);
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(242 146 222 / 93%);
    transition: transform 0.3s ease;
    will-change: transform;
    /* GPU hint */
}

    .footer-tagline:hover {
        transform: translateX(5px);
    }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a0b2e;
    border: 2px solid #00eaff;
    border-radius: 50%;
    color: #00eaff;
    text-decoration: none;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    /* Consolidated transitions */
    overflow: hidden;
    will-change: transform, box-shadow;
    /* GPU hint */
}

    .social-link i {
        font-size: 18px;
        z-index: 1;
    }

    .social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 200%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 0, 204, 0.3), transparent);
        transition: left 0.4s ease;
        will-change: left;
        /* GPU hint */
    }

    .social-link:hover {
        transform: scale(1.15);
        box-shadow: 0 0 15px rgba(0, 234, 255, 0.8);
        border-color: #ff00cc;
    }

        .social-link:hover::before {
            left: 100%;
        }

    .social-link[data-platform="whatsapp"]:hover {
        background: #24920c;
        border-color: #117607;
        color: #fff;
    }

    .social-link[data-platform="facebook"]:hover {
        background: #3B5998;
        border-color: #3B5998;
        color: #fff;
    }

    .social-link[data-platform="instagram"]:hover {
        background: #E1306C;
        border-color: #E1306C;
        color: #fff;
    }

    .social-link[data-platform="linkedin"]:hover {
        background: #0077B5;
        border-color: #0077B5;
        color: #fff;
    }

.footer-nav {
    text-align: left;
    position: relative;
}

.nav-container {
    position: relative;
    z-index: 1;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    color: #ff00cc;
    margin-bottom: 20px;
    position: relative;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 40px;
        height: 2px;
        background: #00eaff;
        box-shadow: 0 0 10px rgba(0, 234, 255, 0.8);
    }

.nav-links {
    list-style: none;
    padding: 0;
}

    .nav-links li {
        margin-bottom: 12px;
    }

    .nav-links a {
        font-size: 18px;
        color: #d8e0ff;
        text-decoration: none;
        transition: color 0.3s ease, transform 0.3s ease;
        will-change: transform;
        /* GPU hint */
    }

        .nav-links a:hover {
            color: #00eaff;
            transform: translateX(5px);
        }

/* Contact Info */
.footer-contact {
    text-align: left;
}

.contact-info {
    list-style: none;
    padding: 0;
}

    .contact-info li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        font-size: 18px;
        color: #d8e0ff;
    }

    .contact-info i {
        font-size: 18px;
        color: #00eaff;
        margin-right: 12px;
        transition: transform 0.3s ease;
        will-change: transform;
        /* GPU hint */
    }

    .contact-info li:hover i {
        transform: scale(1.2);
    }

    .contact-info a {
        color: #d8e0ff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-info a:hover {
            color: #ff00cc;
        }

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    position: relative;
}

    .footer-bottom p {
        font-size: 17px;
        color: #b0c4ff;
        margin: 0;
    }

.footer-neon-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00eaff, #ff00cc, transparent);
    margin: 15px auto 0;
    animation: neonFlow 4s linear infinite;
    will-change: transform;
    /* GPU hint */
}


@keyframes neonFlow {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-links li,
    .contact-info li {
        margin-bottom: 10px;
    }

    .contact-info i {
        margin-right: 10px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 50px 0 20px;
    }

    .footer-logo {
        font-size: 28px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-tagline,
    .nav-links a,
    .contact-info li {
        font-size: 14px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

        .social-link i {
            font-size: 16px;
        }

    .footer-neon-line {
        width: 150px;
    }
}


@keyframes neonFlicker {

    0%, 100% {
        text-shadow: 0 0 12px rgb(0 234 255 / 48%), 0 0 25px rgb(255 0 204 / 23%);
    }

    50% {
        text-shadow: 0 0 8px rgb(0 234 255 / 42%), 0 0 15px rgb(255 0 204 / 22%);
    }
}

@keyframes pulseGlow {

    0%, 100% {
        transform: rotate(20deg) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: rotate(20deg) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes neonPulse {
    0% {
        text-shadow: 0 0 0.9375rem rgb(0 234 255 / 50%), 0 0 1.875rem rgb(153 77 208 / 67%);
    }

    100% {
        text-shadow: 0 0 1.25rem rgb(0 234 255 / 40%), 0 0 2.5rem rgb(144 85 210 / 66%);
    }
}
