/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary-black: #0a0a0a;
  --secondary-black: #1a1a1a;
  --accent-red: #ff003e;
  --light-red: #ff4d6d;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
}

body {
  background-color: var(--primary-black);
  color: var(--text-primary);
  overflow-x: hidden;
  padding-top: 70px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 50px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 0, 62, 0.2);
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 5px rgba(255, 0, 62, 0.7));
}

.nav-links {
  display: flex;
  list-style: none;
  z-index: 1000;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-red);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1002;
  /* Higher than nav-links */
}

.hamburger i {
  color: var(--text-primary);
  font-size: 24px;
  transition: color 0.3s ease;
}

.hamburger:hover i {
  color: var(--accent-red);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
  opacity: 0.2;
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 2;
}

.greeting {
  font-size: 20px;
  color: var(--accent-red);
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  font-size: 60px;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--text-primary), var(--accent-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.primary-btn {
  background: var(--accent-red);
  color: white;
}

.primary-btn:hover {
  background: var(--light-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 62, 0.3);
}

.secondary-btn {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-red);
}

.secondary-btn:hover {
  background: rgba(255, 0, 62, 0.1);
  transform: translateY(-3px);
}

/* Animated elements */
.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 0, 62, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 62, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 50px 50px;
  }
}

.glow-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 62, 0.2) 0%, rgba(255, 0, 62, 0) 70%);
  filter: blur(20px);
  z-index: 1;
}

.orb-1 {
  top: 10%;
  left: 10%;
}

.orb-2 {
  bottom: 10%;
  right: 10%;
}

/* About Section */
.about {
  background: var(--secondary-black);
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.about-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.img-frame {
  position: relative;
  width: 300px;
  height: 300px;
  border: 3px solid var(--accent-red);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 0, 62, 0.3);
  transform: rotate(5deg);
  transition: all 0.3s ease;
}

.img-frame:hover {
  transform: rotate(0deg);
  box-shadow: 0 0 30px rgba(255, 0, 62, 0.5);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.about-text p {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.about-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
}

.info-item i {
  color: var(--accent-red);
  margin-right: 10px;
  font-size: 18px;
}

.info-item span {
  color: var(--text-secondary);
  font-size: 15px;
}

/* Scroll Animation Styles */
.about-img,
.about-text h3,
.about-text p,
.about-info,
.about-text .cta-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.about-img.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.about-text h3.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.about-text p.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.about-info.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.about-text .cta-btn.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
  margin-top: -15px;
}

.blood-red-divider {
  height: 2px;
  width: 80%;
  background: linear-gradient(90deg,
      rgba(139, 0, 0, 0) 0%,
      rgba(139, 0, 0, 1) 20%,
      rgba(255, 0, 0, 1) 50%,
      rgba(139, 0, 0, 1) 80%,
      rgba(139, 0, 0, 0) 100%);
  margin: 40px auto;
  position: relative;
  border-radius: 1px;
  box-shadow:
    0 0 10px rgba(255, 0, 0, 0.8),
    0 0 20px rgba(255, 0, 0, 0.6),
    0 0 30px rgba(255, 0, 0, 0.4);
  animation: neon-pulse 2s infinite alternate;
}

@keyframes neon-pulse {
  from {
    box-shadow:
      0 0 10px rgba(255, 0, 0, 0.8),
      0 0 20px rgba(255, 0, 0, 0.6),
      0 0 30px rgba(255, 0, 0, 0.4);
  }

  to {
    box-shadow:
      0 0 15px rgba(255, 0, 0, 1),
      0 0 25px rgba(255, 0, 0, 0.8),
      0 0 35px rgba(255, 0, 0, 0.6);
  }
}

/* Experience & Expertise Section */
.expertise {
  background: var(--primary-black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.expertise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
  opacity: 0.05;
  z-index: 0;
}

.expertise-content {
  position: relative;
  z-index: 1;
}

.expertise-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.expertise-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: rgba(255, 0, 62, 0.05);
  border: 1px solid rgba(255, 0, 62, 0.2);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 0, 62, 0.2), transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-red);
  box-shadow: 0 10px 20px rgba(255, 0, 62, 0.2);
}

.card-icon {
  color: var(--accent-red);
  font-size: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.highlight-card:hover .card-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(255, 0, 62, 0.8));
}

