/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f3f6fb;
    color: #222;
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e3d7f2;
    padding: 1rem 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: #52456d;
    cursor: pointer;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #6c63ff;
  }
  
  /* Mobile */
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=2072&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .headline {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  }
  
  .subheadline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    color: #6c63ff;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .cta-button:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
  }
  
  /* Sections */
  .section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: auto;
    text-align: center;
  }

  .about-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    text-align: left;
  }
  
  .about-img img {
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }
  
  .about-img img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .about-text ul {
    list-style: none;
  }
  
  @media (max-width: 768px) {
    .about-layout {
      flex-direction: column;
      text-align: center;
    }
  }
  
  
  /* Features list */
  .features-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .features-list li {
    background-color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 200px;
    font-weight: 500;
  }
  .features-list li {
    background-color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    width: 220px;
    font-weight: 600;
    transition: all 0.4s ease;
    transform: translateY(0);
  }
  
  .features-list li:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 1);
    transition: transform 0.5s ease, box-shadow 0.4s ease;
  }
  
  
  /* Gallery Grid */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 1);
    transition: transform 0.5s ease, box-shadow 0.4s ease;
}
  
  
  /* Animations */
  .animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
  }
  
  .animate-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.7s ease;
  }
  
  .animate-fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.7s ease;
  }
  
  .animate-fade-in {
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .animate-zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.7s ease;
  }
  
  .active {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background: #fff;
      position: absolute;
      right: 2rem;
      top: 60px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .features-list {
      flex-direction: column;
      align-items: center;
    }
  }
  

  /* OPTIONAL: ENTRANCE ANIMATION */
@keyframes bounceIn {
    0% {
      opacity: 0;
      transform: scale(0.8) translateY(30px);
    }
    60% {
      opacity: 1;
      transform: scale(1.05) translateY(-10px);
    }
    100% {
      transform: scale(1) translateY(0);
    }
  }
  
  .animate-bounce-in {
    animation: bounceIn 0.8s ease forwards;
  }






  /* Contact Section */
.contact-section {
    color: black;
    padding: 50px 20px;
    background: #52456d;
    text-align: center;
    position: relative;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #9e88c7;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.contact-form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #a99bbc;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background: #52456d;;
}

footer {
    border: solid 2px;
    background: #52456d;
    text-align: center;
    padding: 20px;
}