:root {
    --deep-purple: #4B0082;
    --royal-purple: #7A1FA2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --dark-bg: #0A0714;
    --glass-bg: rgba(75, 0, 130, 0.1);
    --glass-border: rgba(212, 175, 55, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #FFFFFF;
    color: #1a1a1a;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(10, 7, 20, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-container img {
    height: 70px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-container a:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--royal-purple), var(--gold));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.nav-menu a:hover::after {
    width: 100%;
}

.talk-to-us-btn {
    background: linear-gradient(135deg, var(--gold), #FFD700);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.talk-to-us-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.talk-to-us-btn i {
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Page Header */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 100px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(122, 31, 162, 0.2) 0%, transparent 50%);
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.page-header-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--white));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Section */
#hero {
    min-height: 90vh;
    padding-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
    position: relative;
    z-index: 2;
    align-items: center;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--gold), #FFD700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
    position: relative;
}

/* Animated Underline */
.animated-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: white;
    display: block;
}

.animated-underline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    animation: slideUnderline 2s ease-in-out infinite;
}

@keyframes slideUnderline {
    0% {
        left: -30%;
    }

    100% {
        left: 100%;
    }
}

/* Hero Shape Animation */
.hero-shape-animation {
    position: absolute;
    top: 0;
    right: -50px;
    width: 150px;
    height: 150px;
    opacity: 0.3;
    animation: floatShape 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
    }

    50% {
        transform: translateY(0) rotate(180deg);
    }

    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 600px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

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

.hero-stat .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.4rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.image-placeholder {
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
}

.certified-badge {
    position: absolute;
    bottom: -20px;
    right: 0;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.certified-badge i {
    font-size: 2rem;
    color: #10B981;
}

.certified-badge span {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceScroll 2s ease-in-out infinite;
}

.scroll-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.scroll-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    margin: 0;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes bounceScroll {

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

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--royal-purple), var(--deep-purple));
    color: var(--white);
    box-shadow: 0 5px 30px rgba(122, 31, 162, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), var(--royal-purple));
    transition: left 0.4s ease;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
}

/* About Home Section */
#about-home {
    background: #FFFFFF;
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

/* About Background Animation System */
.about-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Floating Tech Icons */
.floating-tech-icon {
    position: absolute;
    font-size: 4rem;
    color: #530587;
    opacity: 0.15;
    will-change: transform, opacity;
    animation: floatTechIcon 8s ease-in-out infinite;
    filter: blur(0.5px);
}

.floating-tech-icon:nth-child(1) {
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-tech-icon:nth-child(2) {
    animation-delay: 1.5s;
    animation-duration: 7s;
}

.floating-tech-icon:nth-child(3) {
    animation-delay: 3s;
    animation-duration: 9s;
}

.floating-tech-icon:nth-child(4) {
    animation-delay: 4.5s;
    animation-duration: 7.5s;
}

.floating-tech-icon:nth-child(5) {
    animation-delay: 2s;
    animation-duration: 8.5s;
}

.floating-tech-icon:nth-child(6) {
    animation-delay: 5s;
    animation-duration: 8s;
}

@keyframes floatTechIcon {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.15;
    }

    25% {
        transform: translateY(-30px) translateX(10px) rotate(3deg);
        opacity: 0.25;
    }

    50% {
        transform: translateY(-15px) translateX(-10px) rotate(-3deg);
        opacity: 0.20;
    }

    75% {
        transform: translateY(-25px) translateX(5px) rotate(2deg);
        opacity: 0.22;
    }
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    will-change: transform;
    animation: floatOrb 10s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    background: radial-gradient(circle, rgba(122, 95, 211, 0.4), rgba(122, 95, 211, 0));
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 400px;
    height: 400px;
    bottom: 15%;
    left: 5%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0));
    animation-delay: 3s;
    animation-duration: 12s;
}

.gradient-orb-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(122, 31, 162, 0.3), rgba(122, 31, 162, 0));
    animation-delay: 6s;
    animation-duration: 11s;
}