.highlight-card h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.highlight-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-red);
}

.highlight-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}


/* Holographic Services Section */
.services-holographic {
    background: var(--primary-black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-holographic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    opacity: 0.05;
    z-index: 0;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-secondary);
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.holographic-container {
    position: relative;
    z-index: 1;
    perspective: 1000px;
    margin-bottom: 60px;
}

.holographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.holo-card {
    height: 250px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.holo-card:hover {
    transform: rotateY(180deg);
}

.holo-front, .holo-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.holo-front {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(30, 30, 30, 0.8));
    border: 1px solid rgba(255, 0, 62, 0.3);
    z-index: 2;
}

.holo-back {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.9));
    border: 1px solid rgba(255, 0, 62, 0.5);
    transform: rotateY(180deg);
    z-index: 1;
}

.holo-icon {
    font-size: 40px;
    color: var(--accent-red);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.holo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 62, 0.1), transparent 70%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.holo-card:hover::before {
    opacity: 1;
}

.holo-card h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.holo-back h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.holo-back p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

.holo-tech {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.holo-tech span {
    background: rgba(255, 0, 62, 0.2);
    border: 1px solid rgba(255, 0, 62, 0.3);
    color: var(--accent-red);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.holo-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: var(--accent-red);
    border-radius: 2px;
}

.service-details {
    position: relative;
    z-index: 1;
}

.service-detail-panel {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 0, 62, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.service-detail-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 62, 0.05), transparent);
    animation: hologram-scan 8s linear infinite;
    z-index: 0;
}

@keyframes hologram-scan {
    0% {
        transform: translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateY(100%) rotate(45deg);
    }
}

.detail-content {
    position: relative;
    z-index: 1;
}

.detail-content h3 {
    font-size: 24px;
    color: var(--accent-red);
    margin-bottom: 15px;
    text-align: center;
}

.detail-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}

/* Scroll Animation */
.holographic-container {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.holographic-container.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-holographic {
        padding: 60px 0;
    }
    
    .services-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .holographic-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .holo-card {
        height: 220px;
    }
    
    .holo-icon {
        font-size: 32px;
    }
    
    .holo-card h3 {
        font-size: 18px;
    }
    
    .holo-back h3 {
        font-size: 16px;
    }
    
    .holo-back p {
        font-size: 13px;
    }
    
    .service-detail-panel {
        padding: 20px;
    }
    
    .detail-content h3 {
        font-size: 20px;
    }
    
    .detail-content p {
        font-size: 14px;
    }
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .services-globe {
        padding: 60px 0;
    }
    
    .globe-container {
        height: 350px;
        margin-bottom: 40px;
    }
    
    .service-details-panel {
        max-width: 90%;
        padding: 15px;
    }
    
    .service-detail h3 {
        font-size: 18px;
    }
    
    .service-detail p {
        font-size: 13px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .service-icon {
        font-size: 18px;
    }
    
    .service-item h3 {
        font-size: 15px;
    }
    
    .service-item p {
        font-size: 13px;
    }
}






/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
    /* Reduced padding for mobile */
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    /* Slightly wider for better touch targets */
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    /* More opaque */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s ease;
    z-index: 999;
    /* Below hamburger but above content */
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 15px 0;
    /* Reduced spacing for mobile */
  }

  .nav-links a {
    font-size: 18px;
    /* Larger font for better readability */
  }

  .hamburger {
    display: block;
  }

  h1 {
    font-size: 40px;
  }

  .subtitle {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .logo-img {
    height: 30px;
  }

  /* Add overlay when menu is open */
  .nav-links.active~.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-img {
    margin-bottom: 20px;
  }

  .img-frame {
    width: 250px;
    height: 250px;
    transform: rotate(0deg);
    /* Remove rotation on mobile */
  }

  .about-text {
    width: 100%;
  }

  .about-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .about-info {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 25px;
  }

  .info-item {
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .info-item i {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .cta-btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .section-title {
    text-align: center;
    font-size: 36px;
  }

  .about {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .blood-red-divider {
    width: 90%;
    margin: 30px auto;
  }

  .expertise {
    padding: 60px 0;
  }

  .expertise-intro {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .expertise-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .highlight-card {
    padding: 20px;
  }
}

/* Why Choose Me Section */
.why-choose {
    background: var(--secondary-black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    opacity: 0.05;
    z-index: 0;
}

.choose-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.benefits-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.central-benefit {
    background: rgba(255, 0, 62, 0.1);
    border: 2px solid var(--accent-red);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    margin-bottom: 50px;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 0, 62, 0.2);
    transition: all 0.3s ease;
}

.central-benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 62, 0.3);
}

.central-icon {
    font-size: 40px;
    color: var(--accent-red);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 62, 0.7));
}

