@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Share+Tech+Mono&display=swap');

:root{
    /* Cyber color palette */
    --btn-color: #000000;
    --btn-bg: #00FF41;
    --btn-bg-hover: #00CC33;

    --primary-text-color: #00FF41;
    --secondary-text-color: #00CC33;
    --accent-color: #33FF33;
    
    --header-link-hover: #00FF41;
    --input-hover-bd-color: #00FF41;
    
    /* Cyber green scale */
    --cyber-bright: #00FF41;
    --cyber-main: #00CC33;
    --cyber-dark: #009926;
    --cyber-darker: #006619;
    --cyber-dim: #003311;
    --cyber-glow: #33FF33;
    
    /* Dark theme colors */
    --bg-dark: #000000;
    --bg-dark-secondary: #0A0A0A;
    --border-color: #00FF41;
    
    /* Gradient colors */
    --gradient-start: #00FF41;
    --gradient-mid: #00CC33;
    --gradient-end: #009926;
    
    /* Layout variables */
    --header-height: 80px;
    --mobile-header-height: 80px;
    --content-padding-top: calc(var(--header-height) + 2rem);
    --mobile-content-padding-top: calc(var(--mobile-header-height) + 1rem);
    --footer-padding-bottom: 2rem;
    --mobile-footer-padding-bottom: 4rem;
}


html {
    scroll-behavior: auto;
    font-family: "Orbitron", monospace;
    background-color: #000000;
    letter-spacing: 0.15em;
    font-stretch: 60%;
}

body {
    background-color: #000000;
}

/* Code/terminal font for specific elements */
.code-font {
    font-family: "Share Tech Mono", monospace;
}

/* Logo styling - using primary text color */
header img[src*="logo.svg"] {
    filter: brightness(0) saturate(100%) invert(84%) sepia(100%) saturate(1000%) hue-rotate(60deg) brightness(1) contrast(1);
    transition: all 0.3s ease;
}

header img[src*="logo.svg"]:hover {
    filter: brightness(0) saturate(100%) invert(84%) sepia(100%) saturate(1000%) hue-rotate(60deg) brightness(1.2) contrast(1.2);
    box-shadow: 0 0 15px var(--primary-text-color);
}

header{
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    height: var(--header-height);
}


header > .collapsible-header{
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease;
}

.animated-collapse{
    transition: width 0.3s ease;
}

.header-gradient{
    background: radial-gradient(circle, rgba(0, 255, 65, 0.3) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.5;
}

.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 4px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.header-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 65, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.header-links:hover::before {
    transform: scaleX(1);
}

.header-links:hover {
    color: var(--header-link-hover);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.header-links:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 255, 65, 0.5);
    box-shadow: 
        0 0 10px rgba(0, 255, 65, 0.8),
        0 2px 4px rgba(0, 255, 65, 0.6);
    border-radius: 2px;
}

/* Active navigation link */
.header-links.active {
    color: var(--header-link-hover);
    text-shadow: 0 0 15px rgba(0, 255, 65, 1);
    position: relative;
}

.header-links {
    position: relative;
}

/* Navigation container positioning */
header .tw-flex.tw-h-full.tw-w-max {
    position: relative !important;
}

/* Moving underline for navigation */
.nav-moving-underline {
    position: absolute;
    bottom: -5px;
    height: 4px;
    background: #00FF41;
    background: linear-gradient(to bottom, #33FF66, #00FF41, #00CC33);
    box-shadow: 
        0 0 8px #00FF41,
        0 0 16px #00FF41,
        0 0 24px #00FF41,
        0 0 32px #00FF41,
        0 -2px 8px #00FF41,
        0 2px 4px #00FF41;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 10;
    filter: brightness(1.5) saturate(1.5);
}

/* Animated underline */
.nav-underline {
    position: absolute;
    bottom: 0;
    height: 3px;
    background: var(--cyber-bright);
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 1),
        0 0 40px rgba(0, 255, 65, 0.8),
        inset 0 0 10px rgba(255, 255, 255, 0.5);
    pointer-events: none;
    will-change: transform, width;
    z-index: 100;
    opacity: 0;
}

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

.gradient-text{
    background: linear-gradient(180deg, #00FF41 0%, #00CC33 50%, #009926 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    animation: cyber-glow 2s ease-in-out infinite;
}

@keyframes cyber-glow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(0, 255, 65, 0.5));
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 40px rgba(0, 255, 65, 0.8));
    }
}

.hero-section{
    background-image: 
        linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,1) 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Subtle cyber grid background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 255, 65, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Add header-like overlay to all content for consistent effect dimming */
.overlay-filter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 2;
}

