/* ===== GENERAL RESET & BASE STYLES ===== */
:root {
    --primary-color: #00ffe1;
    --primary-dark: #00cccc;
    --secondary-color: #0055ff;
    --accent-color: #ff5722;
    --dark-bg: #0d0d0d;
    --darker-bg: #080808;
    --light-text: #f0f0f0;
    --medium-text: #b0b0b0;
    --dark-text: #1e1e1e;
    --header-font: 'Rajdhani', sans-serif;
    --body-font: 'Space Grotesk', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --section-padding: 80px 20px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    height: 100%;
  }
  
  body {
    font-family: var(--body-font);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    min-height: 100%;
    position: relative;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-normal);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  section {
    position: relative;
    padding: var(--section-padding);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
  }
  
  .section-header h2 i {
    margin-right: 10px;
    vertical-align: middle;
  }
  
  .section-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 3px;
  }
  
  /* ===== HEADER & NAVIGATION ===== */
  header {
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 255, 225, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
  }
  
  .top-banner {
    background: linear-gradient(90deg, var(--primary-dark), var(--secondary-color));
    color: var(--light-text);
    padding: 8px 20px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { opacity: 0.9; }
    50% { opacity: 1; }
    100% { opacity: 0.9; }
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
  }
  
  .logo img {
    height: 50px;
    transition: var(--transition-normal);
  }
  
  .logo img:hover {
    transform: scale(1.05);
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li a {
    color: var(--light-text);
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 4px;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .nav-icon {
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* color: var(--primary-color); */
  }
  
  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
    transform: translateX(-50%);
  }
  
  .nav-links li a:hover::after,
  .nav-links li a.active::after {
    width: 80%;
  }
  
  .nav-links li a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
  }
  
  .nav-links li a.active {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .cta-button {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: var(--dark-text) !important;
    padding: 10px 18px !important;
    border-radius: 30px !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 255, 225, 0.3);
  }
  
  .cta-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 15px rgba(0, 255, 225, 0.4);
  }
  
  .cta-button-alt {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 8px 16px !important;
    border-radius: 30px !important;
    font-weight: 600;
  }
  
  .cta-button-alt:hover {
    background: rgba(0, 255, 225, 0.1);
    transform: translateY(-3px) !important;
  }
  
  /* Menu toggle button (mobile) */
  .menu-toggle {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-text);
    border: none;
    font-size: 24px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 255, 225, 0.5);
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition-normal);
  }
  
  .menu-toggle:hover {
    transform: rotate(90deg);
  }
  
/* ===== HERO SECTION ===== */
.particles-container {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 120px);
  min-height: 500px;
  width: 100%;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-tech {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 2;
  text-align: center;
  margin-top: 0;
}

.hero-content {
  max-width: 900px;
  padding: 30px;
  backdrop-filter: blur(5px);
  border-radius: 20px;
  animation: fadeIn 1.5s ease-out;
}

.hero-tech h1 {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 2px;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

/* Glitch effect */
.glitch-text {
  position: relative;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glitch-text::before {
  left: 2px;
  text-shadow: -2px 0 var(--primary-color);
  animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
  left: -2px;
  text-shadow: 2px 0 var(--secondary-color);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: inset(70% 0 18% 0);
  }
  20% {
    clip-path: inset(29% 0 34% 0);
  }
  40% {
    clip-path: inset(65% 0 24% 0);
  }
  60% {
    clip-path: inset(83% 0 4% 0);
  }
  80% {
    clip-path: inset(40% 0 43% 0);
  }
  100% {
    clip-path: inset(17% 0 72% 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip-path: inset(23% 0 68% 0);
  }
  20% {
    clip-path: inset(64% 0 17% 0);
  }
  40% {
    clip-path: inset(7% 0 61% 0);
  }
  60% {
    clip-path: inset(52% 0 33% 0);
  }
  80% {
    clip-path: inset(75% 0 19% 0);
  }
  100% {
    clip-path: inset(39% 0 52% 0);
  }
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}

.line {
  height: 1px;
  width: 90px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.diamond {
  width: 12px;
  height: 12px;
  margin: 0 15px;
  background: var(--primary-color);
  transform: rotate(45deg);
  animation: pulse-diamond 3s infinite;
}

@keyframes pulse-diamond {
  0% { transform: rotate(45deg) scale(1); opacity: 0.7; }
  50% { transform: rotate(45deg) scale(1.2); opacity: 1; }
  100% { transform: rotate(45deg) scale(1); opacity: 0.7; }
}

.hero-tech h2 {
  font-size: 2.2rem;
  color: var(--light-text);
  margin-bottom: 20px;
  font-weight: 500;
}

.typewriter {
  min-height: 2.5rem;
  display: inline-block;
}

.tech-motto {
  font-size: 1.3rem;
  color: var(--medium-text);
  margin-bottom: 30px;
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--dark-text);
  box-shadow: 0 5px 15px rgba(0, 255, 225, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 255, 225, 0.5);
}

.btn-secondary:hover {
  background: rgba(0, 255, 225, 0.1);
  transform: translateY(-5px);
}

.btn-glow {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--dark-text);
  box-shadow: 0 5px 15px rgba(0, 255, 225, 0.4);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  0% { box-shadow: 0 5px 15px rgba(0, 255, 225, 0.4); }
  100% { box-shadow: 0 8px 25px rgba(0, 255, 225, 0.8); }
}

.btn-glow:hover {
  transform: translateY(-5px) scale(1.05);
}

.tech-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: -1;
}

