* {
  font-family: "Montserrat", sans-serif;
}

/* Loader background */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 250, 0.747);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 9999;
}
@media screen and (max-width: 560px) {
  #loader img {
    width: 100%;
  }
}
#loader .spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top: 5px solid #215c87;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spin keyframes */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cursor {
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, background-color 0.3s, width 0.3s, height 0.3s;
  width: 24px;
  height: 24px;
  background-color: #b9b4b4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cursor.active {
  transform: translate(-50%, -50%) scale(1.5);
}
.cursor.hidden {
  opacity: 0 !important;
}

header .desktop-header {
  width: 100%;
  width: 100%;
  position: fixed;
  z-index: 1000;
  background: #fff;
  top: 0px;
  border-bottom: 1px solid #d6d6d6;
}
@media screen and (max-width: 992px) {
  header .desktop-header {
    display: none;
  }
}
header .desktop-header .container-header {
  max-width: 1250px;
  margin: 0 auto;
}
header .desktop-header .desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  height: 85px;
}
header .desktop-header .desktop-nav .logo {
  animation: flipLogo 3s linear;
  transform-style: preserve-3d;
}
header .desktop-header .desktop-nav .logo a img {
  width: 163px;
}
header .desktop-header .desktop-nav .nav {
  align-items: center;
  height: 100%;
}
header .desktop-header .desktop-nav .nav ul {
  display: flex;
  margin: 0px;
  list-style: none;
  height: 100%;
}
header .desktop-header .desktop-nav .nav ul li {
  height: 100%;
}
header .desktop-header .desktop-nav .nav ul li .nav-link {
  color: #000;
  text-decoration: none;
  margin: 0px 14px;
  position: relative;
  font-size: 17px;
  height: 100%;
  padding: 0px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 1199px) {
  header .desktop-header .desktop-nav .nav ul li .nav-link {
    font-size: 13px;
    margin: 0px 5px;
  }
}
header .desktop-header .desktop-nav .nav ul li .nav-link::before {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: 15px;
  z-index: 0;
  position: absolute;
  background: #4258a6;
  transition: all 0.3s ease-in-out;
}
header .desktop-header .desktop-nav .nav ul li :hover {
  background-position: 0%;
}
header .desktop-header .desktop-nav .nav ul li :hover:before {
  width: 100%;
}
header .desktop-header .desktop-nav .nav ul li .nav-link.active {
  color: #25658e;
}
header .desktop-header .desktop-nav .nav ul li .mega-menu {
  position: absolute;
  top: 87%;
  width: 265px; /* You can increase width for larger mega menu */
  background: #f9f9f9;
  border: 1px solid #ddd;
  display: none; /* hidden by default */
  padding: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #25658e;
}
header .desktop-header .desktop-nav .nav ul li .mega-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
header .desktop-header .desktop-nav .nav ul li .mega-menu ul li {
  margin-bottom: 10px;
}
header .desktop-header .desktop-nav .nav ul li .mega-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-family: "Lato", sans-serif;
}
header .desktop-header .desktop-nav .nav ul .nav-item:hover .mega-menu {
  display: block;
}
header .mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
  position: relative;
  top: 0;
  padding: 10px 30px;
  z-index: 1;
}
@media screen and (max-width: 983px) {
  header .mobile-header {
    display: block;
  }
}
header .mobile-header .header-logo {
  width: 50%;
}
header .mobile-header .header-logo img {
  width: 100%;
}
header .mobile-header .nav #nav-check {
  display: none;
}
header .mobile-header .nav .nav-btn {
  display: inline-block;
  position: absolute;
  right: 7px;
  top: 10px;
  padding-top: 0.2rem;
}
header .mobile-header .nav .nav-btn label {
  display: inline-block;
  width: 50px;
  height: 50px;
  padding: 13px;
}
header .mobile-header .nav .nav-btn label span {
  display: block;
  width: 25px;
  height: 10px;
  border-top: 2px solid #070707;
}
header .mobile-header .nav .nav-list {
  position: fixed;
  display: flex;
  flex-direction: column;
  padding: 0px;
  width: 250px;
  background-color: #fff;
  height: 1000px;
  transition: all 0.3s ease-in;
  top: 0px;
  left: -100%;
  overflow: hidden;
  margin: 0px;
}
header .mobile-header .nav .nav-list .list {
  display: flex;
  justify-content: space-between;
  background-color: #25658e;
  padding: 10px;
}
header .mobile-header .nav .nav-list .list h3 {
  color: #fff;
  font-size: 19px;
}
header .mobile-header .nav .nav-list .list .fa {
  color: #fff;
  font-size: 20px;
}
header .mobile-header .nav .nav-list .list #nav-close:checked ~ .nav-list {
  left: -100%;
}
header .mobile-header .nav .nav-list .button {
  color: rgb(23, 23, 23);
  cursor: pointer;
  padding: 10px 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  font-family: "Lato", sans-serif;
  transition: 0.4s;
  background-color: #fff;
  position: relative;
  font-weight: 400;
  text-decoration: none;
}
header .mobile-header .nav .nav-list .button:hover {
  color: #25658e;
}
header .mobile-header .nav .nav-list .accordion {
  color: rgb(23, 23, 23);
  cursor: pointer;
  padding: 10px 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
  background-color: #fff;
  position: relative;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  text-decoration: none;
}
header .mobile-header .nav .nav-list .accordion:hover {
  color: #25658e;
}
header .mobile-header .nav .nav-list .accordion::after {
  position: absolute;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f078";
  color: #716a6a;
  display: block;
  height: 20px;
  width: 20px;
  font-size: 16px;
  right: 0px;
  top: 16px;
  margin-left: 5px;
  margin-right: 10px;
}
header .mobile-header .nav .nav-list .active::after {
  position: absolute;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f077";
  color: #716a6a;
  display: block;
  height: 20px;
  width: 20px;
  font-weight: bold;
  right: 0px;
  top: 22px;
  margin-left: 5px;
  margin-right: 10px;
}
header .mobile-header .nav .nav-list .panel {
  padding-left: 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  padding-top: 0px;
}
header .mobile-header .nav .nav-list .panel ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
header .mobile-header .nav .nav-list .panel ul li {
  padding: 0px 15px;
}
header .mobile-header .nav .nav-list .panel ul li a {
  text-decoration: none;
  font-size: 17px;
  color: #30303c;
  font-weight: 400;
  line-height: 36px;
}
header .mobile-header .nav .nav-list .panel ul li a:hover {
  color: #25658e;
}
header .mobile-header .nav .nav-list li {
  text-decoration: none;
  padding: 10px 15px;
  height: 100%;
  display: flex;
}
header .mobile-header .nav .nav-list li a {
  text-decoration: none;
  color: #000;
  font-size: 19px;
}
header .mobile-header .nav > #nav-check:checked ~ .nav-list {
  left: 0px;
}

