    /* Custom styles */
    body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    h2 {
      font-size: .95em;
    }
    .navbar {
      background-color: #c6bfac !important; /* Change background color of navbar */
    }
    .navbar-light .navbar-nav .nav-link {
      color: #333;
      margin-right: 20px; /* Add spacing between menu items */
      font-weight: bold; /* Make menu text bold */
    }
    .navbar-light .navbar-nav .nav-link:hover {
      color: #000; /* Darken menu text on hover */
    }

    .banner-container {
        position: relative;
        width: 100%;
        height: 500px; /* Adjust height as needed */
        overflow: hidden;
        margin: 0 auto; /* Center the container horizontally */
    }

    .banner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 2s ease-in-out;
    }

    .banner.active {
        opacity: 1;
    }
    .caption {
        position: absolute;
        top: 50%; /* Center vertically */
        left: 50%; /* Center horizontally */
        transform: translate(-50%, -50%); /* Center alignment */
        color: white; /* Caption text color */
        font-size: 24px; /* Caption text size */
        background-color: rgba(0, 0, 0, 0.5); /* Caption background color with transparency */
        padding: 10px; /* Caption padding */
    }
        .slider-text {
      width:100% !important;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      z-index: 1;
    }
      .slider-text h1 {
       font-size: 3rem;
      color: #fff; /* Set text color to white */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow to text */
      }
         .footer {
         background-color: #333;
          color: #fff;
          text-align: center;
          padding: 10px 0;
          width: 100%;
          margin-top: auto;
        }
       .social-icons {
          list-style-type: none;
          padding: 0;
          text-align: center;
          margin-bottom: 20px;
        }
        .social-icons li {
          display: inline-block;
          margin-right: 1.4em;
        }
        .social-icons li a {
          color: #fff;
          font-size: 24px;
        }
        .social-icons li a:hover {
          color: #007bff; /* Change color on hover */
        }
        /* Change color of Font Awesome icons */
        .social-icons li a .fab {
          color: #fff;
        }
        @media (max-width:992px){
          .slider-text h1 {
            font-size: 1.8em; /* Adjust font size for smaller screens */
        }
        /* Adjust caption text size for smaller mobile screens */
        @media (max-width: 768px) {
          .banner-container {
                height: 300px; /* Adjust height for smaller screens */
            }
          .btn {
            font-size:.95rem !important;
          }
          .slider-text h1 {
            font-size: .95rem !important; /* Adjust font size for smaller screens */
        }
        .slider-button {
          padding: 8px 16px; /* Reduce button padding for smaller screens */
          margin-bottom: 5px; /* Add space below button */
        } 
      }
           
@media (max-width: 992px) {

        .banner-container {
          height: 315px !important;
        }
     }


  @media (max-width: 768px) {

        .banner-container {
          height: 115px !important;
        }
     }
