@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Varela+Round&display=swap");

:root {
  --orange: #d66e0c;
  /* --primary-index-color: #143e68; */
  --primary-index-color: #004487;
  --secondry-index-color: #009588;
}

.empty {
  height: 82px;
}

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

img {
  max-width: 100%;
}

a {
  color: rgb(0, 38, 115);
  text-decoration: none;
}

body {
  font-family: "Playfair", sans-serif;
  font-size: 13px;
  background-color: #fff;
  color: #000;
  /* background-color: #357abd; */
  min-height: 100vh;
}

header {
  font-size: 13px;
  height: auto;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}

.content {
  height: 1000px;
}

.navbar-custom {
  padding: 0;
  background: transparent;
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 999;
  /* overflow: hidden; */
}

.navbar-content {
  background: #fff;
  backdrop-filter: blur(10px);
  border-radius: 50px;
  margin: 12px 20px;
  padding: 19px 24px;
  position: relative;

  /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2c3e50 !important;
  font-weight: 600;
  font-size: 1.3rem;
}

.logo-img {
  height: 45px;
  width: auto;
  margin-right: 6px;
}

.brand-text {
  padding-top: 7px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-main {
  color: #2c3e50;
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  font-style: normal;
  color: var(--primary-index-color);
}
.kt {
  display: inline;
  color: var(--secondry-index-color);
}
.brand-tagline {
  color: var(--secondry-index-color);
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  word-spacing: 5px;
  font-style: normal;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2c3e50 !important;
  font-weight: 600;
  font-size: 1.3rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  background: linear-gradient(45deg, #4a90e2, #2ecc71);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  color: #2c3e50;
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  font-style: normal;
  color: var(--primary-index-color);

  padding: 8px 20px !important;
  padding-top: 10px !important;
  margin: 0 4px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-link:hover {
  /* background-color: rgba(74, 144, 226, 0.1); */
  /* color: #4a90e2 !important; */
  color: var(--secondry-index-color);
  transform: translateY(0px) !important;
}

/* .dropdown-toggle::after {
  margin-left: 8px;
  transition: transform 0.3s ease;
} */
.dropdown-toggle::after {
  display: none !important; /* Hide default arrow completely */
}

.dropdown-toggle {
  position: relative;
}

.custom-dropdown-icon {
  width: 16px;
  height: 9px;
  margin-left: 8px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown-toggle[aria-expanded="true"] .custom-dropdown-icon {
  transform: rotate(180deg);
}
.dropdown:hover .dropdown-menu,
.dropdown .dropdown-menu:hover,
dropdown-toggle:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu {
  justify-content: center !important;
  border: none;
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.15); */
  /* margin-top: 6px; */
  margin-left: 10px;
  padding: 8px;
  background: fff;
  /* backdrop-filter: blur(10px); */
  min-width: 160px;
}

.dropdown-item {
  /* padding: 10px 20px; */
  color: #2c3e50;
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  font-style: normal;
  color: var(--primary-index-color);
  /* margin: 2px 8px; */
  transition: all 0.3s ease;
  display: flex;
  justify-content: center !important;
}

.btn-login {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  font-style: normal;
  background: var(--primary-index-color);
  color: #fff !important;
  border: none;
  padding: 5px 12px;
  border-radius: 25px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid var(--primary-index-color);
  /* transition: all 0.3s ease; */
  /* box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3); */
  margin-left: 8px;
}

.btn-login:hover {
  background: #fff;
  border: 1px solid var(--primary-index-color);
  color: var(--primary-index-color) !important;
  /* transform: translateY(-2px); */
  /* box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4); */
  /* background: linear-gradient(45deg, #357abd, #2e6ba8); */
}

.navbar-toggler {
  border: none;
  scale: 1.2;
  /* padding: 4px 8px; */
  /* border-radius: 8px; */
  /* background: rgba(0, 0, 0, 0.1); */
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
}

/* Hide default body content for clean navbar display */
.demo-text {
  display: none;
}

.navbar-collapse.collapsing {
  transition: none !important;
}

.hero-container {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 6%;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    135deg,
    rgba(240, 244, 248, 0.85) 0%,
    rgba(219, 234, 254, 0.75) 100%
  ); */
  z-index: -1;
}

.content {
  max-width: 600px;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.main-title {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 81px;
  letter-spacing: 0%;
  font-style: normal;
  /* margin-bottom: 0.1rem; */
  color: var(--secondry-index-color);
}

.sub-title {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 81px;
  letter-spacing: 0%;
  font-style: normal;
  color: var(--primary-index-color);
}

.description {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0%;
  font-style: normal;
  color: var(--secondry-index-color);
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  font-style: normal;
  color: #fff;
  background-color: var(--primary-index-color);
  border: 1px solid var(--primary-index-color);
}

.btn-primary:hover {
  color: var(--primary-index-color);
  background-color: #fff;
  border: 1px solid var(--primary-index-color);
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:active {
  color: var(--primary-index-color);
  background-color: #fff;
  border: 1px solid var(--primary-index-color);
}

.btn-secondary {
  background-color: transparent;
  color: #1e40af;
  border: 2px solid #1e40af;
}

.btn-secondary:hover {
  background-color: #1e40af;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.2);
}

/* @keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

.display-small-none {
  display: block;
}
.display-lg-none {
  display: none;
}
@media (max-width: 1200px) {
  .display-lg-none {
    display: block;
  }
  .display-small-none {
    display: none;
  }
  .navbar-content {
    background: transparent;
    backdrop-filter: none;
    /* backdrop-filter: blur(10px);  */
  }

  .navbar-collapse {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
  .navbar-collapse {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-link {
    padding: 12px 0 !important;
    margin: 4px 0;
    text-align: center;
  }

  .btn-login {
    margin-top: 10px;
    margin-left: 0;
    display: inline-block;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .navbar-content {
    margin: 8px 15px;
    padding: 19px 20px;
  }

  .navbar-collapse {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-link {
    padding: 12px 0 !important;
    margin: 4px 0;
    text-align: center;
  }

  .btn-login {
    margin-top: 10px;
    margin-left: 0;
    display: inline-block;
    text-align: center;
  }

  .dropdown-menu {
    position: static !important;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
  }

  .dropdown-item {
    padding: 8px 20px;
    border-radius: 0;
  }
}

@media (max-width: 650px) {
  .navbar-content {
    margin: 8px 0px;
    padding: 15px 20px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-container {
    height: 100vh;
    min-height: 500px;
    padding: 0 4%;
    /* text-align: center; */
    /* justify-content: center; */
  }

  .content {
    /* text-align: center !important; */
    max-width: 100%;
  }

  .main-title {
    font-size: 50px;
    line-height: 48px;
    /* margin-bottom: 0.5rem; */
  }

  .sub-title {
    font-size: 50px;
    line-height: 48px;
  }

  .description {
    font-size: 20px;
    line-height: 28px;
  }

  .cta-buttons {
    /* flex-direction: column; */
    align-items: center;
    gap: 0.8rem;
  }

  .btn {
    width: 200px;
    text-align: center;
  }
  .hero-container .btn-primary {
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    padding: 1rem 2rem;
  }
  .hero-container .btn {
    width: fit-content;
  }
}

/* For mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .footer .newsletter-input {
    max-width: 360px;
  }
  .main-title {
    font-size: 30px;
    line-height: 38px;
  }
  .sub-title {
    font-size: 30px;
    line-height: 38px;
  }
  .description {
    font-size: 16px;
    line-height: 22px;
  }
}

/* For tablets in landscape (min-width: 769px and max-width: 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .main-title {
    font-size: 60px;
    line-height: 58px;
  }
  .sub-title {
    font-size: 60px;
    line-height: 58px;
  }
  .description {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 1290px) and (min-width: 1000px) and (max-height: 850px) {
  .hero-container .content {
   margin-top: 10rem;

}
}

/* -------------- */
/* Footer Section */
/* -------------- */

.footer .footer-section {
  background: url("../images/footer_item.png") no-repeat center center/cover;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  color: white;
}

.footer .footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/footer.png") no-repeat center center/cover;
  /* background: 
                radial-gradient(ellipse at 20% 80%, rgba(6, 182, 212, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(34, 197, 94, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 40% 40%, rgba(14, 165, 233, 0.2) 0%, transparent 50%); */
}

.footer .curved-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/images/footer.png") no-repeat center center/cover;
  /* background: 
                radial-gradient(ellipse 150% 100% at 50% 120%, transparent 40%, rgba(6, 95, 70, 0.1) 41%, rgba(6, 95, 70, 0.1) 58%, transparent 60%),
                radial-gradient(ellipse 150% 100% at 80% 90%, transparent 40%, rgba(20, 184, 166, 0.15) 41%, rgba(20, 184, 166, 0.15) 58%, transparent 60%),
                radial-gradient(ellipse 150% 100% at 20% 70%, transparent 40%, rgba(8, 145, 178, 0.1) 41%, rgba(8, 145, 178, 0.1) 58%, transparent 60%); */
}

.footer .content-wrapper {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.footer .logo-section {
  margin-bottom: 50px;
}

.footer .logo {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer .logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6);
  border-radius: 12px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.footer .logo-section .logo-img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.footer .logo-section .brand-main {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 60px;
  color: #fff;
  line-height: 100%;
  /* font-weight: bold; */
}

.footer .logo-section .brand-tagline {
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  width: 100%;
  text-align: center;
  letter-spacing: 0.3rem;
  color: #fff;
  opacity: 0.85;
}

.footer .tagline {
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.footer .description {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  line-height: 34px;
  opacity: 0.9;
  max-width: 500px;
}

.footer .footer-columns {
  margin-bottom: 60px;
}

.footer .footer-column h5 {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  font-style: normal;

  transition: all 0.3s ease;
  margin-bottom: 15px;
  color: white;
}

.footer .footer-column h5:hover {
  color: var(--primary-index-color);
}

.footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-column ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}
/* Add this to your CSS file */
.footer-column ul li::before {
  content: ".";
  position: absolute;
  left: 0;
  top: -5px;
  /* color: #143e68; */
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}
.footer-column.last-item ul li {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0%;
  font-style: normal;
  margin-bottom: 12px;
  position: relative;
  padding-left: 0px;
}
.footer-column.last-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  /* color: #143e68; */
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

.footer .footer-column ul li a,
.footer .footer-column ul li {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  /* word-spacing: 5px; */
  font-style: normal;

  color: #fff;
  text-decoration: none;
  /* font-size: 1rem; */
  transition: all 0.3s ease;
}

.footer .footer-column ul li a:hover {
  color: #fff;
  /* transform: translateX(5px); */
}

.footer .newsletter-section {
  margin-bottom: 32px;
}

.footer .newsletter-title {
  font-family: "verela Round", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 56px;
  /* margin-bottom: 10px; */
}

.footer .newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 400px;
}

.footer .newsletter-input {
  width: 400px;
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #fff;
  border-radius: 50px;
  background: transparent;
  color: white;
  height: 40px;
  font-size: 1rem;
  /* backdrop-filter: blur(10px); */
}

.footer .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer .newsletter-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.footer .newsletter-btn {
  font-family: "Quicksand", sans-serif;
  padding: 0px 30px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50px;
  color: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* backdrop-filter: blur(10px); */
}

.footer .newsletter-btn:hover {
  background: var(--primary-index-color);
  border-color: 1px solid #fff;
  /* transform: translateY(-2px); */
}

.footer .social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  /* background: rgba(255, 255, 255, 0.1); */
  /* border: 2px solid rgba(255, 255, 255, 0.2); */
  /* border-radius: 12px; */
  /* color: white; */
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  /* backdrop-filter: blur(10px); */
}

.footer .social-link:hover {
  /* background: rgba(255, 255, 255, 0.2); */
  /* border-color: rgba(255, 255, 255, 0.4); */
  /* transform: translateY(-3px); */
  color: var(--primary-index-color);
}
.small-container {
  padding: 0 2%;
}

.footer .copyright {
  font-family: "varela Round", sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  opacity: 0.7;
  text-align: start;
  padding-top: 30px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

.footer .login-btn {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  font-style: normal;

  background: transparent;
  border: 1px solid #fff;
  border-radius: 50px;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  /* font-weight: 500; */
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: inline-block;
  margin-top: 15px;
}

.footer .login-btn:hover {
  background: var(--primary-index-color);
  color: white;
  /* transform: translateY(-2px); */
}

.footer .hide-on-mobile {
  display: block;
}

.footer .hide-on-lg {
  display: none;
}

.footer .hide-on-flex {
  display: none !important;
}
@media (max-width: 768px) {
  .footer .copyright {
    font-family: "varela Round", sans-serif;
    color: #fff;
    font-weight: 400;
    font-size: 10px;
    line-height: 18px;
    opacity: 0.7;
    text-align: start;
    padding-top: 30px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
  }

  .footer .hide-on-mobile {
    display: none;
  }
  .footer .hide-on-lg {
    display: block;
  }
  .footer .hide-on-flex {
    display: flex !important;
  }

  .footer .section-title {
    position: relative;
    text-align: center;
    color: #fff;
    font-family: "Varela Round", sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /* margin: 20px 0; */
  }
  .footer .small-container {
    padding: 0 0%;
  }
  .footer .section-title::before,
  .footer .section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    border-top: 1px solid #ccc;
  }
  .footer .small-container2 {
    padding: 0 2%;
  }

  .footer .logo-section {
    scale: 0.5;
    text-align: left;
  }

  .footer .section-title::before {
    left: 0;
  }
  .footer .platform-item {
    color: #fff;
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125.15%; /* 20.024px */
    padding-top: 1.5rem;
  }

  .footer .section-title::after {
    right: 0;
  }
  .footer .logo-section .brand-main {
    font-weight: 400;
    font-size: 45px;
    color: #fff;
    line-height: 100%;
    /* font-weight: bold; */
  }

  .footer .logo-section .brand-tagline {
    font-size: 1rem;
    width: 100%;
    text-align: center;
    color: #fff;
    opacity: 0.85;
  }

  .footer .footer-column ul li {
    padding-left: 10px;
  }
  .footer-column ul li::before {
    content: "";
    font-size: 14px;
    left: 0;
  }
  /* .footer .newsletter-form {
    flex-direction: column;
  } */

  .footer .social-links {
    justify-content: start;
  }

  .footer .logo {
    font-size: 2rem;
    justify-content: center;
    text-align: center;
  }

  .footer .description {
    text-align: center;
    margin: 0 auto;
  }

  .footer .tagline {
    text-align: center;
  }

  .footer .description {
    text-align: left;
    position: relative;
    left: -34px;
    font-size: 26px;
  }

  .footer .logo-section {
    margin-bottom: -50px;
  }
  .footer .right-section {
    scale: 0.7;
    padding-top: 6.5rem;
  }
}

@media (max-width: 600px) {
  .footer .logo-section {
    scale: 0.4;
    text-align: left;
  }
  .footer .section-title::before,
  .footer .section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35%;
    border-top: 1px solid #ccc;
  }
}
.footer .brand-text {
  position: relative;
  top: -18px;
}

/* -------------- */
/* Accelerating section */
/* -------------- */

.accelating-wrapper .hero-section {
  background: #fff;
  min-height: 24vh;
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.accelating-wrapper.platform-service .hero-section {
  min-height: 23vh;
}

.accelating-wrapper .hero-title {
  font-family: "varela Round", sans-serif;
  color: var(--secondry-index-color);
  font-size: 56px;
  font-weight: 400;
  line-height: 64px;
  margin-bottom: 2rem;
}

.accelating-wrapper .hero-description {
  font-family: "quicksand", sans-serif;
  color: var(--primary-index-color);
  font-size: 19px;
  font-weight: 400;
  line-height: 32px;
  /* max-width: 800px; */
}

.accelating-wrapper .highlight-text {
  color: #2c5aa0;
  font-weghti: 500;
}

@media (max-width: 768px) {
  .accelating-wrapper .hero-title {
    color: #009588;
    font-family: "Varela Round", sans-serif;
    font-size: 37px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 205% */
    margin-bottom: 1rem;
  }

  .accelating-wrapper .hero-description {
    font-size: 12px;
  }

  .accelating-wrapper .hero-section {
    padding: 40px 0;
  }
}
/* Fix the Issues*/

.fix-hero{
  color: #ffffff!important;
}

.btn-primary-fix {
    background-color: transparent!important;
    border: 3px solid #fff!important;
}

.btn-primary-fix:hover {
    /* Add your desired styling for the hover state here */
    background-color: #0056b3!important; /* darker shade for hover */
    color: #ffffff!important; /* text color */
    border-color: #004085!important; /* darker border color for hover */
    /* Add other properties if needed, like transform, box-shadow, etc. */
}
.white-text{
  color: #ffffff;
}

.footer-section-fix {
    position: relative;
    overflow: hidden;
    min-height: 40%;
    color: white;
}

/* Footer 2 Here */
.footer2 {
  background-color: #004487;
  color: white;
  font-family: Arial, sans-serif;
}

.footer3 {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg, #04394d 0%, #0a616d 100%);
  position: relative;
}


.wave {
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  left: -50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,255,255,0.15), transparent 70%);
  opacity: 0.5;
  animation: animateWave 10s linear infinite;
  transform: scaleY(1.5);
}

/* Add multiple waves with slight variations for depth */
.wave:nth-child(2) {
  animation-delay: 2s;
  opacity: 0.4;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,200,255,0.1), transparent 70%);
}
.wave:nth-child(3) {
  animation-delay: 4s;
  opacity: 0.3;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,150,255,0.08), transparent 70%);
}

@keyframes animateWave {
  0% { transform: translateX(0) scaleY(1.5); }
  100% { transform: translateX(-50%) scaleY(1.5); }
}


/* Footer 2 Here */
.footer2 {
  background-color: #02625a;
  color: #ffffff;
  padding-top: 10px;
}

.footer2-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  max-width: 1200px;
  margin: auto;
  padding: 20px 20px;
}

.footer2-column {
  flex: 1 1 150px;
  min-width: 250px;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: right;
}

.footer2-logo {
  width: clamp(50px, 8vw, 70px);
  height: auto;
  margin-bottom: 10px;
}

.footer2-title {
  font-size: 1.5rem;
  margin: 0;
}

.footer2-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin: 5px 0;
  font-size: 1rem;
}

.footer2-social img {
  width: 28px;
  height: 28px;
  margin-top: 10px;
}

.footer2-heading {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer2-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer2-list li {
  margin-bottom: 8px;
}

.footer2-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer2-bottom {
  text-align: center;
  padding: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

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

  .footer2-column {
    width: 100%;
  }
}


.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Footer 2 Here */