.shape1 {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  top: -100px;
  right: -100px;
  animation: float 15s infinite alternate;
}

.shape2 {
  width: 200px;
  height: 200px;
  background: var(--secondary-color);
  bottom: -50px;
  left: -80px;
  animation: float 12s infinite alternate-reverse;
}

.shape3 {
  width: 150px;
  height: 150px;
  background: var(--accent-color);
  top: 40%;
  left: 20%;
  animation: float 10s infinite alternate;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, -30px) rotate(180deg); }
  100% { transform: translate(-30px, 30px) rotate(360deg); }
}

/* .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent, var(--dark-bg));
  z-index: -2;
} */

/* Add this to ensure the hero section is at the top */
body {
  margin: 0;
  padding: 0;
}

/* In case there's a navbar, add these styles */
header, nav {
  position: relative;
  z-index: 10;
}

/* Optional: Add this if you need to ensure no gaps at the top */
.particles-container {
  margin-top: 0;
}

/* For the animation that wasn't defined in the original code */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
  /* ===== SERVICES SECTION ===== */
  .services-section {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
  }
  
  .services-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--darker-bg));
    z-index: 5;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    z-index: -1;
    border-radius: 17px;
    opacity: 0;
    transition: var(--transition-normal);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .service-card:hover::before {
    opacity: 1;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 225, 0.1), rgba(0, 85, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(0, 255, 225, 0.2);
  }
  
  .service-icon i {
    font-size: 30px;
    color: var(--primary-color);
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  .service-card p {
    color: var(--medium-text);
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* ===== CTA SECTION ===== */
  .cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 225, 0.1), rgba(0, 85, 255, 0.1));
    animation: rotateBg 20s linear infinite;
  }
  
  @keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(13, 13, 13, 0.8);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 225, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
  }
  
  .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-text);
  }
  
  .cta-features {
    list-style: none;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .cta-features li {
    font-size: 1.1rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
  }
  
  .cta-features li i {
    margin-right: 10px;
    color: var(--primary-color);
  }
  
  /* ===== VIDEO SECTION ===== */
  .video-section {
    background-color: var(--dark-bg);
    position: relative;
  }
  
  .video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .video-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
  }
  
  .video-frame {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #121212;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 225, 0.2);
    transition: var(--transition-normal);
  }
  
  .video-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--primary-color);
  }
  
  .video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .video-caption {
    margin-top: 15px;
    text-align: center;
    color: var(--medium-text);
    font-size: 1rem;
  }
  
  /* ===== STATS SECTION ===== */
  .stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .stat-card {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    min-width: 200px;
    flex: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: var(--header-font);
  }
  
  .stat-label {
    color: var(--medium-text);
    font-size: 1.1rem;
  }
  
  /* ===== FOOTER ===== */
  footer {
    background-color: var(--darker-bg);
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden;
  }
  
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
  }
  
  .footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo {
    height: 60px;
    margin-bottom: 15px;
  }
  
  .footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-text);
  }
  
  .footer-description {
    color: var(--medium-text);
    line-height: 1.7;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links li a {
    color: var(--medium-text);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
  }
  
  .footer-links li a i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 0.8rem;
  }
  
  .footer-links li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
  }
  
  .footer-right h4, .footer-center h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--light-text);
    display: flex;
    align-items: center;
  }
  
  .footer-right h4 i, .footer-center h4 i {
    margin-right: 10px;
    color: var(--primary-color);
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    color: var(--medium-text);
    font-size: 1.2rem;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  .footer-contact {
    margin-bottom: 30px;
  }
  
  .footer-contact p {
    margin-bottom: 10px;
  }
  
  .footer-contact p a {
    color: var(--medium-text);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
  }
  
  .footer-contact p a i {
    margin-right: 10px;
    color: var(--primary-color);
  }
  
  .footer-contact p a:hover {
    color: var(--primary-color);
  }
  
  .footer-newsletter h4 {
    margin-bottom: 15px;
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 15px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: #1a1a1a;
    border-radius: 30px 0 0 30px;
    color: var(--light-text);
    font-family: var(--body-font);
    outline: none;
  }
  
  .btn-subscribe {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 0 30px 30px 0;
    color: var(--dark-text);
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition-fast);
  }
  
  .btn-subscribe:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  .footer-bottom p {
    color: var(--medium-text);
    font-size: 0.9rem;
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-bottom-links a {
    color: var(--medium-text);
    font-size: 0.9rem;
    transition: var(--transition-fast);
  }
  
  .footer-bottom-links a:hover {
    color: var(--primary-color);
  }
  
  /* ===== ANIMATIONS ===== */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* ===== RESPONSIVE STYLING ===== */
  @media (max-width: 1024px) {
    .hero-tech h1 {
      font-size: 4rem;
    }
    
    .hero-tech h2 {
      font-size: 1.8rem;
    }
    
    .section-header h2 {
      font-size: 2.2rem;
    }
    
    .services-grid {
      gap: 20px;
    }
    
    .service-card {
      padding: 25px;
    }
    
    .cta-content {
      padding: 40px 30px;
    }
    
    .footer-container {
      gap: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      padding: 15px 20px;
    }
    
    .logo img {
      height: 40px;
    }
    
    .nav-links {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: rgba(8, 8, 8, 0.95);
      backdrop-filter: blur(10px);
      padding: 20px;
      border-radius: 0 0 20px 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      z-index: 1000;
    }
    
    .nav-links.open {
      display: flex;
      animation: slideDown 0.3s ease-out forwards;
    }
    
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .menu-toggle {
      display: flex;
    }
    
    .hero-tech h1 {
      font-size: 3rem;
    }
    
    .hero-tech h2 {
      font-size: 1.5rem;
    }
    
    .tech-motto {
      font-size: 1.1rem;
    }
    
    .hero-cta {
      flex-direction: column;
      gap: 15px;
    }
    
    .section-header h2 {
      font-size: 1.8rem;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
      font-size: 2rem;
    }
    
    .cta-content p {
      font-size: 1.1rem;
    }
    
    .cta-features {
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }
    
    .footer-bottom {
      flex-direction: column;
    }
  }
  
  @media (max-width: 480px) {
    .hero-tech h1 {
      font-size: 2.5rem;
    }
    
    .hero-tech h2 {
      font-size: 1.3rem;
    }
    
    .tech-motto {
      font-size: 1rem;
    }
    
    .btn {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
    
    .section-header h2 {
      font-size: 1.6rem;
    }
    
    .service-card {
      padding: 20px;
    }
    
    .service-icon {
      width: 60px;
      height: 60px;
    }
    
    .service-icon i {
      font-size: 25px;
    }
    
    .cta-content {
      padding: 30px 20px;
    }
    
    .cta-content h2 {
      font-size: 1.7rem;
    }
    
    .cta-content p {
      font-size: 1rem;
    }
    
    .newsletter-form {
      flex-direction: column;
      gap: 10px;
    }
    
    .newsletter-form input {
      border-radius: 30px;
      text-align: center;
    }
    
    .btn-subscribe {
      border-radius: 30px;
      padding: 12px;
    }
  }

/* Contact Form Styles */
.contact-form-section {
  padding: 80px 20px;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 255, 225, 0.1), rgba(0, 85, 255, 0.1));
  animation: rotateBg 20s linear infinite;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 225, 0.1);
  position: relative;
  z-index: 2;
}

