/* Custom Styles */

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
  }

  .jumbotron {
    background: url('images/hero-bg.jpg') center center/cover no-repeat;
  }
  
  .card-title {
    color: #007bff;
  }
  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  /* Image styling to maintain consistency */
  .card-img-top {
    object-fit: cover;
    height: 200px; /* Ensure consistent image height */
  }
  #partners ul {
    font-size: 1.25rem;
  }
  
  #contact {
    background-color: #f1f1f1;
    text-align: center;
  }
  /* Smaller screen adjustments */


  .carousel-item {
    position: relative; /* Position for overlay */
  }

  .carousel-item img {
    height: 100vh; /* Full height of viewport */
    object-fit: cover; /* Cover the entire area */
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white; /* White text color */
    text-align: center; /* Center text */
  }

  .text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add a shadow for better contrast */
  }

  h1 {
    font-size: 3.5rem; /* Adjust heading size for better visibility */
  }

  p.lead {
    font-size: 1.5rem; /* Adjust paragraph size for better visibility */
  }

  .navbar {
    background-color: #1071e5; /* Sapphire */
  }
  .navbar-brand {
    color: #FFFFFF; /* Red */
    font-weight: bold;
  }
  .navbar-nav .nav-link {
    color: #FFFFFF; /* White for nav links */
  }
  .navbar-nav .nav-link:hover {
    color: #000000; /* Red on hover */
  }
  .carousel-item {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh; /* Full screen height */
  }

  .carousel-item img {
    display: none; /* Hide the img tag as we are using background images */
  }

  .carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  }

  .carousel-item .container {
    position: relative;
    z-index: 1; /* Make sure the text is above the overlay */
  }

  /* Text shadow to make it more readable */
  .text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  /* Make sure images are responsive and cover the area */
  .carousel-item img {
    object-fit: cover;
    height: 100vh; /* Ensure the image takes full height */
  }

  .navbar-nav .nav-link {
    color: #FFFFFF; /* White for nav links */
    font-weight: bold; /* Make nav links bold */
    font-family: Arial, sans-serif; /* Change to desired font family */
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px; /* Distance from the bottom of the page */
  right: 20px; /* Distance from the right side of the page */
  border-radius: 50px;
  padding: 15px 20px;
  font-size: 16px;
  text-decoration: none;
  color: white;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999; /* Ensure it stays on top */
}

.whatsapp-btn i {
  margin-right: 10px;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
  transition: background-color 0.3s ease;
}
 @media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 15px;
    right: 15px;
    font-size: 14px; 
  }
    .navbar-brand {
      font-size: 1rem; /* Smaller font size for mobile screens */
    }
  
    .jumbotron h1 {
      font-size: 1.8rem; /* Adjusts the main heading size in the jumbotron */
    }
  
    .jumbotron p {
      font-size: 1rem; /* Adjusts the paragraph text size in the jumbotron */
    }
  } 