.gradient-background {
    background: linear-gradient(300deg,rgb(0, 213, 255), white, rgb(1, 54, 107));
    background-size: 180% 180%;
    animation: gradient-animation 18s ease infinite;
  }
  
  @keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .navbar{
    margin-bottom: 1%;
  }
  .form_title{
    text-align: center;
  }
  #sec3{
    align-items: center;
    text-align: center;
    background: linear-gradient(300deg,#3584d97b, #ca2ab295,#349d2868);
    animation: gradient-animation 18s ease infinite;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 3%;
  }
  .second-row{
    background-color: antiquewhite;
  }
  .bd-mode-toggle {
    z-index: 1500;
 }
 .mb-3 {
  margin-bottom: 1rem !important;
 }
 .me-3 {
  margin-right: 1rem !important;
}
.end-0 {
  right: 0 !important;
}
.bottom-0 {
  bottom: 0 !important;
}
.position-fixed {
  position: fixed !important;
}


.fs-4{
  color: white;
  margin-left: 10px;
}
.fithub_icon{
  align-content: center;
  margin-top: -7%;
}
/* Adjust the interval speed (default is 5 seconds) */
#carouselExampleCaptions .carousel-item {
  transition: transform 1s ease-in-out; /* Adjusts the slide speed */
}

/* Additional styling for carousel items */
#carouselExampleCaptions .carousel-inner img {
/* Adjusts image height */
  object-fit: cover; /* Ensures images cover the slide area */
}

/* Carousel captions styling */
#carouselExampleCaptions .carousel-caption h5 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

#carouselExampleCaptions .carousel-caption p {
  font-size: 1.2rem;
  color: #ddd;
}

/* Optional: Adjust control button colors */
#carouselExampleCaptions .carousel-control-prev-icon,
#carouselExampleCaptions .carousel-control-next-icon {
  filter: invert(100%); /* Makes controls white */
}
/* Ensures navbar content stays right-aligned on all screen sizes */
.collapse.navbar-collapse {
  justify-content: flex-end;
}

/* Dropdown menu styling for a cleaner appearance */
.navbar-nav .dropdown-menu {
  background-color: #fff;
  border-radius: 0;
  padding: 10px;
}

.navbar-nav .dropdown-item {
  color: #333;
  font-size: 16px;
}

/* Hover effect for dropdown items */
.navbar-nav .dropdown-item:hover {
  background-color: #f0f0f0;
  color: #000;
}

/* Adjust font size and spacing for smaller screens */
@media (max-width: 768px) {
  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 8px 15px;
  }
  .navbar-nav .dropdown-menu {
    font-size: 14px;
  }
}

/* Add some margin to bottom on mobile */
@media (max-width: 576px) {
  .navbar-nav {
    margin-bottom: 1rem;
  }
}
body {
  padding-top: 70px; /* Adjust this based on navbar height */
}
.pagehding-sec{
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-size: 15px;
  color: #424242;
  font-family: 'gothic';
  line-height: 26px;
  box-sizing: border-box;
  border: 0;
  outline: none;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 50px 0;
  position: relative;
  background-size: cover;
  background-image: url(banner-for\ frontal.jpg);
  }
  .pagehding-sec {
    position: relative;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
    color: #fff;
  }
  
  .pagehding-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
  }
  
  .page-heading h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
  }
  
  .page-heading ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
  }
  
  .page-heading ul li {
    display: inline;
    font-size: 1rem;
    font-weight: bold;
  }
  
  .page-heading ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0 5px;
  }
  
  .page-heading ul li::after {
    content: " /";
    color: #fff;
  }
  
  
  
  
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .page-heading h1 {
        font-size: 2rem;
    }
  
    .page-heading ul li {
        font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .page-heading h1 {
        font-size: 1.5rem;
    }
  
    .page-heading ul li {
        font-size: 0.8rem;
    }
  }


.gallery {
    width: 90%;
    max-width: 1200px;
    padding: 20px;
    text-align: center;
}

.gallery h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.footer-sec .container{
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-size: 15px;
  text-decoration: solid;
  color: #424242;
  font-family: 'gothic';
  line-height: 26px;
  box-sizing: border-box;
  border: 0;
  outline: none;
  padding-top: 50px;
  padding-bottom: 50px;
  text-overflow: ellipsis;
  }
.last-sec .d-flex{
  background-color: #12819c68;
}
.footer-section {
  background-color: #333;
  color: #fff;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}

.footer-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.hd-lft ul, .hd-rgt ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hd-lft ul li {
  margin-right: 15px;
  font-size: 14px;
}

.hd-lft ul li a {
  color: #fff;
  text-decoration: none;
}

.hd-rgt {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.follow-title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons li {
  list-style: none;
}

.social-icons a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.svg-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform 0.3s;
}

.svg-icon:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .hd-lft ul, .hd-rgt ul {
      flex-direction: column;
      text-align: center;
  }
  .social-icons {
      justify-content: center;
  }
}

