* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}


@font-face {
  font-family: "DMSans-Medium";
  src: url("../fonts/dm-sans/DMSans-Medium.ttf");
}

@font-face {
  font-family: "DMSans-SemiBold";
  src: url("../fonts/dm-sans/DMSans-SemiBold.ttf");
}

@font-face {
  font-family: "DMSans-Bold";
  src: url("../fonts/dm-sans/DMSans-Bold.ttf");
}

@font-face {
  font-family: "DMSans-Regular";
  src: url("../fonts/dm-sans/DMSans-Regular.ttf");
}

body {
  font-family: "DMSans-Regular";
  transition: 3s infinite ease-in-out;
  -webkit-transition: 3s infinite ease-in-out;
  -moz-transition: 3s infinite ease-in-out;
  -ms-transition: 3s infinite ease-in-out;
  -o-transition: 3s infinite ease-in-out;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1240px;
}

:root {
  --black: #000000;
  --bright-pink: #ff0087;
  --card-shadow: 0px 6px 12px rgba(0, 0, 0, 0.16);
  --gradient-blue: transparent radial-gradient(closest-side at 100% 0%, #029bec 0%, #00027b 100%);
  --light-blue: #029bec;
  --light-gray: #f2f2f2;
  --white: #ffffff;
  --off-white: #ffffffbd;
  --radius-12: 12px;
  --radius-6: 6px;
  --yellow: #f8cd1e;
  --dark-blue: #20418e;
  --secondary: #555;
  --border-light: #d5d5d52b;
}

.header-main {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}

.header-info-row {
  background-color: var(--yellow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  overflow: hidden;
  max-height: 50px;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
  flex-wrap: wrap;
}

.scrolled .header-info-row {
  max-height: 0;
  padding: 0;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
}

.header-logo-link {
  display: flex;
  align-items: center;
}

.header-info-box {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.header-info-text {
  font-size: 14px;
  line-height: 18px;
  color: var(--dark-blue);
  font-family: "DMSans-Regular";
  will-change: transform;
  transform: translateX(0);
  white-space: nowrap;
  -webkit-animation: marquee 10s linear infinite;
  animation: marquee 10s linear infinite;
}

.header-info-text a {
  color: var(--dark-blue);
}

.header-nav-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header-row {
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px 15px 20px;
  /* margin: 0px 200px 0px; */
  /* border-radius: 0px 0px 15px 15px;
  -webkit-border-radius: 0px 0px 15px 15px;
  -moz-border-radius: 0px 0px 15px 15px;
  -ms-border-radius: 0px 0px 15px 15px;
  -o-border-radius: 0px 0px 15px 15px; */
  box-shadow: 0 0 30px #0000001c;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header-nav-item.active {
  position: relative;
}

.header-nav-item {
  position: relative;
  cursor: pointer;
}

.header-nav-link {
  color: var(--dark-blue);
  font-size: 16px;
  line-height: 20px;
  font-family: "DMSans-SemiBold";
  position: relative;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
}

.header-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--dark-blue);
  transition: width 0.3s ease-in-out;
}

.header-nav-item :hover .header-nav-link::after {
  width: 100%;
}

.header-nav-item::after {
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  width: 100%;
  height: 50px;
  z-index: -1;
  background-color: transparent;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.header-nav-link:hover {
  color: var(--dark-blue);
}

.header-nav-link:hover::after {
  width: 100%;
  left: 0;
}


.submenu {
  position: absolute;
  background: white;
  list-style: none;
  padding: 10px;
  margin: 0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 5px 5px;
  width: max-content;
  overflow: hidden;
  display: none;
  z-index: 9;
  transform: translateY(-10px);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  -webkit-border-radius: 0px 0px 5px 5px;
  -moz-border-radius: 0px 0px 5px 5px;
  -ms-border-radius: 0px 0px 5px 5px;
  -o-border-radius: 0px 0px 5px 5px;
}

.submenu li {
  padding: 5px 10px;
}

.submenu li a {
  color: var(--dark-blue);
  text-decoration: none;
  display: block;
}

/* Show submenu when active */
.header-nav-item.submenu-active .submenu {
  display: block;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  padding-top: 30px;
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-logo {
  height: 40px;
  width: 100px;
  object-fit: contain;
  opacity: 0;
  animation: logoFadeIn 1s ease-out forwards;
}

.header-logo-text {
  color: var(--dark-blue);
  font-size: 20px;
  line-height: 24px;
  font-family: "DMSans-SemiBold";
}

.header-logo-sub-text {
  color: var(--dark-blue);
  font-size: 14px;
  line-height: 18px;
  font-family: "DMSans-SemiBold";
}

.header-logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger-menu {
  display: none;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}

.burger-icon {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.social-media-main {
  position: fixed;
  left: 0;
  bottom: 50px;
  z-index: 99;
}

.header-btn-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes rotateIn {
  from {
    transform: rotate(-180deg) scale(0);
    opacity: 0;
  }

  to {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}

.social-media-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--white);
  padding: 10px;
  border-radius: 0px 10px 10px 0px;
  -webkit-border-radius: 0px 10px 10px 0px;
  -moz-border-radius: 0px 10px 10px 0px;
  -ms-border-radius: 0px 10px 10px 0px;
  -o-border-radius: 0px 10px 10px 0px;
}

.social-media-box {
  background-color: var(--dark-blue);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotateIn 0.6s ease-out;
  cursor: pointer;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  }

  50% {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  }
}

.social-media-box:hover {
  animation: pulse 0.6s ease-in-out;
}

.social-media-icon {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.footer-main {
  background-color: var(--dark-blue);
  padding: 50px 0 30px;
  background-image: url("../images/png/footer-bg.png");
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
}


.footer-heading {
  color: var(--yellow);
  font-size: 20px;
  line-height: 24px;
  font-family: "DMSans-SemiBold";
  margin-bottom: 30px;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 50px;
  background-color: var(--yellow);
  left: 0;
  bottom: -10px;
}

.footer-para {
  color: var(--off-white);
  font-size: 14px;
  line-height: 24px;
  font-family: "DMSans-Regular";
  max-width: 350px;
}

.footer-info-list-link {
  position: relative;
  color: var(--off-white);
  font-size: 14px;
  line-height: 18px;
  font-family: "DMSans-Regular";
  text-decoration: none;
  gap: 15px;
  display: flex;
  align-items: center;
}

.footer-info-list-item {
  margin-bottom: 10px;
}

.footer-list-link {
  position: relative;
  color: var(--off-white);
  font-size: 14px;
  line-height: 18px;
  font-family: "DMSans-Regular";
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-list-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--off-white);
  transition: width 0.3s ease-in-out;
}

.footer-list-link:hover {
  color: var(--light-gray);
}

.footer-list-link:hover::after {
  width: 100%;
}

.footer-list-item {
  margin-bottom: 10px;
}

.footer-copyright-box {
  padding: 30px 0px 0px;
  border-top: 1px solid var(--border-light);
}

.footer-copyright-text {
  color: var(--yellow);
  font-size: 14px;
  line-height: 18px;
  font-family: "DMSans-Medium";
  text-align: center;
}

.footer-info-icon {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.footer-row {
  margin-bottom: 50px;
  row-gap: 30px;
}

.hero-section {
  padding-top: 164px;
}

.hero-content-main {
  margin: auto;
  /* padding-top: 266px; */
  /* padding-top: 164px; */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 600px;
  /* position: relative;
  z-index: 99; */
  margin-left: 50%;
}

/* .hero-content-main::after {
  content: "";
  height: 100%;
  width: 60%;
  background-color: var(--dark-blue);
  position: absolute;
  left: 0;
  top: 0px;
  z-index: -1;
  border-radius: 0px 0px 400px 0px;
  -webkit-border-radius: 0px 0px 400px 0px;
  -moz-border-radius: 0px 0px 400px 0px;
  -ms-border-radius: 0px 0px 400px 0px;
  -o-border-radius: 0px 0px 400px 0px;
  background-image: linear-gradient(45deg, rgb(32 65 142 / 10%), #20418e);
} */
.hero-banner-sub-heading::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 60px;
  border-radius: 10px;
  background-color: var(--yellow);
  left: 0;
  top: -20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.hero-banner-sub-heading {
  color: var(--yellow);
  /* font-size: 30px;
  line-height: 40px; */
  font-size: 40px;
  line-height: 54px;
  font-family: "DMSans-Bold";
  margin-top: 40px;
  position: relative;
}

.hero-banner-heading {
  color: var(--white);
  font-size: 47px;
  line-height: 60px;
  font-family: "DMSans-SemiBold";
  text-align: left;
}

.hero-btn-box {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.hero-btn-box .btn-primary {
  background-color: var(--white);
  color: var(--dark-blue);
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-in-out forwards .5s;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px)
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-banner-para {
  color: var(--white);
  font-size: 18px;
  line-height: 30px;
  font-family: "DMSans-Regular";
  max-width: 800px;
  margin: auto;
  text-align: center;
}


.hero-banner {
  height: 600px;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-in-out, background-size 8s ease-in-out;
  background-repeat: no-repeat;
}

/* .owl-item.active .hero-banner {
  background-size: 100%;
  transform: scale(1.05);
} */

/* .owl-nav img {
  transition: transform 0.3s ease-in-out;
}

.owl-nav img:hover {
  transform: scale(1.2);
} */

@keyframes floatButton {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.btn-secondary {
  background-color: var(--dark-blue);
  color: var(--white);
  font-size: 18px;
  line-height: 22px;
  font-family: "DMSans-Regular";
  padding: 12px 30px;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
  border: 0;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--dark-blue);
}

.btn-primary {
  background-color: var(--yellow);
  color: var(--dark-blue);
  font-size: 18px;
  line-height: 22px;
  font-family: "DMSans-Medium";
  padding: 12px 30px;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  color: var(--white);
}

/* .hero-carousel .owl-nav {
  position: absolute;
  top: 50%;
} */

.hero-carousel .owl-nav .owl-prev,
.hero-carousel .owl-nav .owl-next {
  position: absolute;
}

.hero-carousel .owl-nav .owl-prev {
  position: absolute;
  right: 5%;
  bottom: 10%;
}

.hero-carousel .owl-nav .owl-next {
  position: absolute;
  right: 2%;
  bottom: 10%;
}

.hero-carousel .owl-nav img {
  height: 30px;
  width: 30px;
}

/* .hero-carousel .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  position: absolute;
  right: 5%;
  bottom: 5%;
  z-index: 99;
}

.hero-carousel .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background-color: var(--off-white);
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.hero-carousel .owl-dot.active-dot {
  width: 30px;
  border-radius: 20px;
  background-color: var(--white);
  transform: scale(1.2);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
} */

.about-para {
  color: var(--secondary);
  font-size: 16px;
  line-height: 35px;
  font-family: "DMSans-Regular";
  margin-bottom: 20px;
}

/* .about-image-box {
  position: relative;
} */

/* .about-image-box::after {
  content: "";
  position: absolute;
  top: -12px;
  right: -15px;
  width: 16%;
  height: 16%;
  background-color: var(--dark-blue);
  z-index: -1;
}

.about-image-box::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: -12px;
  width: 16%;
  height: 16%;
  background-color: var(--dark-blue);
  z-index: -1;
} */

.about-bold {
  color: var(--dark-blue);
}

.about-content-box {
  margin-left: 30px;
}

.about-content-box .about-heading {
  text-align: left;
  margin: 20px 0 20px;
}

.about-image {
  height: 450px;
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0px 50px 0px;
  /* animation: bounce 5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  -webkit-animation: bounce 5s cubic-bezier(0.25, 1, 0.5, 1) infinite; */
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.section-spacing {
  padding: 50px 0px;
  overflow: hidden;
}

.section-heading {
  text-align: center;
  position: relative;
  color: var(--dark-blue);
  font-size: 32px;
  line-height: 42px;
  font-family: "DMSans-SemiBold";
  text-shadow: 0 0 5px rgba(0, 0, 255, 0.6), 0 0 5px rgba(255, 255, 0, 0.6);
  /* animation: glow 1.5s infinite alternate; */
  max-width: max-content;
  margin: auto auto 50px;
}

.section-heading::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  border-radius: 20px;
  width: 50px;
  height: 6px;
  background: linear-gradient(90deg, yellow, yellow);
  background-size: 200% 100%;
  animation: wave-underline 2s linear infinite;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}


@keyframes wave-underline {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: 100% 0;
  }
}

.section-btn-box {
  display: flex;
  margin-top: 50px;
  align-items: center;
  justify-content: center;
}

.services-section {
  background-image: url("../images/png/service-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  background-attachment: fixed;
  padding: 50px 0px 100px;
}

.services-carousel .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin-top: 30px;
  left: 0;
  right: 0;
  bottom: -50px;
  z-index: 99;
}

.services-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: var(--dark-blue);
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.services-carousel .owl-dot.active-dot {
  width: 30px;
  border-radius: 20px;
  background-color: var(--yellow);
  transform: scale(1.2);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.services-list {
  padding: 0;
  margin: 0;
  list-style-type: disc;
}

.services-right-icon {
  height: 13px;
  width: 13px;
  object-fit: contain;
}

.services-list-item {
  color: var(--secondary);
  font-size: 15px;
  line-height: 22px;
  font-family: "DMSans-Regular";
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 48px;
}

.services-box {
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  /* box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1); */
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
  border: 1px solid transparent;
}

.services-box:hover {
  animation: gradient-border 5s infinite;
}

@keyframes gradient-border {
  0% {
    border: 1px solid var(--dark-blue);
  }

  25% {
    border: 1px solid var(--yellow);
  }

  50% {
    border: 1px solid var(--white);
  }

  75% {
    border: 1px solid var(--yellow);
  }

  100% {
    border: 1px solid var(--dark-blue);
  }
}

.services-image {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
  -webkit-transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
  -moz-transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
  -ms-transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
}

.services-image:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.services-heading {
  color: var(--dark-blue);
  font-size: 16px;
  line-height: 25px;
  font-family: "DMSans-SemiBold";
  transition: color 0.3s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  min-height: 28px;
}

.services-para {
  color: var(--secondary);
  font-size: 16px;
  line-height: 24px;
  font-family: "DMSans-Regular";
  margin-bottom: 10px;
}

.services-content-box {
  padding: 15px;
  position: relative;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services-icon-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-link {
  color: var(--dark-blue);
  font-size: 14px;
  line-height: 18px;
  font-family: "DMSans-Medium";
  position: relative;
  transition: color 0.3s ease-in-out;
  text-align: right;
}

@keyframes slideLeftRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

.services-more-icon {
  height: 13px;
  min-width: 13px;
  object-fit: contain;
  animation: slideLeftRight 1.5s infinite ease-in-out;
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  /*Hiddenbydefault*/
  background-color: var(--yellow);
  color: var(--dark-blue);
  border: none;
  padding: 10px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

#backToTop:hover {
  background-color: #0056b3;
}

.back-to-top-icon {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.numbers-section {
  background-color: var(--dark-blue);
}

.numbers-content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  border-right: 1px solid #ffffff40;
}

.numbers-content-box:last-child {
  border-right: none;
}

.numbers-content-number {
  color: var(--white);
  font-size: 60px;
  line-height: 48px;
  font-family: "DMSans-Bold";
}

.numbers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.numbers-heading {
  color: var(--white);
  margin-bottom: 85px;
}

.numbers-content-heading {
  color: var(--white);
  font-size: 20px;
  line-height: 28px;
  font-family: "DMSans-SemiBold";
  text-align: center;
}

.what-input-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.what-input {
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #dadada;
  font-size: 16px;
  line-height: 20px;
  font-family: "DMSans-Regular";
  color: var(--dark-blue);
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.what-heading {
  color: var(--white);
  font-size: 30px;
  line-height: 40px;
  font-family: "DMSans-SemiBold";
  text-align: center;
  margin-bottom: 30px;
}

.what-contact-row {
  row-gap: 30px;
}

.what-btn-main {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.what-content-heading {
  color: var(--dark-blue);
  font-size: 20px;
  line-height: 28px;
  font-family: "DMSans-SemiBold";
  text-align: center;
  margin: 0px 0px 30px;
}




.inner-page-banner-main {
  position: relative;
  background-image: linear-gradient(91deg, #0009, #0009), url(../images/jpg/banner3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-attachment: fixed;
  padding: 137px 0px;
  height: 500px;
  display: flex;
  align-items: flex-end;
}

.inner-page-wrapper {
  margin: -137px 0px 0px;
  padding: 137px 0px 0px;
}

.inner-page-banner-heading {
  color: var(--white);
  font-size: 35px;
  line-height: 45px;
  font-family: "DMSans-SemiBold";
  text-align: center;
  margin-bottom: 20px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.breadcrumb-list-link {
  color: var(--white);
  font-size: 16px;
  line-height: 20px;
  font-family: "DMSans-Regular";
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.contact-heading {
  color: var(--dark-blue);
  font-size: 30px;
  line-height: 40px;
  font-family: "DMSans-SemiBold";
  text-align: center;
}

.contact-para {
  color: var(--secondary);
  font-size: 18px;
  line-height: 35px;
  font-family: "DMSans-Regular";
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.contact-content-box {
  margin-bottom: 50px;
  padding-bottom: 50px;
}

.contact-info-box {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
  background-color: var(--white);
  padding: 30px;
  transition: 0.3s ease-in-out;
}

.contact-info-icon-box {
  background-color: var(--dark-blue);
  padding: 5px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  right: 0;
  left: 0;
  top: -30px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}

.contact-info-box:hover .contact-info-icon-box {
  background-color: var(--yellow);
}

.contact-info-icon {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.contact-info-heading {
  color: var(--dark-blue);
  font-size: 20px;
  line-height: 28px;
  font-family: "DMSans-SemiBold";
  margin-bottom: 10px;
  text-align: center;
}

.contact-info-para {
  color: var(--secondary);
  font-size: 16px;
  line-height: 24px;
  font-family: "DMSans-Regular";
  text-align: center;
}

.contact-main {
  padding-bottom: 0;
}

.about-mission-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-mission-card {
  margin-bottom: 20px;
  box-shadow: 0 0 30px #0000001c;
  background-color: var(--white);
  padding: 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.about-mission-icon {
  height: 100px;
  width: 100px;
  object-fit: contain;
}

.about-mission-heading {
  color: var(--dark-blue);
  font-size: 20px;
  line-height: 28px;
  font-family: "DMSans-SemiBold";
  margin-bottom: 10px;
}

.about-mission-para {
  color: var(--secondary);
  font-size: 16px;
  line-height: 24px;
  font-family: "DMSans-Regular";
}

.services-section-heading {
  color: var(--white);
}

.services-title {
  color: var(--dark-blue);
  font-size: 20px;
  line-height: 28px;
  font-family: "DMSans-SemiBold";
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--dark-blue);
  max-width: max-content;
}

.services-link-li,
.services-links-flex ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.service-links-text,
.services-link-li a,
.services-links-flex ul li a {
  color: var(--secondary);
  font-size: 16px;
  line-height: 24px;
  font-family: "DMSans-Regular";
}

.service-links-icon {
  height: 25px;
  width: 25px;
  object-fit: contain;
}

.services-links-flex .contact-info-heading {
  text-align: left;
}

.services-links-flex .services-links-ul,
.services-links-flex ul {
  margin-bottom: 30px;
}

.services-links-flex ul li:hover a {
  color: #20418e;
}

.services-links-flex ul .sub-li {
  display: block;
}

.contact-info-sub-heading {
  color: var(--dark-blue);
  font-size: 18px;
  line-height: 24px;
  font-family: "DMSans-Regular";
  margin-bottom: 10px;
}

.services-links-flex ul li.sub-li:hover a {
  color: var(--secondary);
}

.services-links-flex ul li.sub-li .sub-inner-ul li:hover a {
  color: #20418e;
}

.header-btn-box {
  display: none;
}

/* .scrolled .header-row {
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.scrolled .header-main {
  top: 20px;
  left: 10px;
  right: 10px;
} */


.cus-header-main {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-in-out;
  background-color: var(--white);
}

.cus-header-info-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cus-header-info-icon {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.cus-header-info-text {
  color: var(--black);
  font-size: 18px;
  line-height: 25px;
  font-family: "DMSans-Bold";
}

.cus-header-info-link {
  color: var(--secondary);
  font-size: 15px;
  line-height: 20px;
  font-family: "DMSans-Regular";
}

.cus-logo-box {
  background-color: var(--dark-blue);
  border-radius: 0px 0px 10px 10px;
  -webkit-border-radius: 0px 0px 10px 10px;
  -moz-border-radius: 0px 0px 10px 10px;
  -ms-border-radius: 0px 0px 10px 10px;
  -o-border-radius: 0px 0px 10px 10px;
  max-width: max-content;
  margin: auto;
}

/* .cus-logo {
  height: 127px;
  width: 100%;
  object-fit: contain;
} */

.cus-header-info-row {
  align-items: center;
  display: flex;
}

.cus-header-nav-row {
  background-color: var(--yellow);
  margin-top: 3px;
}


.cus-header-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cus-header-nav-item {
  position: relative;
  cursor: pointer;
  padding: 5px 55px;
  border-right: 1px solid #b9b9b9;
  border-left: 1px solid #b9b9b9;
}

.cus-header-nav-item:first-child {
  border-left: none;
}

.cus-header-nav-item:last-child {
  border-right: none;
}

.cus-header-nav-link {
  color: var(--dark-blue);
  font-size: 16px;
  line-height: 20px;
  font-family: "DMSans-Regular";
  text-decoration: none;
}



.cus-submenu {
  position: absolute;
  left: 0;
  background: white;
  list-style: none;
  padding: 10px;
  margin: 0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 5px 5px;
  width: max-content;
  overflow: hidden;
  display: none;
  z-index: 9;
  transform: translateY(-10px);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  -webkit-border-radius: 0px 0px 5px 5px;
  -moz-border-radius: 0px 0px 5px 5px;
  -ms-border-radius: 0px 0px 5px 5px;
  -o-border-radius: 0px 0px 5px 5px;
}

.cus-submenu li {
  padding: 5px 10px;
}

.cus-submenu li a {
  color: var(--dark-blue);
  text-decoration: none;
  display: block;
}

/* Show submenu when active */
.cus-header-nav-item.cus-submenu-active .cus-submenu {
  display: block;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  margin-top: 5px;
}

.cus-header-nav-flex {

  display: flex;
  align-items: center;
  justify-content: center;
}

.cus-header-btn-box {
  display: none;
}

.cus-burger-menu {
  display: none;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}

.about-second-title {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 15px;
  font-family: "DMSans-SemiBold";
  color: var(--dark-blue);
}

.value-list-main .value-list-ul {
  list-style: disc;
  margin: 15px 0 0 20px;
  display: flex;
  gap: 15px;
  flex-direction: column;
  align-items: flex-start;
}

.footer-main-cus {
  padding-top: 10px;
  background-color: var(--dark-blue);
}

.footer-contact-div {
  background: var(--yellow);
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 10px;
}

.footer-contact-div::after {
  content: "";
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  top: 0;
  background: var(--yellow);

}


.footer-row-cus {
  row-gap: 30px;
}

.footer-logo-img {
  max-width: 100%;
  height: 59px;
  object-fit: contain;
}

.footer-copyright-cus {
  padding: 8px 0;
  background-color: var(--yellow);
}

.footer-copyright-text-cus {
  color: var(--black);
  font-size: 14px;
  line-height: 18px;
  font-family: "DMSans-Medium";
  text-align: start;
}

.footer-info-list-link-cus {
  background: #20418e;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-info-img {
  padding: 7px;
  margin-right: 10px;
  background-color: #06246c;
}

.footer-info-list-link-cus {
  gap: 0;
}

.footer-info-list {
  margin-top: 16px;
}

.footer-list-link-last {
  position: relative;
  padding-left: 25px;
  position: relative;
  color: var(--off-white);
  font-size: 14px;
  line-height: 18px;
  font-family: "DMSans-Regular";
  text-decoration: none;
  transition: 0.5s;
}

.footer-list-link-last:hover{
  padding-left: 35px;
}

.footer-list-link-last::after{
  content: "";
  position: absolute;
  left: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 15px;
  height: 6px;
  background-image: url(../images/png/arrow-footer.png);
}

.footer-contact-list{
  padding-top: 30px;
}

.footer-contact-list .footer-heading{
color: var(--white);
}

.footer-contact-list .footer-heading::after{
  background-color: transparent;
  height: unset;
  width: 100%;
  border-bottom: 1px dashed #f8cd1e;
}