/* Google Fonts */
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Orbitron', Arial, sans-serif;
    background:
        linear-gradient(135deg, #0f1020 0%, #1a1b2f 100%),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 30px,
            rgba(0, 255, 247, 0.5) 30px,
            rgba(0, 255, 247, 0.5) 31px);
    color: #e0e6ff;
    scroll-behavior: smooth;
}

body {
    padding-top: 80px;
    /* Account for fixed navbar */
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.footer-logo {
    font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
    letter-spacing: 1.5px;
}

.glow,
.logo span,
.footer-logo span {
    color: #00fff7;
    text-shadow: 0 0 8px #00fff7, 0 0 16px #0ff, 0 0 32px #00fff7;
}

a {
    color: #00fff7;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #a259ff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5vw;
    background: rgba(10, 10, 30, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 16px 0 #0ff2;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #00fff7;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 100px;
    width: auto;
    transition: transform 0.2s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links li a {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-links li a:hover {
    background: #1a1b2f;
    color: #fff;
}

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(120deg, #1a1b2f 60%, #0f1020 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 8vh;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 32px rgba(0, 255, 247, 0.3);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    animation: glowPulse 2.5s infinite alternate;
}

.hero h1 span {
    color: #a259ff;
    text-shadow: 0 0 12px #a259ff, 0 0 32px #a259ff;
}

.tagline {
    font-size: 1.3rem;
    color: #b3baff;
    margin-bottom: 2rem;
}

.cta-btn,
.vision-btn,
.package-btn {
    display: inline-block;
    background: linear-gradient(90deg, #00fff7 0%, #a259ff 100%);
    color: #18192a;
    font-weight: 700;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 32px;
    font-size: 1.1rem;
    box-shadow: 0 0 16px #00fff7a0;
    cursor: pointer;
    transition: background 0.3s, color 0.2s, box-shadow 0.3s;
    margin-top: 1rem;
}

.cta-btn:hover,
.vision-btn:hover,
.package-btn:hover {
    background: linear-gradient(90deg, #a259ff 0%, #00fff7 100%);
    color: #fff;
    box-shadow: 0 0 32px #a259ffb0;
}

section {
    padding: 5rem 0 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#what-we-do {
    text-align: left;
    padding-left: 2rem;
    padding-right: 2rem;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #00fff7;
    text-shadow: 0 0 8px #00fff7, 0 0 16px #0ff;
}

.services-grid,
.clients-grid,
.difference-grid,
.packages-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.service-card,
.client-card,
.difference-card,
.package-card {
    background: rgba(20, 20, 40, 0.95);
    border-radius: 18px;
    box-shadow: 0 0 24px #0ff2, 0 2px 8px #a259ff22;
    padding: 2rem 1.5rem;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 260px;
    margin: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.service-card:hover,
.client-card:hover,
.difference-card:hover,
.package-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0 32px #a259ff99, 0 2px 16px #00fff799;
}

.service-icon {
    font-size: 2.5rem;
    color: #00fff7;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px #00fff7) drop-shadow(0 0 16px #0ff);
    animation: iconGlow 2s infinite alternate;
}

.client-card i,
.difference-card i,
.footer-social i {
    font-size: 2rem;
    color: #a259ff;
    filter: drop-shadow(0 0 8px #a259ff) drop-shadow(0 0 16px #00fff7);
    animation: iconGlow 2.5s infinite alternate;
}

.client-card span {
    display: block;
    margin-top: 0.7rem;
    font-size: 1.1rem;
    color: #e0e6ff;
}

.difference-card h3 {
    margin-top: 1rem;
    color: #00fff7;
}

.package-card {
    border: 2px solid #00fff7;
    box-shadow: 0 0 24px #00fff7a0, 0 2px 8px #a259ff22;
}

.package-card.featured {
    border: 2.5px solid #a259ff;
    background: linear-gradient(120deg, #1a1b2f 60%, #a259ff22 100%);
    box-shadow: 0 0 32px #a259ffb0, 0 2px 16px #00fff799;
    transform: scale(1.05);
    z-index: 2;
}

.package-card h3 {
    color: #a259ff;
    margin-bottom: 0.7rem;
}

.price {
    font-size: 2rem;
    color: #00fff7;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #b3baff;
}

.package-subtitle {
    font-size: 0.9rem;
    color: #00d4ff;
    margin: 0 0 1rem 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-btn {
    margin-top: 1.5rem;
}

.vision-btn {
    margin-top: 2rem;
}

footer {
    background: #18192a;
    padding: 2.5rem 0 1.5rem 0;
    text-align: center;
    color: #b3baff;
    box-shadow: 0 -2px 16px #0ff2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.footer-social a {
    color: #a259ff;
    font-size: 1.5rem;
    transition: color 0.2s, filter 0.2s;
}

.footer-social a:hover {
    color: #00fff7;
    filter: drop-shadow(0 0 8px #00fff7);
}

.footer-contact a {
    color: #00fff7;
}

/* Animations */
@keyframes glowPulse {
    0% {
        text-shadow: 0 0 8px #00fff7, 0 0 16px #0ff;
    }

    100% {
        text-shadow: 0 0 24px #00fff7, 0 0 48px #0ff;
    }
}

@keyframes iconGlow {
    0% {
        filter: drop-shadow(0 0 8px #00fff7) drop-shadow(0 0 16px #0ff);
    }

    100% {
        filter: drop-shadow(0 0 24px #a259ff) drop-shadow(0 0 32px #00fff7);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(.77, 0, .18, 1), transform 0.9s cubic-bezier(.77, 0, .18, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Responsive Styles */
@media (max-width: 900px) {

    .services-grid,
    .clients-grid,
    .difference-grid,
    .packages-grid {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .service-card,
    .client-card,
    .difference-card,
    .package-card {
        min-width: 180px;
        max-width: 95vw;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 30, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: right 0.3s ease;
        backdrop-filter: blur(15px);
        box-shadow: -5px 0 20px rgba(0, 255, 247, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links li a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        display: block;
        width: 100%;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 80%;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .navbar {
        padding: 1rem 4vw;
    }

    .logo img {
        height: 45px;
    }

    section {
        padding: 2.5rem 0 1.5rem 0;
    }

    .footer-content {
        gap: 0.7rem;
    }

    .service-card,
    .client-card,
    .difference-card,
    .package-card {
        padding: 1.5rem 1rem;
        margin: 0.3rem;
    }

    .hero-content {
        margin-top: 4vh;
        padding: 0 1rem;
    }

    .hero-image img {
        max-width: 90%;
    }

    .check-list li {
        font-size: 0.98rem;
    }
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin: 1.2rem 0 0.5rem 0;
    text-align: left;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7em;
    margin-bottom: 0.5em;
    color: #e0e6ff;
    font-size: 1rem;
}

.check-list li i.fa-check {
    color: #00fff7;
    text-shadow: 0 0 8px #00fff7, 0 0 16px #0ff;
    font-size: 1.1em;
    margin-top: 0.15em;
    flex-shrink: 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
    justify-items: center;
    align-items: stretch;
    margin: 2rem 0 0 0;
}

.package-card {
    width: 100%;
    max-width: 280px;
    min-width: 0;
    margin: 0 0.5rem;
}

section#packages {
    padding: 0 3vw;
}

@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        max-width: 95vw;
    }
}