﻿/* General Reset */
.pink {
  color: #ED3163;
}

.overflow {
  overflow: hidden;
  position: relative;
}

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

html {
  scroll-behavior: smooth;
}

/* Default Light Mode */
body {
  background-color: white;
  color: black;
  transition: background 0.3s, color 0.3s;
}

/* Dark Mode */
body.dark-mode {
  background-color: #2a325d;
  color: white;
}

/* Dark Mode Icon */
.dark-mode-icon {
  font-size: 22px;
  cursor: pointer;
  color: black;
  margin-left: 15px;
}

/* Adjust Navbar in Dark Mode */
body.dark-mode .navbar {
  background-color: #2a325d;
}

body.dark-mode a {
  color: #EEF2F5;
}

body.dark-mode .dark-mode-icon {
  color: #ED3163;
}

body.dark-mode .brand-logo img {
  filter: brightness(0) invert(1);
}

body {
  font-family: "Poppins", sans-serif;
}

/* Language Icon */
.language-icon {
  font-size: 22px;
  cursor: pointer;
  margin-left: 15px;
}

/* Language Dropdown */
.language-dropdown {
  position: relative;
}
@media (max-width: 1100px) {
  .language-dropdown .language-menu {
    width: 100%;
    left: 0;
  }
}

.language-menu {
  display: none;
  position: absolute;
  background: white;
  list-style: none;
  padding: 5px;
  border-radius: 5px;
  top: 30px;
  right: -40px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.language-menu li {
  padding: 5px 10px;
}

.language-menu li a {
  text-decoration: none;
  color: black;
  display: block;
}

/* Show dropdown when active */
.language-dropdown.active .language-menu {
  display: block;
}

/* Dark Mode */
body.dark-mode .language-menu {
  background: #1a1d3a;
}

body.dark-mode .language-menu li a {
  color: #EEF2F5;
}

/* Dark Mode Icon */
.dark-mode-icon {
  font-size: 22px;
  cursor: pointer;
  margin-left: 15px;
}

.navbar {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

.wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-logo img {
  width: 130px;
}

@media (max-width: 1100px) {
  body.dark-mode .nav-links {
    background: #1a1d3a;
  }
  body.dark-mode .nav-links li {
    border-bottom: solid 1px #2a325d;
  }
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 1100px) {
  .nav-links li {
    border-bottom: solid 1px aliceblue;
    padding: 10px;
    text-align: center;
  }
  .nav-links li .pbtn {
    display: block;
  }
}

.nav-links a {
  text-decoration: none;
  color: black;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ED3163;
}

/* Burger Icon */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;
}

body.dark-mode .burger-icon, body.dark-mode .burger-icon::before,
body.dark-mode .burger-icon::after {
  background-color: white;
}

.burger-icon {
  width: 25px;
  height: 2px;
  background-color: black;
  display: block;
  position: relative;
}

.burger-icon::before,
.burger-icon::after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: black;
  position: absolute;
  left: 0;
  transition: transform 0.3s;
}

.burger-icon::before {
  top: -8px;
}

.burger-icon::after {
  top: 8px;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem 0;
    border-radius: 0 0 8px 8px;
  }
  .nav-links.active {
    display: flex;
    width: 100%;
    padding: 20px;
  }
  .menu-toggle {
    display: block;
  }
}
.bold {
  font-weight: bold;
}

.pbtn {
  background: #ED3163;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.home-hero {
  text-align: center;
  padding-top: 70px;
}
@media (max-width: 1100px) {
  .home-hero {
    padding-top: 10px;
  }
}

.hero-header {
  font-size: 60px;
  font-weight: bold;
  text-transform: capitalize;
}
@media (max-width: 1100px) {
  .hero-header {
    font-size: 30px;
  }
}

.hero-p {
  font-size: 25px;
  width: 60%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1100px) {
  .hero-p {
    font-size: 16px;
    width: 90%;
    margin-top: 15px;
    margin-bottom: 40px;
  }
}

