:root {
    --bg-color: #191e24;
    --text-color: #ffffff;
    --accent: #FF6B57; /* Original Tune */
    --accent-glow: rgba(255, 107, 87, 0.2);
    --glass-bg: #1c2128;
    --glass-border: #30363d;
    
    /* Fundingrock Reference Neon Colors */
    --neon-lime: #ccff00;
    --neon-lime-glow: rgba(204, 255, 0, 0.3);
    --neon-cyan: #00E5FF;
    --neon-cyan-glow: rgba(0, 229, 255, 0.3);
    --neon-purple: #9d4edd;
    --neon-purple-glow: rgba(157, 78, 221, 0.3);
    
    --font-heading: 'Satoshi', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: initial; /* Handled by Lenis */
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}



/* Typography Utilities */
.gold-text {
    color: var(--accent);
}

.accent-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan-glow);
}

.text-gradient {
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

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

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 2.5rem 0;
}

/* Ensure the first section on secondary pages clears the fixed navbar */
#smooth-content > section:first-child:not(.hero) {
    padding-top: 150px;
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    font-size: 3rem;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0;
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: var(--glass-border);
    position: relative;
    overflow: hidden;
}

.loader-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: loading 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
}

/* Particles Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: background-color 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem 1rem 0;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    text-decoration: none !important;
    outline: none !important;
    border-bottom: none !important;
}

.logo-link img {
    border: none !important;
    outline: none !important;
}

.logo-text {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 5px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.custom-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.custom-logo:hover {
    transform: scale(1.05);
}

.custom-logo-large {
    max-height: 120px;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: none;
    padding-right: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-grow: 1;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-container > .btn {
    align-self: center;
    margin-left: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.primary-btn {
    background-color: transparent;
    color: var(--neon-lime);
    border: 1px solid var(--neon-lime);
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--neon-lime);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.primary-btn:hover {
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--neon-lime-glow);
}

.primary-btn:hover::before {
    transform: translateX(100%);
}

.secondary-btn {
    background-color: var(--glass-bg);
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.hero-content {
    max-width: 650px;
    margin-top: 5rem;
}

.hero-title {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}


.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Hero Neon Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    opacity: 0; /* for gsap */
}

.neon-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem;
    border-radius: 50%;
    background: rgba(28, 33, 40, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.05),
                0 10px 40px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 320px;
}

.neon-shape {
    font-size: 6rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #00E5FF,
        0 0 20px #00E5FF,
        0 0 40px #00E5FF,
        0 0 60px #00E5FF;
}

.neon-text-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; 
    font-size: 1.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 12px;
    margin-right: -12px;
    text-shadow: 
        0 0 2px #fff,
        0 0 5px #fff,
        0 0 10px #FF00FF,
        0 0 20px #FF00FF,
        0 0 40px #FF00FF;
}

.hero-glow-1, .hero-glow-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
}

.hero-glow-1 {
    background: #00E5FF;
    top: 10%;
    right: 15%;
    animation: pulse 4s ease-in-out infinite alternate;
}

.hero-glow-2 {
    background: #FF00FF;
    bottom: 10%;
    left: 15%;
    animation: pulse 5s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.2; }
    100% { transform: scale(1.2); opacity: 0.5; }
}

/* Section Titles */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Glass Card (Big Boxes Glow) */
.glass-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover::before {
    opacity: 0.35;
}

.glass-card > * {
    position: relative;
    z-index: 1;
}

/* Service Card Neon Glows & Colors */
.glass-card.neon-cyan:hover {
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 -5px 25px rgba(0, 229, 255, 0.15), 0 10px 30px rgba(0,0,0,0.5);
}
.glass-card.neon-cyan::before {
    background: #00E5FF;
}

.glass-card.neon-purple:hover {
    border-color: rgba(176, 38, 255, 0.5);
    box-shadow: 0 -5px 25px rgba(176, 38, 255, 0.15), 0 10px 30px rgba(0,0,0,0.5);
}
.glass-card.neon-purple::before {
    background: #B026FF;
}

.glass-card.neon-accent:hover {
    border-color: var(--accent);
    box-shadow: 0 -5px 25px var(--accent-glow), 0 10px 30px rgba(0,0,0,0.5);
}
.glass-card.neon-accent::before {
    background: var(--accent);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-stats {
    display: flex;
    gap: 1.5rem;
}

.stat-item .stat-number {
    font-size: 4rem;
    color: var(--neon-lime);
    line-height: 1;
    text-shadow: 0 0 15px var(--neon-lime-glow);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.glass-card.neon-purple .service-icon {
    color: var(--neon-purple);
}

.glass-card.neon-accent .service-icon {
    color: var(--accent);
}

.glass-card.neon-cyan .service-icon {
    color: var(--neon-cyan);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

/* Small Boxes Dots */
.feature-item::before, .feature-item::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    opacity: 0.5;
    background: var(--neon-lime);
    box-shadow: 0 0 8px var(--neon-lime-glow);
    transition: transform 0.3s, opacity 0.3s;
}

.feature-item::before {
    top: 8px;
    right: 8px;
}

.feature-item::after {
    bottom: 8px;
    left: 8px;
}

.feature-item:hover::before, .feature-item:hover::after {
    opacity: 1;
    transform: scale(1.5);
}

.feature-item i {
    color: var(--neon-lime);
    text-shadow: 0 0 10px var(--neon-lime-glow);
}

/* Process Section */
.process {
    padding-top: 1rem !important;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.timeline-svg {
    position: absolute;
    left: 22px;
    top: 40px;
    width: 4px;
    height: calc(100% - 100px);
    z-index: 0;
}

.process-step {
    position: relative;
    margin-left: 60px;
    margin-bottom: 3.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    z-index: 1;
    overflow: hidden;
}

/* Big Box Right Corner Glow */
.process-step::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(45px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover::before {
    opacity: 0.35;
}

.process-step > * {
    position: relative;
    z-index: 1;
}

.step-dot {
    position: absolute;
    left: -46px; /* Align with svg line */
    top: 40px;
    width: 20px;
    height: 20px;
    background: var(--bg-color);
    border: 3px solid var(--glass-border);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
}

.step-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.05);
}

.process-step h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Neon Glows for Process Steps */
.step-cyan {
    border-top: 2px solid #00E5FF;
}
.step-cyan::before {
    background: #00E5FF;
}
.step-cyan:hover {
    box-shadow: 0 -5px 30px rgba(0, 229, 255, 0.15), 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(0, 229, 255, 0.5);
}
.step-cyan:hover .step-dot {
    border-color: #00E5FF;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
    background: #00E5FF;
}
.step-cyan .step-badge {
    color: #00E5FF;
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.step-purple {
    border-top: 2px solid #B026FF;
}
.step-purple::before {
    background: #B026FF;
}
.step-purple:hover {
    box-shadow: 0 -5px 30px rgba(176, 38, 255, 0.15), 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(176, 38, 255, 0.5);
}
.step-purple:hover .step-dot {
    border-color: #B026FF;
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.5);
    background: #B026FF;
}
.step-purple .step-badge {
    color: #B026FF;
    border: 1px solid rgba(176, 38, 255, 0.3);
}

.step-accent {
    border-top: 2px solid var(--accent);
}
.step-accent::before {
    background: var(--accent);
}
.step-accent:hover {
    box-shadow: 0 -5px 30px var(--accent-glow), 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(255, 107, 87, 0.5);
}
.step-accent:hover .step-dot {
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
    background: var(--accent);
}
.step-accent .step-badge {
    color: var(--accent);
    border: 1px solid rgba(255, 107, 87, 0.3);
}

.step-green {
    border-top: 2px solid #ccff00;
}
.step-green::before {
    background: #ccff00;
}
.step-green:hover {
    box-shadow: 0 -5px 30px rgba(204, 255, 0, 0.15), 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(204, 255, 0, 0.5);
}
.step-green:hover .step-dot {
    border-color: #ccff00;
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.5);
    background: #ccff00;
}
.step-green .step-badge {
    color: #ccff00;
    border: 1px solid rgba(204, 255, 0, 0.3);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.portfolio-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    margin-top: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.5rem;
}

.portfolio-info p {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Testimonials */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin: 2rem 0;
    line-height: 1.4;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header h3 {
    font-size: 1.2rem;
}

.faq-header i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    transition: transform 0.3s;
}

.faq-item.active .faq-header i {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-content p {
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA */
.cta-box {
    text-align: center;
    padding: 5rem 2rem;
    border-color: rgba(255, 107, 87, 0.3);
    background: linear-gradient(135deg, rgba(28,33,40,1) 0%, rgba(255,107,87,0.1) 100%);
}

.mt-4 {
    margin-top: 2rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 4rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: -1.2rem;
}

.footer h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--accent);
}

.footer-contact a {
    display: block;
    margin-bottom: 0.8rem;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-page {
    padding-top: 150px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-info, .contact-form-wrapper {
    padding: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-lime);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item .text-2xl {
    font-size: 2rem;
    color: var(--neon-cyan);
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    margin-bottom: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--text-color);
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-lime);
    box-shadow: 0 0 10px rgba(189, 255, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.w-100 {
    width: 100%;
}



/* === EXTRA PREMIUM SECTIONS CSS === */

/* 1. Background Video */
.video-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
    overflow: hidden;
}
.video-background video {
    min-width: 100%; min-height: 100%;
    object-fit: cover;
    opacity: 0.2;
}
.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(25, 30, 36, 0.6) 0%, rgba(25, 30, 36, 1) 100%);
    z-index: -1;
}

/* 2. Marquee */
.client-logos { padding: 0 !important; }
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}
.logo-item {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 4rem;
    font-family: var(--font-heading);
    opacity: 0.4;
    transition: opacity 0.3s;
}
.logo-item:hover { opacity: 1; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 3. Vision */
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.v-point { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; font-size: 1.2rem; font-weight: 500; color: var(--neon-cyan); }
.v-point i { font-size: 2rem; }
.vision-visual { position: relative; height: 400px; display: flex; justify-content: center; align-items: center; }


/* === Cinematic GSAP Animation === */
.cinematic-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    background: #0B0B0B;
    border-radius: 20px;
    overflow: hidden;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.cinematic-scene {
    position: relative;
    width: 100%;
    transform-origin: 60% 60%; /* Dolly-in target (the laptop/face) */
}

.cinematic-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* Background Particles */
.cine-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
}
.c-particle {
    position: absolute;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    filter: blur(2px);
    animation: c-float 10s infinite linear;
}
.p1 { width: 4px; height: 4px; top: 20%; left: 30%; animation-duration: 12s; }
.p2 { width: 6px; height: 6px; top: 60%; left: 80%; animation-duration: 15s; background: rgba(255, 106, 0, 0.4); }
.p3 { width: 3px; height: 3px; top: 40%; left: 10%; animation-duration: 8s; background: rgba(77, 166, 255, 0.4); }

@keyframes c-float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-50px) translateX(20px); opacity: 0; }
}

/* DOM Overlays */
.cine-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
}

.cine-typewriter-container {
    position: absolute;
    top: 40%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 200px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    font-weight: bold;
    color: #FF6A00;
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.8);
    opacity: 0; /* Handled by GSAP */
}

.cine-typewriter span { color: #4DA6FF; text-shadow: 0 0 10px rgba(77, 166, 255, 0.8); }

.cine-float {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    opacity: 0;
    text-shadow: 0 0 15px rgba(255,255,255,0.8);
}

.cine-icon-1 { top: 65%; left: 55%; color: #FF6A00; }
.cine-icon-2 { top: 65%; left: 50%; color: #4DA6FF; }
.cine-icon-3 { top: 65%; left: 60%; color: #00E5FF; }

.cine-card {
    top: 75%; left: 55%;
    width: 60px; height: 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.cine-card-2 {
    top: 75%; left: 50%;
    width: 40px; height: 60px;
    background: rgba(77, 166, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(77, 166, 255, 0.5);
    border-radius: 6px;
}

/* 4. Metrics */
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; text-align: center; }
.metric-circle { width: 180px; height: 180px; border-radius: 50%; border: 4px solid; margin: 0 auto 1.5rem; display: flex; justify-content: center; align-items: center; font-size: 3.5rem; font-weight: 700; font-family: var(--font-heading); box-shadow: 0 0 30px inset, 0 0 30px; }
.metric-circle.neon-lime { border-color: var(--neon-lime); color: var(--neon-lime); box-shadow: 0 0 20px inset var(--neon-lime-glow), 0 0 20px var(--neon-lime-glow); }
.metric-circle.neon-cyan { border-color: var(--neon-cyan); color: var(--neon-cyan); box-shadow: 0 0 20px inset var(--neon-cyan-glow), 0 0 20px var(--neon-cyan-glow); }
.metric-circle.neon-purple { border-color: var(--neon-purple); color: var(--neon-purple); box-shadow: 0 0 20px inset var(--neon-purple-glow), 0 0 20px var(--neon-purple-glow); }
.metric-circle .percent { font-size: 2rem; }
.counter-text { font-size: 3rem; }

/* 5. Before & After Slider */
.ba-slider-container { position: relative; width: 100%; max-width: 900px; margin: 4rem auto 0; height: 500px; overflow: hidden; border-radius: 20px; user-select: none; }
.ba-image-before, .ba-image-after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.ba-image-before { width: 50%; z-index: 2; overflow: hidden; border-right: 2px solid #fff; }
.ba-placeholder { width: 900px; height: 500px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.before-ph { background: #111; color: #555; }
.after-ph { background: linear-gradient(45deg, #000, #1a1a1a); color: #fff; }
.ba-placeholder h3 { font-size: 2.5rem; margin-bottom: 1rem; font-family: var(--font-heading); }
.ba-slider-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 40px; transform: translateX(-50%); z-index: 3; cursor: ew-resize; display: flex; justify-content: center; align-items: center; }
.handle-line { position: absolute; width: 4px; height: 100%; background: #fff; box-shadow: 0 0 10px rgba(0,0,0,0.5); }
.handle-button { width: 40px; height: 40px; background: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #000; font-size: 1.2rem; box-shadow: 0 0 15px rgba(0,0,0,0.3); z-index: 2; pointer-events: none; }

/* 6. Horizontal Scroll */
.portfolio {
    overflow: hidden;
    width: 100%;
}
.horizontal-scroll-wrapper { display: flex; width: max-content; }
.horizontal-scroll-wrapper .portfolio-grid { display: flex; gap: 1.5rem; width: 250vw; padding: 2rem 5vw; }
.horizontal-scroll-wrapper .portfolio-item { width: 800px; max-width: 80vw; flex-shrink: 0; margin-bottom: 0; }

/* 7. Industries */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2rem; }
.industry-card { padding: 3rem 2rem; text-align: center; position: relative; overflow: hidden; cursor: pointer; }
.industry-icon { font-size: 3.5rem; margin-bottom: 1.5rem; color: var(--text-color); transition: color 0.3s; display: inline-block; }
.industry-card h3 { font-size: 1.2rem; transition: transform 0.3s; }
.hover-glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, var(--neon-cyan-glow) 0%, transparent 70%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.industry-card:hover .industry-icon { color: var(--neon-cyan); transform: translateY(-10px); }
.industry-card:hover h3 { transform: translateY(-5px); color: var(--neon-cyan); }
.industry-card:hover .hover-glow { opacity: 1; }

/* 8. Growth */
.growth-banner { padding: 2.5rem; text-align: center; background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%); border: 1px solid var(--glass-border); }
.growth-stats { display: flex; justify-content: space-around; margin-top: 2rem; }
.stat-item { text-align: center; }
.stat-num { font-size: 5rem; font-family: var(--font-heading); margin-bottom: 0.5rem; }

/* 9. World Map */
.map-container { position: relative; height: 500px; margin-top: 2rem; border: 1px solid var(--glass-border); overflow: hidden; border-radius: 20px; }
.map-bg { position: absolute; top:0; left:0; width:100%; height:100%; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 15px); }
.map-dot { position: absolute; width: 15px; height: 15px; background: var(--neon-lime); border-radius: 50%; box-shadow: 0 0 20px var(--neon-lime); }
.map-dot::after { content: ''; position: absolute; top: -15px; left: -15px; right: -15px; bottom: -15px; border-radius: 50%; border: 2px solid var(--neon-lime); animation: ripple 2s infinite ease-out; }

/* 10. Blogs */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.blog-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.blog-img { height: 250px; background-size: cover; background-position: center; transition: transform 0.5s; }
.placeholder-bg { background-image: url('images/blog_web_design.png'); }
.placeholder-bg2 { background-image: url('images/blog_performance.png'); }
.placeholder-bg3 { background-image: url('images/blog_seo.png'); }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-content { padding: 2.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.blog-tag { font-size: 0.8rem; color: var(--neon-lime); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 1rem; align-self: flex-start; }
.blog-content h3 { font-size: 1.4rem; margin-bottom: 1rem; line-height: 1.4; }
.blog-content p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1rem; flex-grow: 1; }
.read-more { color: var(--text-color); font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.3s; }
.read-more:hover { color: var(--neon-cyan); }

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .vision-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .industry-grid { grid-template-columns: 1fr 1fr; }
    .growth-stats { flex-direction: column; gap: 1.5rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .horizontal-scroll-wrapper .portfolio-grid { width: 500vw; padding: 2rem; }
    .horizontal-scroll-wrapper .portfolio-item { width: 85vw; }
    .ba-placeholder h3 { font-size: 1.5rem; }
    .ba-placeholder { width: calc(100vw - 2rem); }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* === Reviews Grid & Marquee === */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.client-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

.client-info p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--neon-lime);
}

/* Horizontal Review Marquee */
.review-marquee-container {
    margin-top: 4rem;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.review-marquee {
    width: 100%;
    overflow: hidden;
}

.review-marquee .marquee-content {
    display: flex;
    width: max-content;
    animation: scroll-marquee 80s linear infinite;
}

.review-marquee .marquee-content:hover {
    animation-play-state: paused;
}

.bonus-review {
    padding: 1rem 2rem;
    margin: 0 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.bonus-review strong {
    color: var(--neon-cyan);
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 992px) {
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}


/* === Pricing Modal Styles === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.pricing-modal-content {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .pricing-modal-content {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.close-modal-btn:hover {
    color: var(--neon-cyan);
}

.modal-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.3);
}

/* Make the middle/professional tier stand out */
.pricing-card.popular {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--neon-cyan), var(--electric-blue));
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-tier {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.pricing-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-features li i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: -2px;
}

.pricing-delivery {
    background: rgba(0, 229, 255, 0.1);
    color: var(--neon-cyan);
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.know-more-btn {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    border-radius: 30px;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
}
.know-more-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 15px var(--neon-cyan-glow);
}

/* Custom Scrollbar for Modal */
.pricing-modal-content::-webkit-scrollbar { width: 8px; }
.pricing-modal-content::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); border-radius: 10px; }
.pricing-modal-content::-webkit-scrollbar-thumb { background: var(--neon-cyan); border-radius: 10px; }

@media (max-width: 768px) {
    .pricing-modal-content { padding: 1.5rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .modal-title { font-size: 2rem; margin-bottom: 2rem; }
}


/* === Fundingrock Reference Dots === */
.testimonial-card {
    position: relative;
    z-index: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0; 
    right: 0; 
    left: auto; 
    bottom: auto;
    width: 200px;
    height: 180px;
    z-index: 0;
    background-image: radial-gradient(var(--neon-cyan) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: 0.4;
    -webkit-mask-image: radial-gradient(circle at top right, black 0%, transparent 70%);
    mask-image: radial-gradient(circle at top right, black 0%, transparent 70%);
    border-top-right-radius: 20px;
    pointer-events: none;
}

.testimonial-card > * {
    position: relative;
    z-index: 2; /* Text above dots */
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.whatsapp-btn svg {
    margin-top: 2px;
}

/* === Mobile Responsiveness (Advanced) === */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 5rem;
    }
    .hero-content {
        margin-top: 2rem;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .about-grid, .vision-grid {
        grid-template-columns: 1fr;
    }
    .ba-slider-container {
        height: 300px;
    }
    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.hamburger.toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}
.hamburger.toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    /* Navbar adjustments */
    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--glass-bg);
        backdrop-filter: blur(10px);
        padding: 2rem;
        gap: 2rem;
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s ease, opacity 0.4s ease;
        border-bottom: 1px solid var(--glass-border);
        z-index: 999;
    }
    .nav-links.nav-active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-container > .btn {
        display: none; /* Hide primary CTA on mobile nav to save space */
    }
    .logo-link {
        border-right: none;
        padding: 0.5rem 0;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    .logo-text {
        margin-top: 0;
    }

    /* Typography */
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }

    /* Grids */
    .services-grid, .features-grid, .metric-grid, .industry-grid, .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Process Timeline */
    .timeline-svg {
        left: 10px; /* Adjust line position */
    }
    .process-step {
        margin-left: 30px;
        padding: 1.5rem;
    }
    .step-dot {
        left: -32px;
        width: 16px;
        height: 16px;
    }

    /* Metrics */
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Stats */
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    /* Pricing */
    .pricing-modal-content {
        padding: 1rem;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo {
        align-items: center;
        margin: 0 auto 1.5rem auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .neon-wrapper {
        width: 250px;
        height: 250px;
    }
    .neon-shape {
        font-size: 4rem;
    }
    .client-logos .marquee-content {
        animation: scroll-marquee 15s linear infinite; /* Faster on mobile */
    }
}
