/* Custom Navbar Styling */
.navbar {
  background: linear-gradient(120deg, #241773, #1e90ff, #8a2be2);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
}

.navbar-brand, .nav-link {
  color: gold !important; /* White text */
}

.nav-link:hover {
  color: white !important;
}

/* Hero Section Styling */
.hero {
  background: none; /* Allow the gradient to show through */
  background-image: url('img/mtn.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.5rem;
  margin-top: 10px;
}

.hero .btn {
  margin-top: 20px;
}

/* Portfolio Section Styling */
#portfolio {
  background-color: rgba(248, 249, 250, 0.8); /* Slightly transparent */
  padding: 60px 0;
}

.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
}

/* Center the images inside cards */
.card-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  padding-top: 20px;
}

.card-img-top {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 55%;
  padding-top: 20px;
}

/* Background Gradient */
.animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(120deg, #241773, #1e90ff, #8a2be2);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* 
.photo-gallery-scroll {
  overflow-x: auto; /* Enable horizontal scrolling */
  padding-bottom: 15px; /* Space below the images */
}

.photo-gallery-scroll .row {
  flex-wrap: nowrap; /* Prevent the images from wrapping to a new line */
  gap: 15px; /* Add space between images */
}
 */



.py-5 {
  padding-top: 60px;
  padding-bottom: 40px;
}

h2, p {
  color: #333; /* Adjust the color for better readability */
}

.carousel-item img {
  max-height: 900px; /* Adjust this value to make the images smaller */
  width: auto; /* Ensures the width scales proportionally */
  object-fit: cover; /* Keeps the image from stretching */
  margin: 0 auto; /* Centers the image within the carousel */
}













