:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFD166;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --text-color: #333333;
    --text-light: #6C757D;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    position: relative;
}

#three-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 50%, #2a2a4a 100%);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}




/* Header Styles - Sticky Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    display: flex;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #FFD166, #4ECDC4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
    margin-left: 10px;
}

.btn-primary, .btn-outline {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(90deg, #FFB347, #FF8C00, #333333);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.4);
}

.btn-outline {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.menu-toggle:hover {
    transform: scale(1.1);
}




















/* Hero Section - Fixed text visibility */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(78, 205, 196, 0.1) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: fadeIn 0.8s ease-out 0.2s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Fix hero title visibility */
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
    background: linear-gradient(90deg, #FFFFFF, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.title-line:nth-child(1) { animation-delay: 0.4s; }
.title-line:nth-child(2) { animation-delay: 0.6s; }
.title-line:nth-child(3) { animation-delay: 0.8s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeIn 1s ease-out 1s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 1.2s both;
}

.visual-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.record-player {
    position: relative;
    width: 100%;
    height: 100%;
}

.record {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, #222 0%, #111 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: rotateRecord 20s linear infinite;
}

@keyframes rotateRecord {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.record::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-radial-gradient(
        circle at center,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 12px
    );
}

.record-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--dark-color), #333);
    display: flex;
    justify-content: center;
    align-items: center;
}

.record-center {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
}

.record-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
}

.line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    transform-origin: left center;
}

.line:nth-child(1) { transform: rotate(0deg); }
.line:nth-child(2) { transform: rotate(45deg); }
.line:nth-child(3) { transform: rotate(90deg); }

.tone-arm {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 150px;
    height: 8px;
    background: linear-gradient(90deg, #555, #777);
    border-radius: 4px;
    transform-origin: right center;
    transform: rotate(-20deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: toneArmMove 3s ease-in-out infinite;
}

@keyframes toneArmMove {
    0%, 100% { transform: rotate(-20deg); }
    50% { transform: rotate(-25deg); }
}

.tone-arm::after {
    content: '';
    position: absolute;
    left: -30px;
    top: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(45deg, #333, #555);
}

.music-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.wave {
    width: 10px;
    height: 50px;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    animation: wave 1.5s infinite ease-in-out;
}

.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: 0.2s; }
.wave:nth-child(3) { animation-delay: 0.4s; }
.wave:nth-child(4) { animation-delay: 0.6s; }

@keyframes wave {
    0%, 100% { height: 20px; transform: scaleY(0.5); }
    50% { height: 60px; transform: scaleY(1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    margin-top: 10px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Section Common Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    color: white;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}




/* Services Section */
.services {
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, 
            transparent 48%,
            rgba(255, 255, 255, 0.03) 50%,
            transparent 52%
        );
    background-size: 100% 100%, 100% 100%, 30px 30px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 100px 100px, -100px -100px, 30px 30px; }
}

.services .section-title {
    color: white;
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.services .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    height: 4px;
    width: 100px;
    bottom: -25px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Service Cards */
.service-card {
    background: rgba(30, 30, 50, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 50px 35px;
    border: 2px solid rgba(78, 205, 196, 0.3);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(78, 205, 196, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease-out;
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Letter Paper Effect - RESTORED */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            transparent 95%, 
            rgba(255, 255, 255, 0.03) 100%
        ),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    border-radius: 15px;
    pointer-events: none;
}

/* Ribbon Effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-color) 100%
    );
    background-size: 200% 100%;
    animation: ribbonFlow 3s linear infinite;
}

@keyframes ribbonFlow {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Service Icon */
.service-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-color), #2a2a4a);
    border-radius: 12px;
    border: 2px solid rgba(78, 205, 196, 0.4);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.service-card .service-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: keyPress 2s ease-in-out infinite;
    animation-delay: calc(var(--card-index) * 0.3s);
}

@keyframes keyPress {
    0%, 100% { 
        transform: translateY(0) scale(1);
        color: var(--secondary-color);
    }
    50% { 
        transform: translateY(-5px) scale(1.1);
        color: var(--accent-color);
        text-shadow: 0 0 10px rgba(255, 209, 102, 0.5);
    }
}

.service-card .service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(78, 205, 196, 0.1) 50%,
        transparent 70%
    );
    animation: keyShine 3s linear infinite;
}