@keyframes floatOrb {

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

    33% {
        transform: translate(30px, -40px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    opacity: 0.08;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid #530587;
    top: 20%;
    right: 25%;
    animation: rotateGeometric 15s linear infinite;
}

.shape-hexagon {
    width: 120px;
    height: 70px;
    background: #D4AF37;
    position: relative;
    bottom: 25%;
    left: 20%;
    animation: rotateGeometric 20s linear infinite reverse;
}

.shape-hexagon::before {
    content: "";
    position: absolute;
    top: -35px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 35px solid #D4AF37;
}

.shape-hexagon::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 35px solid #D4AF37;
}

/* Glowing Icons */
.glow-icon {
    color: #D4AF37 !important;
    animation: pulseGlow 3s ease-in-out infinite !important;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.15;
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
        transform: scale(1);
    }

    50% {
        opacity: 0.30;
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
        transform: scale(1.1);
    }
}

/* Data Flow SVG */
.data-flow-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
}

/* Additional Geometric Shapes */
.shape-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #7A1FA2;
    opacity: 0.08;
    animation: rotateGeometric 12s linear infinite;
}

.shape-square {
    width: 90px;
    height: 90px;
    background: #D4AF37;
    opacity: 0.08;
    animation: rotateGeometric 18s linear infinite reverse;
    transform: rotate(45deg);
}

.shape-pentagon {
    width: 80px;
    height: 80px;
    background: #530587;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    opacity: 0.08;
    animation: rotateGeometric 14s linear infinite;
}

/* Parallax Classes for Icons */
.floating-tech-icon.parallax-slow {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-tech-icon.parallax-medium {
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-tech-icon.parallax-fast {
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes rotateGeometric {
    0% {
        transform: rotate(0deg) translateY(0);
        opacity: 0.08;
    }

    50% {
        transform: rotate(180deg) translateY(-20px);
        opacity: 0.12;
    }

    100% {
        transform: rotate(360deg) translateY(0);
        opacity: 0.08;
    }
}

/* About to Services Section Transition */
#about-home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #F9FAFB);
    pointer-events: none;
    z-index: 1;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    transform: none;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    text-align: center;
    z-index: 5;
}

.badge-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.badge-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.about-content {
    padding-left: 2rem;
}

.about-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #530587;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(122, 95, 211, 0.1);
    border-radius: 30px;
}

.about-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-purple {
    color: #530587;
}

.text-gold {
    color: #D4AF37;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(122, 95, 211, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(122, 95, 211, 0.1);
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: rgba(122, 95, 211, 0.1);
    border-color: #530587;
    transform: translateY(-5px);
}

.about-feature i {
    font-size: 2rem;
    color: #530587;
    margin-top: 0.25rem;
}

/* Individual about feature icon colors */
.about-feature:nth-child(1) i {
    color: #D4AF37; /* Gold */
}

.about-feature:nth-child(2) i {
    color: #530587; /* Purple */
}

.about-feature:nth-child(3) i {
    color: #10B981; /* Green */
}

.about-feature:nth-child(4) i {
    color: #3B82F6; /* Blue */
}

.about-feature:nth-child(5) i {
    color: #F59E0B; /* Orange */
}

.about-feature:nth-child(6) i {
    color: #EF4444; /* Red */
}

.about-feature h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.about-feature p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 1.5s;
}

.floating-icon:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Section Styles */
section {
    padding: 6rem 5%;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Section Header Decorative Icon */
.section-header-icon {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    opacity: 0.25;
    z-index: 0;
    animation: iconPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes iconPulse {
    0%, 100% {
        opacity: 0.25;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.35;
        transform: translateY(-50%) scale(1.05);
    }
}

/* Responsive icon sizing */
@media (max-width: 1200px) {
    .section-header-icon {
        right: 3%;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-header-icon {
        display: none;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Services Section - 2x3 Grid */
#services {
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(122, 95, 211, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Services Animated Background - Cable Network */
.services-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.cables-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
}

/* Cable Paths - Initial State (Chaotic/Unstructured) */
.cable {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    opacity: 0;
    will-change: stroke-dashoffset, opacity, d;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 2s cubic-bezier(0.4, 0, 0.2, 1),
        d 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cable Paths - Structured State (Triggered by Scroll) */
#services.cables-structured .cable {
    stroke-dashoffset: 0;
    opacity: 1;
}

/* Transform chaotic curves to straight horizontal lines */
#services.cables-structured .cable-1 {
    d: path("M0,250 L1400,250");
    transition-delay: 0s;
}

#services.cables-structured .cable-2 {
    d: path("M0,350 L1400,350");
    transition-delay: 0.2s;
}

#services.cables-structured .cable-3 {
    d: path("M0,450 L1400,450");
    transition-delay: 0.4s;
}

#services.cables-structured .cable-4 {
    d: path("M0,200 L1400,200");
    transition-delay: 0.1s;
}

#services.cables-structured .cable-5 {
    d: path("M0,550 L1400,550");
    transition-delay: 0.3s;
}