.bordered-btn {
  border: solid 2px #ED3163;
  border-radius: 5px;
  display: inline-block;
  padding: 10px 50px;
}
.bordered-btn p {
  width: 100% !important;
  margin: 0 !important;
}
.bordered-btn:hover {
  background: #ED3163;
  color: white;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.filled-btn {
  background: #ED3163;
  border-radius: 5px;
  display: inline-block;
  padding: 10px 50px;
  color: white;
}
.filled-btn p {
  width: 100% !important;
  margin: 0 !important;
}
.filled-btn:hover {
  background: #ED3163;
  color: white;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.ann .modal-content {
  padding: 30px 70px;
}
@media (max-width: 1000px) {
  .modal.ann .modal-content {
    padding: 20px;
  }
}
.modal.ann .modal-content h1 {
  font-size: 30px;
  margin: 0;
}
.modal.ann .modal-content p {
  margin: 10px auto;
}
.modal.ann .modal-content img {
  position: relative;
}

body.dark-mode .modal {
  background-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .modal-content {
  background: #1a1d3a;
}

/* Modal Content */
.modal-content {
  position: relative;
  background: white;
  padding: 150px 100px;
  border-radius: 10px;
  width: 60%;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.modal-content img {
  width: auto;
}
.modal-content .circle1 {
  position: absolute;
  top: -50px;
  left: -150px;
  animation: rotateCircle 10s linear infinite;
}
@media (max-width: 1100px) {
  .modal-content .circle1 {
    display: none;
  }
}
.modal-content .circle2 {
  position: absolute;
  bottom: -144px;
  right: -72px;
  animation: rotateCircle 10s linear infinite;
}
@media (max-width: 1100px) {
  .modal-content .circle2 {
    bottom: -245px;
  }
}
.modal-content p {
  width: 70%;
  margin: 30px auto;
}
.modal-content h1 {
  text-transform: capitalize;
}
@media (max-width: 1100px) {
  .modal-content {
    padding: 50px 10px;
    width: 95%;
  }
  .modal-content p {
    width: 90%;
    margin: 10px auto;
    font-size: 16px;
  }
}

/* Close Button */
.close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

.circle1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: solid 15px #ED3163;
  position: relative;
}
.circle1 .scir {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  position: absolute;
  left: 260px;
  top: 184px;
}

.circle2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: solid 25px #ED3163;
  position: relative;
}
.circle2 .scir {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  position: absolute;
  left: 3px;
  top: 36px;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1100px) {
  .two-grid {
    grid-template-columns: 1fr;
  }
}

.three-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1100px) {
  .three-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1100px) {
  .three-grid.responsive {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .three-grid.responsive {
    grid-template-columns: 1fr;
  }
}

.four-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1100px) {
  .four-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .four-grid {
    grid-template-columns: 1fr;
  }
}

.account-type-content-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  position: absolute;
  margin: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1100px) {
  .account-type-content-wrap {
    grid-template-columns: 1fr;
  }
}

.accoutn-type {
  color: white;
  margin: 70px 0;
  position: relative;
}
.accoutn-type h1 {
  color: #ED3163;
  text-transform: capitalize;
}
.accoutn-type p {
  margin-bottom: 30px;
}
.accoutn-type a {
  text-decoration: none;
}
.accoutn-type h3 {
  margin-bottom: 15px;
}
.accoutn-type .bordered-btn {
  margin-top: 50px;
}
@media (max-width: 500px) {
  .accoutn-type .bordered-btn {
    margin-top: 30px;
    position: absolute;
    bottom: 100px;
  }
}
.accoutn-type .first-gridd {
  height: 520px;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 0;
  position: relative;
  padding-right: 20px;
}
@media (max-width: 500px) {
  .accoutn-type .first-gridd {
    padding-right: 10px;
    height: 600px;
    padding-top: 40px;
  }
}
.accoutn-type .first-gridd .wpie {
  display: none;
}
.accoutn-type .first-gridd a {
  color: white;
}
.accoutn-type .first-grid {
  height: 520px;
  overflow: hidden;
  border-right: 10px solid #2a325d;
  padding-top: 50px;
  padding-bottom: 0;
  position: relative;
  z-index: -1;
  background: #1a1d3a;
}
@media (max-width: 500px) {
  .accoutn-type .first-grid {
    padding-left: 20px;
    padding-right: 40px;
    height: 600px;
  }
}
.accoutn-type .first-grid .wpie {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 40px;
  right: 40px;
  border-radius: 50%;
}
@media (max-width: 500px) {
  .accoutn-type .first-grid .wpie {
    right: 20px;
  }
}
.accoutn-type .first-grid p {
  width: 80%;
}
.accoutn-type .first-grid .circle2 {
  right: -75px;
  bottom: -52px;
  position: absolute;
}
@media (max-width: 500px) {
  .accoutn-type .first-grid .circle2 {
    right: -245px;
    bottom: 44px;
  }
}
.accoutn-type .first-grid a {
  color: white;
}
.accoutn-type .second-grid {
  height: 520px;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 0;
  padding-left: 50px;
  padding-right: 20px;
  background-position: center;
  background-size: cover;
}
@media (max-width: 500px) {
  .accoutn-type .second-grid {
    padding-left: 0;
    padding-right: 0;
    padding-top: 15px;
    height: 600px;
  }
}
.accoutn-type .second-grid p {
  width: 100%;
  /*font-size: 14px;*/
}
.accoutn-type .second-grid a {
  color: white;
}