@keyframes keyShine {
    0% { transform: rotate(0deg) translateX(-50%); }
    100% { transform: rotate(360deg) translateX(-50%); }
}

/* Service Title - Fixed to display as single line */
.service-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    position: relative;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    overflow: visible;
    min-height: 50px;
    font-family: var(--font-heading);
    letter-spacing: normal;
    line-height: 1.2;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
}

.service-card h3 span {
    display: inline;
    margin: 0;
    padding: 0;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Remove typewriter cursor */
.service-card h3::after {
    display: none;
}

/* Service description */
.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    opacity: 1;
    transform: none;
    font-family: var(--font-primary);
    line-height: 1.6;
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 30px;
    background: rgba(30, 30, 50, 0.8);
    border-radius: 6px;
    border: 2px solid var(--accent-color);
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
    letter-spacing: normal;
}

.service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 209, 102, 0.2), transparent);
    transition: left 0.7s;
}

.service-link:hover::before {
    left: 100%;
}

.service-link:hover {
    background: rgba(255, 209, 102, 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(78, 205, 196, 0.2);
}

.service-link i {
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px) rotate(90deg);
}

/* Keep the typewriter lines in background - RESTORED */
.service-card .typewriter-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

.typewriter-line {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--secondary-color) 20%,
        var(--secondary-color) 80%,
        transparent 100%
    );
    animation: lineScan 2s linear infinite;
    animation-delay: calc(var(--line-index) * 0.3s);
}

@keyframes lineScan {
    0% {
        top: 0%;
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card {
        padding: 40px 25px;
    }
    
    .service-card h3 {
        font-size: 1.6rem;
        white-space: normal;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-card h3 span {
        display: inline;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services .section-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
    
    .service-card .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 30px;
    }
    
    .service-card .service-icon i {
        font-size: 2.2rem;
    }
    
    .service-card h3 {
        white-space: normal;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .services .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 35px 20px;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
        min-height: auto;
        white-space: normal;
        flex-wrap: wrap;
    }
    
    .service-card p {
        font-size: 1rem;
    }
    
    /* On very small screens, make all text normal */
    .service-card h3 span {
        display: inline;
        animation: none;
    }
}









/* Logo Scroll Section - Fixed for proper logo display */
.logo-scroll-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(
        180deg,
        #0a0a2a 0%,
        #1a1a3a 50%,
        #2a2a4a 100%
    );
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Animated Space Background */
.space-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Distant stars */
.distant-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8) 50%, transparent 100%),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8) 50%, transparent 100%),
        radial-gradient(1px 1px at 60px 90px, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    background-size: 200px 200px;
    animation: twinkleStars 10s infinite alternate;
}

@keyframes twinkleStars {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Shooting Stars */
.shooting-star {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    filter: blur(1px);
    animation: shootingStar 3s linear infinite;
    animation-delay: var(--star-delay, 0s);
}

.shooting-star::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    right: 0;
    top: -3px;
    box-shadow: 0 0 20px white;
}

@keyframes shootingStar {
    0% {
        transform: translateX(-100px) translateY(var(--star-y, 100px)) rotate(var(--star-angle, 45deg));
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(calc(var(--star-y, 100px) + 100vh)) rotate(var(--star-angle, 45deg));
        opacity: 0;
    }
}

/* Logo Scroll Container */
.logo-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 60px 0;
    z-index: 2;
}

.logo-scroll-track {
    display: inline-flex;
    animation: logoScroll 40s linear infinite;
    gap: 80px;
    padding: 0 80px;
}

