*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
 
}
 html, body {
  height: 100%;
}

  body{
    background-color: black;
    overflow-x: hidden;
  }
  
  .carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
  }
  
  .carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
  
  .carousel-item {
    min-width: 100%;
    position: relative;
  }
  
  .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
  }
  
  .carousel-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    max-width: 40%;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
  }
  
  .carousel-text h2 {
    margin: 0 0 10px;
  }
  
  .next-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 14px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
  }
  
  @media (max-width: 768px) {
    .carousel-text {
      max-width: 80%;
      left: 5%;
      font-size: 14px;
      padding: 15px;
    }
  
    .carousel-text h2 {
        font-size: 36px; /* Increase this for bigger heading */
        margin-bottom: 15px;
      }
      
      .carousel-text p {
        font-size: 20px; /* Increase this for larger paragraph text */
        line-height: 1.5;
      }
    }
.navbar {
  background-color: black;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 10px;
  justify-content: center;
  display: flex;
  width: 100%;
}

.navdiv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  margin: 0 30px;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 15px 12px;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar ul li a:hover {
  background-color: lightgray;
  color: #333;
  border-radius: 5px;
}

.navbar ul li a:hover:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background-color: lightgray;
}

.logo a {
  font-size: 35px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

li {
  list-style: none;
  display: inline-block;
}

li a {
  color: white;
  font-size: 50px;
  font-weight: bold;
  margin-right: 25px;
}
    
  .logo a{
      font-size: 35px;
      font-weight: 600;
      color: white;
  }
  li {
      list-style: none;
      display: inline-block;
  }
  li a {
      color:white ;
      font-size: 19.2px;
      font-weight: bold;
      margin-right: 25px;
      padding: 15px 12px;
  }
  button{
      background-color: black;
      margin-left: 10px;
      border-radius: 10px;
      padding: 10px;
      width:90px;
  }
  button a {
      color: white;
      font-weight: bold;
      font-size: 15px;
  }
 footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px 15px;
  font-size: 16px;
  width: 100%;
  line-height: 1.6;
   margin-top: auto;
}

.footer-text {
  margin: 0;
  font-size: 1rem;
  word-wrap: break-word;
}
  .text-content {
    padding: 20px;
    text-align: center;
    background-color:black;
    width: 100%;
    max-width: 1200px;  /* You can set a max-width to prevent text from being too wide */
    margin: 20px auto;  /* Centers the text section horizontally */
  }
  
  .text-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color:white;
    margin-bottom: 10px;
  }
  
  .text-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .cta-button {
    padding: 10px 20px;  /* Adds space inside the button */
    background-color: black;
    color: white;
    border: none;
    border-radius: 25px;  /* Makes the corners more rounded */
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;  /* Ensures the button stays on one line */
    text-align: center;  /* Centers the text within the button */
    font-size: 16px;  /* Adjust the font size */
    white-space: nowrap;
    min-width: 140px; 
  }
  
  .cta-button a {
    color: white;  /* Ensures the text inside the link is white */
    font-weight: bold;
    text-decoration: none;  /* Removes the underline */
    display: block;  /* Ensures the text behaves like a block element for proper styling */
    transition: color 0.3s ease,
  }
  
  .cta-button:hover {
    background-color:lightgray;  /* Darker color when the button is hovered */
  }
  
  .carousel-button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
  }
  .carousel-button {
    background-color: black;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .carousel-button:hover {
    background-color: white;
    color: black;
  }
    
  .contact-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: black;
    color: white;
    text-align: center;
    border: 2px solid white;
    border-radius: 12px;

    flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  }
  
  .contact-container h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
  }
  
  .contact-details p {
    font-size: 1.2rem;
    margin: 12px 0;
    color: white;
  }
  
  .contact-details i {
    margin-right: 10px;
    color: lightgray;
  }
  
  .subheading {
    margin-top: 40px;
    font-size: 1.8rem;
    color: white;
  }
  
  .payment-section,
  .social-section {
    margin-top: 20px;
    color: white;
  }
  
  .qr-image {
    margin-top: 15px;
    width: 350px;
    height: 350px;
    border: 2px solid white;
    border-radius: 10px;
    max-width: 90%;
    height: auto;
  }
  
  .social-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
  }
  
  .social-link i {
    margin-right: 10px;
    color: #E1306C; /* Instagram pink */
    font-size: 1.5rem;
  }
  
  .social-link:hover {
    background-color: white;
    color: black;
    transform: scale(1.05);
  }
  
  
  .page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .contact-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
/* Hamburger styles */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .navdiv {
    justify-content: space-between;
    align-items: center;
   

    display: flex;
 
  width: 100%;
  position: relative;
  padding: 10px 15px;
  }

  .menu-toggle {
    display:block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: black;
    position: absolute;
    top: 60px;
    left:0;
    width: 100%;
    padding: 10px 0;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 10px;
    text-align: center;
    width: 100%;
    margin:0;
  }

  .navbar ul li a {
    font-size: 1rem;
  }
}

  