* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

@font-face {
  font-family: "GTSectraFine";
  src: url("/fonts/GT\ Sectra\ Fine\ Regular.ttf");
}

/* Custom Scrollbar for WebKit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  /* Scrollbar width */
}

/* Scrollbar Track (Background) */
::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #007bff, #0056b3);
  /* Gradient blue track */
  border-radius: 10px;
}

/* Scrollbar Handle (Thumb) */
::-webkit-scrollbar-thumb {
  background: white;
  /* White thumb */
  border-radius: 10px;
  border: 3px solid #0056b3;
  /* Blue border */
  transition: all 0.3s ease-in-out;
}

/* Scrollbar Thumb Hover Effect */
::-webkit-scrollbar-thumb:hover {
  background: #f8f9fa;
  /* Light white shade on hover */
  border: 3px solid #004494;
  /* Darker blue border on hover */
}

/* Scrollbar Button (Arrows at the top and bottom) */
::-webkit-scrollbar-button {
  display: none;
  /* Hide scrollbar arrows */
}

/* Smooth scrolling effect */
html {
  scroll-behavior: smooth;
}

/* Firefox Scrollbar Customization */
* {
  scrollbar-width: thin;
  /* Thin scrollbar */
  scrollbar-color: white #0056b3;
  /* White thumb, blue track */
}

.GTSectraFine {
  font-family: GTSectraFine;
}

.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: #f8f9fa;
}

.blue-color {
  color: #004080;
}

.rotate{
transform: rotate(180deg);
}

/*  */

/* Header */
header {
  position: absolute;
  width: 100%;
  padding: 20px 5%;
  background: transparent;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 70%;
  margin: auto;
  padding: 15px 20px 15px 20px !important;
  border-radius: 100px;
  background: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
    rgba(23, 69, 196, 0.3) 0px 18px 36px -18px;
}

.logo img {
  width: 120px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #004080;
  font-family: Poppins;
  font-size: 0.833vw;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}

.register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(92deg, #002855 -27.16%, #b8860b 126.66%);
  color: #fff;
  padding: 10px 20px;
  border: 2px solid #d4af37;
  font-size: 1.1rem;
  border-radius: 25px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4); */
}

.register-btn:hover {
  background: linear-gradient(92deg, #b8860b -27.16%, #002855 126.66%);
  transform: scale(1.05);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.6);
  border-color: #ffd700;
}