/* Logo Item - Fixed for better logo visibility */
.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 220px;
    padding: 30px;
    border-radius: 50%;
    position: relative;
    overflow: visible;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 60px rgba(255, 255, 255, 0.1),
        inset 0 0 40px rgba(255, 255, 255, 0.05);
    animation: floatLogo 8s ease-in-out infinite;
    animation-delay: calc(var(--logo-index) * -1s);
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item:hover {
    animation-play-state: paused;
    transform: translateY(-40px) scale(1.2);
    box-shadow: 
        0 0 120px rgba(255, 255, 255, 0.2),
        0 0 180px rgba(255, 255, 255, 0.1);
    z-index: 10;
}

/* Updated logo image container for full logo visibility */
.logo-image-container {
    position: relative;
    width: 140px; /* Increased width for full logo */
    height: 100px; /* Adjusted height */
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: visible; /* Changed from hidden to visible */
    transition: all 0.5s;
    padding: 10px; /* Added padding for logo breathing room */
}

.logo-item:hover .logo-image-container {
    transform: scale(1.2) rotate(5deg);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 40px rgba(255, 255, 255, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Updated logo image for full visibility */
.logo-image {
    width: 100%; /* Full width of container */
    height: 100%; /* Full height of container */
    object-fit: contain; /* Keep aspect ratio, show full logo */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item:hover .logo-image {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    transform: scale(1.1);
}

/* Center logos properly */
.logo-image svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.company-category {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 12px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

/* Orbiting particles around logos */
.orbit-particles {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    pointer-events: none;
}

.orbit-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: orbitParticle 3s linear infinite;
    animation-delay: calc(var(--particle-index) * 0.3s);
}

@keyframes orbitParticle {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
        opacity: 0;
    }
}

/* Pause animation on hover */
.logo-scroll-track:hover {
    animation-play-state: paused;
}

/* Responsive Design for Logo Scroll */
@media (max-width: 1200px) {
    .logo-scroll-section {
        padding: 80px 0;
        min-height: 350px;
    }
    
    .logo-item {
        min-width: 180px;
        height: 180px;
        padding: 25px;
    }
    
    .logo-image-container {
        width: 120px; /* Adjusted for smaller screens */
        height: 85px;
    }
    
    .company-name {
        font-size: 1.4rem;
    }
}

@media (max-width: 992px) {
    .logo-scroll-section {
        padding: 70px 0;
        min-height: 320px;
    }
    
    .logo-scroll-track {
        gap: 60px;
        animation-duration: 35s;
        padding: 0 60px;
    }
    
    .logo-item {
        min-width: 160px;
        height: 160px;
        padding: 20px;
    }
    
    .logo-image-container {
        width: 100px; /* Adjusted for smaller screens */
        height: 70px;
        margin-bottom: 20px;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .company-category {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .logo-scroll-section {
        padding: 60px 0;
        min-height: 280px;
    }
    
    .logo-scroll-container {
        padding: 40px 0;
    }
    
    .logo-scroll-track {
        gap: 40px;
        animation-duration: 30s;
        padding: 0 40px;
    }
    
    .logo-item {
        min-width: 140px;
        height: 140px;
        padding: 18px;
    }
    
    .logo-image-container {
        width: 85px; /* Adjusted for mobile */
        height: 60px;
        margin-bottom: 15px;
    }
    
    .company-name {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .company-category {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}

@media (max-width: 576px) {
    .logo-scroll-section {
        padding: 50px 0;
        min-height: 250px;
    }
    
    .logo-scroll-track {
        gap: 30px;
        animation-duration: 25s;
        padding: 0 30px;
    }
    
    .logo-item {
        min-width: 130px;
        height: 130px;
        padding: 15px;
    }
    
    .logo-image-container {
        width: 75px; /* Adjusted for small mobile */
        height: 50px;
        margin-bottom: 12px;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .company-category {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

@media (max-width: 400px) {
    .logo-scroll-section {
        padding: 40px 0;
        min-height: 220px;
    }
    
    .logo-scroll-track {
        gap: 25px;
        animation-duration: 20s;
    }
    
    .logo-item {
        min-width: 120px;
        height: 120px;
        padding: 12px;
    }
    
    .logo-image-container {
        width: 65px; /* Adjusted for very small screens */
        height: 45px;
    }
    
    .company-name {
        font-size: 0.9rem;
    }
    
    .company-category {
        font-size: 0.7rem;
    }
}

/* Guitar Section - Realistic and Classy */
.guitar-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 30, 0.9) 0%,
        rgba(20, 20, 50, 0.8) 50%,
        rgba(30, 30, 70, 0.7) 100%
    );
    overflow: hidden;
}

.guitar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 40%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,40 50,50 T100,50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.5;
}

.guitar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.guitar-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.guitar-wrapper {
    position: relative;
    width: 400px;
    height: 500px;
    animation: floatGuitar 6s ease-in-out infinite;
}

@keyframes floatGuitar {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-15px) rotate(-1deg); 
    }
    75% { 
        transform: translateY(-10px) rotate(1deg); 
    }
}

/* Realistic Guitar SVG */
.guitar-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Animated Strings */
.guitar-strings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.string-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.8) 20%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.8) 80%,
        transparent 100%
    );
    transform-origin: left center;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.string-1 { 
    top: 40%; 
    transform: rotate(0deg);
    animation: vibrateString 0.3s ease-in-out infinite;
}
.string-2 { 
    top: 45%; 
    transform: rotate(0deg);
    animation: vibrateString 0.4s ease-in-out infinite 0.1s;
}
.string-3 { 
    top: 50%; 
    transform: rotate(0deg);
    animation: vibrateString 0.5s ease-in-out infinite 0.2s;
}
.string-4 { 
    top: 55%; 
    transform: rotate(0deg);
    animation: vibrateString 0.6s ease-in-out infinite 0.3s;
}
.string-5 { 
    top: 60%; 
    transform: rotate(0deg);
    animation: vibrateString 0.7s ease-in-out infinite 0.4s;
}
.string-6 { 
    top: 65%; 
    transform: rotate(0deg);
    animation: vibrateString 0.8s ease-in-out infinite 0.5s;
}

