:root {
  --accent: #4776e6;
  --light: #f8f9fa;
  --primary: #2563eb;

  --secondary: #00d2ff;
  --dark: #11112b;
  --dark-alt: #1c1c2b;
  --light: #b2f0ff;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --primary-blue: #2563eb;
  --dark-blue: #1e40af;
  --light-blue: #3b82f6;
  --dark-gray: #1f2937;
  --medium-gray: #4b5563;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --black: #111827;
  --gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background-color: #11112b;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  height: 70px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1400px;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
  border-radius: 50px;
  margin: 0 auto;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  top: 10px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 2rem;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  transition: var(--transition);
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #11112a;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 15px;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-links li:not(:has(.btn)) a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: var(--transition);
}

.nav-links li:not(:has(.btn)) a:hover::after,
.nav-links li:not(:has(.btn)) a.active::after {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  font-size: 0.9rem;
  border: none;
  outline: none;
}

.btn.btn-outline {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background-color: transparent;
}

.btn.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn.btn-solid {
  background-color: var(--primary-blue);
  color: var(--white);
  border: 2px solid var(--primary-blue);
}

.btn.btn-solid:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-gray);
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  color: var(--primary-blue);
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
  .navbar {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 30px;
  }

  body {
    padding-top: 80px;
  }

  .navbar-container {
    padding: 1rem 2rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #11112b;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    border-radius: 0 30px 30px 0;
    transition: var(--transition);
  }
  .nav-links a {
    color: #fff;
  }

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

  .nav-links li {
    margin: 0 0 1.5rem 0;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 10px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo img {
    height: 42px;
    width: 110px;
  }
}

/* Animation for navbar on scroll */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */

.hero {
  color: white;
  padding: 12rem 5% 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 50%; /* Adjust as needed */
  min-height: 600px; /* Minimum height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 43, 0.8); /* Same as your gradient color */
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.3s;
  position: relative; /* Ensure it stays above overlay */
  z-index: 1;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.6s;
  position: relative;
  z-index: 1;
}

.hero .cta-button {
  position: relative;
  z-index: 1;
}

.ai-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 15s infinite linear;
}

.services {
  padding: 6rem 5%;
  background-color: #d8dce7;
}

.section-title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark);
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

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

