  :root {
    --black: #0a0a08;
    --orange: #f2e920;
    --orange1: #E8520A;
    --orange-dim: #b83e07;
    --orange-glow: rgba(232,82,10,0.15);
    --steel: #1c1c18;
    --steel-mid: #2e2e28;
    --steel-light: #4a4a42;
    --cream: #f5f2ea;
    --cream-dim: #c8c4b8;
    --white: #ffffff;

     --primary: #0adb8d;
    --general: #00f5ff;
    --dark: #121212;
    --light: #f8f9fa;
    --success: #ff00f5;
    --hover: linear-gradient(180deg, #00f5ff, #0000ff);
    --bg-primary: linear-gradient(135deg, var(--primary) 50%, var(--light) 125%);
    --bg-general: linear-gradient(135deg, var(--general) 50%, var(--light) 125%);
    --bg-success: linear-gradient(135deg, var(--success) 50%, var(--light) 125%);
  }

*, *::before, *::after { 
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }


body {
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    background: var(--black);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    cursor: crosshair;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

  /* ─── NOISE OVERLAY ─── */
  /*
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
  }
*/
/* Animated background particles */
.bg-particles {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: -1;
}

.particle {
position: absolute;
width: 2px;
height: 2px;
background: linear-gradient(45deg, #065695, #f2e920);
border-radius: 50%;
animation: float 6s ease-in-out infinite;
}

/* Header */
header {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: sticky;
    z-index: 1000;
    width: 100%;
    top: 0%;
    color: var(--light);
    padding: 1rem 5%;
    top: 0; left: 0; right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    display: flex;  
    font-weight: 800;
    background: var(--cream);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.15em;
    color: var(--cream);
}

.logoIcon{
    height: 50px;
    width: 50px;
}

.logo-highlight{
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.15em;
    color: var(--orange);
}

/* Navigation nav-menu*/
nav ul {
    display: flex;
    list-style-type: none;
    list-style: none;
    gap: 2rem;
}

nav ul li {
    margin-left: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;

    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-dim);
}
.nav-links a:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #065695, #f2e920);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}
        
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
}

.scrolling {
    background: rgba(10, 10, 10, 0.500);
    box-shadow: 0 5px 20px rgb(242, 233, 32, 0.555);
}

/* Floating geometric shapes */

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: var(--hover);
    border-radius: 20px;
    animation-delay: 1s;
}

.shape-2 {
    top: 60%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: var(--bg-success);
    border-radius: 50%;
    animation-delay: -5s;
}

.shape-3 {
    bottom: 10%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    transform: rotate(45deg);
    animation-delay: -10s;
}

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem 6rem 4rem;
    position: relative;
    z-index: 2;
  }

  .hero-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--orange);
  }

  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 8vw, 9rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--cream);
    margin-bottom: 2.5rem;
  }

  h1 em {
    font-style: normal;
    color: var(--orange);
    display: block;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cream-dim);
    max-width: 420px;
    margin-bottom: 3rem;
  }

  .hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
  }

  .btn-primary {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    background: var(--orange);
    color: var(--black);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--orange-dim); transform: translateY(-2px); }

  .btn-ghost {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border: 1px solid var(--steel-light);
    color: var(--cream-dim);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-ghost:hover { border-color: var(--cream); color: var(--cream); }

  /* Hero Right — geometric grid illustration */
  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(232,82,10,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(232,82,10,0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
  }

  @keyframes gridShift {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
  }

  .hero-schematic {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .schematic-svg {
    width: 90%;
    max-width: 520px;
    opacity: 0.9;
    animation: floatSlow 6s ease-in-out infinite;
  }

  @keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .hero-stat-strip {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,0.07);
    z-index: 2;
  }

  .stat-item {
    padding: 1.8rem 4rem;
    border-right: 1px solid rgba(255,255,255,0.07);
  }

  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--cream);
    display: block;
    line-height: 1;
  }

  .stat-num span { color: var(--orange); }

  .stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-top: 0.4rem;
    display: block;
  }

  /* ─── MARQUEE ─── */
  .marquee-strip {
    background: var(--orange);
    padding: 0.9rem 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .marquee-inner {
    display: inline-block;
    animation: marquee 22s linear infinite;
  }

  .marquee-inner span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--black);
    margin: 0 2.5rem;
  }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ─── ABOUT ─── */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
  }

  .about-left { padding-right: 5rem; }

  .section-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--orange);
  }

  h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
    margin-bottom: 2rem;
    color: var(--cream);
  }

  .body-text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--cream-dim);
    margin-bottom: 1.5rem;
  }

  .about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .about-cell {
    background: var(--steel);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .about-cell:hover { background: var(--steel-mid); }

  .about-cell-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--orange);
  }

  .about-cell h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--cream);
    margin-bottom: 0.6rem;
  }

  .about-cell p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--cream-dim);
  }

  /* ─── PRODUCTS ─── */
  .products {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
  }

  .product-card {
    background: var(--steel);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .product-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--orange);
    transition: width 0.4s;
  }

  .product-card:hover::before { width: 100%; }
  .product-card:hover { background: var(--steel-mid); }

  .product-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--steel-light);
    margin-bottom: 3rem;
    display: block;
  }

  .product-icon-wrap {
    width: 56px; height: 56px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s;
  }

  .product-card:hover .product-icon-wrap { border-color: var(--orange); }

  .product-icon-wrap svg { width: 28px; height: 28px; stroke: var(--cream-dim); fill: none; stroke-width: 1.5; }
  .product-card:hover .product-icon-wrap svg { stroke: var(--orange); }

  .product-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--cream);
    margin-bottom: 0.8rem;
    line-height: 1;
  }

  .product-card p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--cream-dim);
  }

  .product-card .arrow {
    position: absolute;
    top: 2.5rem; right: 2.5rem;
    font-size: 1.2rem;
    color: var(--steel-light);
    transition: all 0.3s;
  }

  .product-card:hover .arrow {
    color: var(--orange);
    transform: translate(4px, -4px);
  }

  /* ─── PROCESS ─── */
  .process {
    background: var(--steel);
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .process::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
      linear-gradient(rgba(232,82,10,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(232,82,10,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  .process-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 5rem;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 12.5%;
    width: 75%;
    height: 1px;
    background: linear-gradient(90deg, var(--orange), rgba(232,82,10,0.2));
  }

  .step {
    padding: 0 2rem;
    position: relative;
  }

  .step-dot {
    width: 56px; height: 56px;
    border: 2px solid var(--orange);
    display: flex; align-items: center; justify-content: center;
    background: var(--steel);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--orange);
  }

  .step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--cream);
    margin-bottom: 0.6rem;
  }

  .step p {
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--cream-dim);
  }

  /* ─── TESTIMONIAL ─── */
  .testimonial-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
  }

  .testimonial-card {
    background: var(--steel);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 2.5rem;
  }

  .testimonial-card.featured {
    grid-column: 1 / -1;
    background: var(--steel-mid);
    border-color: var(--orange);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
  }

  .quote-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--orange);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
  }

  .testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }

  .testimonial-card.featured .testimonial-text {
    font-size: 1.15rem;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--black);
  }

  .author-name {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cream);
    display: block;
  }

  .author-role {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--cream-dim);
    display: block;
    margin-top: 2px;
  }

  .featured-logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .featured-big-quote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    color: var(--orange);
    opacity: 0.15;
    line-height: 1;
  }

  /* ─── CTA SECTION ─── */
  .cta-section {
    background: var(--orange);
    padding: 7rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: 'Al-OLA';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22vw;
    color: rgba(0,0,0,0.06);
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
  }

  .cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }

  .cta-left h2 {
    color: var(--black);
    font-size: clamp(3rem, 5vw, 6rem);
  }

  .cta-left p {
    color: rgba(0,0,0,0.6);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 420px;
    margin-top: 1rem;
  }

  .btn-dark {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.2rem 2.8rem;
    background: var(--black);
    color: var(--cream);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
  }

  .btn-dark:hover { background: var(--steel); transform: translateY(-2px); }