@keyframes vibrateString {
    0%, 100% { 
        transform: rotate(0deg) translateX(0) scaleY(1);
        opacity: 0.8;
    }
    25% { 
        transform: rotate(0.2deg) translateX(-1px) scaleY(1.1);
        opacity: 1;
    }
    75% { 
        transform: rotate(-0.2deg) translateX(1px) scaleY(1.1);
        opacity: 1;
    }
}

/* Music Notes */
.music-notes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.music-note {
    position: absolute;
    font-size: 2.5rem;
    color: var(--accent-color);
    opacity: 0;
    animation: floatNote 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 209, 102, 0.5);
}

.note-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    color: var(--primary-color);
}
.note-2 {
    top: 40%;
    left: 80%;
    animation-delay: 0.5s;
    color: var(--secondary-color);
}
.note-3 {
    top: 70%;
    left: 20%;
    animation-delay: 1s;
    color: var(--accent-color);
}
.note-4 {
    top: 30%;
    left: 70%;
    animation-delay: 1.5s;
    color: var(--primary-color);
}
.note-5 {
    top: 60%;
    left: 90%;
    animation-delay: 2s;
    color: var(--secondary-color);
}

@keyframes floatNote {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-150px) rotate(360deg);
        opacity: 0;
    }
}

/* Guitar Content */
.guitar-content {
    flex: 1;
    padding: 40px;
}

.guitar-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.guitar-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.guitar-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.15rem;
}

/* Guitar Stats */
.guitar-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.guitar-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guitar-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s;
}

.guitar-stat:hover::before {
    left: 100%;
}