.fastpaySlider {
  width: 100%;
  height: 380px;
  margin-top: 40px;
}
@media (max-width: 1100px) {
  .fastpaySlider {
    padding: 0px !important;
    width: 90%;
    height: 340px;
  }
}
@media (max-width: 700px) {
  .fastpaySlider {
    padding: 0px !important;
    width: 100%;
    height: 340px;
  }
}
.fastpaySlider .swiper-slide {
  background: #ED3163;
  border-radius: 5px;
  color: white;
  position: relative;
  padding: 40px;
}
@media (max-width: 1100px) {
  .fastpaySlider .swiper-slide {
    padding: 10px;
  }
}
.fastpaySlider .swiper-slide .slide-title {
  font-size: 25px;
  width: 90%;
}
@media (max-width: 1100px) {
  .fastpaySlider .swiper-slide .slide-title {
    font-size: 23px;
    width: 100%;
  }
}
.fastpaySlider .swiper-slide .slide-num {
  font-size: 128px;
  position: absolute;
  bottom: -25px;
  left: 40px;
  opacity: 0.3;
}
.fastpaySlider .swiper-slide img {
  width: 130px;
  position: absolute;
  right: 15px;
  bottom: 0;
}

.swiper-navigation {
  position: absolute;
  top: -62px; /* Adjust this value to position it above the slider */
  right: 10%;
  z-index: 10;
}
.swiper-navigation.m-m {
  top: -35px;
}
@media (max-width: 500px) {
  .swiper-navigation {
    top: -97px;
    right: 22px;
    scale: 0.7;
  }
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 30px !important;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.swiper-container {
  position: relative;
}

.swiper-button-next, .swiper-button-prev {
  cursor: pointer;
  color: #ED3163 !important;
}

/* Add proper Swiper arrow icons */
.swiper-button-prev::before,
.swiper-button-next::before {
  font-family: "Font Awesome 5 Free"; /* If using FontAwesome */
  font-weight: 900;
}

.swiper-button-prev {
  transform: rotate(180deg);
}

.swiper-button-next {
  transform: rotate(180deg);
}

.section-title h1 {
  width: 80%;
}
@media (max-width: 500px) {
  .section-title h1 {
    font-size: 24px;
    width: 80%;
  }
}

.eventSlider {
  width: 100%;
  height: 380px;
  margin-top: 40px;
  padding-left: 150px !important;
}
@media (max-width: 1100px) {
  .eventSlider {
    padding: 0px !important;
    width: 90%;
    height: 340px;
  }
}
.eventSlider .swiper-slide {
  background: #ED3163;
  border-radius: 5px;
  color: white;
  position: relative;
}
.eventSlider .swiper-slide h2 {
  position: absolute;
  bottom: 0;
  color: white;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
}
.eventSlider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ev {
  top: -20px;
}

img {
  border-radius: 5px;
}

.security-section {
  margin: 90px auto;
  height: 500px;
}
@media (max-width: 1100px) {
  .security-section {
    height: auto;
  }
}
.security-section.two-grid {
  grid-gap: 10px;
}
.security-section .two-grid {
  grid-gap: 10px;
}
.security-section .first-security {
  height: 500px;
}
@media (max-width: 1100px) {
  .security-section .first-security {
    height: auto;
  }
}
.security-section .second-sec {
  height: 500px;
}
.security-section p {
  margin-top: 10px;
  margin-bottom: 20px;
}
.security-section a {
  color: black;
}
.security-section .circle2 {
  position: absolute;
  z-index: -1;
  top: -103px;
  right: 33px;
}
@media (max-width: 600px) {
  .security-section .circle2 {
    display: none;
  }
}

.sec-img {
  position: relative;
}
.sec-img h2 {
  position: absolute;
  bottom: 20px;
  left: 12px;
  font-size: 14px;
}
.sec-img img {
  width: 100%;
}
.sec-img i {
  color: #ED3163;
  margin-right: 10px;
}

.image-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  grid-template-rows: 1fr 1fr; /* Two rows for right images */
  gap: 10px; /* Space between images */
  height: 500px; /* Adjust width as needed */
}
@media (max-width: 500px) {
  .image-container {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}

.left-image {
  grid-row: span 2; /* Makes the left image span both rows */
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1000px) {
  .left-image {
    grid-row: unset;
  }
}

body.dark-mode .right-top {
  background: #1a1d3a;
}

.right-top {
  background: #EAEEF1;
  border-radius: 5px;
  padding: 20px;
}
.right-top h2 {
  font-size: 14px;
}
.right-top h2 i {
  color: #ED3163;
  margin-right: 10px;
}

.about-section ul {
  list-style: none;
}
.about-section ul li {
  margin: 5px 0;
}
.about-section i {
  color: #ED3163;
  margin-right: 10px;
}
.about-section p {
  margin: 10px 0;
}
.about-section .bordered-btn {
  margin-top: 30px;
  margin-bottom: 30px;
}
.about-section a {
  color: black;
}
.about-section img {
  height: auto;
}

.b-banner {
  height: 470px;
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 70px;
  margin-top: 70px;
}
.b-banner img {
  width: 250px;
}
@media (max-width: 700px) {
  .b-banner {
    height: auto;
    padding: 20px;
    background-position: 65%;
  }
}
.b-banner h1 {
  text-transform: capitalize;
  margin-top: 30px;
}
.b-banner p {
  width: 50%;
  margin-top: 20px;
  margin-bottom: 50px;
}
@media (max-width: 700px) {
  .b-banner p {
    width: 80%;
  }
}

.t-banner {
  height: 350px;
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 50px;
}
.t-banner img {
  width: 250px;
}
.t-banner a {
  color: black;
}
@media (max-width: 700px) {
  .t-banner {
    max-height: 350px;
    padding: 20px;
    background-position: 65%;
  }
}
.t-banner h1 {
  text-transform: capitalize;
  margin-top: 30px;
}
@media (max-width: 700px) {
  .t-banner h1 {
    font-size: 24px;
    margin-top: 0px;
  }
}
.t-banner p {
  width: 50%;
  margin-top: 20px;
  margin-bottom: 50px;
}
@media (max-width: 700px) {
  .t-banner p {
    width: 80%;
    margin-top: 10px;
  }
}

.t-banner-pink {
  height: 350px;
  width: 100%;
  background: #ED3163;
  padding: 20px;
  color: white;
  margin-top: 90px !important;
}
.t-banner-pink .bordered-btn {
  color: white;
  border: solid white 1px;
}
.t-banner-pink .t-banner-wrap {
  position: relative;
}
.t-banner-pink .t-banner-wrap .img-item {
  position: absolute;
  top: 69px;
  right: -100px;
  transform: translate(-50%, -50%);
  width: 250px;
}
.t-banner-pink .t-banner-wrap .img-item2 {
  position: absolute;
  top: 50%;
  right: -444px;
  transform: translate(-50%, -50%);
  width: 600px;
}
@media (max-width: 1300px) {
  .t-banner-pink .t-banner-wrap .img-item2 {
    right: -384px;
  }
}
@media (max-width: 1200px) {
  .t-banner-pink .t-banner-wrap .img-item2 {
    right: -357px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .t-banner-pink .t-banner-wrap .img-item2 {
    display: none;
  }
}
@media (max-width: 900px) {
  .t-banner-pink {
    height: auto;
    margin-top: 50px !important;
  }
  .t-banner-pink .img-item {
    display: none;
  }
}
@media (max-width: 700px) {
  .t-banner-pink {
    height: auto;
    padding: 20px;
  }
}
.t-banner-pink h1 {
  text-transform: capitalize;
  margin-top: 30px;
}
.t-banner-pink p {
  width: 50%;
  margin-top: 20px;
  margin-bottom: 50px;
}
@media (max-width: 700px) {
  .t-banner-pink p {
    width: 80%;
  }
}

footer {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px gray;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
  grid-gap: 20px;
}
@media (max-width: 900px) {
  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  footer .footer-grid .box4 {
    grid-column: span 2;
  }
}
footer .f-contact p {
  font-size: 14px;
}
footer .f-contact p a {
  color: black;
}
footer .f-contact p i {
  color: #ED3163;
  margin-right: 10px;
}
footer ul {
  list-style: none;
}
footer ul a {
  text-transform: none;
  text-decoration: none;
  color: black;
  font-size: 14px;
  transition: 0.3s ease-in-out;
}
footer ul a:hover {
  color: #ED3163;
  transition: 0.3s ease-in-out;
}

.social-contact a {
  color: black;
}
.social-contact i {
  font-size: 25px;
  margin-right: 15px;
}

.grayBg {
  background: #EAEEF1;
  padding: 50px 0;
}

body.dark-mode .grayBg {
  background: #1a1d3a;
}

.nq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 20px;
}
@media (max-width: 900px) {
  .nq-grid {
    grid-template-columns: 1fr;
  }
}
.nq-grid p {
  font-size: 16px;
}
.nq-grid img {
  width: 100%;
}

.nq-grid2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 20px;
}
@media (max-width: 900px) {
  .nq-grid2 {
    grid-template-columns: 1fr;
  }
}
.nq-grid2 p {
  font-size: 16px;
}
.nq-grid2 img {
  width: 60%;
  margin-left: auto;
}
@media (max-width: 900px) {
  .nq-grid2 img {
    margin: unset;
  }
}