.hero-section {
  text-align: left;
  color: #fff;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  padding: 4% 0;
}
.hero-section video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: -1;
}
.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 15, 40, 0.6);
  z-index: 0;
  padding: 4% 0;
  display: flex;
  align-items: center;
}
.hero-section .hero-content {
  position: relative;
  z-index: 0;
  max-width: 800px;
  padding: 4% 0;
  margin-left: 40px;
}
@media screen and (max-width: 560px) {
  .hero-section .hero-content {
    margin-left: 0px;
    max-width: 100%;
    padding: 10px;
  }
}
.hero-section .hero-content h1 {
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 55px;
}
@media screen and (max-width: 560px) {
  .hero-section .hero-content h1 {
    font-size: 40px;
    margin-top: 5px;
  }
}
.hero-section .hero-content .hero-subtext {
  font-size: 25px;
  line-height: 2rem;
  margin-bottom: 30px;
  font-weight: 500;
}
@media screen and (max-width: 560px) {
  .hero-section .hero-content .hero-subtext {
    font-size: 20px;
  }
}
.hero-section .hero-content .hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.hero-section .hero-content .hero-buttons .btn {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media screen and (max-width: 560px) {
  .hero-section .hero-content .hero-buttons .btn {
    padding: 12px 12px;
  }
}
.hero-section .hero-content .hero-buttons .btn-primary {
  background-color: #fff;
  color: #25658e;
  border: 1px solid #fff;
}
.hero-section .hero-content .hero-buttons .btn-primary:hover {
  background-color: rgba(37, 102, 142, 0);
  color: #fff;
}
.hero-section .hero-content .hero-buttons .btn-outline {
  border: 2px solid #fff;
  color: #fff;
}
.hero-section .hero-content .hero-buttons .btn-outline:hover {
  background-color: #fff;
  color: #25658e;
}
.hero-section .hero-content .countdown-wrap {
  display: flex;
  width: 500px;
  align-items: center;
  margin-bottom: 25px;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 14px 18px;
  border-radius: 6px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow: 0 6px 30px rgba(9, 12, 20, 0.45) inset;
}
@media (max-width: 520px) {
  .hero-section .hero-content .countdown-wrap {
    gap: 6px;
    padding: 10px;
    width: 100%;
  }
}
.hero-section .hero-content .countdown-wrap .time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 84px;
  padding: 8px 6px;
}
@media (max-width: 520px) {
  .hero-section .hero-content .countdown-wrap .time-block {
    min-width: 58px;
  }
}
.hero-section .hero-content .countdown-wrap .time-block .value {
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.6px;
  color: #ffffff;
  background: transparent;
}
.hero-section .hero-content .countdown-wrap .time-block .label {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
  letter-spacing: 0.6px;
}
.hero-section .hero-content .countdown-wrap .sep {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0 6px;
}
.hero-section .hero-content .countdown-wrap .sep .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0.9;
}