.hero-bg-gradient{
    background: transparent;
    position: relative;
    z-index: 2;
}

/* Global scanline effect (time-based, not scroll-triggered) */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 255, 65, 0.6);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
    animation: scanline-move 6s linear infinite;
    animation-delay: 2s;
}

@keyframes scanline-move {
    0% {
        transform: translateY(-2px);
    }
    100% {
        transform: translateY(calc(100vh + 100px));
    }
}

/* Pure CSS hero layout (no Tailwind utilities) */
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height) - 80px);
    width: 100%;
    padding: 40px 16px 60px;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.hero-title {
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: clamp(24px, 3.5vw, 52px);
    letter-spacing: 0.05em;
}

.hero-subheadline {
    margin-top: 8px;
    text-align: center;
    font-size: clamp(16px, 2.2vw, 28px);
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}

.hero-subnote {
    margin-top: 4px;
    text-align: center;
    font-size: clamp(12px, 1.6vw, 16px);
    color: rgba(200, 255, 200, 0.85);
}

.hero-form-wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0 16px;
}

.hero-form {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 800px;
}

.hero-input {
    height: 50px;
    flex: 1 1 auto;
    border-radius: 9999px;
    background: #fff;
    color: #000;
    border: 1px solid #9ca3af;
    padding: 0 20px;
}

.hero-btn {
    height: 50px;
    border-radius: 9999px;
    padding: 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.hero-stats {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
}

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

.stat-number {
    font-size: clamp(48px, 8vw, 84px);
    font-weight: 800;
    color: #ffffff;
}

.stat-caption {
    margin-top: 12px;
    color: rgba(0, 255, 65, 0.85);
    letter-spacing: normal;
    line-height: 1.5;
}

/* Hero stat links styling - use cyber green */
.stat-caption a {
    color: var(--cyber-bright);
    text-decoration: underline;
    text-decoration-color: rgba(0, 255, 65, 0.6);
}
.stat-caption a:hover {
    color: var(--cyber-main);
    text-decoration-color: var(--cyber-main);
}

/* Pain cards (match reference look) */
.pain-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    max-width: 1100px;
}

@media (max-width: 968px) {
    .pain-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.pain-card {
    background: rgba(0,0,0,0.88);
    border: 1px solid rgba(0, 255, 65, 0.35);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    min-height: 320px;
    box-shadow: 0 0 34px rgba(0, 255, 65, 0.28), 0 10px 26px rgba(0, 255, 65, 0.14), inset 0 0 14px rgba(0, 255, 65, 0.10);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.pain-icon {
    font-size: 96px;
    color: rgba(255,255,255,0.9);
    opacity: 0.95;
    margin-bottom: 18px;
    line-height: 1;
}

.pain-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.pain-sub {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Always-on glow – no hover dependency */

/* Pain section spacing - no negative margins */
#pain {
    padding-top: 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    #pain {
        padding-top: 20px;
    }
}

/* Increase gap from heading to cards inside pain */
#pain .tw-text-center {
    margin-bottom: 56px !important;
}

/* Features header spacing and colors */
.features-header {
    margin-bottom: 28px;
}
.features-header .title {
    color: var(--cyber-bright) !important;
}
.features-header .subtitle {
    margin-top: 10px;
    color: #ffffff !important;
}
.features-header .caption {
    margin-top: 8px;
    color: rgba(255,255,255,0.7) !important;
}

/* Alternating feature grid (text/media) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    max-width: 1100px;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    /* Mobile order classes to ensure image-text pattern */
    .mobile-order-1 { order: 1; }
    .mobile-order-2 { order: 2; }
    .mobile-order-3 { order: 3; }
    .mobile-order-4 { order: 4; }
    .mobile-order-5 { order: 5; }
    .mobile-order-6 { order: 6; }
}
.feature-card {
    background: rgba(0,0,0,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
}
.feature-card.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-card.media {
    overflow: hidden;
}
.feature-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 260px;
    background: rgba(255,255,255,0.06);
    border: 1px dashed rgba(255,255,255,0.12);
    border-radius: 12px;
    box-shadow: inset 0 0 14px rgba(0,255,65,0.08);
}
.feature-ph .bi {
    font-size: 88px;
    color: rgba(255,255,255,0.9);
}
.feature-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
}
.feature-sub {
    margin-top: 8px;
    color: #ffffff;
    font-size: 18px;
}
.feature-desc {
    margin-top: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* Accordion styles for More features */
.acc {
    width: 100%;
    max-width: 900px;
}
.acc-item { margin-bottom: 12px; }
.acc-btn {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: var(--cyber-bright);
    padding: 14px 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}
.acc-icon {
    width: 20px;
    display: inline-block;
    text-align: center;
    color: var(--cyber-bright);
}
.acc-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s ease;
    color: rgba(255,255,255,0.75);
    padding: 0 16px;
    margin-top: 8px;
}
.acc-item.open .acc-panel {
    max-height: 600px;
}