.space-both {
  margin: 50px auto;
}
@media (max-width: 900px) {
  .space-both {
    margin: 30px auto;
  }
}

body.dark-mode .gray-box {
  background: #1a1d3a;
}

.abt-box {
  grid-gap: 15px;
  margin-top: 15px;
}
.abt-box .abt-box-bg {
  background-position: center;
  background-size: cover;
  height: 300px;
  position: relative;
  padding: 20px;
  border-radius: 5px;
}
.abt-box .gray-box {
  background: #EAEEF1;
}
.abt-box h3 {
  position: relative;
  z-index: 2;
}
.abt-box p {
  position: relative;
  z-index: 2;
}
.abt-box .pink-shade {
  background: rgba(237, 49, 99, 0.4784313725);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  border-radius: 5px;
}
.abt-box img {
  width: 90px;
  margin-left: auto;
  display: block;
}
.abt-box .nq-grid2 {
  background: #ED3163;
  border-radius: 5px;
  padding: 20px;
  color: white;
}

.t-m {
  margin-top: 50px;
}

.b-m {
  margin-bottom: 50px;
}

.gap-25 {
  grid-gap: 25px;
}

.gap-15 {
  grid-gap: 15px;
}

body.dark-mode .each-box {
  background: #1a1d3a;
}
body.dark-mode .each-box h1 {
  color: #2a325d;
}