.guitar-stat:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.3);
}

.guitar-stat i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.guitar-stat span {
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
}

/* Responsive Guitar Section */
@media (max-width: 992px) {
    .guitar-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .guitar-visual,
    .guitar-content {
        width: 100%;
        max-width: 600px;
    }
    
    .guitar-wrapper {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .guitar-section {
        padding: 80px 0;
    }
    
    .guitar-wrapper {
        width: 300px;
        height: 400px;
    }
    
    .guitar-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guitar-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .guitar-wrapper {
        width: 250px;
        height: 350px;
    }
    
    .guitar-stats {
        grid-template-columns: 1fr;
    }
    
    .guitar-content h3 {
        font-size: 1.8rem;
    }
    
    .guitar-content p {
        font-size: 1rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, var(--dark-color), #2a2a4a);
    padding: 50px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(78, 205, 196, 0.3);
    animation: modalAppear 0.5s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--accent-color);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

.registration-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 209, 102, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
    background: var(--dark-color);
    color: white;
}

.registration-form button[type="submit"] {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    border-radius: 10px;
}

/* Mobile Menu */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
    }
    
    .header-actions a {
        width: 100%;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .visual-container {
        width: 300px;
        height: 300px;
    }
    
    .record {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* General Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add smooth transitions for interactive elements */
a, button, .service-link, .logo-item, .guitar-stat {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(26, 26, 46, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
}

/* Selection Color */
::selection {
    background: rgba(78, 205, 196, 0.3);
    color: white;
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    position: relative;
}

.loader:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

.loader:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid transparent;
    border-bottom-color: var(--secondary-color);
    animation: spin 1s linear infinite reverse;
    top: 0;
    left: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}







/* How It Works Section - Reaching the Sky Theme */
.how-it-works {
    background: linear-gradient(to bottom, 
        rgba(26, 26, 46, 0.98) 0%,
        rgba(26, 26, 46, 0.95) 10%,
        rgba(26, 26, 46, 0.9) 20%,
        rgba(33, 47, 92, 0.8) 40%,
        rgba(41, 68, 146, 0.7) 60%,
        rgba(50, 90, 180, 0.6) 80%,
        rgba(60, 120, 220, 0.5) 100%
    );
    position: relative;
    overflow: hidden;
    padding: 140px 0 160px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Sky horizon effect */
.how-it-works::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(255, 255, 255, 0.1) 0%,
        transparent 100%
    );
    z-index: 1;
}

/* Sun/moon in the sky */
.how-it-works::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, 
        var(--accent-color) 0%,
        rgba(255, 209, 102, 0.5) 30%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(10px);
    animation: sunGlow 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes sunGlow {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.how-it-works .section-title {
    color: white;
    font-size: 3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 100px;
    position: relative;
    z-index: 3;
}

.how-it-works .section-title::after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    height: 4px;
    width: 120px;
    bottom: -25px;
}

/* Steps container - like a ladder reaching sky */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 3;
    align-items: start;
}

/* Step ladder connection lines */
.steps::before {
    content: '';
    position: absolute;
    top: 80px; /* Adjust based on icon position */
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 107, 107, 0.5) 25%,
        rgba(255, 209, 102, 0.5) 50%,
        rgba(78, 205, 196, 0.5) 75%,
        transparent 100%
    );
    z-index: 2;
    animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Step cards - like platforms on a ladder */
.step {
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.step.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Step connection lines to the main line */
.step::before {
    content: '';
    position: absolute;
    top: 40px; /* Connects to icon */
    left: 50%;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom,
        var(--accent-color) 0%,
        rgba(255, 209, 102, 0.3) 100%
    );
    transform: translateX(-50%);
    z-index: -1;
}

