:root {
    --primary: #8A2BE2;
    /* Vibrant purple */
    --secondary: #00F5FF;
    /* Electric cyan */
    --dark: #0F0F1B;
    /* Deep space blue */
    --light: #F0F8FF;
    /* Alice blue */
    --accent: #FF2D75;
    /* Neon pink */
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: white;
    overflow-x: hidden;
}

/* navbar */
.pixel-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scrolled {
    padding: 10px 0;
    background: rgba(15, 15, 27, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Logo with Particle Effect */
.logo-container {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-main {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.logo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: visible;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.4;
    animation: float 4s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-50px) translateX(20px);
        opacity: 0;
    }
}

/* Navigation Links with Hover Effect */
.nav-links {
    display: flex;
    gap: 25px;
}

.img-logo{
    height: 70px;
}

.nav-item {
    position: relative;
    padding: 10px 0;
}

.nav-link {
    color: var(--light) !important;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    background: none;
    border: none;
    font-size: 1.1rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: white !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Animated CTA Button */
.nav-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.5s;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
    z-index: 1;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    transition: all 0.5s;
    z-index: -1;
    border-radius: 50px;
}

.nav-cta:hover::before {
    left: 0;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
}

/* Mobile Menu Toggle (Holographic) */
.mobile-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-line {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 4px 0;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    border-radius: 3px;
}

.mobile-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--accent);
}

.mobile-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--accent);
}

/* Mobile Menu (Neon Style) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    clip-path: circle(0% at 90% 5%);
    transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.mobile-menu.open {
    clip-path: circle(150% at 90% 5%);
}

.mobile-menu .nav-link {
    font-size: 1.5rem;
    margin: 15px 0;
    position: relative;
}

.mobile-menu .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.mobile-menu .nav-link:hover::after {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
    }
    .img-logo{
        height: 70px;
    }
}

@media (min-width: 992px) {
    .mobile-nav {
        display: none;
    }
}

/* ---------------------------------------------------------- */

/* hero section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 15, 27, 0.9), rgba(15, 15, 27, 0.95));
}

/* Animated Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 15s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    bottom: -200px;
    right: -100px;
    animation-delay: 2s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 50%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 40px);
    }
}

/* Digital Grid Overlay */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

/* Content Styling */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(110, 69, 226, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* Animated CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    transition: all 0.5s;
    z-index: -1;
    border-radius: 50px;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(110, 69, 226, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(136, 211, 206, 0.4);
}

/* Floating Tech Icons */
.tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.tech-icon {
    position: absolute;
    opacity: 0.3;
    animation: float-tech 20s infinite linear;
}

@keyframes float-tech {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* Hero Image/Visual */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    animation: float-image 8s infinite ease-in-out;
}

@keyframes float-image {

    0%,
    100% {
        transform: translateY(0) rotateX(5deg) rotateY(5deg);
    }

    50% {
        transform: translateY(-20px) rotateX(-5deg) rotateY(-5deg);
    }
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    opacity: 0.3;
    border-radius: 20px;
    z-index: -1;
    transform: translateZ(-30px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* --------------------------------------------------------- */

/* trust logo slider */
.trust-section {
    display: none;   /*remove this to bring back */
    background: rgba(15, 15, 27, 0.7);
    backdrop-filter: blur(5px);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-heading h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 15px auto 0;
    border-radius: 3px;
}

/* Animated Logo Slider */
.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll 40s linear infinite;
    width: calc(250px * 12);
}

.logo-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.logo-slide::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(15, 15, 27, 0.8) 0%,
            rgba(15, 15, 27, 0) 50%,
            rgba(15, 15, 27, 0.8) 100%);
    z-index: 2;
}

.logo-slide:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

.logo-slide img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-slide:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
    }
}

/* Gradient Overlays */
.gradient-overlay-left,
.gradient-overlay-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.gradient-overlay-left {
    left: 0;
    background: linear-gradient(90deg, var(--dark), transparent);
}

.gradient-overlay-right {
    right: 0;
    background: linear-gradient(270deg, var(--dark), transparent);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .logo-track {
        gap: 40px;
        animation-duration: 30s;
    }

    .logo-slide {
        width: 150px;
        height: 80px;
    }
}

/* ------------------------------------------------------------------ */

/* service overview */
.services-section {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* 3D Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(110, 69, 226, 0.1) 0%, rgba(110, 69, 226, 0) 70%);
    z-index: -1;
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
    transform: translate(25%, 25%);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
    margin-bottom: 25px;
    font-size: 30px;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.4);
}

.service-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 30px;
}

.service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.service-feature i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 0.7rem;
}

.service-cta {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.service-cta::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.service-cta:hover::after {
    width: 100%;
}

.card-inner {
  transition: transform 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
  transform-style: preserve-3d;
  will-change: transform;
}

/* Floating Background Elements */
.service-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    z-index: 0;
}

.bg-element-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: 5%;
}

.bg-element-2 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    bottom: -10%;
    right: 5%;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ------------------------------------------------ */