/* Override for hero stat links: white, bold, no underline */
.hero-stats .stat-caption a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}
.hero-stats .stat-caption a:hover,
.hero-stats .stat-caption a:focus {
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 16px rgba(0, 255, 65, 0.45);
}

/* Ensure all sections are above effects */
section {
    position: relative;
    z-index: 2;
}

/* Add same gradient overlay to all sections for consistent dimming */
section:not(.hero-section)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Add same gradient overlay to footer for consistent dimming */
footer {
    position: relative;
    z-index: 2;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Content wrapper for proper layering */
.reveal-up {
    position: relative;
    z-index: 3;
}

/* Text and interactive elements on top */
h1, h2, h3, h4, h5, h6, p, a, button, .btn, input {
    position: relative;
    z-index: 5;
}

/* Images and cards */
img, .tw-border-primary, .tw-border-333a44, .tw-border-\[\#333a44\], .tw-bg-\[\#1d2127\] {
    position: relative;
    z-index: 4;
}

/* Dashboard with cyber glow */
#dashboard {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.5);
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.3),
        inset 0 0 20px rgba(0, 255, 65, 0.1);
    transition: all 0.5s ease;
}

#dashboard:hover {
    border-color: rgba(0, 255, 65, 0.8);
    box-shadow: 
        0 0 50px rgba(0, 255, 65, 0.5),
        inset 0 0 30px rgba(0, 255, 65, 0.2);
    transform: translateY(-5px);
}

.opacity-0{
    opacity: 0 !important;
}

.opacity-100{
    opacity: 100 !important;
}

.btn{
    padding: 12px 24px;
    width: max-content;
    border-radius: 0;
    color: var(--btn-color);
    background: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--btn-bg);
    box-shadow: 
        0 0 15px rgba(0, 255, 65, 0.3),
        0 0 30px rgba(0, 255, 65, 0.1);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.6);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease;
}

.btn:hover::before {
    left: 0;
}

.btn:hover{
    transform: translateY(-2px);
    box-shadow: 
        0 10px 25px rgba(0, 255, 65, 0.4),
        inset 0 0 20px rgba(0, 255, 65, 0.2);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.btn:disabled{
    cursor: default;
    opacity: 0.6;
}

/* Special styling for secondary button */
.btn.tw-bg-white-important {
    background: transparent;
    border: 1px solid var(--cyber-bright);
    color: var(--cyber-bright);
}

.btn.tw-bg-white-important:hover {
    background: rgba(0, 255, 65, 0.1);
    border-color: var(--cyber-glow);
}

.input{
    padding: 12px 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 0;
    min-width: 100px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    transition: all 0.3s ease;
    color: var(--cyber-bright);
    font-family: "Share Tech Mono", monospace;
}

.input:active, .input:focus, .input:focus-within{
    border: 1px solid var(--input-hover-bd-color);
    background-color: rgba(0, 255, 65, 0.05);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    outline: none;
}

/* Form container animations */
.form-container-visible {
    animation: formSlideDown 0.4s ease-out forwards;
}

.form-container-hidden {
    animation: formSlideUp 0.3s ease-in forwards;
}

/* Ensure forms are hidden by default */
#hero-form-container.tw-hidden,
#newsletter-form-container.tw-hidden {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

/* Modal form styling */
#modal-overlay {
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999 !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    padding: 20px;
    box-sizing: border-box;
}

#modal-overlay[style*="display: flex"] {
    display: flex !important;
}

#modal-overlay.tw-hidden {
    display: none !important;
}

#modal-form-container {
    animation: modalSlideIn 0.3s ease-out;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
    position: relative !important;
    margin: auto;
    background-color: #000000 !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 65, 0.3);
    z-index: 100000 !important;
}

/* Close button styling */
#modal-close-btn {
    cursor: pointer;
    z-index: 10000;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #00FF41;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
}

#modal-close-btn:hover {
    color: #00CC33;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Desktop modal width */
@media (min-width: 768px) {
    #modal-form-container {
        max-width: 500px;
    }
}