.central-benefit h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.central-benefit p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    position: relative;
}

.benefits-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255, 0, 62, 0) 0%, 
        rgba(255, 0, 62, 0.5) 50%, 
        rgba(255, 0, 62, 0) 100%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.benefit-item {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 0, 62, 0.2);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-item:hover {
    background: rgba(255, 0, 62, 0.1);
    border-color: var(--accent-red);
    transform: translateY(-8px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 62, 0.1);
    border: 1px solid rgba(255, 0, 62, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: rgba(255, 0, 62, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 0, 62, 0.5);
}

.benefit-icon i {
    font-size: 24px;
    color: var(--accent-red);
}

.benefit-content h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.benefit-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 2px;
    background: var(--accent-red);
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.7;
}

.choose-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.choose-cta .cta-btn {
    padding: 15px 40px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.choose-cta .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.choose-cta .cta-btn:hover::before {
    left: 100%;
}

/* Scroll Animation */
.benefits-container {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.benefits-container.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0;
    }
    
    .choose-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .central-benefit {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .central-icon {
        font-size: 32px;
    }
    
    .central-benefit h3 {
        font-size: 18px;
    }
    
    .central-benefit p {
        font-size: 14px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid::before {
        display: none;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 20px;
    }
    
    .benefit-content h4 {
        font-size: 16px;
    }
    
    .benefit-content p {
        font-size: 13px;
    }
    
    .choose-cta .cta-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}


/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Logo Container */
.loading-screen .logo-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.loading-screen .logo-bg {
    width: 120px;
    height: 120px;
    background: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 0, 62, 0.3);
    box-shadow: 
        0 0 20px rgba(255, 0, 62, 0.2),
        inset 0 0 20px rgba(255, 0, 62, 0.1);
    position: relative;
    z-index: 2;
}

.loading-screen .logo-text {
    font-size: 48px;
    font-weight: bold;
    color: #FF003E;
    text-shadow: 
        0 0 10px rgba(255, 0, 62, 0.8),
        0 0 20px rgba(255, 0, 62, 0.6),
        0 0 30px rgba(255, 0, 62, 0.4);
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 2px;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        text-shadow: 
            0 0 10px rgba(255, 0, 62, 0.8),
            0 0 20px rgba(255, 0, 62, 0.6),
            0 0 30px rgba(255, 0, 62, 0.4);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(255, 0, 62, 1),
            0 0 25px rgba(255, 0, 62, 0.8),
            0 0 35px rgba(255, 0, 62, 0.6);
    }
}

/* Logo Orbit Effect */
.loading-screen .logo-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 1px solid rgba(255, 0, 62, 0.2);
    border-radius: 50%;
    animation: orbit 4s linear infinite;
}

@keyframes orbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.loading-screen .orbit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FF003E;
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 0, 62, 0.8);
}

.loading-screen .loading-text {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 20px;
}

.loading-screen .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    color: #FF003E;
    text-shadow: 0 0 10px rgba(255, 0, 62, 0.8);
    animation: letterAppear 0.5s ease forwards;
}

@keyframes letterAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-screen .loading-bar {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-screen .loading-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #FF003E, #ff4d6d);
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out forwards;
}

@keyframes loadingProgress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.loading-screen .cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 0, 62, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 62, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .loading-screen .logo-bg {
        width: 100px;
        height: 100px;
    }
    
    .loading-screen .logo-text {
        font-size: 36px;
    }
    
    .loading-screen .logo-orbit {
        width: 120px;
        height: 120px;
    }
    
    .loading-screen .loading-text {
        font-size: 36px;
        letter-spacing: 3px;
    }
}


