@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


body {
  margin: 0;
  font-family: "Nunito", sans-serif;
}

a {
  text-decoration: none;
  color: #f1f1f1;
}






















/* News-Ticker Start */


.news-container {
  position: relative;
  font-size: 16px;
  background: #003262;
  color: #73c2fb;
  padding: 10px 32px;
  display: flex;
  box-shadow: 0 4px 40px -8px rgb(0, 51, 98);
  overflow: hidden;
}

.news-container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(transparent, #003262);
}

.news-container .news-heading {
  min-width: 120px;
  font-weight: 600;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #fff;
}

.news-container .news {
  position: relative;
  width: 100%;
}

.news-container .news-single {
  color: #fff;
  text-decoration: none;
  font-weight: normal;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-8px);
  transition: all 400ms ease;
  pointer-events: none;
}

.news-container .news-single.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}



/* News-Ticker Ends */




/* Scrollbar Start */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Scrollbar End */










/* Full-screen slider */

.h-carousel,
.h-carousel-item {
  height: 100vh;
}

.h-carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay with 50% opacity */
  z-index: 1;
}

.h-carousel-caption {
  z-index: 2;
  /* Ensure the text is above the overlay */
  background-color: #07070771;
  border-radius: 10px;
}


.h-carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.h-carousel-caption h5,
.h-carousel-caption p {
  background: none;
}

.h-carousel-caption h5 {
  color: white;
  font-size: 25px;
}

.h-carousel-caption p {
  color: rgb(228, 226, 226);
}

.h-carousel-control-prev-icon,
.h-carousel-control-next-icon {
  background: #03030354;
  color: #989898;
  font-size: 20px;
  width: 56px;
  border-radius: 18px;
}

.h-carousel-control-next-icon {
  padding: 2px 0px 0px 5px;

}

.h-carousel-control-prev-icon {
  padding: 2px 9px 0px 4px;

}







/* Animating logo Start */




.animation-logo {
  position: fixed !important;
  top: 20px !important;
  z-index: 9999;
  transition: opacity 0.5s ease-in-out;
  right: 20px !important;
  animation: rotate-logo-full 6s infinite ease-in-out;
  transform-style: preserve-3d;
}


@keyframes rotate-logo-full {
  0% {
    transform: rotateY(0deg);
  }

  25% {
    transform: rotateY(90deg);
    animation-timing-function: ease-in;
    /* Slow start */
  }

  50% {
    transform: rotateY(180deg);
    animation-timing-function: linear;
    /* Fast in the middle */
  }

  75% {
    transform: rotateY(270deg);
    animation-timing-function: ease-out;
    /* Slow end */
  }

  100% {
    transform: rotateY(360deg);
    animation-timing-function: ease-out;
  }
}


/* Animating logo Ends */







/* Navbar styles */


.navbar {
  justify-content: center;
}

.navbar-brand img {
  height: 50px;
  /* Adjust logo size */
}

.navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.search-form {
  position: relative;
}

.search-inp {
  border-radius: 5px;
  padding-right: 35px;
  outline: none;
  border: 1px solid rgb(231, 231, 250);
}

.search-btn {
  position: absolute;
  top: 7px;
  right: 15px;
  outline: none;
  border: none;
  background-color: transparent;

}

.navbar-toggler-icon {
  filter: invert(100%) !important;
}

nav {
  z-index: 9999999;
  position: absolute !important;

  top: 87px !important;
  right: 0px !important;
  left: 0px !important;
}

.logo {
  height: 72px !important;
}

hr {
  margin: 7px;
}

.nav-link,
.dropdown-item {
  color: #fff;
}

.nav-item.active {
  color: #ffffff !important;
}

.nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #ffffffbb !important;
}

.dropdown-menu {
  background: #0000004c !important;
  border: 1px solid #ffffff7e;
}

.search-inp:valid {
  color: #f1f1f1;
  background: transparent;
}

.nav-bg {
  background-color: #fdfeff11;
}

.search-inp::placeholder {
  color: rgb(255, 255, 255) !important;
}






/* Cards Start*/

.heading-link {
  display: inline;
  text-decoration: none;
  color: inherit;
  background-image: linear-gradient(90deg, #015397, #4791ff);
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: 0 100%;
  cursor: pointer;
  transition: background-size 0.3s;
}

.heading-link:hover {
  background-size: 100% 2px;
}


/* Cards Ends*/




/* Banner Section Start*/
.banner-sec {
  background-image: url(../img/banner-sec.png );
  background-size: cover;
  background-repeat: no-repeat;

}

/* Banner Section Ends*/
























.slide-container {
  margin: 0 30px 30px 30px;
  overflow: hidden;
}

.card .image-box {
  height: auto;
  max-height: 500px;
}

.card .image-box-t {
  height: 300px !important;
  width: auto;
}

.card .image-box-t a img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
}

.card .image-box a img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
}

.card .profile-details {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding: 15px;
}

.profile-details .name {
  font-size: 17px;
  color: #000;
  font-weight: 500;
}

.profile-details .job {
  font-size: 12px;
  font-weight: 500;
  color: #4d4d4d;
}

.swiper-navBtn {
  color: #003262;
  height: 40px;
  width: 40px;
  background: #fff;
  border-radius: 50%;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background-color: #003262;
  width: 15px;
  height: 15px;
}










.count-box {
  width: 100%;
  height: 200px;
  border-radius: 5px;
  background: linear-gradient(90deg, #015397, #4791ff);
}


.count-def {
  font-size: 19px;
  line-height: 37px;
}


















/* Queries */
@media screen and (max-width: 768px) {

  .swiper-navBtn::before,
  .swiper-navBtn::after {
    font-size: 15px;
  }

  #animationLogo img {
    width: 80px;
  }

  .resp-sm-text {
    font-size: 18px;
    padding-top: 20px;
  }

  .resp-pad {
    display: flex;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .navbar {
    justify-content: space-between;
  }

  .news-container {
    display: none;
  }

  nav {
    top: 42px !important;
  }

  .h-carousel,
  .h-carousel-item {
    max-height: 500px;
  }

  .h-carousel-caption h5 {
    font-size: 19px;
  }

  .carousel-caption {
    left: 4%;
    width: 92%;
  }
}















  .gtranslate_wrapper {
        display: flex;
    }

    .top-bar-socials {
        overflow: hidden
    }

    .top-bar-socials a i {
        color: #003262;
        background-color: #ffffff;
        border-radius: 50px;
        padding: 5px;
        transition: all 0.3s ease-in-out;
        display: inline-block;
        /* ensures transforms work properly */
    }

    .top-bar-socials a:hover i {
        animation: iconhover 0.6s ease-in-out forwards;
    }

    @keyframes iconhover {
        0% {
            transform: translateY(0) scale(1);
        }

        30% {
            transform: translateY(-5px) scale(1.2);
        }

        60% {
            transform: translateY(3px) scale(1.1);
        }

        100% {
            transform: translateY(0) scale(1.2);
        }
    }