body {
    background-color: #ebe3f0; /* Matches the background color */
    font-family: 'Poppins', sans-serif; /* Modern stylish font */
  }
  
  .logo1 {
    height: auto;
    width: 120px; /* Adjust width as needed */
    max-height: 70px; /* Optional max height */
    color: #ff4500;  
  }
  
  /* Navbar wrapper to add margin */
  .navbar-wrapper {
    margin: 20px; 
    border-radius: 15px; 
    overflow: visible; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
  }
  
  /* Navbar styles */
  .custom-navbar {
    background-color: #eae6f2; /* Light purple */
    padding: 10px 0;
  }
  
  .navbar-nav .nav-link {
    font-size: 1.1rem; 
    font-weight: 500;
    color: #000;
    margin-right: 15px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: #8f6cf6; 
    border-bottom: 2px solid #8f6cf6; /* Underline effect */
  }
  
  /* Dropdown styles */
  .dropdown-menu {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .custom-btn {
    background-color: #8f6cf6; /* Button color */
    color: #fff;
    font-weight: 500;
    padding: 10px 10px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    transition: background-color 0.3s ease;
  }
  
  .custom-btn:hover {
    background-color: #7347d8; 
  }
  
  .contact-number {
    font-size: 1rem;
    color: #000;
  }
    
    
     /* Footer Css */
    .footer {
      background: linear-gradient(135deg, #1c1c2e, #6034ac, #1c1c2e);
      color: white;
      padding: 30px 10px;
      position: relative;
      overflow: hidden;
      font-family: 'Poppins', sans-serif;
      margin-top: 70px;
  }
  .footer h3 {
      font-family: 'Roboto Slab', serif;
      font-weight: 700;
      color: #ffb703;
      margin-bottom: 20px;
  }
  .footer p {
      color: #ffffff;
      font-size: 1rem;
      line-height: 2;
      /* font-weight: bold; */
  }
  .footer a {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.3s ease, transform 0.3s ease;
  }
  .footer a:hover {
      color: #ffb703;
      transform: translateX(5px);
  }
  .footer p:hover {
      color: #ffb703;
      transform: translateX(3px);
  }
  .footer .social-icons a {
      font-size: 24px;
      margin: 0 10px;
      color: white;
      transition: transform 0.3s ease, background 0.3s ease;
      border: 2px solid white;
      border-radius: 50%;
      padding: 10px;
  }
  .footer .social-icons a:hover {
      transform: scale(1.3);
      background-color: #ffb703;
      color: #1d3557;
  }
  .footer .logo img {
      width: 200px;
      height: 150px;
    
      animation: float-logo 3s infinite;
  }
  .footer-bottom {
      background-color: rgba(0, 0, 0, 0.2);
      text-align: center;
      padding: 15px;
      margin-top: 30px;
      font-size: 14px;
  }
  /* Animations */
  @keyframes float-logo {
      0%, 100% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-10px);
      }
  }
  @keyframes fade-in {
      from {
          opacity: 0;
          transform: translateY(20px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  .footer .row > div {
      animation: fade-in 1.5s ease;
  }
  /* Decorative Elements */
  .footer:before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      z-index: 1;
  }
  .footer:after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
  }


  /* Image section images */
  .header {
    background: url('../img/image-heading.webp') center/cover no-repeat;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(18, 17, 17, 0.689);
    backdrop-filter: blur(2px); 
}

.header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    z-index: 1;
    opacity: 0;
    transform: translateY(-50px);
    animation: slideUp 1.5s ease-out forwards;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery {
    padding: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery img {
    width: 600px;
    height: 270px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.845);
    transform: translateX(0);
    transition: transform 1s ease-in-out;
}

.gallery-item img {
    display: block;
}

.gallery-item .gallery-overlay {
    transform: translateX(0);
}

.gallery-item.show-overlay .gallery-overlay {
    transform: translateX(-100%);
   
}


@media (max-width: 768px) {  /* Target screens smaller than 768px (mobile) */
  .gallery {
      padding: 20px 0; /* Reduce or remove padding */
  }

  .gallery img {
      width: 100%; /* Make images take full width */
  }

  .gallery-overlay {
      width: 100%; /* Ensure overlay covers full image */
  }
}


/* Contact Section Styling */
.contact-section {
  background: linear-gradient(135deg, #1a0360, #6610f2);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Fade-in animation */
.contact-section .container {
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.contact-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateX(-50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.contact-text {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.contact-btn {
  display: inline-block;
  background: #fff;
  color: #030630;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

/* Button Hover Effect */
.contact-btn:hover {
  background: #ffc107;
  color: #000;
  box-shadow: 0 10px 20px rgba(255, 193, 7, 0.4);
  transform: translateY(-3px);
}

/* Floating animation effect */
.contact-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: floatBubble 6s infinite ease-in-out;
}

@keyframes floatBubble {
  0%, 100% {
      transform: translateY(0) translateX(0);
  }
  50% {
      transform: translateY(20px) translateX(20px);
  }
}