/* Platform style for steps */
.step > div {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(255, 209, 102, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step:hover > div {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-color);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 50px rgba(255, 209, 102, 0.2);
}

/* Step icon - like handles on the ladder */
.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.9) 0%,
        rgba(33, 47, 92, 0.9) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -80px auto 30px;
    position: relative;
    z-index: 4;
    border: 3px solid var(--accent-color);
    box-shadow: 
        0 0 0 5px rgba(26, 26, 46, 0.8),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.step:hover .step-icon {
    transform: scale(1.1) rotate(15deg);
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 5px rgba(26, 26, 46, 0.8),
        0 15px 40px rgba(255, 107, 107, 0.3);
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.step:hover .step-icon i {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Step number badge */
.step-icon::after {
    content: attr(data-step);
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-weight: bold;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: stepNumberGlow 2s ease-in-out infinite;
}

@keyframes stepNumberGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 107, 0.6);
    }
}

/* Step content */
.step-content {
    margin-top: 20px;
}

.step-content h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

/* Floating clouds between steps */
.step::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(10px);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}

.step:hover::after {
    opacity: 0.8;
    animation: cloudFloat 3s ease-in-out infinite;
}

.step:nth-child(1)::after {
    top: 50px;
    left: -40px;
}

.step:nth-child(2)::after {
    top: 30px;
    right: -40px;
}

.step:nth-child(3)::after {
    bottom: 50px;
    left: -40px;
}

.step:nth-child(4)::after {
    bottom: 30px;
    right: -40px;
}

@keyframes cloudFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-5px) translateX(5px);
    }
    50% {
        transform: translateY(0) translateX(10px);
    }
    75% {
        transform: translateY(5px) translateX(5px);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }
    
    /* Adjust connection line for 2 columns */
    .steps::before {
        display: none;
    }
    
    /* Vertical connection lines for mobile */
    .steps {
        position: relative;
    }
    
    .steps::after {
        content: '';
        position: absolute;
        top: 80px;
        bottom: 80px;
        left: 50%;
        width: 2px;
        background: linear-gradient(to bottom,
            rgba(255, 107, 107, 0.5) 0%,
            rgba(255, 209, 102, 0.5) 50%,
            rgba(78, 205, 196, 0.5) 100%
        );
        transform: translateX(-50%);
        z-index: 2;
        animation: linePulse 3s ease-in-out infinite;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 100px 0 120px;
    }
    
    .how-it-works .section-title {
        font-size: 2.5rem;
        margin-bottom: 80px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 80px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .steps::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step > div {
        padding: 35px 25px;
    }
    
    .step-icon {
        width: 90px;
        height: 90px;
        margin: -70px auto 25px;
    }
    
    .step-icon i {
        font-size: 2.2rem;
    }
    
    .step-icon::after {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .how-it-works {
        padding: 80px 0 100px;
    }
    
    .how-it-works .section-title {
        font-size: 2rem;
        margin-bottom: 60px;
    }
    
    .step > div {
        padding: 30px 20px;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        margin: -60px auto 20px;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
}


/* Milestones Section */
.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.milestone {
    text-align: center;
    padding: 40px 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.milestone.animated {
    opacity: 1;
    transform: translateY(0);
}

.milestone:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.milestone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.milestone-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.5s;
    display: inline-block;
}

.milestone:hover .milestone-icon {
    transform: scale(1.2) rotate(360deg);
    color: var(--secondary-color);
}

.milestone-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: all 0.5s;
}

.milestone:hover .milestone-number {
    color: var(--secondary-color);
}

.milestone-label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-section.about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section .logo {
    margin-top: 20px;
}

.footer-section.links ul {
    list-style: none;
}

.footer-section.links li {
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.footer-section.links li:hover {
    transform: translateX(5px);
}

.footer-section.links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-section.links a:hover {
    color: var(--accent-color);
}

.footer-section.contact ul {
    list-style: none;
    margin-bottom: 25px;
}

.footer-section.contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}











/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}

