* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
  }
  
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
  }
  
  .header .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
  }
  
  .header .logo img {
    width: 120px;
    margin-right: 100px;
  }

  .header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    transition: background 0.3s ease;
  }
  
  
  .nav {
    display: flex;
    gap: 20px;
  }
  
  .nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    text-transform: uppercase;
  }
  
  .nav a.active {
    border: 2px solid #fff;
    border-radius: 5px;
  }
  
/* Burger Menu - Hidden on Desktop */
.burger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Sidebar */
  .sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(86, 0, 0, 0.85);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    z-index: 1000;
  }
  
  .sidebar a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
  }
  
  .sidebar .close-btn {
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
  }
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .carousel {
    margin-top: 65px;
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
  }
  
  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .carousel-slide {
    position: relative;
}

.cta-button {
  position: absolute;
  top: 75%;
  left: 6%;
  color: white;
  padding: 12px 40px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid white;
  border-radius: 5px;
  font-size: 16px;
  background: transparent;
  transition: all 0.3s ease-in-out;
}

.cta-button:hover {
  background-color: white;
  color: #000;
}

/* Responsive styles */
@media (max-width: 768px) {
    .cta-button {
        padding: 5px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 5px 16px;
        font-size: 12px;
        top: 70%;
        left: 10%;
    }
}

  
  /* Dots */
  .dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }
  
  .dots span {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
  }
  
  .dots span.active {
    opacity: 1;
  }
  
/* How It Works Section */
.how-it-works {
    padding: 20px 20px;
    text-align: center;
  }

.how-it-works img{
    width: 100px;
  }
  
  .how-it-works h2 {
    color: #860000;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .feature {
    background: #860000;
    padding: 20px;
    border-radius: 5px;
    width: 30%;
    text-align: center;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  }
  
  .feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

 .learn{
  appearance: none;
  background-color: transparent;
  border: 2px solid rgb(118, 0, 0);
  border-radius: 15px;
  box-sizing: border-box;
  color: #3B3B3B;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 90%;
  will-change: transform;
}

.learn:disabled {
  pointer-events: none;
}

.learn:hover {
  color: #fff;
  background-color:rgb(28, 118, 0);
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
  border: 0.1px
}

.learn:active {
  box-shadow: none;
  transform: translateY(0);
}

  /* Footer Styling */
.footer {
    background-color: #860000;
    color: #fff;
    padding: 40px 20px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-section {
    flex: 1;
    padding: 10px;
    min-width: 200px;
  }
  
  .footer-section h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
  }
  
  .footer-section p, .footer-section ul {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #000;
  }
  
  .social-media {
    display: flex;
    gap: 15px;
  }
  
  .social-icon {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
  }
  
  .social-icon:hover {
    color: #860000;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section {
      min-width: 100%;
      text-align: center;
      margin-bottom: 20px;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav {
      display: none;
    }
  
    .burger-menu {
      display: block;
    }
  
    .features {
      flex-direction: column;
    }
  
    .feature {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .carousel-slide img {
      width: 100%;
      height: auto; 
      object-fit: cover; 
    }
  
    .carousel {
      height: auto; 
    }
  
    .hero {
      height: auto;
    }
  }  