.msg-sec {
  padding: 70px 0px;
  background-color: aliceblue;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("accets/Untitled design (31).png");
}
@media screen and (max-width: 560px) {
  .msg-sec {
    padding: 40px 0px;
  }
}
.msg-sec .msg-heading {
  text-align: center;
}
.msg-sec .msg-heading h4 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 560px) {
  .msg-sec .msg-heading h4 {
    font-size: 28px;
  }
}
.msg-sec .msg-heading h4::after {
  content: " ";
  position: absolute;
  width: 162px;
  height: 3px;
  background: #25658e;
  left: 43%;
  bottom: -5px;
}
@media screen and (max-width: 560px) {
  .msg-sec .msg-heading h4::after {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .msg-sec .order-one {
    order: 1;
  }
}
@media screen and (max-width: 560px) {
  .msg-sec .order-two {
    order: 2;
  }
}
.msg-sec .president-img {
  margin-bottom: 20px;
  border-bottom: 10px solid rgba(102, 102, 102, 0.3215686275);
  border-left: 13px solid rgba(102, 102, 102, 0.3215686275);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 560px) {
  .msg-sec .president-img {
    border-bottom: 0px solid rgba(102, 102, 102, 0.3215686275);
    border-left: 0px solid rgba(102, 102, 102, 0.3215686275);
  }
}
.msg-sec .president-img img {
  width: 100%;
  height: 100%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
@media screen and (max-width: 560px) {
  .msg-sec .president-img img {
    width: 85%;
  }
}
.msg-sec .president-msg .name-position {
  border-left: 4px solid #25658e;
  padding-left: 15px;
  position: relative;
}
.msg-sec .president-msg .name-position::before {
  content: " ";
  position: absolute;
  width: 2px;
  height: 51px;
  background: #25658e;
  left: -4px;
  transition: width 0.3s ease;
}
.msg-sec .president-msg .name-position:hover::before {
  width: 60%;
}
@media screen and (max-width: 560px) {
  .msg-sec .president-msg .name-position:hover::before {
    display: none;
  }
}
.msg-sec .president-msg .name-position:hover h6 {
  color: #fff;
}
@media screen and (max-width: 560px) {
  .msg-sec .president-msg .name-position:hover h6 {
    color: #000;
  }
}
.msg-sec .president-msg .name-position:hover p {
  color: #fff;
}
@media screen and (max-width: 560px) {
  .msg-sec .president-msg .name-position:hover p {
    color: #000;
  }
}
.msg-sec .president-msg .name-position h6 {
  position: relative;
  color: #000;
  font-weight: 600;
}
.msg-sec .president-msg .name-position p {
  position: relative;
}
.msg-sec .president-msg .read-more {
  padding: 6px;
  margin-bottom: 20px;
}
.msg-sec .president-msg .read-more:hover {
  color: #25658e;
}

.registration-rates {
  margin: 40px 0px;
}
.registration-rates h2 {
  font-size: 40px;
  color: #171717;
  font-weight: 600;
}
@media screen and (max-width: 560px) {
  .registration-rates h2 {
    font-size: 28px;
  }
}
.registration-rates p {
  margin-bottom: 30px;
}
.registration-rates .registrion-sec {
  display: flex;
  justify-content: center;
  align-items: center;
}
.registration-rates .registrion-sec .pricing-card {
  background: #f0f7ff;
  border: 1.5px solid #2a6edb;
  border-radius: 12px;
  padding: 30px 40px;
  width: 90%;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-top: 10px;
}
.registration-rates .registrion-sec .pricing-card .tag {
  background: #2a6edb;
  color: #fff;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.registration-rates .registrion-sec .pricing-card .rates-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 30px 0px;
  flex-wrap: wrap;
  gap: 20px;
}
.registration-rates .registrion-sec .pricing-card .rates-wrapper .rate {
  flex: 1;
  min-width: 200px;
}
.registration-rates .registrion-sec .pricing-card .rates-wrapper .rate h3 {
  color: #222;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}
.registration-rates .registrion-sec .pricing-card .rates-wrapper .rate p {
  color: #6b7280;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
}
.registration-rates .registrion-sec .pricing-card .rates-wrapper .divider {
  width: 1px;
  height: 60px;
  background: #ccc;
}
@media screen and (max-width: 560px) {
  .registration-rates .registrion-sec .pricing-card .rates-wrapper .divider {
    width: 160px;
    height: 1px;
    background: #ccc;
  }
}
.registration-rates .registrion-sec .pricing-card .btn-cta {
  display: flex;
  justify-content: center;
}
.registration-rates .registrion-sec .pricing-card .register-btn {
  display: block;
  width: 35%;
  background: #215c87;
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 25px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.registration-rates .registrion-sec .pricing-card .register-btn:hover {
  background: #17486d;
  transform: translateY(-2px);
}
@media screen and (max-width: 560px) {
  .registration-rates .registrion-sec .pricing-card .register-btn {
    width: 100%;
  }
}

.partners-section {
  background-color: #f8f8f8;
  padding: 40px 20px 40px;
  text-align: center; /* Center the overall content */
}
@media screen and (max-width: 560px) {
  .partners-section {
    padding: 30px 0px;
  }
}
.partners-section .partners-header {
  margin-bottom: 30px;
}
.partners-section .partners-header h1 {
  font-size: 40px;
  font-weight: bold;
  color: #171717;
  margin-bottom: 5px;
}
@media screen and (max-width: 560px) {
  .partners-section .partners-header h1 {
    font-size: 28px;
  }
}
.partners-section .partners-header p {
  font-size: 1.1em;
  color: #171717;
  margin: 0;
}
.partners-section .revealed-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
}
.partners-section .revealed-wrap p {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.patner-video {
  background-color: #171717;
  padding: 70px 0px;
}
@media screen and (max-width: 560px) {
  .patner-video {
    padding: 30px 0px;
  }
}
.patner-video .partners-header {
  margin-bottom: 50px;
  text-align: center;
}
.patner-video .partners-header h1 {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}
@media screen and (max-width: 560px) {
  .patner-video .partners-header h1 {
    font-size: 28px;
  }
}
.patner-video .partners-header p {
  font-size: 1.1em;
  color: #fff;
  margin: 0;
}
.patner-video .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 560px) {
  .patner-video .swiper .swiper-wrapper .swiper-slide {
    flex-direction: column;
  }
}
.patner-video .swiper .swiper-wrapper .swiper-slide .video-text {
  background-color: #262626;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 50%;
}
@media screen and (max-width: 560px) {
  .patner-video .swiper .swiper-wrapper .swiper-slide .video-text {
    width: 100%;
  }
}
.patner-video .swiper .swiper-wrapper .swiper-slide .video-text img {
  width: 100px;
}
.patner-video .swiper .swiper-wrapper .swiper-slide .video-text h4 {
  font-size: 20px;
  color: #fff;
  margin: 15px 0px;
}
.patner-video .swiper .swiper-wrapper .swiper-slide .video-text p {
  color: #fff;
  font-size: 15px;
}
.patner-video .swiper .swiper-wrapper .swiper-slide .video-container {
  width: 50%;
}
@media screen and (max-width: 560px) {
  .patner-video .swiper .swiper-wrapper .swiper-slide .video-container {
    width: 100%;
  }
}
.patner-video .swiper .swiper-button-next:after {
  font-weight: 800;
  content: "next";
  font-size: 18px;
  color: #fff;
}
.patner-video .swiper .swiper-button-prev:after {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}
.patner-video .revealed-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
}
.patner-video .revealed-wrap p {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.venue-sec {
  margin: 60px 0px 40px;
}
.venue-sec .venue-header {
  margin-bottom: 50px;
  text-align: center;
}
.venue-sec .venue-header h1 {
  font-size: 40px;
  font-weight: bold;
  color: #171717;
  margin-bottom: 5px;
}
@media screen and (max-width: 560px) {
  .venue-sec .venue-header h1 {
    font-size: 28px;
  }
}
.venue-sec .card {
  padding: 25px 30px;
  background-color: #f5f5f5;
  border: none;
  margin-bottom: 30px;
}
.venue-sec .card h4 {
  font-size: 20px;
  font-weight: 600;
}
.venue-sec .card ul {
  margin: 0px;
  padding: 0px;
}
.venue-sec .card ul li {
  list-style: none;
  margin-top: 15px;
}
.venue-sec .card ul li i {
  color: #22c55e;
  margin-right: 10px;
}
.venue-sec .info-item {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}
.venue-sec .info-item i {
  font-size: 24px;
  color: #25658e;
  margin-right: 5px;
  padding-top: 2px;
  width: 30px;
  text-align: center;
}
.venue-sec .info-item .details {
  flex-grow: 1;
}
.venue-sec .info-item .details .title {
  font-weight: bold;
  color: #171717;
  font-size: 18px;
  margin-bottom: 2px;
}
.venue-sec .info-item .details .value {
  color: #525252;
  font-size: 15px;
}

.about-sec {
  padding: 40px 0px;
  margin-bottom: 40px;
}
@media screen and (max-width: 560px) {
  .about-sec {
    margin-bottom: 20px;
  }
}
.about-sec .about-header {
  margin-bottom: 20px;
}
.about-sec .mySwiper .swiper-wrapper .swiper-slide .card {
  width: 100%;
  height: 303px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-sec .card {
  padding: 30px;
  background: #eff6ff;
  border: none;
}
.about-sec .card h4 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media screen and (max-width: 560px) {
  .about-sec .card h4 {
    font-size: 20px;
  }
}
.about-sec .card ul {
  margin: 0px;
  padding: 0px;
}
.about-sec .card ul li {
  list-style: none;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.about-sec .card ul li i {
  color: #25658e;
  font-size: 24px;
  margin-right: 10px;
}
.about-sec .card img {
  width: 100%;
  margin-top: 20px;
}

.footer-dark {
  background-color: #25658e;
  color: #fff;
}
.footer-dark img {
  width: 80px;
}
.footer-dark h5 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer-dark .small-text {
  color: #fff;
  font-size: 14px;
}
.footer-dark .social-links {
  gap: 10px;
}
.footer-dark .social-links .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  color: #fff; /* White icon */
  border-radius: 4px; /* Slight rounding for the square */
  text-decoration: none;
  font-size: 1.4rem;
  transition: background-color 0.2s;
}
.footer-dark .social-links .social-icon img {
  width: 100%;
}
.footer-dark .quick-links-list li {
  margin-bottom: 8px;
}
.footer-dark .quick-links-list li a {
  color: #f8f9fa; /* Light text for links */
  text-decoration: none; /* Remove underline */
  display: flex; /* Align arrow and text */
  align-items: center;
  font-size: 0.95rem; /* Slightly smaller font for links */
  transition: color 0.2s; /* Smooth hover effect */
}
.footer-dark .quick-links-list li:hover {
  color: #6c757d; /* Lighter/Gray color on hover, similar to secondary text */
}

.cycle-tab-container {
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: none;
}
.cycle-tab-container .nav-tabs {
  border: none;
  width: 67%;
  justify-content: center;
}
@media screen and (max-width: 560px) {
  .cycle-tab-container .nav-tabs {
    width: 100%;
    flex-wrap: nowrap;
    overflow: scroll;
    justify-content: flex-start;
  }
}
.cycle-tab-container .nav-tabs .link-tab {
  color: #fff;
  background-color: #25658e;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px 30px;
  text-transform: uppercase;
}
.cycle-tab-container .nav-tabs .nav-link.active {
  border: 2px solid #25658e;
  background-color: #fff;
  color: #25658e;
}
.cycle-tab-container .tab-content .tab-pane {
  padding: 50px 0px;
}
.cycle-tab-container .tab-content .tab-pane .partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 560px) {
  .cycle-tab-container .tab-content .tab-pane .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cycle-tab-container .tab-content .tab-pane .partners-grid .partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  min-height: 80px;
  background-color: #fff;
}
.cycle-tab-container .tab-content .tab-pane .partners-grid .partner-logo p {
  color: #004080;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.cycle-tab-container .tab-content .tab-pane .partners-grid .partner-logo img {
  max-width: 100%;
  max-height: 80px;
  height: auto;
  width: auto;
}
.cycle-tab-container .tab-content .tab-pane .partners-grid-center .partner-logo {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.cycle-tab-container .tab-content .tab-pane .partners-grid-center .partner-logo .logo-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  height: 110px;
  background-color: #fff;
}
.cycle-tab-container .tab-content .tab-pane .partners-grid-center .partner-logo .logo-img p {
  color: #004080;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.cycle-tab-container .tab-content .tab-pane .partners-grid-center .partner-logo .logo-img img {
  width: 200px;
  margin-left: 10px;
  max-width: 100%;
  max-height: 80px;
  height: auto;
  width: auto;
}

.pricing-table {
  font-family: "Poppins", sans-serif;
  background: #fff;
  padding: 30px;
  margin: 90px 0px 0px;
  overflow: scroll;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.pricing-table table thead {
  background-color: #25658e;
  color: #fff;
}
.pricing-table table thead th {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid #ddd;
  vertical-align: middle;
}
.pricing-table table tbody tr:nth-child(even) {
  background-color: #f8f8f8;
}
.pricing-table table tbody td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid #ddd;
  vertical-align: middle;
}
.pricing-table table tbody td a {
  color: #25658e;
  font-weight: 500;
  text-decoration: none;
}
.pricing-table .note {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  font-style: italic;
}

@keyframes flipLogo {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.group-baner {
  margin: 80px 0px 40px;
  background-color: #25658e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
@media screen and (max-width: 560px) {
  .group-baner {
    padding: 30px 0px;
    margin: 0px 0px;
  }
}
.group-baner h1 {
  font-size: 40px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 560px) {
  .group-baner h1 {
    font-size: 30px;
  }
}

.team-section {
  padding: 40px 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
.team-section .team-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.team-section .team-container .team-member {
  text-align: center;
}
.team-section .team-container .team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%; /* round image */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 5px solid #215c87;
}
.team-section .team-container .team-member :hover {
  transform: scale(1.05);
}
.team-section .team-container .team-member h3 {
  font-size: 18px;
  color: #000;
  margin: 0;
  font-weight: 600;
}
.team-section .team-container .team-member p {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}
.team-section .team-container .team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.team-section .team-container .team-row .team-member {
  text-align: center;
}
.team-section .team-container .team-row .team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%; /* round image */
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.team-section .team-container .team-row .team-member :hover {
  transform: scale(1.05);
}
.team-section .team-container .team-row .team-member h3 {
  font-size: 18px;
  color: #000;
  margin: 0;
  font-weight: 600;
}
.team-section .team-container .team-row .team-member p {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}

.info-wrap-attend {
  margin: 60px 0px 60px;
}
.info-wrap-attend .info-wrap {
  margin-bottom: 20px;
}
.info-wrap-attend .info-wrap h4 {
  font-size: 18px;
  font-weight: 600;
  color: #215c87;
}
.info-wrap-attend .info-wrap p {
  font-size: 16px;
  font-weight: 500;
}

.cell-for-pepars {
  margin: 60px 0px 60px;
}
.cell-for-pepars h2 {
  color: #25658e;
  margin-top: 40px;
  border-bottom: 2px solid #004080;
  display: inline-block;
  padding-bottom: 5px;
  font-size: 25px;
}
.cell-for-pepars h3 {
  color: #25658e;
  margin-top: 25px;
  font-size: 20px;
}
.cell-for-pepars ul {
  padding-left: 20px;
}
.cell-for-pepars ul li {
  margin-bottom: 8px;
}
.cell-for-pepars p a {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
}
@media screen and (max-width: 560px) {
  .cell-for-pepars .table-row {
    width: 100%;
    overflow: scroll;
  }
}
.cell-for-pepars table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
}
.cell-for-pepars table th, .cell-for-pepars table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}
.cell-for-pepars table th {
  background-color: #25658e;
  color: #fff;
}

.payment-section {
  padding-bottom: 60px;
}
.payment-section h3 {
  color: #000;
  font-size: 25px;
  text-align: center;
  margin: 20px 0px;
}
.payment-section h2 {
  color: #004080;
  font-size: 22px;
  margin-top: 30px;
  border-left: 4px solid #004080;
  padding-left: 10px;
}
.payment-section ol {
  margin-left: 20px;
  margin-top: 10px;
}
.payment-section ul {
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 25px;
  list-style-type: disc;
}
.payment-section ul li {
  margin-bottom: 12px;
}
.payment-section ul li a {
  color: #007bff;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */