/* Background Gradient for Entire Page */
body {
    background: whitesmoke; /* Cream to Silver */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* padding-top: 70px; */
    color: #333;
    scroll-behavior: smooth;
}

/* Navbar Background Gradient */
.navbar {
    background: white; /* Cream to Silver */
    backdrop-filter: blur(5px);
    border-bottom: 2px solid black;
    opacity: 0;
    animation: fadeIn 1.2s forwards; /* Fade in animation for header */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.navbar.fixed-top {
    background-color: #fff;
    z-index: 1030;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* Navbar Link Styling */
.navbar .nav-link {
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar .nav-link:hover {
    color: grey;
    transform: translateY(-3px);
}
.dropdown-menu {
    background-color: #f0f0f0;
  }

  .dropdown-item:hover {
    background-color: #ddd;
    color: #000;
  }
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Align properly */
    opacity: 0.9;
    animation: fadeIn 0.5s forwards; /* Fade in animation for dropdown */ 
}

.navbar-toggler {
    border: none;
    background: transparent;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

/* Social Icons */
.social-icons a {
    color: #555;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #000; /* Darker color on hover */
    transform: scale(1.2); /* Increase size slightly on hover */
}

/* Footer Styling */
footer {
    opacity: 0;
    animation: fadeIn 1.2s forwards, slideUp 1s ease-out 0.5s; /* Fade and slide animation */
    background: #c0c0c0; /* Silver background */
    color: #333;
    padding: 20px;
    text-align: center;
}

footer a:hover {
    color: #000;
    text-decoration: underline;
}
footer i {
    transition: transform 0.2s ease;
}
footer i:hover {
    transform: scale(1.2);
}

/* Fade In Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Slide Up Animation for Footer */
@keyframes slideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
main {
    padding-top: 56px;
    /* color: #000;
    text-decoration: underline; */
}
.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

    @media (max-width: 768px) {
        .carousel-item img {
            height: 432px;
        }
    }