/* Network Nodes - Initial State */
.network-node {
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Network Nodes - Structured State */
#services.cables-structured .network-node {
    opacity: 0.6;
    transform: scale(1);
}

#services.cables-structured .node-1 {
    transition-delay: 1s;
    animation: pulseNode 2s ease-in-out infinite;
    animation-delay: 1s;
}

#services.cables-structured .node-2 {
    transition-delay: 1.2s;
    animation: pulseNode 2s ease-in-out infinite;
    animation-delay: 1.2s;
}

#services.cables-structured .node-3 {
    transition-delay: 1.4s;
    animation: pulseNode 2s ease-in-out infinite;
    animation-delay: 1.4s;
}

/* Enhanced Network Nodes with Glow */
.network-node {
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}

@keyframes pulseNode {

    0%,
    100% {
        r: 5;
        opacity: 0.6;
        filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
    }

    50% {
        r: 8;
        opacity: 0.9;
        filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.9));
    }
}

/* Floating Cable Icons - Initial State */
.floating-cable-icon {
    position: absolute;
    font-size: 3rem;
    color: #530587;
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* Floating Cable Icons - Structured State */
#services.cables-structured .floating-cable-icon {
    opacity: 0.15;
    animation: floatCableIcon 6s ease-in-out infinite;
}

#services.cables-structured .floating-cable-icon:nth-child(1) {
    transition-delay: 1.5s;
    animation-delay: 0s;
}

#services.cables-structured .floating-cable-icon:nth-child(2) {
    transition-delay: 1.7s;
    animation-delay: 2s;
}

#services.cables-structured .floating-cable-icon:nth-child(3) {
    transition-delay: 1.9s;
    animation-delay: 4s;
}

@keyframes floatCableIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(5deg);
    }

    50% {
        transform: translateY(-8px) rotate(-5deg);
    }

    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* Glowing Service Icons */
.glow-service-icon {
    color: #D4AF37 !important;
    animation: pulseGlowService 3.5s ease-in-out infinite !important;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

@keyframes pulseGlowService {

    0%,
    100% {
        opacity: 0.15;
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
        transform: scale(1);
    }

    50% {
        opacity: 0.28;
        filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.9));
        transform: scale(1.12);
    }
}