/* Animated Figures in Hero Section */
.animated-figures {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.figure {
    position: absolute;
    opacity: 0.8;
}

/* Robot Figure */
.robot {
    width: 60px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation: floatRobot 15s ease-in-out infinite;
}

.robot-body {
    width: 40px;
    height: 50px;
    background: linear-gradient(135deg, #333, #666);
    border-radius: 10px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(255, 0, 62, 0.6);
}

.robot-head {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #444, #777);
    border-radius: 50%;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(255, 0, 62, 0.5);
}

.robot-eyes {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.eye {
    width: 6px;
    height: 6px;
    background: #FF003E;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 0, 62, 0.8);
    animation: blink 3s infinite;
}

.robot-arms {
    position: absolute;
    top: 10px;
    width: 100%;
    height: 20px;
}

.arm {
    position: absolute;
    width: 15px;
    height: 4px;
    background: #555;
    border-radius: 2px;
}

.arm.left {
    left: -10px;
    transform: rotate(-30deg);
    animation: armWaveLeft 2s ease-in-out infinite;
}

.arm.right {
    right: -10px;
    transform: rotate(30deg);
    animation: armWaveRight 2s ease-in-out infinite;
}

/* Butterfly Figure */
.butterfly {
    width: 40px;
    height: 30px;
    top: 30%;
    right: 15%;
    animation: flyButterfly 12s ease-in-out infinite;
}

.butterfly-body {
    width: 8px;
    height: 20px;
    background: linear-gradient(to bottom, #FF003E, #ff4d6d);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(255, 0, 62, 0.7);
}

.butterfly-wing {
    position: absolute;
    width: 20px;
    height: 25px;
    background: linear-gradient(135deg, rgba(255, 0, 62, 0.6), rgba(255, 77, 109, 0.4));
    border-radius: 50% 10% 50% 10%;
    top: 50%;
    transform-origin: center;
    box-shadow: 0 0 10px rgba(255, 0, 62, 0.5);
}

.butterfly-wing.left {
    left: -10px;
    transform: translateY(-50%) rotateY(20deg);
    animation: flapLeft 0.5s ease-in-out infinite;
}

.butterfly-wing.right {
    right: -10px;
    transform: translateY(-50%) rotateY(-20deg);
    animation: flapRight 0.5s ease-in-out infinite;
}

/* Glowing Orb */
.orb {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #FF003E, transparent 70%);
    border-radius: 50%;
    top: 60%;
    left: 20%;
    animation: floatOrb 8s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 0, 62, 0.8);
}

/* Cyber Bug */
.cyber-bug {
    width: 50px;
    height: 40px;
    top: 40%;
    right: 30%;
    animation: crawlBug 10s linear infinite;
}

.bug-body {
    width: 30px;
    height: 15px;
    background: linear-gradient(90deg, #222, #444);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255, 0, 62, 0.6);
}

.bug-antenna {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
}

.antenna {
    position: absolute;
    width: 2px;
    height: 10px;
    background: #666;
    top: 0;
}

.antenna:first-child {
    left: 2px;
    transform: rotate(-15deg);
}

.antenna:last-child {
    right: 2px;
    transform: rotate(15deg);
}

.antenna::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #FF003E;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 0, 62, 0.8);
}

/* Energy Beam */
.energy-beam {
    width: 3px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #FF003E, transparent);
    top: 10%;
    right: 10%;
    animation: pulseBeam 3s ease-in-out infinite;
    transform-origin: top;
    box-shadow: 0 0 20px rgba(255, 0, 62, 0.8);
}

/* Animations */
@keyframes floatRobot {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(20px);
    }
    75% {
        transform: translateY(20px) translateX(10px);
    }
}

@keyframes blink {
    0%, 90%, 100% {
        opacity: 1;
    }
    95% {
        opacity: 0.3;
    }
}

@keyframes armWaveLeft {
    0%, 100% {
        transform: rotate(-30deg);
    }
    50% {
        transform: rotate(-50deg);
    }
}

@keyframes armWaveRight {
    0%, 100% {
        transform: rotate(30deg);
    }
    50% {
        transform: rotate(50deg);
    }
}

@keyframes flyButterfly {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-100px, -50px) rotate(45deg);
    }
    50% {
        transform: translate(-50px, -100px) rotate(90deg);
    }
    75% {
        transform: translate(50px, -50px) rotate(135deg);
    }
    100% {
        transform: translate(0, 0) rotate(180deg);
    }
}

