:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #00f3ff;
    /* Cyber Cyan */
    --accent-glow: rgba(0, 243, 255, 0.4);
    --card-bg: rgba(20, 20, 20, 0.6);
    --card-border: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(5, 5, 5, 0.8);
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Animation */
.background-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    /* background:
        radial-gradient(circle at 10% 20%, rgba(0, 243, 255, 0.1), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(120, 0, 255, 0.1), transparent 40%); */
    background: transparent;
}

.background-effect::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        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: 40px 40px;
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--card-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
}

.glitch-text {
    background: linear-gradient(to right, #00f3ff, #bc13fe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.5));
    animation: glowPulse 3s infinite;
}

.logo-sub {
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-size: 1.3rem;
    position: relative;
    opacity: 0.9;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

@keyframes glowPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(188, 19, 254, 0.6));
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.btn-nav {
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    color: var(--accent-color) !important;
}

.btn-nav:hover {
    background: var(--accent-color);
    color: #000 !important;
    box-shadow: 0 0 15px var(--accent-glow);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Sections General */
section {
    padding: 5rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-tag {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem;
    background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.9)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-content {
    max-width: 900px;
    animation: fadeInDown 1s ease-out;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.badge-new {
    background: rgba(0, 243, 255, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid var(--accent-color);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-glow);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.hero-features-list span i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-2px);
    background: #fff;
}

.available-for {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.available-for i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.center-btn-container {
    text-align: center;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Why Choose Us */
.why-choose-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(to right, rgba(20, 20, 20, 0.3), transparent);
}

.why-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.why-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.features-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.why-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px var(--accent-glow);
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.5);
}

.stat-circle .percent {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.stat-circle .label {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.cyber-quote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
}

/* Experience */
.experience-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    flex-wrap: wrap;
}

.exp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.big-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-glow);
    line-height: 1;
    font-family: var(--font-heading);
}

.exp-text {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.exp-details {
    max-width: 500px;
    text-align: left;
}

.exp-details h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Process Steps */
.process-section {
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    border: 1px solid var(--card-border);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-heading);
}

.step-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.reviewer-info h4 {
    color: var(--text-primary);
    font-weight: 600;
}

.reviewer-info span {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.google-reviews {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #000;
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--card-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.2s;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

.footer-form {
    display: flex;
    gap: 0.5rem;
}

.footer-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem;
    border-radius: 4px;
    color: #fff;
}

.footer-form button {
    background: var(--accent-color);
    border: none;
    color: #000;
    padding: 0 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--card-border);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .why-choose-section {
        grid-template-columns: 1fr;
    }

    .exp-details {
        text-align: center;
    }

    .footer-form {
        flex-direction: column;
    }

    .footer-form button {
        padding: 0.8rem;
    }
}

/* Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* New Layout Helpers */
.content-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.text-content {
    order: 1;
}

.image-content {
    order: 2;
    position: relative;
}

.content-grid-split.reverse .text-content {
    order: 2;
}

.content-grid-split.reverse .image-content {
    order: 1;
}

.cyber-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    transition: transform 0.4s ease;
}

.cyber-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.4);
}

@media (max-width: 900px) {
    .content-grid-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .text-content,
    .image-content {
        order: unset !important;
    }
}

/* Newsletter States */
.footer-form {
    position: relative;
    transition: all 0.3s ease;
}

.footer-form.loading {
    opacity: 0.7;
    pointer-events: none;
}

.footer-form.success .form-content {
    display: none;
}

.footer-form button i {
    display: none;
}

.footer-form.loading button span {
    display: none;
}

.footer-form.loading button i {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.newsletter-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.newsletter-message.visible {
    opacity: 1;
}

.newsletter-message.success {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.newsletter-message.error {
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

/* Input validation styles */
.footer-form input.valid {
    border-color: #00ff88;
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
}

.footer-form input.invalid {
    border-color: #ff3333;
    box-shadow: 0 0 5px rgba(255, 51, 51, 0.2);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 3s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}