:root {
    --bg-black: #02040a;
    --navy-blue: #050b18;
    --card-blue: #0a1226;
    --electric-blue: #00a2ff;
    --white: #ffffff;
    --text-dim: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif; 
    cursor: default; 
}

html { scroll-behavior: smooth; }

body { 
    background: linear-gradient(135deg, var(--bg-black) 0%, var(--navy-blue) 25%, var(--bg-black) 50%, var(--navy-blue) 75%, var(--bg-black) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--white); 
    overflow-x: hidden;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated Background Particles */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 162, 255, 0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0, 162, 255, 0.15), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(0, 162, 255, 0.1), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0, 162, 255, 0.15), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(0, 162, 255, 0.1), transparent),
        radial-gradient(1px 1px at 33% 90%, rgba(0, 162, 255, 0.15), transparent);
    background-size: 200% 200%;
    animation: particleMove 20s ease infinite;
}

@keyframes particleMove {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* --- Reveal on Scroll Animation --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Hero Fade In Animation --- */
.animate-fade-in {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.animate-fade-in:nth-child(1) { animation-delay: 0.2s; }
.animate-fade-in:nth-child(2) { animation-delay: 0.4s; }
.animate-fade-in:nth-child(3) { animation-delay: 0.6s; }
.animate-fade-in:nth-child(4) { animation-delay: 0.8s; }

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

/* --- Hover Effects --- */
.hover-grow { 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
.hover-grow:hover { 
    transform: scale(1.05); 
    box-shadow: 0 15px 40px rgba(0, 162, 255, 0.3);
}

.hover-lift { 
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; 
}
.hover-lift:hover { 
    transform: translateY(-12px); 
    border-color: var(--electric-blue);
    box-shadow: 0 20px 50px rgba(0, 162, 255, 0.2);
}

.hover-slide { 
    transition: transform 0.3s ease, background 0.3s ease; 
}
.hover-slide:hover { 
    transform: translateX(10px); 
    background: var(--card-blue); 
}

/* --- Navbar --- */
.navbar-wrapper { 
    position: fixed; 
    top: 20px; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    display: flex; 
    justify-content: center; 
}

.navbar { 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    width: 92%; 
    max-width: 1100px; 
    padding: 12px 35px; 
    border-radius: 100px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: slideDown 0.5s ease-out;
}

/* Mobile navbar adjustments */
@media (max-width: 900px) {
    .navbar {
        width: 95%;
        padding: 12px 20px;
        border-radius: 50px;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    text-decoration: none; 
    color: #000; 
    font-weight: 800; 
    font-size: 1.4rem;
    z-index: 1002;
}

.nav-logo-img { 
    height: 35px; 
    border-radius: 5px; 
}

.nav-links { 
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a { 
    color: #000; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--electric-blue);
}

.nav-cta { 
    background: #000; 
    color: #fff !important; 
    padding: 10px 25px; 
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--electric-blue);
    transform: scale(1.05);
}

/* Mobile Menu Toggle Button - CRITICAL FOR MOBILE */
.mobile-menu-toggle {
    display: none;
    background: var(--electric-blue);
    border: 2px solid var(--electric-blue);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 14px 18px;
    border-radius: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 162, 255, 0.5);
    position: relative;
}

.mobile-menu-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 162, 255, 0.7);
    background: #008be0;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle i {
    pointer-events: none;
    display: block;
    font-size: 1.3rem;
}

/* --- Hero --- */
.hero { 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    text-align: center; 
    background: radial-gradient(circle at center, var(--navy-blue) 0%, var(--bg-black) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 162, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-inner { 
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title { 
    font-size: clamp(3.5rem, 12vw, 7.5rem); 
    font-weight: 900; 
    line-height: 0.85; 
    letter-spacing: -4px; 
    margin-bottom: 25px; 
}

.blue-gradient { 
    color: var(--electric-blue);
    text-shadow: 0 0 30px rgba(0, 162, 255, 0.5);
}

.hero-desc { 
    font-size: 1.25rem; 
    color: var(--text-dim); 
    max-width: 750px; 
    margin: 0 auto 40px; 
}

.badge-blue { 
    border: 1px solid var(--electric-blue); 
    color: var(--electric-blue); 
    padding: 5px 20px; 
    border-radius: 50px; 
    font-size: 0.8rem; 
    margin-bottom: 25px; 
    display: inline-block; 
    font-weight: 800;
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.3);
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Services Section (FIXED GRID) --- */
section { 
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title { 
    font-size: 3rem; 
    font-weight: 800; 
    margin-bottom: 60px; 
    text-align: center; 
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Center the 4th service box */
.service-box-centered {
    grid-column: 2 / 3;
}

.service-box { 
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--card-blue) 100%);
    border: 2.5px solid var(--white); 
    padding: 60px 40px; 
    border-radius: 35px; 
    transition: all 0.4s ease; 
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 162, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-box:hover::before {
    opacity: 1;
}

.icon-circle { 
    font-size: 3rem; 
    color: var(--electric-blue); 
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.service-box:hover .icon-circle {
    transform: scale(1.2) rotate(10deg);
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-box p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* --- Packages --- */
.package-header { 
    text-align: center; 
    margin-bottom: 60px; 
}

.package-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.title-line { 
    width: 50px; 
    height: 3px; 
    background: var(--electric-blue); 
    margin: 15px auto; 
}

.package-row { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px; 
    align-items: flex-start; 
}

.pkg-card { 
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--card-blue) 100%);
    border: 1.5px solid var(--border); 
    padding: 50px 35px; 
    border-radius: 25px; 
    text-align: center; 
    position: relative; 
    transition: all 0.4s ease;
}

.pkg-card.featured { 
    border: 2.5px solid var(--electric-blue); 
    box-shadow: 0 0 40px rgba(0, 162, 255, 0.25); 
    transform: scale(1.05); 
}

.pkg-card h3 { 
    font-size: 1.5rem; 
    margin-bottom: 20px; 
    font-weight: 700; 
}

.pkg-price { 
    font-size: 3.5rem; 
    font-weight: 800; 
    color: var(--electric-blue); 
    text-shadow: 0 0 20px rgba(0, 162, 255, 0.3); 
    line-height: 1; 
    margin-bottom: 5px; 
}

.pkg-price-custom { 
    font-size: 3.5rem; 
    font-weight: 800; 
    color: var(--electric-blue); 
    margin-bottom: 5px; 
}

.pkg-sub { 
    font-size: 0.9rem; 
    color: var(--text-dim); 
    display: block; 
    margin-bottom: 30px; 
}

.pkg-features { 
    list-style: none; 
    text-align: left; 
    margin-bottom: 40px; 
    border-top: 1px solid var(--border); 
    padding-top: 25px; 
}

.pkg-features li { 
    padding: 12px 0; 
    font-size: 0.95rem; 
    color: var(--white); 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

.pkg-features li i { 
    color: #10B981; 
    font-size: 1.1rem; 
}

.pkg-btn-outline { 
    display: block; 
    border: 1.5px solid var(--white); 
    color: var(--white); 
    padding: 15px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    transition: all 0.3s ease; 
}

.pkg-btn-outline:hover {
    background: var(--white);
    color: var(--bg-black);
    transform: scale(1.05);
}

.pkg-btn-blue { 
    display: block; 
    background: var(--electric-blue); 
    color: var(--white); 
    padding: 15px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 700; 
    box-shadow: 0 10px 20px rgba(0, 162, 255, 0.2); 
    transition: all 0.3s ease; 
}

.pkg-btn-blue:hover {
    background: #008be0;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 162, 255, 0.4);
}

.most-popular-badge { 
    position: absolute; 
    top: 0; 
    right: 0; 
    background: var(--electric-blue); 
    color: #fff; 
    padding: 6px 40px; 
    transform: translate(30%, -30%) rotate(45deg); 
    font-size: 0.75rem; 
    font-weight: 800; 
}

/* --- Impact Section --- */
.impact {
    background: var(--bg-black);
    perspective: 1500px;
}

.impact-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

.tilt-card {
    width: 100%;
    max-width: 1000px;
    background: linear-gradient(135deg, #0a0a0a 0%, var(--card-blue) 100%);
    border-radius: 40px;
    padding: 40px;
    border: 1px solid var(--border);
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tilt-card:hover {
    box-shadow: 0 30px 60px rgba(0, 162, 255, 0.2);
}

.tilt-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tilt-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.tilt-text h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: var(--electric-blue);
}

.tilt-text p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
}

.tilt-image-container {
    background: #111;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid var(--border);
    transform: translateZ(50px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.tilt-image-container:hover {
    transform: translateZ(60px) scale(1.02);
}

.tilt-image-container img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

/* --- Testimonial Slider --- */
.testimonial-wrapper { 
    overflow: hidden; 
    width: 100%; 
    padding: 20px 0; 
}

.testimonial-track { 
    display: flex; 
    width: calc(400px * 8); 
    animation: scroll 30s linear infinite; 
}

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

.t-card { 
    width: 400px; 
    background: linear-gradient(135deg, #080808 0%, var(--card-blue) 100%);
    border: 1px solid var(--border); 
    padding: 40px; 
    margin: 0 15px; 
    border-radius: 25px; 
    flex-shrink: 0; 
    text-align: left;
    transition: all 0.3s ease;
}

.t-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 40px rgba(0, 162, 255, 0.2);
}

.client-header { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 20px; 
}

.client-pfp { 
    width: 55px; 
    height: 55px; 
    border-radius: 50%; 
    border: 2px solid var(--electric-blue); 
    object-fit: cover; 
}

@keyframes scroll { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(calc(-400px * 4)); } 
}

/* --- Contact Section --- */
.contact-header { 
    text-align: center; 
    margin-bottom: 60px; 
}

.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: 40px; 
    align-items: start; 
}

.info-card { 
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--card-blue) 100%);
    padding: 25px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    margin-bottom: 20px; 
    border: 1px solid var(--border); 
    transition: all 0.3s ease; 
}

.info-icon { 
    font-size: 1.4rem; 
    color: var(--electric-blue); 
    width: 50px; 
    height: 50px; 
    background: rgba(0,162,255,0.1); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.contact-form-card { 
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--card-blue) 100%);
    padding: 40px; 
    border-radius: 15px; 
    border: 1px solid var(--border); 
}

.form-group { 
    margin-bottom: 25px; 
    text-align: left; 
}

.form-group label { 
    display: block; 
    margin-bottom: 10px; 
    font-size: 0.9rem; 
    font-weight: 500; 
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%; 
    background: #0c152d; 
    border: 1px solid rgba(255,255,255,0.1); 
    padding: 15px; 
    border-radius: 8px; 
    color: #fff; 
    font-size: 0.95rem; 
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--electric-blue);
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.2);
}

.send-btn { 
    width: 100%; 
    background: var(--electric-blue); 
    border: none; 
    padding: 16px; 
    border-radius: 8px; 
    color: #fff; 
    font-weight: 700; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: #008be0;
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 162, 255, 0.3);
}

/* --- Buttons --- */
.btn-main-blue { 
    background: var(--electric-blue); 
    color: #fff; 
    padding: 15px 40px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 800; 
    border: none; 
    display: inline-block; 
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 162, 255, 0.2);
}

.btn-main-blue:hover {
    background: #008be0;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 162, 255, 0.4);
}

.btn-outline { 
    border: 2px solid #fff; 
    color: #fff; 
    padding: 13px 40px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600; 
    display: inline-block; 
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--bg-black);
    transform: scale(1.05);
}

/* --- Popup --- */
.popup-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: #000; 
    z-index: 2000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: opacity 0.8s;
}

.popup-content { 
    background: #fff; 
    color: #000; 
    padding: 50px; 
    border-radius: 30px; 
    text-align: center; 
    max-width: 450px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: popupAppear 0.5s ease-out;
}

@keyframes popupAppear {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-icon {
    font-size: 3.5rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
    display: block;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.popup-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.popup-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
}

/* --- Footer --- */
footer {
    background: var(--bg-black);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

footer p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* --- Mobile Responsive --- */
@media (max-width: 900px) {
    .navbar {
        width: 95%;
        padding: 12px 20px;
        border-radius: 50px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-width: 50px;
        min-height: 50px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .nav-logo-img {
        height: 30px;
    }
    
    .nav-links {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 245, 255, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 30px 0;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        pointer-events: none;
        border-radius: 0 0 30px 30px;
        z-index: 999;
        display: flex !important;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links a {
        padding: 18px 40px;
        font-size: 1.1rem;
        font-weight: 600;
        border-bottom: 1px solid rgba(0, 162, 255, 0.1);
        transition: all 0.3s ease;
        color: #000;
        position: relative;
        overflow: hidden;
        margin-left: 0;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: var(--electric-blue);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(0, 162, 255, 0.15);
        padding-left: 50px;
        color: var(--electric-blue);
    }
    
    .nav-links a:hover::before {
        transform: translateX(0);
    }
    
    .nav-cta {
        margin: 15px 40px 10px;
        text-align: center;
        border-radius: 50px;
        border-bottom: none !important;
        padding: 16px 30px !important;
        background: var(--electric-blue) !important;
        color: white !important;
        font-weight: 700;
        box-shadow: 0 8px 25px rgba(0, 162, 255, 0.4);
    }
    
    .nav-cta:hover {
        padding-left: 30px !important;
        transform: scale(1.05);
        background: #008be0 !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .service-box-centered {
        grid-column: auto;
    }
    
    .package-row, 
    .contact-grid { 
        grid-template-columns: 1fr; 
    }
    
    .hero-title { 
        font-size: 2.5rem; 
        letter-spacing: -2px; 
    }
    
    .pkg-card.featured { 
        transform: scale(1); 
        margin: 20px 0; 
    }
    
    .tilt-body { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .tilt-text h2 { 
        font-size: 2.5rem; 
    }
    
    .tilt-card { 
        padding: 30px 20px; 
        border-radius: 25px; 
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-outline {
        margin-left: 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .about-header h2 {
        font-size: 2rem;
    }

    .story-content .highlight {
        font-size: 1.1rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .nav-logo-img {
        height: 25px;
    }
    
    .mobile-menu-toggle {
        min-width: 45px;
        min-height: 45px;
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* ====================================
   ABOUT US SECTION
   ==================================== */
.about-us {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-black) 0%, var(--navy-blue) 50%, var(--bg-black) 100%);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 162, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 162, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.subtitle {
    color: var(--electric-blue);
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.glow-text {
    color: var(--electric-blue);
    text-shadow: 0 0 30px rgba(0, 162, 255, 0.6);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-content p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.story-content .highlight {
    color: var(--white);
    font-size: 1.3rem;
    border-left: 4px solid var(--electric-blue);
    padding-left: 25px;
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 500;
}

/* ====================================
   PROJECTS SECTION
   ==================================== */
.projects-section {
    padding: 100px 0;
    background: var(--bg-black);
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-top: -40px;
    margin-bottom: 60px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--card-blue) 100%);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: scale(1);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 162, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: scale(1.08) translateY(-8px);
    border-color: var(--electric-blue);
    box-shadow: 0 25px 60px rgba(0, 162, 255, 0.35);
    z-index: 10;
}

/* Shrink other cards when one is hovered */
.projects-grid:hover .project-card:not(:hover) {
    transform: scale(0.92);
    opacity: 0.6;
}

.project-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.03);
}

.project-card h3 {
    color: var(--electric-blue);
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.3rem;
}

.project-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 60px;
    line-height: 1.6;
}

.project-link-btn {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 1.5px solid var(--electric-blue);
    color: var(--electric-blue);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.project-link-btn:hover {
    background: var(--electric-blue);
    color: white;
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.5);
    transform: translateY(-2px);
    cursor: pointer;
}

/* Optional: Removable Background Effects Class */
.disable-bg-effects .animated-bg {
    display: none;
}

.disable-bg-effects body {
    background: var(--bg-black);
    animation: none;
}

.disable-bg-effects .about-us::before {
    display: none;
}