/* about us */
/* About Split Section */
    .about-split-section {
        padding: 100px 0;
        background: var(--dark);
        position: relative;
        overflow: hidden;
    }
    
    /* Section Title */
    .section-title {
        font-family: 'Orbitron', sans-serif;
        font-weight: 800;
        background: linear-gradient(45deg, var(--secondary), var(--primary));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 20px;
        font-size: 2.3rem;
    }
    
    .section-subtitle {
        color: rgba(255,255,255,0.7);
        font-size: 1.1rem;
        margin-bottom: 40px;
        max-width: 500px;
    }
    
    /* Image Styling */
    .about-split-image {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }
    
    .about-split-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.8s ease;
    }
    
    .about-split-image:hover img {
        transform: scale(1.03);
    }
    
    .image-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(110,69,226,0.3) 0%, transparent 50%);
        z-index: 1;
        pointer-events: none;
    }
    
    /* Feature Items */
    .about-features {
        margin: 40px 0;
    }
    
    .feature-item {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        align-items: flex-start;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(45deg, var(--primary), var(--accent));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .feature-content h3 {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .feature-content p {
        color: rgba(255,255,255,0.7);
        font-size: 0.95rem;
        margin: 0;
    }
    
    /* CTA Button */
    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 30px;
        background: linear-gradient(45deg, var(--primary), var(--accent));
        color: white;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, var(--accent), var(--primary));
        transition: all 0.5s ease;
        z-index: -1;
    }
    
    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(110,69,226,0.4);
    }
    
    .cta-button:hover::before {
        left: 0;
    }
    
    .pulse-effect {
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(110,69,226,0.4); }
        70% { box-shadow: 0 0 0 15px rgba(110,69,226,0); }
        100% { box-shadow: 0 0 0 0 rgba(110,69,226,0); }
    }
    
    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .about-split-section {
            padding: 70px 0;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
        
        .feature-item {
            margin-bottom: 25px;
        }
    }
    
    @media (max-width: 767.98px) {
        .about-split-image {
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 1.6rem;
        }
        
        .section-subtitle {
            font-size: 1rem;
        }
        
        .feature-icon {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
    }

/* ------------------------------------------------------------- */

/* why choose us */
.why-choose-section {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Holographic Cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(110, 69, 226, 0.1) 0%, rgba(110, 69, 226, 0) 70%);
    z-index: -1;
    transition: all 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-card:hover::before {
    transform: translate(25%, 25%);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
    margin-bottom: 25px;
    font-size: 25px;
    color: white;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotateY(180deg);
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.4);
}

.benefit-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Animated Background Elements */
.bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
}

.element-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: 5%;
    animation: float 15s infinite ease-in-out;
}

.element-2 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    bottom: -10%;
    right: 5%;
    animation: float 18s infinite ease-in-out reverse;
}

.element-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 50%;
    left: 70%;
    animation: float 12s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 40px);
    }
}

/* Comparison Table */
.comparison-section {
    margin-top: 100px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.comparison-title {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--secondary);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table td {
    color: rgba(255, 255, 255, 0.7);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check-mark {
    color: var(--secondary);
    font-size: 1.2rem;
}

.x-mark {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .comparison-section {
        padding: 40px 20px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }
}

/* ------------------------------------------------- */

/* testimonials */
/* Testimonial Section */
    .testimonial-section {
        padding: 80px 0;
        background: #0a0a0a;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: #fff;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Testimonial Grid */
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    /* Testimonial Card */
    .testimonial-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 30px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .quote-icon {
        color: #6e45e2;
        font-size: 2rem;
        opacity: 0.5;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 25px;
        font-style: italic;
    }
    
    /* Client Info */
    .client-info {
        display: flex;
        align-items: center;
    }
    
    .client-image {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
        border: 2px solid #6e45e2;
    }
    
    .client-name {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .client-role {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .testimonial-grid {
            grid-template-columns: 1fr;
        }
        
        .section-title {
            font-size: 2rem;
        }
    }

/* ------------------------------------------ */

/* cta */
.cta-section {
    background: linear-gradient(135deg, rgba(15, 15, 27, 0.95), rgba(15, 15, 27, 0.98));
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animated Grid Background */
.cta-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    animation: gridMove 40s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1000px 1000px;
    }
}

/* Floating Elements */
.cta-floating {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    filter: blur(40px);
    opacity: 0.15;
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    top: 60%;
    left: 70%;
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 30px);
    }
}

/* CTA Content */
.cta-container {
    position: relative;
    z-index: 3;
    text-align: center;
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Animated CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.cta-primary {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.3);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    transition: all 0.5s;
    z-index: -1;
    border-radius: 50px;
}

.cta-primary:hover::before {
    left: 0;
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(110, 69, 226, 0.5);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid var(--secondary);
}

.cta-secondary:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(136, 211, 206, 0.3);
}

/* Animated Phone Mockup */
.cta-visual {
    position: relative;
    width: 300px;
    height: 500px;
    margin: 60px auto 0;
    perspective: 1000px;
}