.each-box {
  background: #EAEEF1;
  border-radius: 5px;
  padding: 20px;
  position: relative;
  height: 300px;
}
.each-box h4 {
  margin-bottom: 15px;
  font-size: 20px;
}
.each-box h1 {
  position: absolute;
  bottom: -82px;
  right: 0;
  font-size: 200px;
  color: white;
}
.each-box p {
  position: relative;
  z-index: 1;
}

body.dark-mode .each-feature:nth-child(odd) {
  background: #1a1d3a;
}

.each-feature {
  padding: 50px 0;
}
.each-feature:nth-child(odd) {
  background: #EAEEF1;
}
.each-feature.integrate .f-grid div {
  margin-top: 10px;
}
.each-feature a {
  color: black;
}
.each-feature .f-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 15px;
}
@media (max-width: 500px) {
  .each-feature .f-grid {
    grid-template-columns: 1fr;
  }
}
.each-feature .f-grid img {
  width: 150px;
}
.each-feature .f-grid div {
  margin-top: 30px;
}

.cbox1 {
  background: #ED3163;
  color: white;
  padding: 40px;
  border-radius: 5px;
}
@media (max-width: 500px) {
  .cbox1 {
    padding: 20px;
  }
}
.cbox1 .bordered-btn {
  border: white solid;
  margin-top: 30px;
}
.cbox1 p {
  font-size: 20px;
}
@media (max-width: 500px) {
  .cbox1 p {
    font-size: 16px;
  }
}
.cbox1 a {
  color: white;
}

.cbox2 {
  width: 100%;
}

.search-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  background: #fff;
}

.search-box input {
  border: none;
  outline: none;
  flex: 1;
  padding: 5px;
  font-size: 16px;
}

.search-box button {
  background: #EAEEF1;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
}

.search-box button:hover {
  background: #0056b3;
}

.each-career {
  border: solid 1px #ED3163;
  border-radius: 5px;
  padding: 20px;
}
.each-career a {
  text-transform: none;
  text-decoration: none;
  color: black;
}
.each-career .tL {
  color: #ED3163;
  margin-top: 20px;
  font-size: 18px;
}
.each-career .tL i {
  margin-right: 10px;
}

.blue {
  background: #2a325d !important;
}

body.dark-mode .blue {
  background: #1a1d3a !important;
}

body.dark-mode .search-container {
  background: #1a1d3a;
}

body.dark-mode .search-box {
  background: #1a1d3a;
}
body.dark-mode .search-box input {
  background: #1a1d3a;
  color: white;
}

.left {
  text-align: left;
}

