* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "jost";
}

/* 🔹 Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
   background-color: #0a0a0a;
  color: white;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  background-color: #eb5519;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-family: 'PT Sans', sans-serif;
}

.nav-links li a:hover {
  background-color: #ff9900;
  color: #1a0033;
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.5);
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: #1a0033;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    max-height: 500px; /* Enough to fit all links */
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  }
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #1a0033; /* dark purple background */
  color: white;
}

.gallery-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-title {
  text-align: center;
  color: orange;
  margin-bottom: 30px;
  font-size: 24px;
  letter-spacing: 1px;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-item {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .gallery-item {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .gallery-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

  /* Responsive Design */
  @media (max-width: 1024px) {
    .footer-section {
      flex: 1 1 calc(50% - 40px); /* Ensures 2 items per row */
    }
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column; /* Stacks vertically */
      text-align: center;
    }
    
    .footer-section {
      margin-bottom: 20px; /* Adds spacing */
    }
  
    .social-links a {
      margin: 10px;
    }
  }

  
footer {
    background-color: #12002b;
    padding: 40px 0;
    padding-top: 0;
    padding-left: 100px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
  }
  
  .footer-section {
    flex: 1;
    padding: 20px;
    position: relative; /* Prevents overlapping */
    clear: both;
    width: 100%;
    min-width: 250px;
  }
  
  .footer-section h2 {
    color: #ff7300;
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .footer-section p, .footer-section a {
    color: #ccc;
    font-size: 18px;
  }
  
  .footer-section a {
    text-decoration: none;
  }
  
  .footer-section a:hover {
    color: #ff7300;
  }

  footer{
    margin-top: 10vh;
  }

  .social-links a {
    display: inline-block;
    margin: 0 10px;
    color: white;
    font-size: 24px;
  }
  
  .social-links a:hover {
    color: #ff7300;
  }

  ul {
    list-style: none;
    margin-top: 20px;
  }

  ul li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
  }

  .footer-container ul li::before {
    content: "✔️";
    margin-right: 10px;
    color: #00ffba;
  }

  .cta-button {
    margin-top: 30px;
    padding: 14px 28px;
    background-color: #fff;
    color: #2575fc;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .cta-button:hover {
    background-color: #00ffba;
    color: #000;
    transform: scale(1.05);
  }

  @media (max-width: 991px) {
    .container {
      flex-direction: column;
      flex-wrap: wrap;
    }

    .card {
      width: 100%;
    }
  }

  button {
    margin-top: 25px;
    padding: 12px 24px;
    background: linear-gradient(to right, #7300ff, #a64dff);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(115, 0, 255, 0.3);
  }
  
  button:hover {
    background: linear-gradient(to right, #5a00cc, #8c3df5);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(115, 0, 255, 0.4);
  }