.form-container h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: var(--header-font);
}

.form-subtitle {
  text-align: center;
  color: var(--medium-text);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  color: var(--light-text);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid rgba(0, 255, 225, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: var(--body-font);
  background: rgba(0, 0, 0, 0.2);
  color: var(--light-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 255, 225, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--medium-text);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300ffe1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  padding-right: 40px;
  color: var(--light-text);
}

.form-group select option {
  background: var(--darker-bg);
  color: var(--light-text);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--dark-text);
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(0, 255, 225, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 225, 0.5);
}

.submit-btn i {
  font-size: 1.2rem;
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
  border-color: var(--accent-color);
}

.form-group input:invalid:focus,
.form-group select:invalid:focus,
.form-group textarea:invalid:focus {
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

/* Loading State */
.submit-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn.loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 15px;
  }

  .form-container {
    padding: 30px 20px;
  }

  .form-container h2 {
    font-size: 2rem;
  }

  .form-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .submit-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 40px 10px;
  }

  .form-container {
    padding: 25px 15px;
  }

  .form-container h2 {
    font-size: 1.8rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Custom Popup Styles */
.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-modal.visible {
  visibility: visible;
  opacity: 1;
}

.popup-content {
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border: 1px solid rgba(0, 255, 225, 0.1);
}

.popup-modal.visible .popup-content {
  transform: scale(1);
  opacity: 1;
}

.popup-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.popup-icon.success i {
  color: var(--primary-color); /* Cyan/Turquoise */
}

.popup-icon.error i {
  color: var(--accent-color); /* Orange/Red */
}

.popup-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--light-text);
  font-family: var(--header-font);
}

.popup-content p {
  font-size: 1.1rem;
  color: var(--medium-text);
  margin-bottom: 30px;
}

.popup-close-btn {
  background: linear-gradient(135deg, var(--secondary-color), #00a3ff);
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(0, 85, 255, 0.3);
}

.popup-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 85, 255, 0.4);
}

.popup-close-btn i {
  font-size: 1rem;
}

/* Keyframe for background animation */
@keyframes rotateBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}