/* Global Styles */
:root {
    --primary-color: #0F0F0F;
    --secondary-color: #333333;
    --accent-color: #4d4dff;
    --light-gray: #aaaaaa;
    --dark-gray: #222222;
    --text-color: #f5f5f5;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
  }
  
  body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
  }
  
  section {
    padding: 80px 0;
  }
  
  .btn-primary {
    background-color: black;
    border-color: black;
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition);
  }
  
  
  .btn-primary:hover {
    background-color: #efeff7;
    border-color: #efeff7;
    transform: translateY(-2px);
    color: #0F0F0F;
  }
  
  .btn-outline-light {
    border-color: white;
    color: var(--text-color);
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition);
  }
  
  .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  /* Back Button */
.back-button-container {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.back-button {
  display: flex;
  align-items: center;
  background-color: #0F0F0F;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.back-button:hover {
  background-color: #efeff7;
  transform: translateY(-2px);
  color: black;
}

.back-button i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .back-button-container {
    top: 10px;
    left: 10px;
  }
  
  .back-button {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}
  
  /* Hero Section */
  .hero-section {
    background-color: var(--secondary-color);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(15, 15, 15, 0.9), rgba(27, 27, 27, 0.7));
    z-index: 1;
  }
  
  .hero-section .container {
    position: relative;
    z-index: 2;
  }
  
  .hero-section h1 {
    margin-bottom: 20px;
    color: white;
  }
  
  .hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--light-gray);
  }
  
  /* Intro Section */
  .intro-section {
    background-color: black;
  }
  
  .intro-section h2 {
    margin-bottom: 25px;
    color: white;
  }
  
  .intro-section .lead {
    color: var(--light-gray);
    font-size: 1.1rem;
  }
  
  .image-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }
  
  /* Comparison Section */
  .comparison-section {
    background-color: linear-gradient(45deg, rgba(15, 15, 15, 0.9), rgba(27, 27, 27, 0.7));
    padding: 80px 0;
  }
  
  .comparison-card {
    background-color: black;
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }
  
  .comparison-card:hover {
    transform: translateY(-5px);
  }
  
  .comparison-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  
  .comparison-list {
    list-style: none;
    padding: 0;
  }
  
  .comparison-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
  }
  
  .comparison-list i {
    margin-right: 10px;
    font-size: 1.2rem;
    margin-top: 3px;
  }
  
  .negative i {
    color: #ff6b6b;
  }
  
  .positive i {
    color: #4ecdc4;
  }
  
  /* Features Section */
  .features-section {
    background-color: black;
  }
  
  .features-section h2 {
    margin-bottom: 50px;
  }
  
  .feature-card {
    background-color: var(--dark-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    background-color: var(--secondary-color);
  }
  
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .feature-card p {
    color: var(--light-gray);
  }
  
  /* Why Us Section */
  .why-us-section {
    background-color: linear-gradient(45deg, rgba(15, 15, 15, 0.9), rgba(27, 27, 27, 0.7));
  }
  
  .advantage-item {
    margin-bottom: 25px;
  }
  
  .advantage-item h4 {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .advantage-item h4 i {
    margin-right: 10px;
    color: white;
  }
  
  .advantage-item p {
    color: var(--light-gray);
    padding-left: 30px;
  }
  
  /* CTA Section */
  .cta-section {
    background: black;
    padding: 100px 0;
    position: relative;
  }
  
  .cta-buttons {
    margin-top: 40px;
  }

  #btn2 {
    background-color: #0f0f0f;
  }
  #btn2:hover {
    color: black;
    background-color: white;
  }
  
  .rocket-icon {
    font-size: 3rem;
    margin-top: 40px;
    color: white;
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
  }
  
   /* Footer */
  .footer {
    background-color: var(--primary-color);
    padding: 0px 0 20px;
  }
  
  .footer-bottom {
    margin-top: 0px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  .footer-bottom p {
    margin: 0;
    color: var(--light-gray);
  }
  

  /* .why-us-section img{
    height:400px;
    weight:100px;
  } */
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    section {
      padding: 60px 0;
    }
    
    .hero-section {
      padding: 80px 0;
    }
    
    .intro-section .col-lg-6:first-child {
      margin-bottom: 40px;
    }
    
    .why-us-section .col-lg-6:first-child {
      margin-bottom: 40px;
      order: 2;
    }
    
    .why-us-section .col-lg-6:last-child {
      order: 1;
    }
  }
  
  @media (max-width: 768px) {
    .hero-section h1 {
      font-size: 2.5rem;
    }
    
    .hero-section .lead {
      font-size: 1.2rem;
    }
    
    .cta-section h2 {
      font-size: 2rem;
    }

    .footer .col-lg-4, .footer .col-lg-2 {
      margin-bottom: 30px;
      text-align: center;
    }
    
    .footer-links {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .social-icons {
      display: flex;
      justify-content: center;
    }
    
    .footer-bottom {
      margin-top: 0px;
    }
  }