 .left-column {
    background-color: #2F2F2F;
  }
  
  .right-column {
    background-color: #9C1E1D;
  }
  
  .box-heading {
  padding:5px;
    color: #ffffff;
    text-align: center;
  }
  
  .red-box {
      padding-top:10px;
    background-color: #9C1E1D;
    color: #ffffff;
    height: 120px; /* Adjust the height as desired */
    position: relative;
    text-align: center;
    transition: background-color 0.3s ease;
  }
  
  .red-box:hover {
    background-color: #FFC108;
    color:#2F2F2F;
  }
  
  .red-box i {
    font-size:36px;
    top: 50%;
    left: 50%;
   
  }
  .red-box p {
    font-size:14px;
    padding:10px;
  
  }
.image-container {
    height: 240px; /* Twice the height of red-box */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .image-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    }
  .row-gap {
    margin-bottom: 20px;
  }
  .black-box {
   margin-top: 10px;
    background-color: #2F2F2F;
    padding: 10px;
    color: #ffffff;
  }
  
  .white-box {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom:10px;
    overflow: hidden; /* Hide overflow to show only a single notice at a time */
}
.notices a {
    color: #007bff; /* Change this to your desired link color (e.g., blue) */
    text-decoration: none; /* Add an underline to the links */
  }

  /* Style the links on hover (optional) */
  .notice-item a:hover {
    color: #0056b3; /* Change this to the color you want when hovering over the link */
    text-decoration: underline; /* Keep the underline on hover */
  }



.video-container {
  background-color: #2F2F2F;
  padding:30px;
}
.heading-wrapper {
width:100%;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 20px;
  background-color: #9C1E1D;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  /**transform: skewX(-10deg);**/
  text-align:center;
}
.body-wrapper {
width:100%;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  /**transform: skewX(-10deg);**/
  text-align:center;
}

.popup-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      opacity: 0; /* Initially hidden */
      visibility: hidden;
      transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }
  /* Styling for the popup container */
    .popup-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      opacity: 0; /* Initially hidden */
      visibility: hidden;
      transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    /* Styling for the popup content */
    .popup-content {
      position: relative;
      background-color: #fff;
      padding: 20px;
      max-width: 80%;
      max-height: 80%;
      overflow: auto;
      text-align: center;
    }

    /* Styling for the close button */
    .close-button {
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
    }

    /* Responsive image styling */
    .popup-content img {
      max-width: 100%;
      height: auto;
    }
    .scrolling-container {
  overflow-x: auto;
  white-space: nowrap;
}






     /* Custom styles avilable in index page */
    .top-bar {
      background-color: #690606; /* Sky blue */
      padding: 10px;
      color: #fff;
      font-size: 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 40px;
    }

    .top-bar .left-section {
      flex-basis: 40%;
      display: flex;
      align-items: center;
    }

    .top-bar .center-section {
      flex-basis: 40%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .top-bar .right-section {
      flex-basis: 20%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .top-bar .right-section span {
      margin-left: 10px;
    }

    .navbar {
      margin-bottom: 0;
      background-color: #A20327; /* Sky blue */
    }
	

   /* .navbar .navbar-nav .nav-link {
      color: #fff; /* Set your desired text color for the navigation links */
    }*/

    .navbar .navbar-nav .nav-link:hover {
      color: #f8f9fa; /* Set your desired hover color for the navigation links */
    }

    .navbar .navbar-brand {
      color: #fff; /* Set your desired color for the brand name or logo */
    }

    .navbar .navbar-toggler {
      border-color: #fff; /* Set your desired color for the navbar toggler icon */
    }

    .navbar .navbar-toggler-icon {
      background-color: #fff; /* Set your desired background color for the navbar toggler icon */
    }

     /* Custom styles */
    .hero-slider {
      position: relative;
      height: 100vh; /* Adjust the height as needed */
      width: 100%; /* Set width to 100% for responsiveness */
  overflow: hidden;
    }
    
    .hero-slider .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: none;
    }
    
    .hero-slider .slide.active {
      display: block;
    }
    
  .hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the entire container */
}
@media (max-width: 767px) {
  .hero-slider {
    height: 250px; /* Adjust the height as needed for mobile screens */
  }
}
    
    .hero-slider .slide .slide-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
    }
    
    .hero-slider .slide .slide-content h1 {
      font-size: 48px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    
    .hero-slider .slide .slide-content p {
      font-size: 24px;
    }
.custom-container {
      background: linear-gradient(to bottom, #007bff, #0056b3);
      padding: 20px;
    }

    .box {
      text-align: center;
      padding: 20px;
      background-color: #fff;
      color: #000;
      border-radius: 10px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
      position: relative;
      height: 250px; /* Set a fixed height for the boxes */
      opacity: 0;
      animation: fade-in 1s ease-in-out forwards;
    }
    
    .box-icon {
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #fff;
      border-radius: 50%;
      width: 80px;
      height: 80px;
    }
    
    .box-icon i {
      font-size: 40px;
      color: #007bff;
    }
    
    .box-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
      margin-top: 60px; /* Adjust this value to create space between the heading and the circle */
    }
    
    .box-message {
      font-size: 14px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .home-content-holder {
  margin-top: 50px;
}

ul.row {
  list-style: none;
  padding: 0;
}

li.col-md-6 {
  margin-bottom: 30px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  padding-left: 30px;
}

.feature-box i {
  font-size: 24px;
  color: #007bff;
  margin-right: 10px;
}

.feature-box p {
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .feature-box {
    padding-left: 0;
  }
}

    @keyframes fade-in {
      0% {
        opacity: 0;
        transform: translateY(50px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    }
    @media (max-width: 767px) {
      .top-bar {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
      }
      
      .top-bar .left-section,
      .top-bar .center-section,
      .top-bar .right-section {
        flex-basis: 100%;
        justify-content: center;
        text-align: center;
        margin-bottom: 10px;
      }
      
      .top-bar .right-section {
        flex-direction: column;
      }
      
      .top-bar .right-section span {
        margin-left: 0;
        margin-top: 5px;
      }
      
      .navbar .navbar-brand {
        margin-left: 10px;
      }
      
      .navbar .navbar-toggler {
        margin-right: 10px;
      }
      
      .box-icon {
        top: -30px;
        width: 60px;
        height: 60px;
      }
      
      .box-title {
        margin-top: 40px;
      }
    }
.parallax {
  position: relative;
  background: url('https://placeimg.com/1200/600/nature') fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  height: 100vh; /* Adjust the height as desired */
}

.parallax:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the opacity and color as desired */
}

.parallax-content {
  position: relative;
  z-index: 1;
  padding: 100px 0; /* Adjust the padding as desired */
  text-align: center;
  color: #fff; /* Set the color for the text */
}

.section-title {
  font-size: 32px; /* Adjust the font size as desired */
  font-weight: bold;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px; /* Adjust the font size as desired */
  margin-bottom: 30px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Center the image horizontally */
}
.link-content {
  display: flex;
  align-items: center;
}

.icon-wrapper {
  margin-right: 10px;
}

.text-wrapper {
  flex: 1;
}
.link-item {
  text-decoration: none;
}

.link-item:hover {
  text-decoration: none;
}

   
  



