/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #0a0a0a;
}

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

/* === ENHANCED NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(99, 96, 96, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #ff0000;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* === ENHANCED LOGO STYLES === */
.logo-container {
    position: relative;
    width: 40px;
    height: 40px;
}

/* Custom logo image styles */
.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgb(255, 255, 255));
    border-radius: 50%;
}

.logo-image:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(64, 224, 208, 0.6));
}

/* Fallback SVG logo styles */
.logo-svg {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(64, 224, 208, 0.3));
    display: none; /* Hidden by default, shown when image fails to load */
}

.logo-svg:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(64, 224, 208, 0.6));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #00ff88, #40e0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoTextGlow 3s ease-in-out infinite alternate;
}

@keyframes logoTextGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(64, 224, 208, 0.6);
    }
}

/* === NAVIGATION MENU === */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: block;
}

.nav-link:hover {
    color: #00ff88;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #40e0d0);
    transition: width 0.3s ease;
}

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

/* === HAMBURGER MENU === */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    padding: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* === RESPONSIVE DESIGN === */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        gap: 0;
        padding: 20px 0;
    }

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

    .nav-item {
        margin: 10px 0;
    }

    .nav-link {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .logo-text {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-image,
    .logo-svg {
        width: 35px;
        height: 35px;
    }
}

/* === ADDITIONAL ENHANCEMENTS === */
.nav-link {
    position: relative;
    overflow: hidden;
}

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

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

/* Logo container hover effects */
.logo-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff88, #40e0d0, #ff4757, #00ff88);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    animation: logoGlow 3s linear infinite;
}

.logo-container:hover::before {
    opacity: 0.3;
}

@keyframes logoGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}
/* === HAMBURGER MENU === */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* === ENHANCED HOME SECTION === */
.home-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 30%, #0f0f23 100%);
}

/* === PROFESSIONAL BACKGROUND ANIMATIONS === */
.professional-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-overlay,
.data-flow,
.wave-animation,
.hexagon-network,
.color-burst,
.professional-particles,
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.grid-overlay canvas,
.data-flow canvas,
.wave-animation canvas,
.hexagon-network canvas,
.color-burst canvas,
.professional-particles canvas,
.matrix-rain canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* === GEOMETRIC PATTERNS === */
.geometric-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pattern {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: patternFloat 20s linear infinite;
}

.pattern-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    border-color: rgba(0, 255, 136, 0.2);
}

.pattern-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    border-color: rgba(255, 71, 87, 0.2);
}

.pattern-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    border-color: rgba(64, 224, 208, 0.2);
}

.pattern-4 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
    border-color: rgba(255, 255, 255, 0.15);
}

.pattern-5 {
    width: 120px;
    height: 120px;
    bottom: 40%;
    right: 10%;
    animation-delay: -3s;
    border-color: rgba(0, 255, 136, 0.15);
}

.pattern-6 {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 60%;
    animation-delay: -8s;
    border-color: rgba(255, 71, 87, 0.15);
}

@keyframes patternFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.3;
    }
}

/* === TECH ELEMENTS === */
.tech-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tech-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: techPulse 4s ease-in-out infinite;
}

.tech-circle-1 {
    width: 300px;
    height: 300px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    border-color: rgba(0, 255, 136, 0.3);
}

.tech-circle-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation-delay: -1s;
    border-color: rgba(255, 71, 87, 0.3);
}

.tech-circle-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 30%;
    animation-delay: -2s;
    border-color: rgba(64, 224, 208, 0.3);
}

.tech-circle-4 {
    width: 100px;
    height: 100px;
    top: 25%;
    right: 25%;
    animation-delay: -0.5s;
    border-color: rgba(255, 255, 255, 0.2);
}

.tech-circle-5 {
    width: 250px;
    height: 250px;
    bottom: 30%;
    right: 5%;
    animation-delay: -1.5s;
    border-color: rgba(0, 255, 136, 0.2);
}

@keyframes techPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* === CODE STREAM === */
.code-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
}

.code-line {
    position: absolute;
    color: #00ff88;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    white-space: nowrap;
    animation: codeFloat 15s linear infinite;
}

.code-line:nth-child(1) {
    top: 20%;
    left: -100%;
    animation-delay: 0s;
}

.code-line:nth-child(2) {
    top: 40%;
    left: -100%;
    animation-delay: -5s;
}

.code-line:nth-child(3) {
    top: 60%;
    left: -100%;
    animation-delay: -10s;
}

.code-line:nth-child(4) {
    top: 80%;
    left: -100%;
    animation-delay: -15s;
}

@keyframes codeFloat {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 400px));
    }
}

/* === SLIDER STYLES === */
.slider-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 0 40px;
}

