@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body,
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: "Poppins", serif;
  }
.my-container{
    margin: 0 auto;
    padding: 0 15px;
}

:root{
  --main-color:#00364a;
  --fff-color: #fff;
}
.main-bg-color{
  background-color: var(--main-color);
}
.main-text{
  color: var(--main-color) !important;;
}
.text-fff{
  color: var(--fff-color);
}
.main-logo{
  width: 176px;
}

.menu ul{
  list-style: none;
  gap: 15px;
}
header{
  background: var(--fff-color);
}
.mobile-header{
  position: fixed;
  width: 100%;
  z-index: 99;
  transition: all 0.6s ease;
  font-size: 1.1rem;
  font-weight: 500;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0px 15px 10px -15px #11111192;
}

.menu ul li>a {
  color: var(--main-color);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  text-decoration: none;
  font-weight: 600;
}

.menu ul li>a::after {
  content: '';
  width: 0;
  height: 0.125rem; /* 0.5px */
  border-radius: 9999px; /* To make it fully rounded */
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #f59e0b; /* Amber-600 */
  transition: width 300ms ease-in;
}

.menu ul li>a:hover::after {
  width: 100%;
}

.video-banner{
  position: relative;
  height: 700px;
  z-index: 1;
}

.video-banner::after {
  content: '';
  width: 100%;
  height: 100%;
  /* background-color: black; */
  background-color: #000000ad;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.fullscreen-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9; /* Aspect ratio for 'aspect-video' */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0); /* Optional, you can add a background color if needed */
}

.container {
  margin-left: 1rem;
  margin-right: 1rem;
}

.content-wrapper {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

.title {
  color: var(--fff-color);
  font-size: 2.5rem;
  font-weight: 500; /* 'medium' font weight */
  margin-bottom: 1rem;
}

.description {
  color: var(--fff-color);
  font-size: 1.25rem;
  font-weight: 400; /* 'normal' font weight */
}

.head-text{
  color: white;
  font-size: 2.25rem; /* Equivalent to text-4xl */
  font-weight: 500; /* Default font-medium weight */
  margin-bottom: 1rem; /* Equivalent to mb-3 */
}

.sub-head-text{
  color: white;
  font-size: 1.875rem; /* Equivalent to text-3xl */
  font-weight: 500; /* Default font-medium weight */
  margin-bottom: 1rem; /* Equivalent to mb-3 */
}

.sub-text-p {
  color: white;
  font-size: 1.125rem; /* Equivalent to text-lg */
  font-weight: 400; /* Default font-normal weight */
  /* word-spacing: 4px; */
}
.border-bb{
  border-bottom: 1px solid var(--fff-color);
}

.card-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px; /* For rounded corners */
}

.card-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, black, #0A2B38);
  opacity: 0.6;
  z-index: 1;
}

.card-img {
  width: 100%;
  border-radius: 8px; /* For rounded corners */
  transform: scale(1);
  transition: all 0.3s ease;
}

.card-container:hover .card-img {
  transform: scale(1.1);
}

.card-description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
  z-index: 2;
  text-align: center;
}

.card-description span {
  color: white;
  font-size: 1.25rem; /* Equivalent to text-2xl */
  padding: 1rem;
  border-radius: 8px;
}

.contact__social h3 {
  max-width: 16ch;
  font-size: 2.25rem; /* Equivalent to text-3xl (approximately 36px) */
  font-weight: 600;
  margin-bottom: 40px;
}
.contact-bg{
  background:#dbeafe;
}
.contact__social_icon li>a{
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  color: var(--main-color);
  transition: all 0.6s;
  scale: 1;
  font-size: 20px;
}
.contact__social_icon li>a:hover{
  background: var(--main-color);
  color: var(--fff-color);
  text-decoration: none;
  scale: 1.1;
}

.contact-icon{
  width: 3rem; /* Equivalent to w-12 */
  height: 3rem; /* aspect-square is equal to 1:1 aspect ratio */
  border-radius: 50%; /* Equivalent to rounded-full */
  background-color: rgba(0, 54, 74, 0.25); /* Equivalent to bg-[#00364a3f] */
  color: #00364a; /* Equivalent to text-[#00364a] */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem; /* Equivalent to text-xl */
}