.register-btn-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(92deg, #002855 -27.16%, #b8860b 126.66%);
  color: #fff;
  padding: 10px 20px;
  border: 2px solid #d4af37;
  font-size: 1.1rem;
  border-radius: 25px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.register-btn-overview:hover {
  background: linear-gradient(92deg, #b8860b -27.16%, #002855 126.66%);
  transform: scale(1.05);
  /* box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.6); */
  border-color: #ffd700;
}

.register-btn-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 25px;
  background: linear-gradient(92deg, #002855 -27.16%, #b8860b 126.66%);
  color: #fff;
  padding: 10px 20px;
  border: 2px solid #d4af37;
  font-size: 1.1rem;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4); */
  z-index: 10;
}

.register-btn-banner:hover {
  background: linear-gradient(92deg, #b8860b -27.16%, #0a1f44 126.66%);
  transform: scale(1.05);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.6);
  border-color: #ffd700;
}

.register-btn:hover {
  background: #00215e;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: flex-start; */
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  width: 40%;
  height: 100%;
  /*background: linear-gradient(270deg, rgba(0, 64, 128, 0.00) 5.35%, #004080 94.64%);*/
}

.hero-content {
  position: absolute;
  color: #fff;
  z-index: 2;
  top: 35%;
}

.hero-content p {
  margin: 20px 0;
  font-size: 1rem;
  line-height: 1.5;
}

.cta-btn {
  background: #fff;
  color: #003580;
  padding: 10px 20px;
  font-size: 1.2rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.cta-btn:hover {
  background: #ddd;
}

.burger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  transition: transform 0.3s ease-in-out;
}

.burger svg {
  width: 40px;
  height: 40px;
  stroke: #003580;
  stroke-width: 6;
  stroke-linecap: round;
  transition: transform 0.3s ease-in-out;
}

.burger .line {
  fill: none;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Animate burger to cross */
.sidebar.active .burger .top {
  transform: translateY(20px) rotate(45deg);
}

.sidebar.active .burger .middle {
  opacity: 0;
}

.sidebar.active .burger .bottom {
  transform: translateY(-20px) rotate(-45deg);
}

.bannerHeading {
  color: #fff;
  font-family: "GTSectraFine";
  font-size: 3.333vw;
  font-style: normal;
  width: 33.854vw;
  font-weight: 300;
  line-height: 4.167vw;
  /* 125% */
  text-transform: capitalize;
}

.bannerSubHeading {
  color: rgba(255, 255, 255, 0.8);
  font-family: Poppins;
  font-size: 0.833vw;
  font-style: normal;
  font-weight: 400;
  width: 600px;
  line-height: 26px;
  /* 162.5% */
  text-transform: capitalize;
}

/* overview */

.overview {
  /* height: 90vh; */
  width: 100%;
  align-self: stretch;
  background: white;
  position: relative;
  overflow: hidden;
  height: auto;
}

.logo-conatiner {
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-repeat: repeat;
}

.logo-conatiner img {
  background-image: repeat;
}

.overview_container-container-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  flex: 100%;
  height: auto;
  flex-direction: row;
  gap: 100px;
}

.overview-heading {
  flex: 35%;
}

.register1 {
  flex: 40%;
}

.overview-heading h2 {
  color: #000;
  font-family: "GTSectraFine";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  /* 150% */
  text-transform: uppercase;
}

.overview-heading span {
  color: #004080;
  font-family: "GTSectraFine";
  font-size: 3.333vw;
  font-style: normal;
  font-weight: 300;
  line-height: 80px;
  /* 125% */
  /* text-transform: capitalize; */
}

.overview-heading .sub {
  color: #63b9e0;
  font-family: "GT Sectra Fine";
  font-size: 3.333vw;
  font-style: normal;
  font-weight: 300;
  line-height: 80px;
  text-transform: capitalize;
}

.overview-description {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  flex: 70%;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
  text-transform: capitalize;
}

.overview_flex {
  display: flex;
  gap: 20px;
  width: 90%;
  margin: 0 auto;
  padding: 0px 30px;
  flex: 100%;
  flex-direction: row;
}

.flex1 {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 30px;
  flex: 33.33%;
}

.flex1 .text {
  color: #004080;
  font-family: Poppins;
  font-size: 0.833vw;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  /* 162.5% */
  text-transform: capitalize;
}

.flex1 .subtext {
  color: #63b9e0;
  font-family: Poppins;
  font-size: 1.042vw;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  /* 160% */
  text-transform: capitalize;
}

.button_overview {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 5.208vw 6.771vw 5.208vw 6.771vw;
}

.our_team_section {
  background: #004080;
  height: 90vh;
}

.our_team_container {
  position: relative;
  display: flex;
  flex-direction: row;
  flex: 100%;
  align-content: center;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}

.white-color {
  color: white !important;
}

.flex-1111 {
  flex: 50%;
  width: 100%;
  padding-left: 7%;
}

.flex-2222 {
  flex: 50%;
  width: 100%;
  overflow: hidden;
}

.flex-2222 .swiper-slide {
  background: none;
}

.ourTeamCard {
  display: flex;
  width: 100%;
  height: 32.552vw;
  padding: 36px 36px 35.4px 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* flex-shrink: 0; */
  border-radius: 18px;
  border: 0.9px solid #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* footer start */

.footer {
  background: #0d4279;
  text-align: center;
  padding: 30px 20px;
  position: relative;
  height: 50vh;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px;
  padding-bottom: 20px;
  width: 1000px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.footer-nav a {
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: white;
  color: #0d4279;
}

.footer-bottom {
  padding-top: 20px;
  width: 1000px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24.266px;
  /* 151.663% */
}

.footer-bottom a {
  color: white;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-pattern {
  margin-top: 20px;
  width: 100%;
}

/* footer end */

/* register now  */

.register-now-container {
  height: 60vh;
}

.ragister-bg-ball {
  /* overflow: hidden; */
  z-index: -1;
  position: absolute;
  left: 0%;
  top: 10%;
}

/* faq  start*/
.faq-section {
  background: url(./images/faq.png) no-repeat center center / cover;
  color: #1a3e6b;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  /* overflow: hidden; */
  /* padding: 20px; */
  height: auto;
}

.faq-section .faq-banner img {
  height: 100vh;
  width: 100%;
  display: flex;
  object-fit: cover;
}

.faq-banner {
  position: absolute;
  left: 0%;
  top: 0%;
  z-index: -1;
  width: 100%;
  height: auto;
}

.faq-banner img {
  height: 100%;
  width: 100%;
}

.faq-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: end;
  width: 100%;
  max-width: 1700px;
}

.faq-box {
  border-radius: 27.419px;
  border: 0.685px solid #005ba6;
  background: #f5faff;
  /* display: flex; */
  width: 45.104vw;
  padding: 71px 87px 71.49px 87px;
  justify-content: center;
  align-items: center;
}

.faq-title {
  color: #134a83;
  font-family: Poppins;
  font-size: 0.759vw;
  font-style: normal;
  font-weight: 400;
}

.faq-item {
  border-radius: 12.96px;
  border: 0.162px solid #134a83;
  background: #fff;
  margin-bottom: 1%;
  padding: 20px;
  cursor: pointer;
}

.faq-question {
  color: #134a83;
  font-family: Poppins;
  font-size: 0.759vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* 21.87px */
}

.faq-question span {
  font-size: 1.302vw;
}

.faq-answer {
  color: #000;
  font-family: Poppins;
  font-size: 0.759vw;
  font-style: normal;
  font-weight: 400;
  line-height: 24.3px;
  /* 166.667% */
  display: flex;
  display: none;
}

.faq-question.active + .faq-answer {
  display: block;
}

.heading-team {
  color: #fff;
  font-family: "GTSectraFine";
  font-size: 2.8vw;
  font-style: normal;
  font-weight: 300;
  text-transform: capitalize;
}

.heading-team-des {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: Poppins;
  font-size: 0.75vw;
  font-style: normal;
  font-weight: 600;
  line-height: 23.4px;
  /* 162.5% */
  text-transform: capitalize;
  padding: 10% 0 0 0;
}

.team-container {
  padding: 5% 0 0 0;
}

@media (max-width: 768px) {
  .navbar {
    padding: 3px 30px 3px 30px !important;
  }

  .faq-container {
    justify-content: center;
    padding: 20px;
  }

  .faq-box {
    max-width: 100%;
    width: 100%;
    padding: 5%;
  }

  .faq-question {
    font-size: 14.58px;
  }

  .faq-question span {
    font-size: 25px;
  }

  .faq-answer {
    font-size: 14.58px;
  }
}

/* faq end */

/* blog start */
.blog-section {
  /* background: url('/mnt/data/swiper.png') no-repeat center center/cover; */
  color: #1a3e6b;
  /*padding:10% 5% 0 5%;*/
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  /* padding: 50px 20px; */
  /* height: 110vh; */
  position: relative;
  overflow: hidden;
  height: auto;
}

.padding-blogSection {
  padding: 10% 5% 0 5%;
}

.Ellipse-blog {
  position: absolute;
  left: 0%;
  top: 0%;
  z-index: -1;
}

.Ellipse-blog-rb {
  position: absolute;
  right: 0%;
  bottom: 0%;
  z-index: -1;
}

.blog-sub {
  color: #000;
  text-align: center;
  font-family: "GTSectraFine";
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  /* 150% */
  text-transform: uppercase;
}

.blog-title {
  text-align: center;
  color: #004080;
  text-align: center;
  font-family: "GTSectraFine";
  font-size: 3.333vw;
  font-style: normal;
  font-weight: 300;
  line-height: 4.167vw;
  /* 125% */
  text-transform: capitalize;
  margin-bottom: 20px;
}

.swiper {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
}

.swiper-slide {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 18.434px 18.434px 0px 0px;
  background: linear-gradient(
    0deg,
    rgba(19, 74, 131, 0) 0%,
    rgba(19, 74, 131, 0) 100%
  );
}

.featured-carousel .owl-nav{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto auto auto;
}


.featured-carousel .owl-nav button{
  width: 60px;
  height: 60px;
}

.featured-carousel .owl-nav button img{
width: 100%;
height: 100%;
object-fit: contain;
}

.featured-carousel .owl-dots{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem auto auto auto;
}

.featured-carousel .owl-dots button{
  width: 12px;
  height:12px;
  background-color: #fff !important;
  border-radius: 100px;
  transition: all 0.5s ease;
  scale: 0.8;
  opacity: 0.7;
}

.featured-carousel .owl-dots button.active{
  transition: all 0.5s ease;
  scale: 1;
  opacity: 1;
}





.button-blog {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-content {
  padding: 13px;
  background: #1a3e6b;
  color: white;
  /* height: 100%; */
}

.blog-content h3 {
  color: #fff;
  font-family: Poppins;
  font-size: 0.781vw;
  font-style: normal;
  font-weight: 600;
  line-height: 23.043px;
  text-align: left;
  /* 150% */
  text-transform: capitalize;
  margin-bottom: 10px;
}

.blog-content p {
  color: #fff;
  font-family: Poppins;
  font-size: 0.625vw;
  font-style: normal;
  font-weight: 400;
  line-height: 23.043px;
  /* 187.5% */
  text-transform: capitalize;
  margin-bottom: 15px;
  text-align: left;
}

.blog-content button {
  background: #0056b3;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.blog-card-button {
  border-radius: 50px !important;
  background: linear-gradient(
    92deg,
    #002855 -27.16%,
    #b8860b 126.66%
  ) !important;
}

.banner-img {
  /*width: 100%;*/
  /*height: auto;*/
  display: none;
  /* Hide both images by default */
}

/* Show banner1 on desktop */
.banner-img.desktop {
  display: block;
}

.modal-section {
  position: fixed;
  top: 45%;
  width: 40%;
  max-width: 90%;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  border: 0.685px solid #005ba6;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 19px;
  z-index: 999;
  opacity: 0;
  transition: all 0.5s ease;
  display: none;
}

.modal-section.show {
  top: 50%;
  transition: all 0.5s ease;
  opacity: 1;
  display: block !important;
}

.modal-section .form-box {
  width: 100%;
  padding: 1rem 1.5rem;
  gap: 5px;
  border: none;
}

.modal-section .close {
  position: absolute;
  top: 5%;
  cursor: pointer;
  right: 4%;
  background: #f5faff;
}

.modal-section .close i {
  font-size: 1.25rem;
}

.modal-section .overview-heading span {
  line-height: 60px;
}

/* Show banner2 on mobile */
@media (max-width: 991px) {
  /* Adjust breakpoint as needed */
  .banner-img.desktop {
    display: none;
  }

  .banner-img.mobile {
    display: block;
  }

  .modal-section {
    width: 100%;
    height: 80%;
  }
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 80%;
  }

  .blog-sub {
    font-size: 18px;
  }

  .blog-title {
    font-size: 30px;
    line-height: 50px;
  }

  .blog-content h3 {
    font-size: 15px;
  }

  .blog-content p {
    font-size: 12px;
  }

  .blog-section {
    height: 161vh;
    /*padding:30% 5% 0 5%;*/
  }

  .padding-blogSection {
    padding: 30% 5% 0 5%;
  }
}

/* blog end */

/* Show burger on mobile */
@media (max-width: 992px) {
  .burger {
    display: block;
  }

  /* footer */
  .footer-bottom {
    width: auto;
  }

  .footer-nav {
    padding-bottom: 20px;
    width: auto;
    gap: 20px;
  }

  .footer {
    height: 60vh;
  }
}

@media (max-width: 1600px) {
  .navbar {
    width: 70%;
  }
}

@media (max-width: 1300px) {
  .navbar {
    width: 80%;
  }
}

@media (max-width: 1200px) {
  .navbar {
    width: 100%;
  }

  .nav-links,
  .register-btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .bannerHeading {
    line-height: 50px;
  }
}

@media (max-width: 750px) {
  .logo img {
    width: 80px;
  }
}

/* Custom Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6.771vw;
}

.container_overview {
  width: 90%;
  margin: 0 auto;
  padding: 5.208vw 1.563vw;
}

.container_overview-team {
  width: 100%;
  /* margin: 0 auto; */
  padding: 5.208vw 0 0 0;
}

/* our team  */

/*  */

.my_team {
  /* height: 105vh; */
  height: auto;
  position: relative;
  overflow: hidden;
  background: #004080;
  margin: 0 auto;
  padding: 8% 0 8% 8%;
}

.my_team-container {
  display: flex;
  flex-direction: row;
  flex: 100%;
  overflow: hidden;
  position: relative;
  align-items: center;
  justify-content: center;
}

.my-team-text-headings {
  flex: 55%;
  overflow: hidden;
}

.my-team-swiper {
  flex: 45%;
  overflow: hidden;
}

.thank-you-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

/* Thank You Card */
.thank-you-card {
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

/* Checkmark */
.checkmark {
  background: #ffffff;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  color: #2740ae;
  margin-bottom: 10px;
  animation: pop 0.5s ease-in-out;
  border-radius: 50%;
  border: 1px dotted #00215e;
}

/* Heading */
.thank-you-card h1 {
  font-size: 65px;
  color: #333;
  font-family: "GTSectraFine";
  margin-bottom: 10px;
}

/* Paragraph */
.thank-you-card p {
  font-size: 25px;
  color: #666;
  margin-bottom: 20px;
  font-family: "Poppins";
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 25px;

  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pop {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/**/

.count-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 2% 0 0 0;
}

.text-count-class {
  font-size: 28px;
  font-weight: bold;
  color: #ffd700;
  /* Gold color */
  padding: 12px 24px;
  /*text-align: center;*/
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  text-shadow: 0px 0px 15px rgba(255, 215, 0, 1),
    0px 0px 25px rgba(255, 215, 0, 0.8);
  animation: flashyEffect 1.5s infinite ease-in-out,
    flicker 0.08s infinite alternate;
}

/* Neon Glow & Scale Animation */
@keyframes flashyEffect {
  0% {
    transform: scale(1);
    text-shadow: 0px 0px 10px rgba(255, 215, 0, 1);
  }

  50% {
    transform: scale(1.07);
    text-shadow: 0px 0px 25px rgba(255, 255, 0, 1);
  }

  100% {
    transform: scale(1);
    text-shadow: 0px 0px 10px rgba(255, 215, 0, 1);
  }
}

/* Subtle Flickering Effect */
@keyframes flicker {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.9;
  }
}

/*  blog*/

.blog_section_flex {
  display: flex;
  flex-direction: row;
  flex: 100%;
  width: 100%;
  gap: 100px;
}

.blog1_flex {
  flex: 70%;
  width: 100%;
  /* background: #000; */
  margin-top: 3rem;
}

.blog1_flex .you_do_get1 {
  flex: 5%;
  width: 100%;
}

.blog1_flex .you_do_get2 span {
  flex: 95%;

  width: 100%;
  color: #004080 !important;
  font-family: "GTSectraFine";
  font-size: 1.667vw;
  font-style: normal;
  font-weight: 300;
  line-height: 40px;
  /* 125% */
  text-transform: capitalize;
}

.blog2_flex {
  flex: 30%;
  width: 100%;
  /* background: #df0000; */
}

/*  */
.blog1_flex p {
  color: #000;
  font-family: "GTSectraFine";
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  /* 150% */
  text-transform: uppercase;
}

.blog1_flex h2 {
  color: #004080;
  width: 100%;
  font-family: "GTSectraFine";
  font-size: 3vw;
  font-style: normal;
  font-weight: 300;
  line-height: 57px;
  text-transform: capitalize;
}

.blog1_flex span {
  color: #63b9e0 !important;
}

.blog1_flex .des {
  color: #000;
  font-family: "GTSectraFine";
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  /* 150% */
  text-transform: capitalize;
}

.blog1_flex .you_do_get2 .des span {
  color: #63b9e0 !important;
}

.blog1_flex .image_blog {
  padding: 2.6% 0;
}

.blog1_flex .image_blog img {
  width: 100%;
  height: auto;
}

.blog_section_flex {
  display: flex;
  width: 100%;
  /* Ensure full width */
  padding: 2% 0;
}

.blog_section_1,
.blog_section_2 {
  flex: 1;
  /* Each section takes 50% */
  max-width: 100%;
  /* Ensures equal width */
}

.blog_section_1 img,
.blog_section_2 img {
  width: 100%;
  /* Makes images responsive */
  height: auto;
  /* Maintains aspect ratio */
  display: block;
  /* Removes unwanted space below images */
}

.blog1_flex .blog-sec-des {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
  text-transform: capitalize;
}

.post_heading {
  color: #004080;
  font-family: "GTSectraFine";
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 40px;
  /* 125% */
  text-transform: capitalize;
}

.card_blog {
  display: flex;
  flex-direction: row;
  width: 100%;
  /* Ensure full width */
  border-radius: 2px;
  background: #134a83;
  color: white !important;
  gap: 10px;
}

.blog_card1 {
  flex: 30%;
  display: flex;
  /* Make it a flex container */
  align-items: stretch;
  /* Stretch children */
}

.card_blog .blog_card1 img {
  width: 100%;
  height: 100%;
  /* Make the image fully cover the parent */
  object-fit: cover;
  /* Ensures the image fully covers */
  border-radius: 2px;
  background: linear-gradient(
    0deg,
    rgba(19, 74, 131, 0) 0%,
    rgba(19, 74, 131, 0) 100%
  );
}

.blog_card2 {
  flex: 70%;
  border-radius: 2px;
  background: #134a83;
  padding: 5%;
}

.blog_card2 h2 {
  color: #fff;
  font-family: Poppins;
  font-size: 15.362px;
  font-style: normal;
  font-weight: 600;
  line-height: 23.043px;
  /* 150% */
  text-transform: capitalize;
}

.blog_card2 p {
  color: #fff;
  font-family: Poppins;
  font-size: 12.289px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 146.468% */
  text-transform: capitalize;
}

.blog_capsule {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: start;
  margin: 2% 0;
}

.blog_capsule span {
  border-radius: 30px;
  border: 1px solid rgba(99, 185, 224, 0.4);
  display: inline-flex;
  padding: 7.2px 14.4px;
  align-items: center;
  gap: 7.2px;
  color: rgba(0, 64, 128, 0.8);
  font-family: Poppins;
  font-size: 9.6px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* blog end*/

/* Responsive Adjustments */
@media (max-width: 1440px) {
  .overview {
    /* height: 81vh; */
    height: auto;
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .container {
    width: 95%;
    max-width: 1000px;
    padding: 0 5.208vw;
  }

  .overview-heading .sub {
    line-height: 40px;
  }

  .overview {
    /* height: 76vh; */
    height: auto;
  }

  .my_team {
    /* height: 65vh; */
    position: relative;
    overflow: hidden;
    background: #004080;
    margin: 0 auto;
    padding: 5% 0 5% 5%;
    height: auto;
  }
}

@media (max-width: 992px) {
  .container {
    width: 98%;
    max-width: 800px;
  }

  .my_team {
    height: 100%;
  }
}

@media (max-width: 768px) {
  .faq-section {
    height: 100vh;
  }

  .container {
    width: 100%;
    padding: 0 15px;
  }

  .bannerHeading {
    font-size: 35px;
    line-height: 41px;
    font-weight: 400;
    width: auto;
  }

  .hero-content p {
    margin: 20px 0;
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .bannerSubHeading {
    font-size: 14px;
    width: auto;
  }

  /* overview */

  .overview {
    height: 138vh;
    align-self: stretch;
    background: white;
    position: relative;
  }

  .container_overview {
    width: 100%;
    margin: 0 auto;
    padding: 100px 15px;
    text-align: left;
    padding-bottom: 0px;
  }

  .overview_container-container-1 {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }

  .overview-heading {
    flex: 35%;
    width: 100%;
  }

  .overview-heading h2 {
    width: 100%;
    text-align: left;
    color: #000;
    font-family: "GTSectraFine";
    font-size: 4.563vw;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
    /* 150% */
    text-transform: uppercase;
  }

  .overview-heading span {
    color: #004080;
    font-family: "GTSectraFine";
    font-size: 35px;
    font-style: normal;
    font-weight: 300;
    line-height: 50px;
    /* 125% */
    /* text-transform: capitalize; */
  }

  .overview-heading .sub {
    color: #63b9e0;
    font-family: "GTSectraFine";
    font-size: 35px;
    font-style: normal;
    font-weight: 300;
    line-height: 50px;
    text-transform: capitalize;
  }

  .overview-description {
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    flex: 70%;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
    text-transform: capitalize;
  }

  .overview_flex {
    display: flex;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 30px 50px 30px;
    flex: 100%;
    flex-direction: column;
  }

  .flex1 .text {
    color: #004080;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 162.5% */
    text-transform: capitalize;
  }

  .flex1 .subtext {
    color: #63b9e0;
    font-family: Poppins;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    /* 160% */
    text-transform: capitalize;
  }

  /*  */

  .my_team {
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #004080;
    margin: 0 auto;
    padding: 5%;
  }

  .my_team-container {
    display: flex;
    flex-direction: column;
    flex: 100%;
    overflow: hidden;
    gap: 40px;

    position: relative;
    align-items: start;
    justify-content: start;
  }

  .my-team-text-headings {
    flex: 100%;
    overflow: hidden;
    text-align: left;
  }

  .my-team-swiper {
    flex: 100%;
    height: auto;
    width: 100%;
    overflow: hidden;
  }

  .ourTeamCard {
    display: flex;
    width: 100%;
    height: auto;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* flex-shrink: 0; */
    border-radius: 18px;
    border: 0.9px solid #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .heading-team {
    font-size: 30px;
  }

  .heading-team-des {
    font-size: 17px;
  }

  .thank-you-card h1 {
    font-size: 35px;
    color: #333;
    font-family: "GTSectraFine";
    margin-bottom: 10px;
  }

  /* Paragraph */
  .thank-you-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    font-family: "Poppins";
  }

  .blog_section_flex {
    display: flex;
    flex-direction: column;
    flex: 100%;
    width: 100%;
    gap: 20px;
  }

  .blog1_flex {
    flex: 100%;
    width: 100%;
    /* background: #000; */
  }

  .blog2_flex {
    flex: 100%;
    width: 100%;
    /* background: #df0000; */
  }

  .blog1_flex p {
    font-size: 25px;
  }

  .blog1_flex h2 {
    color: #004080;
    width: 100%;
    font-family: "GTSectraFine";
    font-size: 35px;
    font-style: normal;
    font-weight: 300;
    line-height: 50px;
    /* 125% */
    text-transform: capitalize;
  }

  .blog1_flex .des {
    font-size: 25px;
  }

  .blog1_flex .you_do_get2 span {
    font-size: 25px;
  }

  .blog_capsule {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 5% 0;
  }
}

@media (max-width: 411px) {
  .overview {
    /* height: 140vh; */
    height: auto;
  }

  .my_team {
    /* height: 109vh; */
    height: auto;
    position: relative;
    overflow: hidden;
    background: #004080;
    margin: 0 auto;
    padding: 20% 5%;
  }

  .faq-section {
    height: 100vh;
  }

  .blog-section {
    height: 100%;
  }

  .form-section {
    height: 70vh;
  }

  .faq-section .faq-banner img {
    height: 60vh;
    width: 100%;
    display: flex;
    object-fit: cover;
  }

  .overview-heading span {
    font-size: 24px;
    line-height: 40px;
    /* text-transform: capitalize; */
}
}


.logo-team{
  width: 100%;
  height: 400px;
}

.logo-team img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* form */

.form-section {
  background: url(./images/form.png) no-repeat center center / cover;
  color: #1a3e6b;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 116vh; */
  height: auto;
}

.form-section .faq-banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* .container {
    display: flex;
    width: 80%;
    max-width: 1200px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
} */

.form-box {
  display: flex;
  width: 45.104vw;
  padding: 71px 87px 84px 87px;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
  border-radius: 27.419px;
  border: 0.685px solid #005ba6;
  background: #f5faff;
}

form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

input {
  padding: 12px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 2px solid #004085;
  /* Bottom border */
  outline: none;
  /* Removes the outline */
  font-size: 16px;
  width: 100%;
  background: transparent;
}

input:focus {
  border-bottom: 2px solid #0056b3;
  /* Highlight effect on focus */
}

button {
  background: #004085;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  /* background: #0056b3; */
}

.image-box {
  flex: 1;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Error Messages */
.error {
  color: red;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-conatiner {
    position: relative;
  }

  .container {
    flex-direction: column;
    width: 90%;
  }

  .form-box {
    border-radius: 10px 10px 0 0;
    padding: 20px;
  }

  .image-box {
    height: 300px;
  }

  .image-box img {
    object-fit: cover;
  }

  .form-box {
    display: flex;
    width: 100%;
    padding: 5%;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    border-radius: 27.419px;
    border: 0.685px solid #005ba6;
    background: #f5faff;
  }

  .blog-section {
    height: 100%;
  }
}

/* menu */

/* Full-Screen Menu Modal */
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
  z-index: 1000;
}

.menu-modal.show {
  transform: translateY(0);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Animated Menu Links */
.menu-links {
  list-style: none;
  padding: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.menu-modal.show .menu-links {
  opacity: 1;
  transform: translateY(0);
}

.menu-links li {
  margin: 15px 0;
}

.menu-links a {
  text-decoration: none;
  font-size: 24px;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

.menu-links a:hover {
  color: #f39c12;
}

.text-count-class {
  font-size: 24px !important;
  color: #00215e;
  font-family: "GTSectraFine";
  text-transform: capitalize;
}

.blog-container {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  gap: 25px;
  /* max-width: 1200px; */
  display: grid;
  grid-template-columns: auto auto auto;
}

.blog-card {
  /*background: white;*/
  /*width: 350px;*/
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.blog-card:hover {
  transform: scale(1.05);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.enquire-btn {
  z-index: 9999;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: "#004080";
  color: white !important;
  border: 2px solid #c9a03f;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 5px 15px rgba(10, 25, 49, 0.4);
}

.enquire-btn:hover {
  background: linear-gradient(135deg, #102b54, #0a1931);
  color: #c9a03f;
  /*transform: scale(1.1);*/
  box-shadow: 0px 8px 20px rgba(10, 25, 49, 0.6);
}

.enquire-btn a {
  color: white;
}

@media (max-width: 768px) {
  .enquire-btn {
    right: 50%;
    transform: translateX(50%);
    bottom: 0px;
    width: 100%;
    border-radius: 0px;
    color: "white";
  }

  .blog-container {
    grid-template-columns: auto;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
    align-items: center;
  }

  .blog-card {
    width: 100%;
  }

  .register-now-container {
    /* height: 67vh; */
    height: auto;
  }
}

.CUSTOM {
  padding: 12px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 2px solid #004085;
  outline: none;
  font-size: 16px;
  width: 100%;
  background: transparent;
}

.top-link a {
  color: "#1155cc";
}

.blog-link {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.blog-link a {
  color: #1155cc;
}