/* social-links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 5px;
    border-radius: 15px;
    align-content: center;
    backdrop-filter: blur(15px);
    transition: 0.5s;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--orange);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    background: var(--black);
}

.social-links a:hover {
    transform: translateY(-5px);
    color: var(--light);
    animation: ease-out 5s;
    background: var(--black);
}

/* Footer */
footer {
    color: var(--light);
    padding: 60px 0 30px;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 5rem 4rem 3rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 1em;
}

.footer-column h3 {
     font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.footer-column p {
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--cream-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
     color: var(--orange);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

  .footer-bottom p {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--steel-light);
  }

  /* ─── ANIMATIONS ─── */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── SVG SCAN LINES ─── */
  .scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.03) 3px,
      rgba(0,0,0,0.03) 4px
    );
    pointer-events: none;
  }

  /* Responsive */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    nav ul { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-stat-strip { grid-template-columns: repeat(3,1fr); }
    .stat-item { padding: 1.2rem 1.5rem; }
    .about, .products-header { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
    .about-left { padding-right: 0; margin-bottom: 3rem; }
    .product-grid { grid-template-columns: 1fr; }
    .process { padding: 4rem 1.5rem; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .step { padding: 0 0 2.5rem; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .testimonial-card.featured { grid-template-columns: 1fr; gap: 1rem; }
    .cta-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hero-left { padding: 3rem 1.5rem 8rem; }
    .products { padding: 4rem 1.5rem; }
    .testimonial-section { padding: 4rem 1.5rem; }
    .cta-section { padding: 4rem 1.5rem; }
    footer { padding: 4rem 1.5rem 2rem; }
  }

  
/* animaction*/
@keyframes rotate {
    from {
        transform: rotate(0deg); 
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg); opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg); opacity: 1;
    }
}

@keyframes mymove {
    100% {
        rotate: 360deg;
    }
  }


    /* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 102, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    font-size: 1rem;
  }

  .logo-highlight{
    font-size: 1rem;
  }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.600);
        flex-direction: column;
        padding: 1rem 0;
        justify-content: center;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
        text-align: center;
    }
    

    .nav-links a:hover {
    color: #f2e920;
    transform: translateY(-9px);
    }
    
    .hamburger {
        display: block;
    }

    .nav-links {
    display: none;
    }

    .hero h1 {
    font-size: 3rem;
    }

    .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    }

    .stats {
    grid-template-columns: 1fr;
    }

    .services-grid {
    grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, #065695, #f2e920);
border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
background: linear-gradient(135deg, #f2e920, #065695);
}  