.contact-name {
  color: #00364a; /* Equivalent to text-[#00364a] */
  font-size: 1.25rem; /* Equivalent to text-xl */
  font-weight: 600; /* Equivalent to font-semibold */
}

.contact-del {
  color: #00364a; /* Equivalent to text-[#00364a] */
  font-size: 1.125rem; /* Equivalent to text-lg */
}
.contact-del:hover{
  text-decoration: none;
  color: #00364a;
}

label{
  color: #000;
  margin-block-end: 5px;
}

.form-control {
  background-color: var(--fff-color);
  border-color: var(--main-color);
  padding: 25px 20px;
  border-radius: 8px;
}
.form-control {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-clip: padding-box;
  border: 1px solid #dee2e6;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .375rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.submit-btn{
 width: 100%; /* Equivalent to w-full */
  border-radius: 8px; /* Equivalent to rounded */
  background-color: #bfdbfe; /* Equivalent to bg-blue-200 */
  color: #00364a; /* Equivalent to text-[#00364a] */
  padding: 1rem 0; /* Equivalent to py-4 */
  cursor: pointer; /* Equivalent to cursor-pointer */
  transition: all 0.3s ease-in-out; /* Equivalent to transition-all duration-300 */
  border: none;
  font-size: 1rem;
}

.submit-btn:hover {
  background-color: #00364a; /* Equivalent to hover:bg-[#00364a] */
  color: #bfdbfe; /* Equivalent to hover:text-blue-200 */
}
.gradient-container{
  position: relative; 
}
  
.section-space{
  padding-top: 74.66px;
  margin-top: -74.66px;
  display: block;
}

.p-challenge{
  position: relative;
  color: #000000 !important;
  z-index: 1;
  /* padding: 0 10px; */
  font-weight: 600;
  font-style: italic;
}



.fw-bolder{
  color: black;
  font-size: 1.125rem;
}


.ellipsis {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%; /* Adjust width as needed */
  vertical-align: middle;
  transition: 0.6s;
}

.showHide{
  background: transparent;
  text-align: center;
  color: #fff;
  border: none;
  font-size: 12px;
}
.showHide:hover{
  text-decoration: underline;

}

.lightBoxImage  {
  width: 100%;
  border-radius: 8px; /* For rounded corners */
  transition: all 0.6s ease;
  overflow: hidden;
}
.lightBoxImage:hover img {
  width: 100%;
  border-radius: 8px; /* For rounded corners */
  transform: scale(1);
  transition: all 0.6s ease;
  overflow: hidden;
}
.lightBoxImage:hover img {
  transform: scale(1.1);
}

.swiper-button-next:after,.swiper-button-prev:after{
  content: "";
  display: none;
}

.swiper-button-next,
.swiper-button-prev{
  width: 40px ;
  aspect-ratio: 4/4;
  border-radius: 50%;
  background: #00364a;
  color: #fff !important;
  padding: 10px;
}


.mouse-icon{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bounce-animation {
  animation: bounce 0.5s ease-in-out infinite;
}

.blog-img{
  width: 100%;
  height: 262px;
}
.blog-img img{
  object-fit:cover;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
.blog-box h4{
  font-size: 1.3rem;
    line-height: 1.3;
}
.blog-box p{
  color: #575a5f;
  font-size: 14px;
  margin: 10px 0;
}

.blog-box a p{
  color: #00364a;
  font-size: 14px;
  font-weight: 600;
  
}
.blog-box a:hover{
  text-decoration: none;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  border: 3px solid transparent;

}

.mySwiper .swiper-slide-thumb-active {
  border: 3px solid #00364a;
}

#aboutThumbsSlider .swiper-slide,
#aboutThumbsSlider .swiper-slide img{
  aspect-ratio: 16 / 9
}

#aboutSlider .swiper-slide{
  aspect-ratio: 16 / 9
}
#aboutSlider .swiper-slide img{
  aspect-ratio: 16 / 9;
  object-fit:fill;
}

#AboutBg{
  background-size: cover;

}

.copyrights p{
  font-size: 14px;
  
}

.image-link{
    border-radius: 8px;
    background-color: #bfdbfe;
    padding: 4px;
    box-shadow: 0px 14px 10px -15px #11111159;
        transition: all 0.3s ease;
}
.image-link:hover{
    box-shadow: 0px 0px 0px 0px #11111159;
    background:#9cb9de;
}