.hero-icons {
  color: #ED3163;
  font-size: 18px;
  margin-bottom: 15px;
}
@media (max-width: 1000px) {
  .hero-icons {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.hero-icons i {
  margin-right: 10px;
}

body.dark-mode .container-form {
  background: #1a1d3a;
}

.container-form {
  background: #EAEEF1;
  padding: 40px;
  border-radius: 5px;
}
@media (max-width: 700px) {
  .container-form {
    padding: 20px;
  }
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input, textarea, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (max-width: 700px) {
  .grid-container {
    display: block;
  }
}

.full-width {
  grid-column: span 2;
}

.submit-btn {
  margin: auto;
  color: white;
  border: none;
  padding: 12px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  width: 300px;
  transition: 0.3s ease-in-out;
  display: block;
  background: #ED3163;
}
.submit-btn input {
  background: #ED3163;
  color: white;
  transition: 0.3s ease-in-out;
}

.submit-btn:hover {
  background: #ED3163;
}

.cv-input {
  width: 100%;
  padding: 30px;
  border: 1px #ED3163 dashed;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
}

.career-circle {
  position: absolute;
  animation: rotateCircle 10s linear infinite;
  z-index: -1;
  top: 220px;
}

.career-circle-right {
  position: absolute;
  animation: rotateCircle 10s linear infinite;
  z-index: -1;
  top: 118px;
  right: -138px;
}

body.dark-mode .each-event h3 {
  color: white;
}

.each-event a {
  text-decoration: none;
}
.each-event h3 {
  color: black;
}
.each-event img {
  width: 100%;
}
.each-event p {
  color: gray;
}

img {
  width: 100%;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #ED3163;
}

.detail-container .swiper-button-prev {
  transform: rotate(0deg) !important;
}
.detail-container .swiper-button-next {
  transform: rotate(0deg) !important;
}

body.dark-mode .each-event {
  background: #2a325d;
}

.howto {
  /* Modal Styling */
  /* Close button */
}
@media (max-width: 1000px) {
  .howto {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .howto {
    grid-template-columns: 1fr;
  }
}
.howto .each-event {
  position: relative;
  background: white;
}
.howto .each-event .fa-play {
  color: #ED3163;
  position: absolute;
  top: 125px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
}
.howto .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.howto .modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}
.howto .modal-content iframe {
  width: 100%;
  width: 90%;
  height: 400px;
}
@media (max-width: 1000px) {
  .howto .modal-content iframe {
    width: 90%;
  }
}
.howto .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: black;
}
.howto .close:hover {
  color: red;
}

.big-h1 {
  font-size: 50px;
  text-transform: capitalize;
}

.contact-banner p {
  margin-bottom: 0;
}
.contact-banner i {
  margin-right: 10px;
  color: white;
}

body.dark-mode .integrate-detail a {
  color: white;
}

body.dark-mode .integrate-detail .int-content tr:nth-child(even) {
  background: #1a1d3a;
}

@media (max-width: 900px) {
  .integrate-detail {
    display: block;
  }
  .integrate-detail .int-navbar {
    display: none;
  }
}
.integrate-detail .int-navbar h3 {
  margin-top: 15px;
  font-size: 15px;
}
.integrate-detail .int-navbar h3:hover {
  color: #ED3163;
}
.integrate-detail .int-navbar ul {
  list-style: none;
  line-height: 35px;
  margin-left: 10px;
}
.integrate-detail .int-navbar ul li {
  font-size: 13px;
  line-height: 25px;
}
.integrate-detail .int-navbar a {
  color: black;
  text-decoration: none;
}
.integrate-detail .int-navbar a:hover {
  color: #ED3163;
}
.integrate-detail .int-navbar em {
  margin-right: 10px;
  font-size: 10px;
  color: #ED3163;
}
.integrate-detail .int-content ul {
  margin-left: 30px;
  line-height: 30px;
}
.integrate-detail .int-content img {
  width: 100%;
}
.integrate-detail .int-content .highlight {
  background: #ED3163;
  padding: 30px;
  border-radius: 5px;
  color: white;
}
.integrate-detail .int-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border-radius: 5px;
}
.integrate-detail .int-content th, .integrate-detail .int-content td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  font-size: 14px;
}
.integrate-detail .int-content th {
  background-color: #ED3163;
  color: white;
  font-weight: bold;
}
.integrate-detail .int-content tr:nth-child(even) {
  background-color: #f2f2f2;
}
.integrate-detail .int-content .code-box {
  display: grid;
  grid-template-columns: 20px 1fr 100px;
  background-color: #282c34;
  color: #f5f5f5;
  font-family: "Courier New", Courier, monospace;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
}
.integrate-detail .int-content .line-numbers {
  padding-right: 10px;
  border-right: 1px solid #aaa;
  color: #888;
  text-align: right;
  padding-top: 5px;
  font-size: 14px;
}
.integrate-detail .int-content .code-container {
  padding-left: 10px;
  white-space: pre;
  overflow: auto;
  font-size: 14px;
  width: 90%;
}
.integrate-detail .int-content .copy-btn {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  height: 40px;
}
.integrate-detail .int-content .copy-btn:hover {
  background-color: #45a049;
}