/* Parallax Classes for Service Icons */
.floating-cable-icon.parallax-slow {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-cable-icon.parallax-medium {
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-cable-icon.parallax-fast {
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Ensure content stays on top */
.section-title,
.services-grid-2x3,
.cta-center {
    position: relative;
    z-index: 1;
}

.services-grid-2x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card,
.service-card-detailed {
    background: white;
    border: 1px solid rgba(122, 95, 211, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card::before,
.service-card-detailed::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card:hover,
.service-card-detailed:hover {
    transform: translateY(-10px);
    border-color: #530587;
    box-shadow: 0 15px 50px rgba(122, 95, 211, 0.2);
}

.service-card i,
.service-card-detailed i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--royal-purple), var(--gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.service-card:hover i,
.service-card-detailed:hover i {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3,
.service-card-detailed h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p,
.service-card-detailed p {
    color: #666;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li i {
    font-size: 1rem;
    color: var(--gold);
    margin: 0;
}

/* Gallery Section */
#gallery {
    background: white;
    position: relative;
    overflow: hidden;
}

/* Gallery Background Animation System */
.gallery-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    overflow: hidden;
}

/* Ensure gallery content sits above background */
.gallery-grid {
    position: relative;
    z-index: 1;
}

/* Chaotic Cable Containers (Left Side) */
.cable-chaos-container {
    position: absolute;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    width: 80px;
    opacity: 0.15;
    animation: chaosShake 4s ease-in-out infinite;
}

.chaos-icon {
    font-size: 1.8rem;
    color: #DC3545;
    animation: rotateShake 3s ease-in-out infinite;
}

.chaos-icon:nth-child(1) {
    animation-delay: 0s;
}

.chaos-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.chaos-icon:nth-child(3) {
    animation-delay: 1s;
}

@keyframes chaosShake {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) rotate(-3deg);
    }

    50% {
        transform: translateY(-4px) rotate(3deg);
    }

    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

@keyframes rotateShake {

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

    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.22;
    }
}

/* Transformation Arrows */
.transform-arrow {
    position: absolute;
    font-size: 2.5rem;
    color: #530587;
    opacity: 0.15;
    animation: slideArrow 3s ease-in-out infinite;
}

@keyframes slideArrow {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.15;
    }

    50% {
        transform: translateX(15px);
        opacity: 0.25;
    }
}

/* Organized Cable Containers (Right Side) */
.cable-organized-container {
    position: absolute;
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    opacity: 0.15;
    animation: organizedFloat 5s ease-in-out infinite;
}

.organized-icon {
    font-size: 1.8rem;
    color: #10B981;
    animation: gentleGlow 4s ease-in-out infinite;
}

.organized-icon:nth-child(1) {
    animation-delay: 0s;
}

.organized-icon:nth-child(2) {
    animation-delay: 0.7s;
}

.organized-icon:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes organizedFloat {

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

    50% {
        transform: translateY(-15px);
    }
}

@keyframes gentleGlow {

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

    50% {
        opacity: 0.25;
        transform: scale(1.05);
    }
}

/* Floating Individual Icons */
.floating-gallery-icon {
    position: absolute;
    font-size: 3rem;
    will-change: transform, opacity;
    animation: floatGalleryIcon 8s ease-in-out infinite;
}

.floating-gallery-icon.chaos-style {
    color: #DC3545;
    opacity: 0.15;
}

.floating-gallery-icon.transform-style {
    color: #530587;
    opacity: 0.18;
}

.floating-gallery-icon.organized-style {
    color: #10B981;
    opacity: 0.15;
}

.floating-gallery-icon:nth-child(6) {
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-gallery-icon:nth-child(7) {
    animation-delay: 1.5s;
    animation-duration: 9s;
}

.floating-gallery-icon:nth-child(8) {
    animation-delay: 3s;
    animation-duration: 7.5s;
}

.floating-gallery-icon:nth-child(9) {
    animation-delay: 4.5s;
    animation-duration: 8.5s;
}

.floating-gallery-icon:nth-child(10) {
    animation-delay: 2s;
    animation-duration: 9.5s;
}

@keyframes floatGalleryIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.20;
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
        opacity: 0.18;
    }

    75% {
        transform: translateY(-25px) rotate(2deg);
        opacity: 0.22;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 7, 20, 0.95), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: var(--white);
    font-size: 0.95rem;
}

/* Testimonials Section */
#testimonials-home {
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Testimonials Background Animation */
.testimonials-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    overflow: hidden;
}

.section-title,
.testimonials-slider-container,
.testimonials-slider {
    position: relative;
    z-index: 1;
}

/* Floating Stars */
.floating-star {
    position: absolute;
    font-size: 2.5rem;
    color: #D4AF37;
    opacity: 0.15;
    will-change: transform, opacity;
    animation: floatStar 7s ease-in-out infinite;
}

.floating-star:nth-child(2) {
    animation-delay: 0.8s;
    animation-duration: 7.5s;
}

.floating-star:nth-child(3) {
    animation-delay: 1.6s;
    animation-duration: 6.5s;
}

.floating-star:nth-child(4) {
    animation-delay: 2.4s;
    animation-duration: 8s;
}

.floating-star:nth-child(5) {
    animation-delay: 3.2s;
    animation-duration: 7.2s;
}

.floating-star:nth-child(6) {
    animation-delay: 4s;
    animation-duration: 8.5s;
}

.floating-star:nth-child(7) {
    animation-delay: 1.2s;
    animation-duration: 6.8s;
}

.floating-star:nth-child(8) {
    animation-delay: 2s;
    animation-duration: 7.8s;
}