.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
/* About Section with Video */
.about {
  padding: 6rem 5%;
  background-color: #d8dce7;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.about-text p {
  color: #323131;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.about-video {
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.about-video:hover video {
  transform: scale(1.02);
}

/* Fallback image styling */
.about-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none; /* Only shows if video fails */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-video {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-video {
    order: -1; /* Moves video above text */
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .about-video {
    height: 250px;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}
.stats {
  padding: 4rem 5%;
  background: #11112b;
  color: white;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  opacity: 0;
  transform: translateY(20px);
}

.stat-number {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.technologies {
  padding: 6rem 5%;
  background-color: white;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.tech-name {
  font-weight: 500;
  color: var(--dark);
}

.contact {
  padding: 6rem 5%;
  background-color: #f5f7fa;
}
/* AI Applications Section */
.ai-applications {
  padding: 5rem 2rem;
  background-color: #d8dce7;
  text-align: center;
}

.section-subtitle {
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.case-studies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.case-study {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.case-study:hover {
  transform: translateY(-10px);
}

.case-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study:hover .case-image img {
  transform: scale(1.1);
}

.case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 26, 65, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-study:hover .case-overlay {
  opacity: 1;
}

.case-overlay i {
  color: white;
  font-size: 3rem;
}

.case-content {
  padding: 1.5rem;
  text-align: left;
}

.case-content h3 {
  color: #11112b;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.case-content p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.case-stats {
  display: flex;
  gap: 1rem;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0.8rem;
  background: #f1f5f9;
  border-radius: 6px;
}

.number {
  display: block;
  font-weight: 700;
  color: #2563eb;
  font-size: 1.4rem;
  line-height: 1;
}

.label {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
}

.ai-process {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 3rem;
}

.ai-process h3 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.8rem;
  color: #11112b;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
}

.step-icon span {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff6b6b;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.step-icon i {
  font-size: 1.8rem;
}

.step h4 {
  margin-bottom: 0.8rem;
  color: #11112b;
  font-size: 1.2rem;
}

.step p {
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .case-studies {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) translateX(20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
  .hero {
    margin-top: -80px;
  }
}

/* Animation triggers */
.animate {
  animation: fadeInUp 1s forwards;
}

/* Delay classes */
.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}
/* Footer Hero Section */
  .footer-hero-section {
    text-align: center;
    position: relative;
    min-height: 100vh;
    background-color: #11112b;
    background-image: url("Line\ 7.png");
  }
  .footer-hero-content {
    padding-top: 100px;
  }

  .footer-hero-content h3 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
  }

  .footer-hero-content h3 span {
    font-weight: 200;
  }

  .footer-hero-content h3 em {
    font-weight: 500;
    font-style: italic;
    color: #ffffffcc;
  }

/* Footer Styles */
.footer {
  background-color: #11112b;
  color: #ffffff;
  position: relative;
}

.footer-main {
  padding: 0 20px;
  margin-top: 100px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-col {
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-img {
  height: 90px;
  margin-right: 10px;
}

.footer-description {
  margin-bottom: 25px;
  line-height: 1.7;
  opacity: 0.8;
  text-align: left;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: white;
  text-align: left;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #3b82f6;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #3b82f6;
  padding-left: 5px;
}

.footer-links i {
  margin-right: 8px;
  font-size: 0.8rem;
  color: #3b82f6;
}

.footer-social h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  margin-right: 57px;
}
  @media (max-width: 576px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }

    .footer-col {
      margin-bottom: 40px;
    }

    .footer-title {
      margin-bottom: 20px;
    }

    .contact-form {
      padding: 25px 15px;
    }

    .footer-hero-content h3 {
      font-size: 36px;
    }
  }
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #3b82f6;
  transform: translateY(-3px);
}

.contact-info {
  margin-bottom: 30px;
  text-align: left;
}

.contact-item {
  display: flex;
  margin-bottom: 15px;
}

.contact-icon {
  margin-right: 15px;
  color: #3b82f6;
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-text {
  opacity: 0.8;
  line-height: 1.6;
}

.contact-text a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-text a:hover {
  color: #3b82f6;
}

.footer-newsletter h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  text-align: left;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.9rem;
}

.btn-subscribe {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background: #2563eb;
}

.footer-locations {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.locations-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: white;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.location-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.location-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.location-item h4 {
  color: #3b82f6;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.location-item h4 i {
  margin-right: 10px;
}

.location-item p {
  opacity: 0.8;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: left;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 50px;
}

.bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.copyright {
  margin-bottom: 15px;
  opacity: 0.7;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #3b82f6;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #3498db, #204bc1);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(3, 50, 98, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(3, 50, 98, 0.3);
}

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

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

/* Footer Responsive Styles */
@media (max-width: 992px) {
  .footer-grid {
    gap: 30px;
  }
}
/* Page Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .step:nth-child(odd),
  .step:nth-child(even) {
    padding: 0;
    text-align: center;
  }

  .step-content {
    margin: 0 20px;
  }

  .step:nth-child(odd) .icon,
  .step:nth-child(even) .icon {
    left: 50%;
    right: auto;
    top: -35px;
    transform: translateX(-50%);
  }

  .timeline::before {
    left: 40px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 5%;
  }

  nav ul {
    gap: 15px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 0 5%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 20px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background-color: #11112b;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3b82f6;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close-btn:hover {
  color: #3b82f6;
}

.modal-header h2 {
  color: white;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3b82f6;
}

.modal-content {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.modal-content h3 {
  color: #3b82f6;
  margin-top: 20px;
  text-align: left;
}

.modal-content p {
  margin-bottom: 15px;
  text-align: left;
}

.modal-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}