@keyframes flapLeft {
    0%, 100% {
        transform: translateY(-50%) rotateY(20deg);
    }
    50% {
        transform: translateY(-50%) rotateY(60deg);
    }
}

@keyframes flapRight {
    0%, 100% {
        transform: translateY(-50%) rotateY(-20deg);
    }
    50% {
        transform: translateY(-50%) rotateY(-60deg);
    }
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 1;
    }
}

@keyframes crawlBug {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(50px) rotate(90deg);
    }
    50% {
        transform: translateX(100px) rotate(180deg);
    }
    75% {
        transform: translateX(50px) rotate(270deg);
    }
    100% {
        transform: translateX(0) rotate(360deg);
    }
}

@keyframes pulseBeam {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .animated-figures {
        display: none; /* Hide animations on mobile for better performance */
    }
}

/* Futuristic Footer */
.futuristic-footer {
    background: var(--primary-black);
    border-top: 1px solid rgba(255, 0, 62, 0.3);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.futuristic-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 0, 62, 0.2);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 62, 0.05), transparent);
    animation: hologram-scan 8s linear infinite;
    z-index: 0;
}

@keyframes hologram-scan {
    0% {
        transform: translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateY(100%) rotate(45deg);
    }
}

.footer-section:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 62, 0.2);
}

.footer-title {
    font-size: 20px;
    color: var(--accent-red);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-red);
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.social-link {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 0, 62, 0.2);
    transition: width 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    width: 100%;
}

.social-link:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.social-link i {
    font-size: 20px;
    color: var(--accent-red);
    margin-right: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 62, 0.6);
    transition: all 0.3s ease;
}

.social-link:hover i {
    text-shadow: 0 0 15px rgba(255, 0, 62, 0.8);
    transform: scale(1.2);
}

.social-link span {
    font-size: 16px;
    font-weight: 500;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 16px;
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 0, 62, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 18px;
    color: var(--accent-red);
    margin-right: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 62, 0.6);
    min-width: 20px;
    text-align: center;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover a {
    color: var(--text-primary);
}

/* Map Section */
.map-container {
    position: relative;
    z-index: 1;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 62, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 62, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(0.9) hue-rotate(180deg);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 0, 62, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-nav a:hover {
    color: var(--accent-red);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(255, 0, 62, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--light-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 62, 0.6);
}

.back-to-top i {
    color: white;
    font-size: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .futuristic-footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        padding: 20px;
    }
    
    .footer-title {
        font-size: 18px;
    }
    
    .social-link, .contact-item {
        padding: 10px 12px;
    }
    
    .social-link i, .contact-item i {
        font-size: 18px;
        margin-right: 12px;
    }
    
    .social-link span, .contact-item {
        font-size: 14px;
    }
    
    .map-container {
        height: 150px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top i {
        font-size: 16px;
    }
}



/* footer css */
footer {
  background:#000;
  padding:50px 20px;
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.footer-card {
  background: #111;
  border: 2px solid #ff0000;
  border-radius: 15px;
  padding: 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px #ff0000, 0 0 80px #ff1a1a, 0 0 120px #ff3333;
}

.card-title {
  font-family: Arial, sans-serif;
  color: #ff0000;
  font-size: 20px;
  margin-bottom: 15px;
  text-shadow: 0 0 5px #ff0000, 0 0 10px #ff1a1a;
}

.icon-group {
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

.footer-icon {
  font-size: 40px;
  color: #ff0000;
  text-shadow: 0 0 5px #ff0000;
  cursor: pointer;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.footer-icon:hover {
  transform: scale(1.2);
  text-shadow: 0 0 15px #ff0000, 0 0 30px #ff1a1a, 0 0 50px #ff3333;
}


.map-card iframe {
  width: 100%;
  max-width: 100%;
  height: 200px;
  border-radius:10px;
  border:2px solid #ff0000;
  box-shadow:0 0 15px rgba(255,0,0,0.5);
  display:block;
}

.copyright {
  background:#000;
  color:#ff0000;
  text-align:center;
  padding:15px;
  font-family:Arial, sans-serif;
  font-size:14px;
  text-shadow:0 0 8px #ff0000;
}

/* Responsive */
@media (max-width: 900px) {
  footer {
    flex-direction: column;
    align-items: center;
  }
  .footer-card {
    width: 90% !important;
  }
}