@keyframes floatStar {

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

    25% {
        transform: translateY(-18px) rotate(10deg) scale(1.08);
        opacity: 0.22;
    }

    50% {
        transform: translateY(-8px) rotate(-5deg) scale(0.95);
        opacity: 0.18;
    }

    75% {
        transform: translateY(-22px) rotate(8deg) scale(1.05);
        opacity: 0.20;
    }
}

/* Floating Quote Marks */
.floating-quote {
    position: absolute;
    font-size: 3.5rem;
    color: #530587;
    opacity: 0.12;
    will-change: transform, opacity;
    animation: floatQuote 9s ease-in-out infinite;
}

.floating-quote:nth-child(10) {
    animation-delay: 0.5s;
    animation-duration: 9.5s;
}

.floating-quote:nth-child(11) {
    animation-delay: 1.5s;
    animation-duration: 8.5s;
}

.floating-quote:nth-child(12) {
    animation-delay: 2.5s;
    animation-duration: 10s;
}

.floating-quote:nth-child(13) {
    animation-delay: 3.5s;
    animation-duration: 8s;
}

.floating-quote:nth-child(14) {
    animation-delay: 1s;
    animation-duration: 10.5s;
}

.floating-quote:nth-child(15) {
    animation-delay: 2s;
    animation-duration: 9.2s;
}

@keyframes floatQuote {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0.12;
    }

    25% {
        transform: translateY(-15px) translateX(6px) rotate(-8deg) scale(1.06);
        opacity: 0.18;
    }

    50% {
        transform: translateY(-8px) translateX(-6px) rotate(5deg) scale(0.96);
        opacity: 0.15;
    }

    75% {
        transform: translateY(-20px) translateX(4px) rotate(-6deg) scale(1.04);
        opacity: 0.20;
    }
}

/* Testimonials Auto-Scroll Container */
.testimonials-slider-container {
    width: 100%;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.testimonials-slider-track {
    display: flex;
    gap: 2rem;
    width: fit-content;
    animation: scrollTestimonials 30s linear infinite;
}

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

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(var(--testimonial-scroll-distance, -1150px));
    }
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.testimonial-card,
.testimonial-card-full {
    background: white;
    border: 2px solid #530587;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
}

.testimonial-card:hover,
.testimonial-card-full:hover {
    border-color: #D4AF37;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p,
.testimonial-card-full p {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--royal-purple), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.testimonial-author h4 {
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
}

/* Stats Section */
#stats {
    background: #FFFFFF;
    padding: 4rem 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: rgba(122, 95, 211, 0.05);
    border: 2px solid rgba(122, 95, 211, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: #530587;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 95, 211, 0.2);
}

.stat-box i {
    font-size: 3rem;
    color: #530587;
    margin-bottom: 1rem;
}

/* Individual stat icon colors */
.stat-box:nth-child(1) i {
    color: #D4AF37; /* Gold */
}

.stat-box:nth-child(2) i {
    color: #530587; /* Purple */
}

.stat-box:nth-child(3) i {
    color: #10B981; /* Green */
}

.stat-box:nth-child(4) i {
    color: #F59E0B; /* Orange */
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #530587;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #1a1a1a;
    font-size: 1.1rem;
}

/* Testimonials Page */
#testimonials-page {
    background: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Video Testimonials */
#video-testimonials {
    background: #FFFFFF;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: rgba(75, 0, 130, 0.2);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: var(--gold);
    background: rgba(75, 0, 130, 0.3);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
}

.video-placeholder p {
    color: #666;
}

/* Company Story */
#company-story,
#services-detailed,
#testimonials-page,
#contact {
    position: relative;
    overflow: hidden;
}

.story-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.story-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Founder Section */
#founder {
    background: #FFFFFF;
}

.founder-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.founder-images {
    display: flex;
    gap: 1.5rem;
}

.founder-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.founder-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.founder-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.founder-quote {
    background: var(--deep-purple);
    border-left: 4px solid var(--gold);
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 10px;
    position: relative;
}

.founder-quote i {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
}

.founder-quote p {
    font-style: italic;
    padding-left: 2rem;
    margin: 0;
    color: var(--white);
}

/* Why Choose Section */
#why-choose {
    background: #FFFFFF;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    background: rgba(122, 31, 162, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(122, 95, 211, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: #530587;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(122, 95, 211, 0.2);
}