.popup-img {
  width: 100% !important;
}

body.dark-mode .partner-container {
  background: #1a1d3a;
}

.partner-container {
  background: #EAEEF1;
  width: 90%;
  margin: auto;
  border-radius: 5px;
  padding: 50px;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}
@media (max-width: 1000px) {
  .partner-container {
    padding: 20px;
  }
}
.partner-container .cv-input {
  padding: 5px;
}
.partner-container .form-group {
  width: 30%;
  display: inline-block;
  margin: 10px;
}
@media (max-width: 1000px) {
  .partner-container .form-group {
    width: 100%;
  }
}

#acceptTerms {
  width: 15px;
  display: inline;
  margin-top: 20px;
}

.term-label {
  display: inline !important;
}

.step {
  display: block;
}

.step.active {
  display: block;
}

.btn {
  padding: 10px 15px;
  background-color: #ED3163;
  color: white;
  border: none;
  cursor: pointer;
  margin: 10px;
  border-radius: 5px;
}

.btn:hover {
  background-color: #2a325d;
}

.btn:disabled {
  background-color: gray;
  cursor: not-allowed;
}

input, label {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
}

.file-input {
  border: 1px solid #ccc;
  padding: 8px;
}

.agent-map iframe {
  width: 100%;
  height: 500px;
  border-radius: 5px;
}

.more-space {
  margin-top: 100px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #ED3163 !important;
}

.int-navbar {
  position: fixed;
  width: 300px; /* Adjust width as needed */
  height: 100vh; /* Full height */
  padding: 20px;
  overflow-y: auto; /* Allow scrolling if content overflows */
  border-radius: 5px;
}

.int-content {
  margin-left: 270px; /* Adjust based on navbar width */
  padding: 20px;
}
@media (max-width: 1000px) {
  .int-content {
    margin-left: 0;
  }
}

.new-abt-box {
  grid-gap: 15px;
  margin-top: 15px;
}
@media (max-width: 1200px) {
  .new-abt-box.three-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1000px) {
  .new-abt-box.three-grid {
    grid-template-columns: 1fr;
  }
}
.new-abt-box .gray-box {
  background: #EAEEF1;
  padding: 30px;
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .new-abt-box .gray-box {
    padding: 10px;
  }
}
@media (max-width: 700px) {
  .new-abt-box .gray-box {
    padding: 10px;
  }
}
.new-abt-box h3 {
  width: 50%;
  text-transform: uppercase;
  margin-top: 40px;
}
@media (max-width: 700px) {
  .new-abt-box h3 {
    margin: 10px;
  }
}
.new-abt-box p {
  width: 50%;
}
@media (max-width: 700px) {
  .new-abt-box p {
    margin: 10px;
  }
}
.new-abt-box .box1-img {
  position: absolute;
  top: 161px;
  transform: translate(-50%, -50%) scaleX(-1);
  left: 340px;
  width: 600px;
}
@media (max-width: 1000px) {
  .new-abt-box .box1-img {
    left: 90%;
  }
}
.new-abt-box .box2-img {
  position: absolute;
  top: 171px;
  transform: translate(-50%, -50%) rotate(21deg);
  left: 367px;
  width: 358px;
}
@media (max-width: 1000px) {
  .new-abt-box .box2-img {
    left: 98%;
  }
}
.new-abt-box .box2 p {
  width: 70%;
}
.new-abt-box .box2 h3 {
  margin-top: 20px;
}
.new-abt-box .box3 h3 {
  margin-top: 70px;
  width: 70%;
}
.new-abt-box .box3 p {
  width: 70%;
}
@media (max-width: 1000px) {
  .new-abt-box .box3 p {
    width: 60%;
  }
}
.new-abt-box .box3 .box3-img {
  position: absolute;
  top: 171px;
  transform: translate(-50%, -50%) rotate(-21deg);
  left: 264px;
  width: 428px;
}
@media (max-width: 1000px) {
  .new-abt-box .box3 .box3-img {
    left: 70%;
  }
}
.new-abt-box .mid-img {
  width: 150px;
  display: flex;
  margin: auto;
}
.new-abt-box.four-grid .gray-box {
  padding-top: 0;
  height: auto;
}
.new-abt-box.four-grid h3 {
  margin-top: 0;
  width: 100%;
}
.new-abt-box.four-grid p {
  margin-top: 0;
  width: 100%;
}