.slide {
    display: none;
    animation: slideIn 0.8s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content {
    max-width: 800px;
    margin: 0 auto;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #00ff88, #40e0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(45deg, #2196f3, #07dbc6);
    color: rgb(0, 0, 0);
    text-decoration: none; /* Remove underline */
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 93, 90, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.5);
    background: linear-gradient(45deg, #1976d2, #0fabbf);
    text-decoration: none; /* Ensure no underline on hover */
}

.cta-button:focus {
    outline: none;
    text-decoration: none; /* Ensure no underline on focus */
}

.cta-button:visited {
    text-decoration: none; /* Ensure no underline for visited links */
}


.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* === SLIDER NAVIGATION === */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #00ff88;
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.nav-dot:hover {
    border-color: #00ff88;
    transform: scale(1.2);
}

/* === SLIDER ARROWS === */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slider-arrow:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

/* === SERVICES SECTION === */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #40e0d0);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === DESKTOP SERVICES GRID === */
.desktop-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(64, 224, 208, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover .service-hover-effect {
    opacity: 1;
}

.service-icon {
    font-size: 4rem;
    color: #00ff88;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(180deg);
    color: #40e0d0;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-description {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: #cccccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: #00ff88;
    font-size: 0.9rem;
}

/* === MOBILE SERVICES SLIDER === */
.mobile-services-slider {
    display: none;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.service-slides-container {
    display: flex;
    transition: transform 0.5s ease;
}

.service-slide {
    min-width: 100%;
    display: none;
}

.service-slide.active {
    display: block;
}

.mobile-service-card {
    margin: 0 10px;
}

.mobile-service-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.service-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-nav-dot.active {
    background: #00ff88;
    border-color: #00ff88;
}

.service-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-prev-arrow {
    left: 10px;
}

.service-next-arrow {
    right: 10px;
}

.service-arrow:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 30px 0;
        gap: 20px;
    }

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

    .hamburger {
        display: flex;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Home Section */
    .home-section {
        height: 100vh;
        padding: 0 20px;
    }

    .slide-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .slide-subtitle {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .slide-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-arrow {
        left: 10px;
    }

    .next-arrow {
        right: 10px;
    }

    .slider-nav {
        bottom: 20px;
    }

    /* Services Section */
    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .desktop-services {
        display: none;
    }

    .mobile-services-slider {
        display: block;
    }

    /* Hide complex animations on mobile for performance */
    .geometric-patterns,
    .tech-elements,
    .code-stream {
        display: none;
    }

    /* Simplify background animations for mobile */
    .professional-background {
        opacity: 0.5;
    }
}

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

    .slide-title {
        font-size: 2rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .slide-description {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        font-size: 3rem;
    }

    .service-title {
        font-size: 1.5rem;
    }
}

/* === HIGH PERFORMANCE ANIMATIONS === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === SMOOTH SCROLLING === */
html {
    scroll-behavior: smooth;
}

/* === FOCUS STYLES === */
button:focus,
.nav-link:focus {
    outline: 2px solid #00ff88;
    outline-offset: 2px;
}

/* === LOADING OPTIMIZATION === */
.professional-background canvas {
    will-change: transform;
}

.service-card,
.slide,
.nav-link {
    will-change: transform;
}

/* === PERFORMANCE OPTIMIZATIONS === */
.geometric-patterns,
.tech-elements,
.professional-particles,
.matrix-rain {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* === PRINT STYLES === */
@media print {
    .navbar,
    .slider-nav,
    .slider-arrow,
    .professional-background {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}


/* === DEVELOPMENT PROCESS SECTION === */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff88, #40e0d0);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.step-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-connector {
    position: absolute;
    top: 50px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #40e0d0);
    opacity: 0.3;
}

.process-step:last-child .step-connector {
    display: none;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-connector {
        top: auto;
        bottom: -15px;
        right: auto;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        width: 30px;
        height: 2px;
    }
    
    .process-step:last-child .step-connector {
        display: none;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
}


/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 71, 87, 0.05) 0%, transparent 50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

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

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 136, 0.3);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff88, #40e0d0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.info-details p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    position: relative;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #00ff88;
    background: rgba(255, 255, 255, 0.08);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: #999999;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group.focused label,
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    color: #00ff88;
    background: #0a0a0a;
    padding: 0 5px;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #00ff88, #40e0d0);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: #000000;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        #00ff88, 
        #40e0d0, 
        #ff4757, 
        transparent);
}

.footer-content {
    padding: 80px 0 40px;
}

.footer-sections {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-section h3.footer-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #40e0d0);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo .logo-container {
    width: 50px;
    height: 50px;
}

.footer-logo .logo-svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    transform: translateY(-3px);
    color: #00ff88;
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #00ff88;
    padding-left: 10px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #cccccc;
}

.contact-item i {
    color: #00ff88;
    font-size: 16px;
    margin-top: 2px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999999;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #999999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00ff88;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-container {
        height: auto;
        min-height: 450px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .testimonial-prev-arrow {
        left: 10px;
    }
    
    .testimonial-next-arrow {
        right: 10px;
    }
    
    /* Contact Mobile */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    /* Footer Mobile */
    .footer-content {
        padding: 60px 0 30px;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-description {
        max-width: 100%;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .quote-icon {
        font-size: 36px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .contact-form-container {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .info-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card,
.info-card,
.contact-form-container {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.testimonial-nav-dot:focus,
.social-link:focus,
.footer-links a:focus,
.footer-bottom-links a:focus {
    outline: 2px solid #00ff88;
    outline-offset: 2px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.submit-btn:focus {
    outline: 2px solid #00ff88;
    outline-offset: 2px;
}