.phone-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1601784551446-20c9e07cdbdb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=736&q=80') center/cover;
    border-radius: 40px;
    border: 10px solid var(--dark);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    animation: floatPhone 8s infinite ease-in-out;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(110, 69, 226, 0.3), rgba(255, 45, 117, 0.2));
    border-radius: 30px;
    z-index: 1;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0) rotateX(5deg) rotateY(5deg);
    }

    50% {
        transform: translateY(-20px) rotateX(-5deg) rotateY(-5deg);
    }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    opacity: 0.1;
    animation: floatIcon 20s infinite linear;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
    }

    .cta-visual {
        width: 250px;
        height: 450px;
    }
}

/* --------------------------------------------------------- */

/* contact */
.contact-section {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Floating Background Elements */
.contact-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    bottom: -10%;
    right: 5%;
    animation-delay: 3s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 50%;
    left: 70%;
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 40px);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.contact-form:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(136, 211, 206, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    transition: all 0.5s;
    z-index: -1;
    border-radius: 50px;
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.4);
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.contact-info:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.info-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(136, 211, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: white;
}

/* Map */
.contact-map {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(50%) contrast(1.2) brightness(0.8);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {

    .contact-form,
    .contact-info {
        padding: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .info-item {
        flex-direction: column;
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* ----------------------------------------------- */

/* footer */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Background Elements */
.footer-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
}

.footer-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.footer-shape-2 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    bottom: -200px;
    right: -100px;
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: white;
}

/* Footer Links */
.footer-links h3 {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 20px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(136, 211, 206, 0.3);
}

.newsletter-btn {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border: none;
    border-radius: 50px;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(110, 69, 226, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

/* ---------------------------------------------------- */


/* tect stack */
.tech-section {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Tech Stack Categories */
.tech-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tech-category {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-category:hover,
.tech-category.active {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.3);
}

/* Tech Stack Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(110, 69, 226, 0.1) 0%, rgba(110, 69, 226, 0) 70%);
    z-index: -1;
    transition: all 0.5s ease;
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.tech-item:hover::before {
    transform: translate(25%, 25%);
}

.tech-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: scale(1.2);
}

.tech-icon img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon img {
    filter: grayscale(0) brightness(1);
}

.tech-name {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.tech-category-label {
    color: var(--secondary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Background Elements */
.tech-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.tech-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.tech-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.tech-shape-2 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    bottom: -10%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 40px);
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 15px;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
    }

    .tech-name {
        font-size: 0.85rem;
    }
}

/* ------------------------------------------------- */

/* chat bot */
/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--dark);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.chatbot-container.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chatbot-header {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-title i {
    font-size: 1.2rem;
}

.chatbot-title h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chatbot-close-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chatbot-message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chatbot-response {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 5px;
    align-self: flex-start;
    color: white;
}

.chatbot-query {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-bottom-right-radius: 5px;
    align-self: flex-end;
    color: white;
}

.chatbot-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.chatbot-text-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.chatbot-text-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chatbot-send-btn {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    border: none;
    box-shadow: 0 5px 20px rgba(110, 69, 226, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    transition: all 0.3s ease;
}

.chatbot-toggle-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 576px) {
    .chatbot-container {
        width: 90%;
        height: 70vh;
        right: 5%;
        bottom: 80px;
    }
}

/* ------------------------------------------------------------------ */
/* WhatsApp Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    /* WhatsApp brand color */
    color: white;
    text-align: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    margin-top: 2px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Adjust position if chatbot is also present */
@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* If both chatbot and WhatsApp buttons are present */
    .chatbot-toggle-btn~.whatsapp-float {
        left: 10px;
        bottom: 25px;
        /* right: 80px; */
    }

    .whatsapp-float i {
        margin-top: 0px;
    }
}

/* --------------------------------------- */
/* --------------------------------------------------- */

/* cursor */
/* Add this to your existing CSS */
body {
    cursor: none;
    overflow-x: hidden;
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: conic-gradient(#6e45e2,
            #88d3ce,
            #ff7e5f,
            #6e45e2);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    animation: rotate 2s linear infinite;
}

.cursor-trail {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(110, 69, 226, 0.8) 0%,
            rgba(136, 211, 206, 0.5) 50%,
            transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* --------------------------------------------------------- */
/* navbar edit */
/* Navigation Section Styles */
.navigation-section {
    position: relative;
    z-index: 1000;
}

/* CTA Dropdown Styles */
.cta-dropdown {
    position: relative;
    display: inline-block;
}

.cta-options {
    position: absolute;
    right: 0;
    top: 100%;
    width: 180px;
    background: rgba(15, 15, 27, 0.95);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.cta-dropdown:hover .cta-options,
.cta-dropdown:focus-within .cta-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cta-option {
    display: block;
    padding: 8px 15px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.cta-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.call-option {
    color: var(--primary);
}

.whatsapp-option {
    color: #25D366;
}

.cta-option i {
    margin-right: 8px;
}

/* Mobile CTA Dropdown */
.mobile-cta-dropdown {
    margin-top: 20px;
    position: relative;
}

#mobileCtaOptions {
    display: none;
    margin-top: 10px;
    background: rgba(15, 15, 27, 0.95);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#mobileCtaOptions.show {
    display: block;
}