.why-card i {
    font-size: 3rem;
    color: #530587;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #530587;
    margin-bottom: 1rem;
}

.why-card p {
    color: #1a1a1a;
    line-height: 1.7;
}

/* Mission & Values */
#mission-values {
    background: #FFFFFF;
}

.mission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-box {
    background: rgba(122, 31, 162, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(122, 95, 211, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.mission-box i {
    font-size: 3rem;
    color: #530587;
    margin-bottom: 1.5rem;
}

/* Individual mission/vision icon colors */
.mission-box:nth-child(1) i {
    color: #D4AF37; /* Gold for Mission */
}

.mission-box:nth-child(2) i {
    color: #530587; /* Purple for Vision */
}

.mission-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #530587;
    margin-bottom: 1.5rem;
}

.mission-box p {
    color: #1a1a1a;
    line-height: 1.8;
    font-size: 1.1rem;
}

.mission-box ul {
    list-style: none;
    margin-top: 1.5rem;
}

.mission-box li {
    padding: 0.75rem 0;
    color: #1a1a1a;
    line-height: 1.7;
}

.mission-box li strong {
    color: #530587;
}

/* Pricing Section */
#pricing,
#pricing-home {
    background: white;
    position: relative;
    overflow: hidden;
}

#pricing-home {
    padding: 6rem 5%;
}

/* Pricing Background Animation System */
.pricing-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    overflow: hidden;
}

/* Ensure pricing content sits above background */
.section-title,
.pricing-grid,
.pricing-note {
    position: relative;
    z-index: 1;
}

/* Pricing Grid SVG */
.pricing-grid-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
    animation: subtlePulseGrid 8s ease-in-out infinite;
}

@keyframes subtlePulseGrid {

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

    50% {
        opacity: 0.35;
        transform: scale(1.02);
    }
}

/* Floating Currency Symbols */
.floating-currency {
    position: absolute;
    font-size: 3.5rem;
    color: #530587;
    opacity: 0.15;
    will-change: transform, opacity;
    animation: floatCurrency 10s ease-in-out infinite;
    filter: blur(0.3px);
}

/* Staggered animation delays */
.floating-currency:nth-child(2) {
    animation-delay: 1s;
    animation-duration: 11s;
}

.floating-currency:nth-child(3) {
    animation-delay: 2s;
    animation-duration: 9s;
    color: #D4AF37;
}

.floating-currency:nth-child(4) {
    animation-delay: 3s;
    animation-duration: 10.5s;
}

.floating-currency:nth-child(5) {
    animation-delay: 4s;
    animation-duration: 9.5s;
    color: #D4AF37;
}

.floating-currency:nth-child(6) {
    animation-delay: 0.5s;
    animation-duration: 10s;
}

.floating-currency:nth-child(7) {
    animation-delay: 1.5s;
    animation-duration: 11.5s;
}

.floating-currency:nth-child(8) {
    animation-delay: 2.5s;
    animation-duration: 9.8s;
    color: #D4AF37;
}

.floating-currency:nth-child(9) {
    animation-delay: 3.5s;
    animation-duration: 10.2s;
}

@keyframes floatCurrency {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0.15;
    }

    25% {
        transform: translateY(-25px) translateX(8px) rotate(8deg) scale(1.05);
        opacity: 0.20;
    }

    50% {
        transform: translateY(-12px) translateX(-8px) rotate(-5deg) scale(0.98);
        opacity: 0.18;
    }

    75% {
        transform: translateY(-20px) translateX(5px) rotate(3deg) scale(1.02);
        opacity: 0.22;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    border: 2px solid rgba(122, 95, 211, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #530587, #D4AF37);
}

.pricing-card.featured {
    border-color: #530587;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(122, 95, 211, 0.25);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #530587;
    box-shadow: 0 20px 60px rgba(122, 95, 211, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(122, 95, 211, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(122, 95, 211, 0.3);
}

.pricing-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #530587, #D4AF37);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.price-tag {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.price-tag .currency {
    font-size: 1.5rem;
    color: #530587;
    font-weight: 600;
}

.price-tag .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Orbitron', sans-serif;
}

.price-tag .period {
    font-size: 1rem;
    color: #666;
}

.price-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    min-height: 2.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.7rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
}