/* Mobile specific styles */
@media (max-width: 767px) {
    /* Fix hero title alignment on mobile */
    .gradient-text span.tw-block {
        text-align: center !important;
        width: 100% !important;
        display: block !important;
    }
    
    #modal-overlay {
        padding: 10px !important;
    }
    
    #modal-form-container {
        width: 100% !important;
        max-width: calc(100vw - 20px) !important;
        margin: 0 auto !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
        padding: 30px 20px !important;
    }
    
    /* Make textarea taller on mobile */
    #modal-form-container textarea.input {
        min-height: 200px !important;
        height: 200px !important;
    }
    
    /* Ensure close button is visible on mobile */
    #modal-close-btn {
        position: absolute !important;
        top: 10px !important;
        right: 10px !important;
        z-index: 10001 !important;
    }
}

@keyframes formSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
}

@keyframes formSlideUp {
    from {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
}

/* Textarea specific styles */
textarea.input {
    font-family: "Share Tech Mono", monospace;
    line-height: 1.5;
    resize: none;
}

/* Cyber-styled scrollbar for textarea */
textarea.input::-webkit-scrollbar {
    width: 8px;
}

textarea.input::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

textarea.input::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 65, 0.6);
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

textarea.input::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 65, 0.8);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* Firefox scrollbar styling */
textarea.input {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 65, 0.6) rgba(0, 0, 0, 0.3);
}

/* Right align submit button */
form .btn[type="submit"] {
    margin-left: auto;
    margin-right: 0;
    display: block;
}

textarea.input::placeholder {
    color: #666;
    opacity: 0.8;
}

/* Feature cards with cyber style */
.reveal-up {
    position: relative;
}

/* Advanced feature cards */
.tw-h-250px, .tw-h-\[250px\] {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tw-h-250px::before, .tw-h-\[250px\]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

.tw-h-250px:hover::before, .tw-h-\[250px\]:hover::before {
    left: 100%;
}

.tw-h-250px:hover, .tw-h-\[250px\]:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 65, 0.5);
    box-shadow: 
        0 10px 30px rgba(0, 255, 65, 0.2),
        inset 0 0 20px rgba(0, 255, 65, 0.05);
}

/* Icons in cyber style */
.bi {
    color: var(--cyber-bright) !important;
}

/* Pricing cards with cyber effects */
.tw-border-primary {
    border-color: var(--cyber-bright) !important;
    background: rgba(0, 255, 65, 0.05);
    animation: cyber-pulse 3s ease-in-out infinite;
}

@keyframes cyber-pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(0, 255, 65, 0.4),
            inset 0 0 20px rgba(0, 255, 65, 0.1);
        border-color: var(--cyber-bright);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(0, 255, 65, 0.6),
            inset 0 0 30px rgba(0, 255, 65, 0.15);
        border-color: var(--cyber-glow);
    }
}

/* Testimonial cards */
.tw-border-333a44, .tw-border-\[\#333a44\] {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: all 0.3s ease;
}

.tw-border-333a44:hover, .tw-border-\[\#333a44\]:hover {
    border-color: rgba(0, 255, 65, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 65, 0.15);
}

/* Article cards */
.tw-bg-\[\#1d2127\] {
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid rgba(0, 255, 65, 0.2) !important;
}

.tw-bg-\[\#1d2127\]:hover {
    border-color: rgba(0, 255, 65, 0.4) !important;
    box-shadow: 0 10px 25px rgba(0, 255, 65, 0.15) !important;
}

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 800px;
}
  
.carousel {
    display: inline-block;
    animation: scroll 20s linear infinite;
}
  
