/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(0, 0%, 98%);
    --card: hsl(218, 44%, 12%);
    --lime: hsl(200, 92%, 55%);
    --dark-teal: hsl(182, 45%, 12%);
    --border: hsl(196, 30%, 25%);
    --muted: hsl(180, 5%, 45%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-white {
    color: var(--foreground);
}

.text-lime {
    color: var(--lime);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--lime);
    color: var(--dark-teal);
}

.btn-primary:hover {
    background-color: hsl(177, 92%, 55%);
    transform: translateY(-2px);
    box-shadow: 
        0 0px 35px rgba(9, 59, 105, 0.779), 
        0 0 10px rgba(106, 23, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--lime);
    border-color: var(--lime);
}

.btn-secondary:hover {
    background-color: #1df0ff;
    color:var(--dark-teal);
    box-shadow: 
        0 0px 35px rgba(23, 143, 255, 0.373), 
        0 0 10px rgba(106, 23, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    background-color: var(--card);
    border-color: var(--lime);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(9, 31, 45, 0.407);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

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

.logo {
    width: 120px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--lime);
    text-decoration: none;
    
    font-size: 1.5rem;
    font-weight: 800;
}

.logo svg {
    color: var(--lime);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:not(.cta-btn):hover {
    color: var(--lime);
}

.cta-btn {
    background-color:rgba(45, 188, 231, 0.858);
    color:var(--dark-teal);
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
}

.cta-btn:hover {
    background-color: #550edf; 
    color: #ffffff;
    /* THE GLOW EFFECT */
    box-shadow: 
        /* Inner glow */
        0 0 5px rgba(255, 255, 255, 0.5), 
        /* Main outer glow matching the button color */
        0 0 15px #6a17ff, 
        /* Wider, softer glow */
        0 0 30px rgba(106, 23, 255, 0.5);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.background-media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    min-width: 100%;
    min-height: 100%;
    width: 1920px;
    height: 1080px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;testi
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 13, 25, 0.75); 
    z-index: 2
}

.hero .container {
    position: relative;
    z-index: 3;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
@keyframes flicker-glow {
    0%, 100% {
        /* Fainter glow + base size */
        box-shadow: 0 0 5px rgba(14, 92, 125, 0.4), 0 0 10px rgba(0, 255, 255, 0.2);
        opacity: 0.95;
        transform: scale(1); /* Base size */
    }
    
    50% {
        box-shadow: 0 0 10px rgba(26, 62, 123, 0.496), 0 0 20px rgba(0, 255, 255, 0.6);
        opacity: 1;
        transform: scale(1.02);
    }
    
    70% {
        box-shadow: 0 0 3px rgba(12, 60, 114, 0.3), 0 0 6px rgba(0, 255, 255, 0.1);
        opacity: 0.9;
        transform: scale(0.98);
    }
}
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(36, 141, 221, 0.332);
    color: var(--background);
    backdrop-filter: blur(12px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid rgba(48, 179, 255, 0.612);
    will-change: transform, box-shadow; 
    animation-name: flicker-glow;
    animation-duration: 3s; 
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite; 
}

.hero-title {
    font-size: 4.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color:rgba(240, 248, 255, 0.525) ;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
}

.hero-feature svg {
    color: var(--lime);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-teal) ;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--lime);
    box-shadow: 
        0 0px 35px rgba(23, 143, 255, 0.938), 
        0 0 10px rgba(106, 23, 255, 0.3);
}

.pricing-card.popular {
    border-color: var(--lime);
    border-width: 2px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--lime);
    color: var(--dark-teal);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--lime);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1rem;
    color: var(--muted);
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--foreground);
}

.period {
    font-size: 1rem;
    color: var(--muted);
}

.speed {
    color: var(--lime);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--muted);
}

.features-list svg {
    color: var(--lime);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Testimonials Section */

.testimonials-section {
    padding: 5rem 0;
    background-color: rgba(158, 193, 228, 0.568);
}

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

.testimonial-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--lime);
    box-shadow: 
        0 0px 35px rgba(23, 143, 255, 0.938), 
        0 0 10px rgba(106, 23, 255, 0.3);
}

.stars {
    color:rgb(255, 190, 12) ;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--lime);
    color: var(--dark-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
}

.author-location {
    font-size: 0.875rem;
    color: var(--muted);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

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

.feature-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--lime);
    box-shadow: 
        0 0px 35px rgba(15, 122, 237, 0.61), 
        0 0 10px rgba(106, 23, 255, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(46, 126, 238, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    color: var(--lime);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.feature-card p {
    color: var(--muted);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(
    to right, 
    #a2e6fc 0%,     /* Deep Blue */
    #13c09833 60%     /* Your primary purple/blue */
);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    color: var(--dark-teal);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    background-color: var(--background);
    color: var(--foreground);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lime);
    box-shadow: 0 0 0 2px rgba(168, 238, 46, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.char-count {
    font-size: 0.875rem;
    color: var(--muted);
    text-align: right;
}

.error-message {
    color: hsl(0, 84%, 60%);
    font-size: 0.875rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: hsl(0, 84%, 60%);
}

.success-message {
    background-color: rgba(168, 238, 46, 0.1);
    border: 1px solid var(--lime);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1rem;
}

.success-message svg {
    color: var(--lime);
    flex-shrink: 0;
}

.success-message strong {
    color: var(--foreground);
    display: block;
    margin-bottom: 0.25rem;
}

.success-message p {
    color: var(--muted);
    margin: 0;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(46, 174, 238, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon :hover{
    transform: scale(75%);
    transition: ease-in-out;
    transition-duration:180ms ;
    box-shadow: 
        0 0px 50px rgba(15, 122, 237, 0.61), 
        0 0 5px rgba(106, 23, 255, 0.3);
}

.contact-icon svg {
    color: var(--lime);
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.contact-detail {
    color: var(--lime);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-description {
    font-size: 0.875rem;
    color: var(--muted);
}

.quick-response-card {
    background-color: var(--card);
    border: 1px solid rgba(46, 252, 255, 0.566);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}
.quick-response-icon :hover {
    transform: scale(90%);
     box-shadow: 
        0 0px 35px rgba(15, 122, 237, 0.61), 
        0 0 10px rgba(106, 23, 255, 0.3);
}

.quick-response-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(29, 137, 214, 0.711);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.quick-response-icon svg {
    color: var(--lime);
}
.quick-response-icon svg :hover {
    transform: scale(90%);
     box-shadow: 
        0 0px 35px rgb(15, 122, 237), 
        0 0 10px rgb(104, 23, 255);
}

.quick-response-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.quick-response-card p {
    font-size: 0.875rem;
    color: var(--muted);
}

/* Footer */
.footer {
    background-color: rgb(5, 11, 41);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--lime);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo svg {
    color: var(--lime);
}

.footer-description {
    color: var(--muted);
    line-height: 1.7;
}

.footer-section h4 {
    color: var(--foreground);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--lime);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(46, 238, 168, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--lime);
    color: var(--dark-teal);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--foreground);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--card);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}