.pricing-section .section-title {
    color: white;
    background: linear-gradient(90deg, #FFFFFF, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.pricing-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.pricing-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.features {
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.features h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--accent-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.features h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.features ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.features li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.features li:hover {
    color: white;
    transform: translateX(5px);
}

.features li i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.features li:last-child {
    border-bottom: none;
}

.plan-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    z-index: 1;
}

.plan-header {
    margin-bottom: 40px;
}

.plan-header h4 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-weight: 600;
}

.price h1 {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin: 10px 0;
    text-shadow: 0 4px 20px rgba(255, 209, 102, 0.3);
}

.price p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 500;
}

.cta-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--dark-color);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}

.cta-btn:active {
    transform: translateY(-2px);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-btn:hover::before {
    left: 100%;
}

.plan-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-align: left;
    flex: 1;
    font-weight: 500;
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--dark-color);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.plan-badge i {
    font-size: 1rem;
}

/* Mobile Responsive Styles for Pricing Section */
@media (max-width: 1200px) {
    .pricing-container {
        grid-template-columns: 1.5fr 1fr;
        padding: 40px;
    }
    
    .features {
        padding-right: 30px;
    }
    
    .price h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 800px;
    }
    
    .features {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 40px;
    }
    
    .features h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .features h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .features ul {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .price h1 {
        font-size: 3.5rem;
    }
    
    .plan-badge {
        right: -35px;
        font-size: 0.85rem;
        padding: 7px 35px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 70px 0;
    }
    
    .pricing-section .section-title {
        font-size: 2.2rem;
    }
    
    .pricing-section .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .pricing-container {
        padding: 30px;
        border-radius: 15px;
        margin: 0 20px;
    }
    
    .features h3 {
        font-size: 1.6rem;
    }
    
    .features li {
        font-size: 1rem;
        padding: 10px 0;
    }
    
    .features li i {
        font-size: 1.1rem;
    }
    
    .plan-card {
        padding: 30px;
    }
    
    .plan-header h4 {
        font-size: 1.3rem;
    }
    
    .price h1 {
        font-size: 3rem;
    }
    
    .price p {
        font-size: 0.95rem;
    }
    
    .cta-btn {
        padding: 16px 25px;
        font-size: 1.1rem;
        margin: 25px 0;
    }
    
    .feature-item {
        padding: 10px 12px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .plan-badge {
        right: -30px;
        font-size: 0.8rem;
        padding: 6px 30px;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-section .section-title {
        font-size: 2rem;
    }
    
    .pricing-section .section-subtitle {
        font-size: 1rem;
    }
    
    .pricing-container {
        padding: 25px;
        margin: 0 15px;
    }
    
    .features h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .features ul {
        gap: 12px;
    }
    
    .features li {
        font-size: 0.95rem;
        gap: 12px;
    }
    
    .features li i {
        font-size: 1rem;
    }
    
    .plan-card {
        padding: 25px;
    }
    
    .plan-header {
        margin-bottom: 30px;
    }
    
    .plan-header h4 {
        font-size: 1.2rem;
    }
    
    .price h1 {
        font-size: 2.8rem;
    }
    
    .price p {
        font-size: 0.9rem;
    }
    
    .cta-btn {
        padding: 15px 20px;
        font-size: 1rem;
        margin: 20px 0;
    }
    
    .plan-features {
        gap: 12px;
        margin-top: 25px;
    }
    
    .feature-item {
        padding: 8px 10px;
        gap: 10px;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .plan-badge {
        right: -25px;
        font-size: 0.75rem;
        padding: 5px 25px;
    }
    
    .plan-badge i {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .pricing-section .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-container {
        padding: 20px;
        margin: 0 10px;
    }
    
    .features h3 {
        font-size: 1.3rem;
    }
    
    .features li {
        font-size: 0.9rem;
    }
    
    .price h1 {
        font-size: 2.5rem;
    }
    
    .cta-btn {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .plan-badge {
        right: -20px;
        font-size: 0.7rem;
        padding: 4px 20px;
    }
}

