.carousel-img {
    display: inline-block;
    margin: 0 20px;
    filter: brightness(0) invert(1);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.carousel-img:hover {
    opacity: 0.6;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 255, 65, 0.5));
}
  
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer-link{
    transition: all 0.3s ease;
    position: relative;
    color: rgba(0, 255, 65, 0.7);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyber-bright);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover{
    color: var(--cyber-bright);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

/* Floating animation for icons */
.reveal-up:hover .bi {
    animation: cyber-float 2s ease-in-out infinite;
}

@keyframes cyber-float {
    0%, 100% {
        transform: translateY(0);
        text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
    }
    50% {
        transform: translateY(-10px);
        text-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
    }
}

/* Terminal cursor effect */
.code-cursor::after {
    content: '_';
    animation: blink 1s infinite;
    color: var(--cyber-bright);
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.review-container {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.review-card{
    box-shadow: 0px 2px 4px rgba(0, 255, 65, 0.2);
    border-radius: 0;
    padding: 10px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

/* --------- collapsible div ---------- */
.collapsible {
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--cyber-bright);
    padding: 5px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
}

/* Style for the collapsible content */
.content {
    padding: 0 18px;
    height: 0px;
    overflow: hidden;
    background-color: transparent;
    transition: height 0.5s;
    text-align: justify;
    margin-top: 10px;
}

@media not all and (min-width: 1024px) {
    header {
        height: var(--mobile-header-height);
    }
    
    header .collapsible-header {
        position: fixed;
        right: 0px;
        flex-direction: column;
        opacity: 0;
        height: 100vh;
        min-height: 100vh;
        height: 100dvh;
        width: 0vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: calc(var(--mobile-header-height) + 2rem);
        padding-bottom: 5%;
        place-items: end;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        color: var(--cyber-bright);
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 255, 65, 0.1);
        border-left: 1px solid rgba(0, 255, 65, 0.2);
    }

    .header-links{
        color: var(--cyber-bright);
    }
    
}

/* Additional cyber-themed styles */
.tw-bg-181B20, .tw-bg-\[\#181B20\] {
    background-color: #000000 !important;
}

.tw-bg-1d2127 {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

/* cyber grid background pattern */
.cyber-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(0, 255, 65, 0.03) 20px,
            rgba(0, 255, 65, 0.03) 21px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(0, 255, 65, 0.03) 20px,
            rgba(0, 255, 65, 0.03) 21px
        );
    pointer-events: none;
}

/* Add cyber grid to all sections */
section {
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(0, 255, 65, 0.03) 20px,
            rgba(0, 255, 65, 0.03) 21px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(0, 255, 65, 0.03) 20px,
            rgba(0, 255, 65, 0.03) 21px
        );
    pointer-events: none;
    z-index: 0;
}

/* Text colors for cyber theme */
.tw-text-white {
    color: var(--cyber-bright) !important;
}

.tw-text-gray-300 {
    color: rgba(0, 255, 65, 0.7) !important;
}

.tw-text-gray-400 {
    color: rgba(0, 255, 65, 0.5) !important;
}

.tw-text-gray-500 {
    color: rgba(0, 255, 65, 0.4) !important;
}

.tw-text-primary {
    color: var(--cyber-bright) !important;
}

/* All headings in cyber style */
h1, h2, h3, h4, h5, h6 {
    color: var(--cyber-bright) !important;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

/* Paragraph text */
p, span {
    color: rgba(0, 255, 65, 0.8);
}

/* Input placeholder */
.input::placeholder {
    color: rgba(0, 255, 65, 0.3);
}

/* Background overlays */
.tw-bg-opacity-80 {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

/* Animated underline */

/* Gradient colors */

/* Mobile spacing for hero form */
@media (max-width: 768px) {
    .hero-form-spacing {
        margin-bottom: 32px;
    }
}

/* Footer copyright alignment */
.footer-right {
    text-align: right;
}

/* Main content spacing */
body {
    padding-top: var(--content-padding-top);
    padding-bottom: var(--footer-padding-bottom);
}

/* Hero section specific adjustments */
.hero-section {
    margin-top: calc(-1 * var(--content-padding-top));
    padding-top: var(--content-padding-top);
    min-height: auto;
}

/* Newsletter section safe area */
#newsletter {
    padding-bottom: var(--footer-padding-bottom);
}

/* Mobile styles */
@media (max-width: 768px) {
    :root {
        --header-height: var(--mobile-header-height);
        --content-padding-top: var(--mobile-content-padding-top);
        --footer-padding-bottom: var(--mobile-footer-padding-bottom);
    }
    .hero-container { 
        min-height: calc(100vh - var(--mobile-header-height));
        padding: 20px 16px 40px;
    }
    /* Stack hero form and make button safe on mobile */
    .hero-form { 
        flex-direction: column; 
        gap: 10px; 
        max-width: 100%;
    }
    .hero-input {
        width: 100%;
    }
    .hero-btn { 
        height: auto; 
        white-space: nowrap; 
        font-size: 16px; 
        line-height: 1.2; 
        padding: 12px 20px;
        width: 100%;
    }
    
    body {
        padding-top: var(--mobile-content-padding-top);
        padding-bottom: var(--mobile-footer-padding-bottom);
    }
    
    .hero-section {
        margin-top: calc(-1 * var(--mobile-content-padding-top));
        padding-top: var(--mobile-content-padding-top);
    }
    
    /* Newsletter form safe spacing */
    #newsletter {
        padding-bottom: var(--mobile-footer-padding-bottom);
        margin-bottom: env(safe-area-inset-bottom, 0);
    }
    
    .btn {
        min-height: 48px;
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 12px 24px;
    }
    
    /* Mobile order for about section - text before image */
    #about .reveal-up:first-of-type > div:first-child {
        order: 2 !important;
    }
    
    #about .reveal-up:first-of-type > div:last-child {
        order: 1 !important;
    }
}