.pricing-features li i {
    color: #D4AF37;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-note {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem;
    background: rgba(122, 95, 211, 0.05);
    border-left: 4px solid #530587;
    border-radius: 10px;
}

.pricing-note p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pricing-note i {
    color: #530587;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* FAQ Section */
#faq {
    background: #FFFFFF;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(122, 95, 211, 0.05);
    border: 2px solid rgba(122, 95, 211, 0.3);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #530587;
    box-shadow: 0 5px 20px rgba(122, 95, 211, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #530587;
    margin: 0;
}

.faq-question i {
    color: #530587;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1rem 2rem 1.5rem;
}

.faq-answer p {
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
#contact {
    background: #FFFFFF;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(122, 95, 211, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(122, 95, 211, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form,
.contact-info-section {
    background: rgba(122, 95, 211, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(122, 95, 211, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.contact-form h2,
.contact-info-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #530587;
    margin-bottom: 1rem;
}

.contact-form p,
.contact-info-section p {
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 7, 20, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(122, 95, 211, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(122, 95, 211, 0.3);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #530587;
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.8rem;
    color: #530587;
    min-width: 30px;
    margin-top: 5px;
}

.contact-item-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-item-text p {
    color: #1a1a1a;
    line-height: 1.7;
}

.contact-item-text p strong {
    color: #530587;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Map Section */
#map-section {
    background: #FFFFFF;
    padding: 6rem 5%;
    text-align: center;
}

.map-placeholder {
    height: 400px;
    background: rgba(75, 0, 130, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
}

.map-placeholder p {
    color: rgba(255, 255, 255, 0.6);
}

.map-address {
    font-size: 1.1rem;
    color: var(--gold);
}

/* FAQ Quick Links */
#faq-quick {
    background: #FFFFFF;
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.faq-quick-card {
    background: rgba(122, 95, 211, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(122, 95, 211, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.faq-quick-card:hover {
    border-color: #530587;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 95, 211, 0.2);
}

.faq-quick-card i {
    font-size: 2.5rem;
    color: #530587;
    margin-bottom: 1rem;
}

.faq-quick-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #530587;
    margin-bottom: 1rem;
}

.faq-quick-card p {
    color: #1a1a1a;
    font-size: 0.95rem;
}

/* CTA Section */
#cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg3.jpg') no-repeat center center/cover;
    padding: 6rem 5%;
    text-align: center;
    color: var(--white);
}

#cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

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

.cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Ensure sections above footer have space for wave */
section:last-of-type {
    padding-bottom: 6rem !important;
    margin-bottom: 0 !important;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 4rem 5% 2rem;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Footer Wave Shape Divider */
footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%231a1a1a'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding-top: 1rem;
    position: relative;
}

.footer-section:first-child {
    padding-right: 2rem;
}

.footer-section:first-child p {
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.85rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-section a::before {
    content: '→';
    opacity: 0;
    margin-right: 0;
    transition: all 0.3s ease;
    color: var(--gold);
}

.footer-section a:hover {
    color: var(--gold);
    padding-left: 0;
}

.footer-section a:hover::before {
    opacity: 1;
    margin-right: 0.5rem;
}

/* Footer Logo Link */
.footer-logo a {
    display: inline-block;
    padding-left: 0 !important;
}

.footer-logo a img {
    transition: opacity 0.3s ease;
}

.footer-logo a:hover img {
    opacity: 0.8;
}

.contact-info-footer li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-footer i {
    color: var(--gold);
    min-width: 18px;
    font-size: 1rem;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: rgba(212, 175, 55, 0.8);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0a0a0a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    letter-spacing: 0.5px;
}

/* Animations */
.fade-in {
    opacity: 1;
    /* TEMPORARY: Changed from 0 to 1 */
    transform: translateY(0);
    /* TEMPORARY: Changed from 30px to 0 */
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse {
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 5px 30px rgba(122, 31, 162, 0.4);
    }

    50% {
        box-shadow: 0 5px 50px rgba(122, 31, 162, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid-2x3 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .hero-container,
    .about-container,
    .story-container,
    .founder-container,
    .mission-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 2rem;
    }

    .image-placeholder {
        height: 400px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Accessibility - Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    .reduce-motion .floating-tech-icon,
    .reduce-motion .cable,
    .reduce-motion .gradient-orb,
    .reduce-motion .floating-cable-icon,
    .reduce-motion .network-node,
    .reduce-motion .geometric-shape {
        animation: none !important;
        transition: opacity 0.3s ease !important;
    }

    .reduce-motion .cable {
        transition: stroke-dashoffset 0.3s ease !important,
            opacity 0.3s ease !important,
            d 0.3s ease !important;
    }

    /* Still allow the scroll-triggered reveal, just without animations */
    .reduce-motion #services.cables-structured .cable {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    .reduce-motion #services.cables-structured .network-node {
        opacity: 0.6;
        transform: scale(1);
    }

    .reduce-motion #services.cables-structured .floating-cable-icon {
        opacity: 0.15;
    }

    /* New Animated Elements - Reduced Motion Support */
    .reduce-motion .floating-currency,
    .reduce-motion .pricing-grid-svg,
    .reduce-motion .floating-gallery-icon,
    .reduce-motion .chaos-icon,
    .reduce-motion .organized-icon,
    .reduce-motion .transform-arrow,
    .reduce-motion .floating-star,
    .reduce-motion .floating-quote,
    .reduce-motion .glow-icon,
    .reduce-motion .glow-service-icon,
    .reduce-motion .data-particle,
    .reduce-motion .testimonials-slider-track {
        animation: none !important;
    }

    .reduce-motion .testimonials-slider-track {
        justify-content: center;
        flex-wrap: wrap;
    }

    .reduce-motion .data-flow-svg path {
        animation: none !important;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 3%;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 7, 20, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 4rem 5%;
    }

    #about-home {
        padding: 4rem 5%;
    }

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

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .image-placeholder {
        height: 400px;
    }

    .hero-shape-animation {
        width: 100px;
        height: 100px;
        right: -30px;
    }

    .certified-badge {
        padding: 1rem 1.5rem;
        bottom: -15px;
    }

    .certified-badge span {
        font-size: 0.95rem;
    }

    .about-container {
        gap: 2rem;
    }

    .about-image img {
        height: 400px;
    }

    .experience-badge {
        top: 15px;
        right: 15px;
        padding: 1rem 1.5rem;
    }

    .badge-number {
        font-size: 2.5rem;
    }

    .badge-text {
        font-size: 0.65rem;
    }

    .about-content {
        padding-left: 0;
    }

    .about-features {
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Services Section - Mobile Optimizations */
    .cables-svg {
        opacity: 0.5;
    }

    .cable {
        stroke-width: 2;
    }

    .floating-cable-icon {
        font-size: 2rem;
    }

    #services.cables-structured .floating-cable-icon {
        opacity: 0.10;
    }

    /* About Section - Mobile Optimizations */
    .floating-tech-icon {
        font-size: 3rem;
        opacity: 0.10;
    }

    .gradient-orb {
        opacity: 0.15;
        filter: blur(40px);
    }

    .gradient-orb-2,
    .geometric-shape {
        display: none;
    }

    /* New Section Mobile Optimizations */

    /* Pricing Section */
    .floating-currency {
        font-size: 2.5rem;
        opacity: 0.10;
    }

    .floating-currency:nth-child(even) {
        display: none;
    }

    .pricing-grid-svg {
        opacity: 0.2;
    }

    /* Gallery Section */
    .cable-chaos-container,
    .cable-organized-container,
    .transform-arrow {
        display: none;
    }

    .floating-gallery-icon {
        font-size: 2rem;
        opacity: 0.10;
    }

    /* Testimonials Section */
    .floating-star {
        font-size: 2rem;
        opacity: 0.10;
    }

    .floating-star:nth-child(even) {
        display: none;
    }

    .floating-quote {
        font-size: 2.5rem;
        opacity: 0.10;
    }

    .floating-quote:nth-child(even) {
        display: none;
    }

    .testimonials-slider-track {
        animation-duration: 40s;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
    }

    /* About & Services - Enhanced Mobile */
    .glow-icon,
    .glow-service-icon {
        opacity: 0.10;
    }

    .data-flow-svg {
        opacity: 0.2;
    }

    .shape-circle,
    .shape-square,
    .shape-pentagon {
        display: none;
    }

    .floating-tech-icon:nth-child(n+7),
    .floating-cable-icon:nth-child(n+8) {
        display: none;
    }
}