body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #e3f2fd, #007BFF);
    color: #333;
    line-height: 1.6;
}/* Gallery Section */
.gallery-section {
    padding: 100px 20px 50px;
    text-align: center;
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 123, 255, 0.8);
    color: #fff;
    text-align: center;
    transition: bottom 0.3s ease;
}

.gallery-item:hover .overlay {
    bottom: 0;
}

.overlay p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #007bff;
    color: #fff;
    margin-top: 40px;
    font-size: 1rem;
}
html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    background: linear-gradient(45deg,#e3f2fd, #007BFF);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.6s ease-in-out;
    font-family: 'Poppins', sans-serif;
    
}
.logo img {
    height: 60px;
    transition: transform 0.3s ease-in-out;
    filter: brightness(1.2) contrast(1.1);
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
    background-color: transparent;
    mix-blend-mode: overlay;
  }
  .logo img:hover {
    transform: scale(1.1); /* Subtle hover animation */
  }

.navbar img {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease-in-out;
}
.navbar-logo {
    width: 80px; /* Adjust size as needed */
    height: 80px;
    border-radius: 50%;  /* Makes it a perfect circle */
    object-fit: cover; /* Ensures image is properly fitted */
    border: 3px solid white; /* Optional white border for better visibility */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Adds a soft shadow */
    transition: transform 0.3s ease-in-out;
  }
  
  .navbar-logo:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
  } 
/* Logo Hover Effect */
.navbar img:hover {
    transform: scale(1.1);
}

/* Navbar Links (Menu Centered) */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    flex-grow: 1;
    margin: 0;
    padding: 0;
}

/* Navbar Items */
.nav-links li {
    white-space: nowrap;
}

.nav-links a {
    font-size: 18px;
    padding: 10px 15px;
    color: black;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

/* Animated Underline on Hover */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #FF8C00;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #FF8C00;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navbar Glow Effect */
.navbar:hover {
    box-shadow: 0px 0px 15px rgba(0, 123, 255, 0.6);
}

/* Slide Down Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Fix */
@media (max-width: 1024px) {
    .navbar {
        flex-direction: row;
        padding: 10px 20px;
    }
    .nav-links {
        gap: 20px;
    }
    .navbar img {
        max-height: 50px;
    }
}
.menu {
    display: flex;
    gap: 25px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
  }

  .menu a {
    text-decoration: none;
    color: black;
    transition: all 0.3s ease-in-out;
  }

  .menu a:hover {
    color: #FF9800;
    text-decoration: underline;
  }