.new-se {
  height: 500px;
  margin: 90px auto;
  overflow: hidden;
  grid-gap: 15px;
}
@media (max-width: 1200px) {
  .new-se {
    height: auto;
  }
}
.new-se .se-left p {
  margin-bottom: 6px;
}
@media (max-width: 1200px) {
  .new-se .se-left p {
    margin-bottom: 15px;
  }
}
.new-se .se-left .bordered-btn {
  color: black;
}
.new-se .se-left .sec-img {
  position: relative;
}
.new-se .se-left .circle2 {
  position: absolute;
  z-index: -1;
  top: -93px;
  right: 33px;
}
@media (max-width: 500px) {
  .new-se .se-left .circle2 {
    display: none;
  }
}
.new-se .se-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}
@media (max-width: 1000px) {
  .new-se .se-right {
    grid-template-columns: 1fr;
  }
}
.new-se .se-right .right-right {
  height: 500px;
}
@media (max-width: 1000px) {
  .new-se .se-right .right-right {
    height: auto;
  }
}
.new-se .se-right .right-right img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .new-se .se-right .right-right img {
    height: auto;
  }
}
.new-se .se-right .right-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.new-se .se-right .right-left .right-left-top {
  flex: 1;
  background: #EAEEF1;
  border-radius: 5px;
  padding: 20px;
}
.new-se .se-right .right-left .right-left-top h2 {
  font-size: 14px;
}
.new-se .se-right .right-left .right-left-top h2 i {
  color: #ED3163;
  margin-right: 10px;
}
.new-se .se-right .right-left .right-left-bottom {
  flex: 1;
}

body.dark-mode .new-se .se-left .bordered-btn {
  color: white;
}

body.dark-mode .new-se .se-right .right-left .right-left-top {
  background: #1a1d3a;
}

.responsive-banner {
  position: relative;
  width: 100%;
  height: auto;
}

.banner-img {
  width: 100%;
  height: auto;
  display: none;
}

/* Show desktop image on screens wider than 768px */
@media (min-width: 700px) {
  .desktop-banner {
    display: block;
  }
}
/* Show mobile image on screens smaller than 768px */
@media (max-width: 700px) {
  .mobile-banner {
    display: block;
  }
}
.b-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.b-text img {
  width: 250px;
}
@media (max-width: 890px) {
  .b-text img {
    width: 150px;
  }
}
.b-text h1 {
  text-transform: capitalize;
}
@media (max-width: 900px) {
  .b-text h1 {
    font-size: 25px;
  }
}
.b-text p {
  width: 50%;
  margin-top: 20px;
}
@media (max-width: 890px) {
  .b-text p {
    font-size: 14px;
    margin-top: 5px;
  }
}
@media (max-width: 700px) {
  .b-text p {
    width: 95%;
    margin-top: 10px;
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .b-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 132px;
    text-align: center;
  }
}

.mr-top-50 {
  margin-top: 50px;
}

.detail-container {
  max-width: 750px;
}

@media (max-width: 1000px) {
  .detail-container {
    max-width: 90%;
  }
}
.detail-container h1 {
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .detail-container h1 {
    font-size: 20px;
  }
}

.detail-container p {
  margin-bottom: 20px;
}

.banner-mob-no-img {
  text-align: center;
}
@media (min-width: 700px) {
  .banner-mob-no-img {
    display: none;
  }
}
@media (max-width: 700px) {
  .banner-mob-no-img {
    text-align: center;
    display: block;
  }
}

.faq {
  margin: 40px auto;
}

.faq-item {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 20px;
}

.faq-question {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 10px 0;
  outline: none;
  color: #2a325d;
  font-weight: 503;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.faq-answer.open {
  max-height: 325px;
  padding: 10px 0;
}

.cbi-banner {
  background: #ED3163;
  width: 100%;
}
.cbi-banner .wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  padding: 50px 0;
}
@media (max-width: 1000px) {
  .cbi-banner .wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.cbi-banner img {
  width: 370px;
}
@media (max-width: 1000px) {
  .cbi-banner img {
    margin: auto;
    order: 1;
  }
}
@media (max-width: 500px) {
  .cbi-banner img {
    width: 80%;
  }
}
.cbi-banner h1 {
  color: white;
  display: flex;
  align-self: center;
}
@media (max-width: 1000px) {
  .cbi-banner h1 {
    text-align: center;
    font-size: 20px;
  }
}

.cbiimg {
  width: 40%;
  margin: auto;
  display: flex;
  margin-top: 70px;
  margin-bottom: 70px;
}
@media (max-width: 500px) {
  .cbiimg {
    width: 90%;
  }
}

@media (max-width: 700px) {
    .banner-desktop-only {
        display: none;
    }
}

@media (min-width: 700px) {
    .banner-mob-img-mobile {
        display: none;
    }
}


