/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Classes */
.audiowide-regular {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* REMOVE this line - don't apply Audiowide to everything */
/* * {
    font-family: "Audiowide", sans-serif !important;
} */

:root {
    --gold: #FFD700;
    --gold-bright: #FFED4E;
    --gold-dark: #B8860B;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --darker-gray: #050505;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --neon-gold: #FFE55C;
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #FFA500 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Font variables */
    --font-header: "Audiowide", sans-serif;
    --font-body: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 80px;
}

/* Updated body with Poppins */
body {
    font-family: var(--font-body); /* Changed from Audiowide to Poppins */
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
    cursor: default;
}

/* Apply Audiowide ONLY to logo and major headers */
.logo,
.hero h1,
.section-title,
.about-text h2,
.contact-info h2,
h1, h2.section-title {
    font-family: var(--font-header) !important;
    font-weight: 400;
}

/* Keep Poppins for all body text and smaller elements */
p, 
.service-card p,
.about-text p,
.contact-info p,
.nav-links a,
.form-group label,
.form-group input,
.form-group textarea,
.checkbox-text,
.cta-button,
.submit-btn,
.feature-item,
.service-card h3,
.modal-content,
.footer-content {
    font-family: var(--font-body) !important;
}

/* Service card titles - keep readable with Poppins but bold */
.service-card h3 {
    font-family: var(--font-body) !important;
    font-weight: 600;
}

/* Navigation - readable but medium weight */
.nav-links a {
    font-family: var(--font-body) !important;
    font-weight: 500;
}

/* Form labels - readable but bold */
.form-group label {
    font-family: var(--font-body) !important;
    font-weight: 600;
}

/* Buttons - readable but bold */
.cta-button,
.submit-btn {
    font-family: var(--font-body) !important;
    font-weight: 600;
}

/* Checkbox text - readable */
.checkbox-text {
    font-family: var(--font-body) !important;
    font-weight: 500;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--black);
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Audiowide', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transition: var(--transition);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    transform: scale(1.1);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.logo:hover::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    opacity: 0;
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, var(--black) 70%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: heroAnimation 8s ease-in-out infinite;
}

@keyframes heroAnimation {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1) rotate(2deg);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1000px;
    padding: 0 2rem;
    position: relative;
}

.hero-title {
    font-family: 'Audiowide', Arial, sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--gold) 0%, var(--neon-gold) 30%, var(--white) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite alternate;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    position: relative;
}

@keyframes titleGlow {
    0% {
        filter: brightness(1) blur(0px);
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    100% {
        filter: brightness(1.2) blur(0.5px);
        text-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.4;
}

.cta-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--gradient-primary);
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.5);
}

.cta-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.cta-secondary:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: var(--gold);
    margin: 0 auto;
    position: relative;
    animation: scrollAnimation 2s infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
}

@keyframes scrollAnimation {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(10px); }
}

/* Section Styles */
.section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Audiowide', Arial, sans-serif;
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition);
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    cursor: auto;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
}

.service-icon.cyber {
    color: #ff4757; /* Red for cybersecurity */
}

.service-icon.consulting {
    color: #3742fa; /* Blue for consulting */
}

.service-icon.software {
    color: #2ed573; /* Green for software */
}

.service-icon.hardware {
    color: #ffa502; /* Orange for hardware */
}

.service-icon.analytics {
    color: #a55eea; /* Purple for analytics */
}

.service-icon.infrastructure {
    color: #26d0ce; /* Cyan for infrastructure */
}

.service-icon.training {
    color: #fd79a8; /* Pink for training */
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition);
}

.about-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-visual {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition);
}

.about-visual.animate {
    opacity: 1;
    transform: translateX(0);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    font-family: 'Audiowide', Arial, sans-serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

/* Contact Form */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition);
}

.form-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: formGlow 6s ease-in-out infinite;
}

@keyframes formGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

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

.form-group {
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: var(--transition);
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.checkbox-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.checkbox-item input[type="checkbox"] {
    accent-color: var(--gold);
    transform: scale(1.2);
}

.checkbox-wrapper {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.checkbox-wrapper label {
  cursor: pointer;
  pointer-events: auto;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-right: 6px;
  cursor: pointer;
}

.checkbox-wrapper a {
  color: #ffd700;
  pointer-events: auto;
}
.checkbox-wrapper a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: var(--gradient-primary);
    color: var(--black);
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--black) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

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

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

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Page Content */
.page-content {
    margin-top: 100px;
    min-height: calc(100vh - 200px);
}

.content-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
}

.content-section h2 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.content-section h3 {
    color: var(--gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.content-section p,
.content-section ul {
    position: relative;
    z-index: 2;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Thank You Popup */
.popup.hidden {
  display: none;
}
.popup {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  background: #000;
  color: gold;
  padding: 2em;
  border-radius: 10px;
  z-index: 9999;
  box-shadow: 0 0 10px gold;
}
.popup-content button {
  margin-top: 1em;
  background: gold;
  color: black;
  border: none;
  padding: 0.5em 1em;
  border-radius: 5px;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    /* Enable normal cursor behavior on mobile */
    body {
        cursor: auto !important;
    }
    
    * {
        cursor: auto !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(30px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 3rem 0;
        gap: 1.5rem;
        border-top: 1px solid rgba(255, 215, 0, 0.2);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Hero Section Mobile Fixes */
    .hero {
        min-height: 100vh;
        padding: 0 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    /* Section Mobile Fixes */
    .section {
        padding: 4rem 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 2rem;
    }

    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .service-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    /* CTA Buttons Mobile */
    .cta-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text,
    .about-visual {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }

    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Form Mobile */
    .form-container {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }

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

    .form-control {
        padding: 1rem;
        font-size: 1rem;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .checkbox-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* Footer Mobile */
    .footer {
        display: block !important;
        visibility: visible !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Disable problematic animations on mobile */
    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    /* Ensure all sections are visible */
    #home,
    #services,
    #about,
    #contact {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Background effects - reduce for performance */
    .particle {
        display: none;
    }

    .grid-bg {
        opacity: 0.05;
    }

    .bg-animation {
        display: none;
    }

    /* Text size adjustments */
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.5;
    }
    .nav-container {
    padding-top: 10px;         /* Push content down slightly */
    padding-bottom: 10px;      /* Avoid tall header */
    text-align: center;        /* Optional: center logo/text */
}

.nav-container h1,
.nav-container .logo-text,
.nav-container a {
    font-size: 1.2rem;         /* Reduce size of "ASJ IT Solutions" */
    line-height: 1.1;          /* Tighter spacing */
    margin: 0 auto;
    max-width: 90vw;
}
.nav-container img {
    max-width: 100px;
    height: auto;
}
.hero {
    padding-top: 180px; /* Adjust based on your nav height */
}
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Success/Error Messages */
.message {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.message.success {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid rgba(0, 255, 0, 0.3);
    color: #90EE90;
}

.message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    color: #FFB6C1;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

