@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@font-face {
  font-display: swap;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

:root {
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --logo-blue: #0077D9;
  --logo-green: #00B27A;
  --logo-dark: #0B2540;
  --logo-muted: #6B7C93;
  --lightBgColor: #F3FAFF;
  --accent-gradient: linear-gradient(90deg, #0077D9 0%, #00B27A 100%);
  --hover-gradient: linear-gradient(90deg, #0095FF 0%, #00D894 100%);
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  color: var(--blackColor);
  max-width: 1920px;
  margin: auto;
  overflow-x: hidden !important;
  line-height: 1.4;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

p {
  -webkit-margin-before: 0;
  line-height: 2.5rem;
  font-size: 1.4rem;
  color: #222222;
}

.custom-cursor {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  /* Small inner glowing dot */
  /* Outer soft trailing ring */
}
.custom-cursor .cursor-dot,
.custom-cursor .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.custom-cursor .cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--logo-green);
  box-shadow: 0 0 10px var(--logo-green);
  transition: transform 0.1s ease-out;
}
.custom-cursor .cursor-ring {
  min-width: 3.6rem;
  width: 3.6rem;
  height: 3.6rem;
  border: 2px solid transparent;
  background: radial-gradient(circle, rgba(0, 178, 122, 0.15) 0%, rgba(0, 119, 217, 0.1) 60%, transparent 100%);
  transition: transform 0.2s ease-out, opacity 0.3s;
}
.custom-cursor.click .cursor-dot {
  transform: scale(1.8);
  background: var(--logo-blue);
  box-shadow: 0 0 20px var(--logo-blue);
}
.custom-cursor.hover .cursor-ring {
  transform: scale(1.3);
  background: radial-gradient(circle, rgba(0, 119, 217, 0.25) 0%, rgba(0, 178, 122, 0.15) 60%, transparent 100%);
}

/* Ripple Pulse Animation */
.cursor-ripple {
  position: fixed;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  pointer-events: none;
  background: var(--accent-gradient);
  opacity: 0.5;
  transform: translate(-50%, -50%) scale(0);
  animation: ripplePulse 0.6s ease-out forwards;
  z-index: 99998;
}

@keyframes ripplePulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.6;
  }
  70% {
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--whiteColor);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  top: 0;
  max-width: 100%;
  border-radius: 0;
}

/* ================================
   HEADER + NAVIGATION RESPONSIVE SCSS
=================================== */
header {
  background: var(--whiteColor);
  color: var(--logo-dark);
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 5px;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 90%;
  margin: auto;
  z-index: 999;
  top: 3rem;
  transition: 0.3s ease;
  /* Mega Dropdown Custom */
}
header .navbar {
  padding: 0;
}
header .logo img {
  max-width: 22rem;
  transition: 0.3s ease;
}
header .navbar-nav {
  gap: 1.5rem;
}
header .navbar-nav .nav-item .nav-link {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--logo-dark);
  transition: 0.3s ease;
  /* Login / Signup Buttons */
}
header .navbar-nav .nav-item .nav-link.active, header .navbar-nav .nav-item .nav-link:hover {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(-1px);
}
header .navbar-nav .nav-item .nav-link.btn {
  background: var(--accent-gradient);
  color: var(--whiteColor);
  border-radius: 6px;
  font-size: 1.5rem;
  padding: 6px 14px;
}
header .navbar-nav .nav-item .nav-link.btn:hover {
  -webkit-text-fill-color: inherit;
  transform: translateY(-1px);
}
header .navbar-nav .nav-item .nav-link.singnup {
  background: var(--logo-green);
}
header .dropdown-menu {
  border: none;
  background: var(--whiteColor);
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.12);
  padding: 1.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.4s ease;
}
header .dropdown-menu h5 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--logo-blue);
}
header .dropdown-menu a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 500;
  transition: 0.3s ease;
}
header .dropdown-menu a span.icon {
  padding: 7px;
  border-radius: 5px;
  background: var(--whiteColor);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.12);
}
header .dropdown-menu a span.icon img {
  width: 2.8rem;
  height: 2.8rem;
}
header .dropdown-menu a:hover {
  background: linear-gradient(135deg, var(--logo-blue), var(--logo-green));
  color: var(--whiteColor);
}
header .mega-menu {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}
@media (min-width: 992px) {
  header .dropdown:hover > .dropdown-menu,
  header .dropdown:focus-within > .dropdown-menu {
    display: block;
    position: absolute;
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    top: 100%;
    left: 0;
    margin-top: -5px;
  }
}

.inside_banner_part {
  position: relative;
}
.inside_banner_part .img-sec {
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.inside_banner_part .img-sec::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--logo-blue) 0%, var(--logo-green) 100%);
  z-index: 1;
  opacity: 0.8;
}
.inside_banner_part .img-sec img {
  border-radius: 1.5rem;
  max-height: 40rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inside_banner_part .banner_content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 80rem;
  z-index: 9;
  color: var(--blackColor);
  text-align: center;
}
.inside_banner_part .banner_content .banner_title {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--whiteColor);
}
.inside_banner_part .banner_content .banner_description {
  color: var(--whiteColor);
}
.inside_banner_part .banner_content .banner_description p {
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: var(--whiteColor);
  line-height: 2.2rem;
}

.navbar-toggler {
  width: 3rem;
  height: 3rem;
  padding: 0;
  outline: none !important;
}
.navbar-toggler:focus, .navbar-toggler:hover {
  outline: 0;
  box-shadow: none;
}

section.top_part {
  background: linear-gradient(135deg, var(--logo-blue) 0%, var(--logo-green) 100%);
  padding: 1rem;
  border-radius: 1.5rem;
  margin-top: 1rem;
}
section .banner_part {
  color: var(--whiteColor);
}
section .banner_part .img_part img {
  max-width: 80%;
}
section .banner_text {
  padding-top: 10rem;
  max-width: 90%;
}
section .banner_text h1 {
  font-size: 3.5rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1rem;
}
section .banner_text p {
  color: var(--whiteColor);
}
section .banner_text .banner_btn {
  margin-top: 2rem;
}
section .banner_text .banner_btn .btn {
  font-size: 1.6rem;
  padding: 0.8rem 2.5rem;
  border-radius: 6px;
  margin-right: 1rem;
  transition: background 0.3s ease;
  background: var(--hover-gradient);
  color: var(--);
  border: 0;
}
section .banner_text .banner_btn .btn:hover {
  background: var(--accent-gradient);
  color: var(--whiteColor);
}
section .multiple_service {
  padding: 3rem 0;
}
section .multiple_service ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
section .multiple_service ul li {
  flex: 1 1 calc(33.33% - 2rem);
  text-align: center;
  background: var(--whiteColor);
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  padding: 1rem 1rem;
}
section .multiple_service ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.3s ease;
}
section .multiple_service ul li a i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4e9af1, #56e2c6);
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}
section .multiple_service ul li a i img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.4s ease;
}
section .multiple_service ul li a p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  margin: 0;
}
section .multiple_service ul li a:hover {
  color: #007bff;
}
section .multiple_service ul li a:hover i {
  transform: scale(1.1) rotate(10deg);
  background: linear-gradient(135deg, #007bff, #56e2c6);
}
section .multiple_service ul li a:hover img {
  transform: scale(1.1);
}
section .multiple_service ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  section .multiple_service ul li {
    flex: 1 1 calc(33.33% - 1.5rem);
  }
}
@media (max-width: 576px) {
  section .multiple_service ul li {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem 1rem;
  }
  section .multiple_service ul li a i {
    width: 70px;
    height: 70px;
  }
  section .multiple_service ul li a i img {
    width: 40px;
    height: 40px;
  }
  section .multiple_service ul li a p {
    font-size: 1.3rem;
  }
}
section .banner_img img {
  max-width: 80%;
  animation: topBottom 2s ease-in-out infinite;
}
@keyframes topBottom {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
section .banner-one__title-color {
  color: #00ffc6;
  font-weight: 700;
  border-right: 3px solid #00ffc6;
  padding-right: 5px;
  white-space: nowrap;
  overflow: hidden;
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
section .typed-effect {
  animation: blink 0.7s infinite;
}

.about_us {
  padding: 5rem 2rem;
  background: #f9fbff;
}
.about_us .highlight {
  color: #0056ff;
  font-weight: 700;
}
.about_us .about_text {
  max-width: 800px;
  margin: 0 auto;
}
.about_us .about_text h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}
.about_us .about_text h2 span {
  background: linear-gradient(90deg, #0056ff, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about_us .about_text p {
  font-size: 16px;
  line-height: 1.7;
}
.about_us .about_img {
  margin: 2rem auto 0;
  max-width: 100%;
}
.about_us .about_img img {
  width: 100%;
  border-radius: 14px;
}
.about_us .another_content {
  margin-top: 5rem;
}
.about_us .about_features li {
  font-size: 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}
.about_us .about_features li i {
  color: #00c853;
  margin-right: 10px;
  font-size: 18px;
}
.about_us .inside-details {
  background: var(--whiteColor);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.about_us .inside-details:last-child {
  margin-bottom: 0;
}
.about_us .inside-details:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.about_us .inside-details h5 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
}
.about_us .inside-details p {
  font-size: 1.5rem;
  margin: 0;
}
.about_us .inside-details:last-child {
  margin-bottom: 0;
}
.about_us .inner-img-part {
  margin-top: 2rem;
}
.about_us .inner-img-part img {
  border-radius: 2rem;
}
.about_us .about_img {
  text-align: center;
}
.about_us .about_img img {
  border-radius: 1.5rem;
  max-width: 85%;
  transition: transform 0.4s ease;
}
.about_us .about_img img:hover {
  transform: scale(1.05);
}
.about_us .about_text h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
}
.about_us .about_text h2 .highlight {
  background: linear-gradient(135deg, #007bff, #00c9a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about_us .about_text p {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about_us .about_text .about_features li {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.8rem;
}
.about_us .about_text .about_features li i {
  color: #00c9a7;
  margin-right: 10px;
  font-size: 1.8rem;
}
.about_us .btn {
  background: linear-gradient(135deg, #007bff, #00c9a7);
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--whiteColor);
  transition: all 0.4s ease;
}
.about_us .btn:hover {
  background: linear-gradient(135deg, #00c9a7, #007bff);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.about_us.more_information .text_part {
  background-color: var(--whiteColor);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 1.5rem;
}
.about_us.more_information .text_part h5 {
  font-size: 1.6rem;
  margin-bottom: 5px;
  font-weight: 700;
}
.about_us.more_information .text_part p {
  margin-bottom: 0;
}
.about_us.more_information .text_part:last-child {
  margin-bottom: 0;
}
.about_us.more_information .about_features ul {
  padding: 0;
  margin: 0;
}
.about_us.more_information .about_features h4 {
  font-size: 1.6rem;
  font-weight: 700;
  padding-bottom: 5px;
}
.about_us .dmt_details {
  margin-top: 2rem;
}
.about_us .dmt_details h4 {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.about_us .dmt_details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about_us .dmt_details ul li {
  padding: 0;
  margin: 0;
  padding-bottom: 1rem;
  font-size: 1.5rem;
  color: #555;
  line-height: 2.4rem;
}
.about_us .dmt_details ul li:last-child {
  padding-bottom: 0;
}

.section_title h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
}
.section_title .highlight {
  background: linear-gradient(135deg, #007bff, #00c9a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.swiper-button-next, .swiper-button-prev {
  background: var(--whiteColor);
  color: #222;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid #222;
}
.swiper-button-next:after, .swiper-button-next:after, .swiper-button-prev:after, .swiper-button-prev:after {
  font-size: 2rem;
}

section.growth_part {
  /* Make each slide take equal height */
}
section.growth_part .section_title {
  margin-bottom: 5rem;
}
section.growth_part .box {
  position: relative;
  padding: 2rem;
  background: linear-gradient(264.83deg, #E6F5F9 3.25%, #FFFFFF 95.65%);
  border-radius: 3rem;
  z-index: 1;
  height: auto !important;
  transition: all 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  text-decoration: none;
  color: var(--blackColor);
}
section.growth_part .box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(238.83deg, #ffffff 4.25%, #c4dfe6 80.65%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 30px;
}
section.growth_part .box .inner_shape {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 66%;
  height: auto;
  z-index: -1;
}
section.growth_part .box .inner_shape img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
}
section.growth_part .box .icon {
  text-align: center;
  display: flex;
  justify-content: flex-end;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
section.growth_part .box .icon img {
  max-width: 10rem;
}
section.growth_part .box h3 {
  font-weight: 600;
  color: var(--blackColor);
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
section.growth_part .box a {
  text-decoration: none;
  margin: 1rem 0rem;
}
section.growth_part .swiper {
  width: 100%;
  height: 100%;
}
section.growth_part .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
section.growth_part .swiper-slide {
  display: flex;
  height: auto !important;
  font-size: 18px;
}
section.growth_part .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.growth_part .swiper {
  margin-left: auto;
  margin-right: auto;
}

section.our_services {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--logo-blue) 0%, var(--logo-green) 100%);
  border-radius: 1.5rem;
  position: relative;
  z-index: 1;
  margin: 5rem auto;
}
section.our_services::before {
  content: "";
  background-image: url(../images/vector_customers.svg);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  opacity: 0.2;
  background-attachment: fixed;
}
section.our_services .section_title {
  margin-bottom: 3rem;
  color: var(--whiteColor);
}
section.our_services .section_title h2 {
  color: var(--whiteColor);
}
section.our_services .section_title h2 .highlight {
  background: none;
  -webkit-text-fill-color: aquamarine;
}
section.our_services .section_title p {
  color: var(--whiteColor);
}
section.our_services .service_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 1.5rem;
  overflow: hidden;
}
section.our_services .service_list .service_box {
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
  flex: 1 1 calc(33.33% - 0px);
  max-width: calc(33.33% - 0px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--whiteColor);
  position: relative;
  text-decoration: none;
}
section.our_services .service_list .service_box::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -1px;
  bottom: -1px;
  left: 0px;
  border-right: 1px solid #CCD4DE;
  border-bottom: 1px solid #CCD4DE;
  pointer-events: none;
}
section.our_services .service_list .service_box .icon {
  margin-bottom: 1.5rem;
  background: var(--whiteColor);
  width: 7rem;
  height: 7rem;
  border-radius: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  overflow: hidden;
}
section.our_services .service_list .service_box .icon img {
  max-width: 5rem;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.5s ease;
}
section.our_services .service_list .service_box .icon img:hover {
  transform: scale(1.1);
}
section.our_services .service_list .service_box h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--whiteColor);
}
section.our_services .service_list .service_box p {
  font-size: 1.4rem;
  color: var(--whiteColor);
  flex-grow: 1;
  line-height: 1.6;
  margin-bottom: 0;
}

.services-one {
  position: relative;
  display: block;
  background-color: #f2f2ff;
  padding: 5rem 0rem 5rem;
  counter-reset: count;
  overflow: hidden;
  z-index: 2;
}

.services-one__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.8;
  z-index: -1;
}

.services-one__shape-1 {
  position: absolute;
  width: 537px;
  height: 502px;
  left: -268px;
  bottom: -130px;
  background: rgba(17, 149, 255, 0.39);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.services-one__shape-2 {
  position: absolute;
  width: 439px;
  height: 410px;
  right: -113px;
  top: 33px;
  background: rgba(17, 149, 255, 0.39);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.services-one__shape-3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.services-one__shape-3 img {
  width: auto;
}

.services-one__shape-4 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.services-one__shape-4 img {
  width: auto;
}
@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(-30px);
  }
}
.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.width_space {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

section.support_part {
  position: relative;
  z-index: 1;
  padding: 0rem 2rem 5rem;
}
section.support_part .section_title {
  margin-bottom: 5rem;
}
section.support_part::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: url(../images/why-choose-one-shape-bg-shape.png);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.2;
  background-position: center;
  animation: leftRight 2s ease-in-out infinite;
  z-index: -1;
}
section.support_part .details_part .img_part .img-sec {
  border-radius: 15rem;
  position: relative;
  overflow: hidden;
}
section.support_part .details_part .img_part .img-sec img {
  border-radius: 15rem;
  min-height: 40rem;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 40rem;
  width: 100%;
}
section.support_part .details_part .img_part .img-sec::before {
  background: rgba(46, 114, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  border-radius: 145px;
}
section.support_part .details_part .img_part .img-sec:hover::before {
  height: 100%;
  opacity: 0;
  transition: all 400ms linear;
}
section.support_part .details_part .img_part .img_1 {
  margin-top: 6rem;
}
section.support_part .details_part .boxes_part .box {
  text-align: center;
  margin-bottom: 4rem;
}
section.support_part .details_part .boxes_part .box .why-choose-one__icon {
  margin: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
section.support_part .details_part .boxes_part .box .why-choose-one__icon .icon-completed-task {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  border: 1px solid #187d54;
  border-radius: 50%;
  background: #E8EFFD;
}
section.support_part .details_part .boxes_part .box .why-choose-one__icon .icon-completed-task img {
  max-width: 4.5rem;
}
section.support_part .details_part .boxes_part .box .why-choose-one__icon .why-choose-one__count {
  font-size: 1.2rem;
  font-weight: 600;
  background: #187d54;
  width: 3rem;
  height: 3rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  position: absolute;
  right: -1.5rem;
  color: var(--whiteColor);
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  font-weight: 500;
  color: var(--whiteColor);
}
section.support_part .details_part .boxes_part .box .content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
section.support_part .details_part .boxes_part .box .content p {
  font-size: 1.4rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 0;
}
section.support_part .details_part .boxes_part .box_1 .box .why-choose-one__icon .icon-completed-task {
  border: 1px solid #187d54;
  background-color: #E8EFFD;
}
section.support_part .details_part .boxes_part .box_2 {
  margin-top: 6rem;
}
section.support_part .details_part .boxes_part .box_2 .box .why-choose-one__icon .icon-completed-task {
  border: 1px solid #f46744;
  background-color: #FCEEEB;
}
section.support_part .details_part .boxes_part .box_2 .box .why-choose-one__icon .why-choose-one__count {
  background: #f46744;
}
section.support_part .details_part .boxes_part .box_3 {
  margin-top: -6rem;
}
section.support_part .details_part .boxes_part .box_3 .box .why-choose-one__icon .why-choose-one__count {
  background: #5CCB69;
}
section.support_part .details_part .boxes_part .box_3 .box .why-choose-one__icon .icon-completed-task {
  border: 1px solid #5CCB69;
  background-color: #EFFAF0;
}
section.support_part .details_part .boxes_part .box_4 .box .why-choose-one__icon .why-choose-one__count {
  background: #FF2E89;
}
section.support_part .details_part .boxes_part .box_4 .box .why-choose-one__icon .icon-completed-task {
  border: 1px solid #FF2E89;
  background-color: #FFEBF4;
}

section.customer_review {
  position: relative;
  z-index: 1;
}
section.customer_review .section_title {
  margin-bottom: 5rem;
}
section.customer_review .review_slider .reviewSwiper {
  padding-bottom: 1rem;
}
section.customer_review .review_slider .swiper-slide {
  display: flex;
  justify-content: center;
  height: auto;
}
section.customer_review .review_slider .review_box {
  background: linear-gradient(111.37deg, #E6F5F3 2.28%, #ffffff 101.27%);
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}
section.customer_review .review_slider .review_box .client_img {
  width: 8rem;
  height: 8rem;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}
section.customer_review .review_slider .review_box .client_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
section.customer_review .review_slider .review_box .client_name {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
section.customer_review .review_slider .review_box .client_position {
  font-size: 1.4rem;
  color: #777;
  margin-bottom: 0;
}
section.customer_review .review_slider .review_box .client_review {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}
section.customer_review .review_slider .review_box .bottom_part {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(37, 29, 29, 0.1215686275);
}

.footer {
  background: linear-gradient(135deg, var(--logo-blue) 0%, var(--logo-green) 100%);
  color: var(--whiteColor);
  font-size: 1.5rem;
  padding: 5rem 2rem 5rem;
}
.footer .footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 2fr 1fr;
  gap: 2rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .footer .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .footer .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer .footer-logo img {
  width: 18rem;
  margin-bottom: 2rem;
}
.footer .footer-logo p {
  color: var(--whiteColor);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.footer .footer-logo .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  text-decoration: none;
  height: 3.6rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--whiteColor);
  margin-right: 1rem;
  transition: all 0.3s ease;
}
.footer .footer-logo .social-links a:hover {
  background: var(--accent-gradient);
  transform: translateY(-0.3rem);
  box-shadow: 0 0 1rem rgba(0, 178, 122, 0.4);
}
.footer .footer-col {
  /* Split Services in 3 sub-columns */
  /* Gradient hover for login/signup buttons */
}
.footer .footer-col h4 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--whiteColor);
  border-bottom: 0.2rem solid var(--whiteColor);
  display: inline-block;
  padding-bottom: 0.6rem;
}
.footer .footer-col ul {
  list-style: none;
  padding: 0;
}
.footer .footer-col ul li {
  margin-bottom: 1rem;
}
.footer .footer-col ul li a {
  color: var(--whiteColor);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .footer-col ul li a:hover {
  color: var(--blackColor);
  padding-left: 0.4rem;
}
.footer .footer-col .service-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .footer-col .service-columns ul {
  flex: 1;
  min-width: 12rem;
}
.footer .footer-col:last-child ul li a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-weight: 500;
  color: var(--whiteColor);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.footer .footer-col:last-child ul li a:hover {
  background: var(--hover-gradient);
  box-shadow: 0 0 15px rgba(0, 178, 122, 0.5);
  transform: translateY(-0.2rem);
}
.footer .footer-bottom {
  border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0rem;
}
.footer .footer-bottom .footer-contact {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer .footer-bottom .footer-contact .contact-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
  min-width: 22rem;
}
.footer .footer-bottom .footer-contact .contact-box .icon {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--whiteColor);
}
.footer .footer-bottom .footer-contact .contact-box .text h5 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--whiteColor);
}
.footer .footer-bottom .footer-contact .contact-box .text p {
  margin: 0;
  font-size: 1.5rem;
  color: var(--whiteColor);
}
.footer .footer-bottom .footer-contact .contact-box .text p a {
  color: var(--whiteColor);
  text-decoration: none;
}
.footer .footer-bottom .footer-contact .contact-box .text p a:hover {
  color: var(--blackColor);
}
.footer .copyright {
  text-align: center;
  padding: 2rem 0;
  font-size: 1.4rem;
  color: var(--whiteColor);
  padding-bottom: 5px;
  font-weight: 600;
}
.footer .disclimary_msg {
  background: rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
  color: var(--whiteColor);
  opacity: 0.9;
  margin-inline: auto;
}
.footer .disclimary_msg p {
  margin: 0;
}
.footer .disclimary_msg a {
  color: var(--whiteColor);
  text-decoration: underline;
  transition: 0.3s ease;
}
.footer .disclimary_msg a:hover {
  color: #f1f1f1;
}

#backToTop {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: none;
  outline: none;
  background: var(--accent-gradient);
  color: var(--whiteColor);
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition: all 0.4s ease;
  z-index: 999;
  overflow: hidden;
  /* Optional shine effect */
}
#backToTop:hover {
  background: var(--hover-gradient);
  transform: translateY(-0.3rem);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop i {
  pointer-events: none;
}
#backToTop::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}
#backToTop:hover::before {
  left: 125%;
  transition: left 0.8s ease;
}

/* Thm Btn Css */
.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--whiteColor);
  background-image: linear-gradient(150deg, #97c74e 0%, #2ab9a5 100%);
  border: none;
  padding: 0.8rem 2.5rem 0.8rem;
  padding-right: 8px;
  border-radius: 1.6rem;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  gap: 1.5rem;
  z-index: 2;
  text-align: center;
  text-decoration: none;
}

.thm-btn::after {
  content: "";
  background-color: var(--blackColor);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.thm-btn:hover:after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.thm-btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.2509803922);
  border-radius: 10px;
  font-size: 1.4rem;
  color: var(--blackColor);
  transition: all 500ms ease;
}
.thm-btn span i {
  color: var(--whiteColor);
}

.thm-btn:hover span {
  background-color: var(--whiteColor);
  color: var(--blackColor);
  transition-delay: 200ms;
}

.thm-btn:hover span i {
  color: var(--blackColor);
  animation: bounceright 0.3s alternate ease infinite;
}

.thm-btn:hover {
  color: var(--whiteColor);
}

.contact-four {
  position: relative;
  display: block;
  padding: 5rem 2rem;
  overflow: hidden;
  z-index: 1;
  /* ========== LEFT SIDE ========== */
  /* ========== CONTACT LIST ========== */
  /* ========== RIGHT BOX ========== */
  /* ========== FORM ========== */
}
.contact-four__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.16;
  z-index: -1;
}
.contact-four__shape-1 img {
  width: auto;
}
.contact-four__left {
  position: relative;
  display: block;
  padding-right: 8rem;
}
.contact-four__left .section-title {
  margin-bottom: 2rem;
}
.contact-four__left .contact-four__left-text {
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-bottom: 2rem;
  color: #626f82;
}
.contact-four__contact-list {
  position: relative;
  display: block;
  margin-top: 3rem;
}
.contact-four__contact-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  border: 1px solid rgba(67, 121, 242, 0.22);
  box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.17);
  border-radius: 16px;
  padding: 1rem;
}
.contact-four__contact-list li:nth-child(2), .contact-four__contact-list li:nth-child(4) {
  padding: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.contact-four__contact-list li + li {
  margin-top: 1.5rem;
}
.contact-four__contact-list li .icon {
  position: relative;
  top: 7px;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(129, 186, 67, 0.1019607843);
  border-radius: 50%;
}
.contact-four__contact-list li .icon span {
  font-size: 1.6rem;
  color: #187d54;
}
.contact-four__contact-list li .content {
  flex: 1;
}
.contact-four__contact-list li .content h5 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
}
.contact-four__contact-list li .content p {
  margin-bottom: 0;
  font-weight: 500;
}
.contact-four__contact-list li .content p span {
  font-weight: 600;
}
.contact-four__contact-list li .content p a {
  color: #626f82;
  text-decoration: none;
}
.contact-four__contact-list li .contact-four__contact-list-shape-1 {
  width: 100%;
  margin-bottom: 5px;
}
.contact-four__contact-list li .contact-four__contact-list-shape-1 img {
  width: 100%;
}
.contact-four__right {
  background: linear-gradient(180deg, #EBF5FF 0%, #D7EDFF 100%);
  border-radius: 16px;
  padding: 3rem;
}
.contact-four__right .section-title {
  margin-bottom: 4rem;
}
.contact-four__right .section-title__title {
  font-size: 3rem;
  line-height: 4rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.contact-four__form {
  display: block;
}
.contact-four__form .row {
  --bs-gutter-x: 2.4rem;
}
.contact-four__form .contact-four__input-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 2.4rem;
}
.contact-four__form .contact-four__input-box {
  margin-bottom: 3rem;
}
.contact-four__form .contact-four__input-box input[type=text],
.contact-four__form .contact-four__input-box input[type=email] {
  height: 5.5rem;
  width: 100%;
  border: 1px solid #E7E7E7;
  padding: 0 2.5rem;
  outline: none;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 12px;
  line-height: 6rem;
}
.contact-four__form .contact-four__input-box textarea {
  width: 100%;
  height: 16rem;
  border: 1px solid #E7E7E7;
  padding: 10px 2.5rem;
  outline: none;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 12px;
}
.contact-four__form .contact-four__input-box.text-message-box {
  height: 16rem;
  margin-bottom: 3rem;
}
.contact-four__form .contact-four__btn-box .thm-btn {
  border: none;
}

.img-bounce {
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

@keyframes ImgBounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes bounceright {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(3px);
  }
}
@keyframes leftRight {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
section.why_need_part {
  padding: 5rem 2rem;
}
section.why_need_part .section_title {
  margin-bottom: 5rem;
}
section.why_need_part .colums_part .boxes .box {
  background: linear-gradient(111.37deg, #E6F5F3 2.28%, #ECEFF6 101.27%);
  border-radius: 1.6rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
section.why_need_part .colums_part .boxes .box .icon_box img {
  max-width: 5rem;
}
section.why_need_part .colums_part .boxes .box .content .insurance_card_title {
  text-transform: capitalize;
  font-size: 1.8rem;
  margin: 1rem 0rem;
  font-weight: 700;
  line-height: 1.3;
}
section.why_need_part .colums_part .boxes .box .content .insurance_card_desc {
  width: 100%;
  display: block;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.4rem;
}
section.why_need_part .colums_part .middle_img_sec {
  height: 100%;
}
section.why_need_part .colums_part .middle_img_sec img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  max-height: 42rem;
  object-fit: cover;
}

.stacked-swiper-section {
  padding-top: 12rem;
  position: relative;
}
.stacked-swiper-section .stacked-swiper-container {
  width: 100rem;
  margin: auto;
  max-width: 100%;
}
.stacked-swiper-section .stacked-swiper {
  width: 100%;
  height: 45rem;
  border-radius: 4rem;
  position: relative;
  opacity: 0;
}
.stacked-swiper-section .stacked-swiper.swiper-initialized {
  opacity: 1;
  overflow: visible;
}
.stacked-swiper-section .swiper_slide_stacked {
  background-color: #BAEAE5;
  border-radius: 4rem;
  height: 45rem;
  display: flex;
  align-items: flex-end;
  transition: 0.3s;
  filter: brightness(0.98);
  position: relative;
}
.stacked-swiper-section .swiper_slide_stacked:nth-child(odd) {
  background-color: #BAE1DD;
}
.stacked-swiper-section .swiper_slide_stacked.swiper-slide-active {
  background-color: transparent;
  filter: none;
}
.stacked-swiper-section .swiper_slide_stacked.swiper-slide-active .stacked_wrapper_image {
  opacity: 1;
}
.stacked-swiper-section .swiper_slide_stacked.swiper-slide-active:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(84deg, rgba(56, 70, 128, 0.83), rgba(56, 70, 128, 0));
}
.stacked-swiper-section .stacked_wrapper_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: 0.3s;
}
.stacked-swiper-section .stacked_slider_content {
  position: absolute;
  bottom: 4rem;
  left: 3.5rem;
  z-index: 999;
  max-width: 40rem;
}
.stacked-swiper-section .stacked_slider_content .stacked_count,
.stacked-swiper-section .stacked_slider_content .stacked_titile,
.stacked-swiper-section .stacked_slider_content .stacked_des {
  color: var(--whiteColor);
}
.stacked-swiper-section .stacked_slider_content .stacked_titile {
  font-size: 2.2rem;
  margin: 1rem 0;
}
.stacked-swiper-section .custom-swiper-controls {
  position: absolute;
  right: 0rem;
  top: 50%;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.stacked-swiper-section .custom-swiper-controls .custom-swiper-arrow {
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
  margin: 0;
  background: transparent;
  border: 0;
}
.stacked-swiper-section .custom-swiper-controls .custom-swiper-arrow::after {
  display: none;
}
.stacked-swiper-section .custom-swiper-controls .swiper-button-next, .stacked-swiper-section .custom-swiper-controls .swiper-button-prev {
  position: static;
}
.stacked-swiper-section .custom-swiper-arrow svg {
  width: 10rem;
}
.stacked-swiper-section .custom-swiper-pagination {
  text-align: center;
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin: 1rem auto;
  background: none;
  box-shadow: none;
}
.stacked-swiper-section .custom-swiper-pagination .swiper-pagination-current {
  font-size: 1.6rem;
  font-weight: 600;
}
.stacked-swiper-section .custom-swiper-pagination .custom-diagonal {
  width: 3.2rem;
  height: 1px;
  background: #222;
  transform: rotate(-20deg);
  margin: 4px 0 4px 0;
}
.stacked-swiper-section .custom-swiper-pagination .swiper-pagination-total {
  font-size: 1.6rem;
  font-weight: 400;
  color: #282828;
}
.stacked-swiper-section .custom-swiper-pagination .custom-diagonal {
  width: 3.2rem;
  height: 0.1rem;
  background: #222;
  transform: rotate(-20deg);
  margin: 0.4rem 0;
}

section.about_us_inner {
  padding: 5rem 2rem;
}
section.about_us_inner .content_part h2 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
section.about_us_inner .content_part p {
  font-size: 1.8rem;
  line-height: 1.4;
}
section.about_us_inner .welcome-right-box p {
  font-size: 1.5rem;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
section.about_us_inner .welcome-right-box p:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

section.mission_vission .mission-row {
  display: flex;
  position: relative;
  z-index: 5;
  align-items: center;
}
section.mission_vission .mession_content_area, section.mission_vission .mission-right-box {
  flex: 1 1 0;
}
section.mission_vission .mission-right-box img {
  width: 100%;
  max-width: 100%;
}
section.mission_vission .mession_context_flex {
  border-bottom: 1px solid #A0CEC7;
  margin-bottom: 1.5rem;
}
section.mission_vission .mession_context_flex .mession_min_title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  padding-bottom: 1rem;
}
section.mission_vission .mession_context_flex .mission_desc p {
  font-size: 1.5rem;
}
section.mission_vission .mession_context_flex:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

section.map_part {
  padding: 2rem 2rem;
  border-radius: 3rem;
  background: linear-gradient(111.37deg, #E6F5F3 2.28%, #ECEFF6 101.27%);
  margin-top: 0rem;
  margin-bottom: 5rem;
}
section.map_part .maps iframe {
  border-radius: 3rem;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.inner_pages_content {
  padding: 5rem 2rem 0rem;
  background: var(--lightBgColor);
}
.inner_pages_content h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--logo-dark);
  margin-bottom: 2rem;
  position: relative;
}
.inner_pages_content p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: var(--logo-muted);
  margin-bottom: 1.8rem;
}
.inner_pages_content .welcome-right-inner-content {
  background: var(--whiteColor);
  padding: 2.5rem;
  border-radius: 1.4rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--logo-blue);
}
.inner_pages_content .welcome-right-inner-content p {
  font-size: 1.55rem;
  margin-bottom: 1.5rem;
  color: var(--logo-dark);
}

.privacy_content_inner {
  padding: 3rem 2rem;
  background: var(--lightBgColor);
  /* Each Privacy Box */
  /* Inside Details Block */
  /* Contact section styles */
}
.privacy_content_inner .listing_part {
  margin-top: 2rem;
}
.privacy_content_inner .listing_box {
  background: var(--whiteColor);
  padding: 2rem 2rem;
  border-radius: 1.4rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--logo-green);
  transition: all 0.3s ease;
}
.privacy_content_inner .listing_box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.privacy_content_inner .listing_box h3 {
  font-size: 2rem;
  color: var(--logo-dark);
  font-weight: 700;
  margin-bottom: 1.4rem;
  position: relative;
}
.privacy_content_inner .listing_box p {
  font-size: 1.55rem;
  line-height: 2.5rem;
  color: var(--logo-muted);
  margin-bottom: 1.6rem;
}
.privacy_content_inner .listing_box:last-child {
  margin-bottom: 0;
}
.privacy_content_inner .inside_details .title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--logo-blue);
  margin-bottom: 0.8rem;
}
.privacy_content_inner .inside_details p {
  font-size: 1.55rem;
  color: var(--logo-muted);
  line-height: 2.4rem;
  margin-bottom: 1.2rem;
}
.privacy_content_inner .inside_details ul {
  padding-left: 1.6rem;
}
.privacy_content_inner .inside_details ul li {
  font-size: 1.55rem;
  line-height: 2.4rem;
  color: var(--logo-dark);
  margin-bottom: 0.8rem;
  position: relative;
}
.privacy_content_inner .inside_details ul li:before {
  content: "✔";
  color: var(--logo-green);
  font-size: 1.4rem;
  font-weight: bold;
  position: absolute;
  left: -1.7rem;
  top: 2px;
}
.privacy_content_inner .privacy-contact-name {
  font-size: 1.7rem;
  color: var(--logo-dark);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.privacy_content_inner .privacy-contact-link {
  color: var(--logo-blue);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}
.privacy_content_inner .privacy-contact-link:hover {
  color: var(--logo-green);
  text-decoration: underline;
}

@media (max-width: 992px) {
  .about_us_inner .content_part {
    margin-bottom: 3rem;
  }
}
@media (max-width: 576px) {
  .inside_details .title {
    font-size: 1.6rem !important;
  }
}
section {
  overflow-x: hidden;
}

.register-section {
  background: linear-gradient(135deg, #0a2e75, #0b3c90);
  padding: 3rem 3rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.register-section .left-image img {
  max-width: 85%;
}
.register-section .register-card {
  background: var(--whiteColor);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.12);
}
.register-section .register-card h2 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #062863;
  font-size: 2.4rem;
}
.register-section .register-card .subtitle {
  margin-bottom: 3rem;
  color: #5e6c84;
}
.register-section .register-card .form-group {
  margin-bottom: 1.5rem;
}
.register-section .register-card .form-group label {
  font-weight: 600;
  color: #062863;
  margin-bottom: 1rem;
  display: block;
  font-size: 1.6rem;
}
.register-section .register-card .form-group label i {
  margin-right: 6px;
  color: #0b3c90;
}
.register-section .register-card .form-group input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border-radius: 10px;
  border: 1px solid #d0d7e6;
  transition: 0.3s ease;
  font-size: 1.6rem;
}
.register-section .register-card .form-group input:focus {
  border-color: #0b3c90;
  box-shadow: 0 0 0 3px rgba(11, 60, 144, 0.2);
}
.register-section .register-card .btn-submit {
  width: 100%;
  background: #0b3c90;
  color: #fff;
  padding: 1.2rem;
  border-radius: 10px;
  font-size: 1.6rem;
  border: none;
  margin-top: 1rem;
  font-weight: 600;
  transition: 0.3s ease;
  display: block;
  text-align: center;
  text-decoration: none;
}
.register-section .register-card .btn-submit:hover {
  background: #09306f;
}
.register-section .register-card .switch {
  text-align: center;
  margin-top: 1.5rem;
}
.register-section .register-card .switch a {
  color: #0b3c90;
  font-weight: 600;
  text-decoration: none;
}
.register-section .register-card .btn-enquiry {
  display: block;
  margin-top: 1.5rem;
  background: #e7f0ff;
  padding: 1.2rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: #0b3c90;
  border: 1px solid #c7dcff;
  transition: 0.3s ease;
  text-decoration: none;
}
.register-section .register-card .btn-enquiry i {
  margin-right: 6px;
}
.register-section .register-card .btn-enquiry:hover {
  background: #d7e7ff;
}
.register-section .floating-call {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  background: var(--whiteColor);
  color: #000;
  border-radius: 50px;
  font-size: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
  z-index: 999;
  text-decoration: none;
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 6rem;
}
.register-section .floating-call i {
  font-size: 2.4rem;
}
.register-section .whatsapp_call {
  left: 2.5rem;
}
.register-section .whatsapp_call img {
  max-width: 100%;
}

.blog-section {
  padding: 5rem 2rem;
  /* HOME BLOG SECTION OVERRIDE */
  /* MOBILE OPTIMIZATION */
}
.blog-section .blog-card {
  padding: 2.5rem;
  margin-bottom: 4rem;
  border-radius: 1.6rem;
  background: var(--whiteColor);
  box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  border: 0.1rem solid #eee;
}
.blog-section .blog-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.15);
}
.blog-section .blog-card .blog-img img {
  width: 100%;
  border-radius: 1.4rem;
  height: 26rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-section .blog-card .blog-content {
  padding-left: 2rem;
}
.blog-section .blog-card .blog-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.blog-section .blog-card .blog-content h2 a {
  color: var(--logo-dark);
  transition: 0.3s;
  text-decoration: none;
}
.blog-section .blog-card .blog-content h2 a:hover {
  color: var(--logo-blue);
}
.blog-section .blog-card .blog-content p {
  font-size: 1.6rem;
  color: var(--logo-muted);
  margin-bottom: 1.4rem;
}
.blog-section .blog-card .blog-content .blog-meta {
  font-size: 1.4rem;
  color: var(--logo-muted);
}
.blog-section .blog-card .blog-content .blog-meta span {
  margin-right: 1.8rem;
}
.blog-section .blog-card .blog-content .blog-meta span i {
  margin-right: 0.6rem;
  color: var(--logo-blue);
}
.blog-section .blog-card:last-child {
  margin-bottom: 0;
}
.blog-section .btn {
  background: linear-gradient(135deg, #007bff, #00c9a7);
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--whiteColor);
  transition: all 0.4s ease;
  margin-top: 2rem;
}
.blog-section .btn:hover {
  background: linear-gradient(135deg, #00c9a7, #007bff);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.blog-section.home-section {
  position: relative;
}
.blog-section.home-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: url(../images/why-choose-one-shape-bg-shape.png);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.2;
  background-position: center;
  animation: leftRight 2s ease-in-out infinite;
  z-index: -1;
}
.blog-section.home-section .blog-card {
  height: 100%;
  background: var(--whiteColor);
  border-radius: 1.6rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  overflow: hidden;
}
.blog-section.home-section .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}
.blog-section.home-section .blog-inner {
  display: flex;
  height: 100%;
}
.blog-section.home-section .blog-img {
  width: 38%;
  overflow: hidden;
}
.blog-section.home-section .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-section.home-section .blog-content {
  width: 62%;
}
.blog-section.home-section .blog-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.blog-section.home-section .blog-content h3 a {
  color: var(--logo-dark);
  text-decoration: none;
}
.blog-section.home-section .blog-content h3 a:hover {
  color: var(--logo-blue);
}
.blog-section.home-section .blog-content p {
  font-size: 1.5rem;
  color: var(--logo-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.blog-section.home-section .blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  color: var(--logo-muted);
}
.blog-section.home-section .blog-footer i {
  color: var(--logo-blue);
  margin-right: 0.6rem;
}
.blog-section.home-section .blog-footer .read-more {
  font-weight: 600;
  color: var(--logo-blue);
  text-decoration: none;
  transition: 0.3s;
}
.blog-section.home-section .blog-footer .read-more:hover {
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .blog-section.home-section .blog-inner {
    flex-direction: column;
  }
  .blog-section.home-section .blog-img,
  .blog-section.home-section .blog-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .blog-card .blog-content {
    padding-left: 0 !important;
    margin-top: 1.5rem;
  }
  .blog-img img {
    height: 20rem !important;
  }
}
.blog-details-section {
  padding: 5rem 2rem;
  position: relative;
  overflow: visible !important;
}
.blog-details-section .article-box {
  background: var(--whiteColor);
  padding: 3.5rem;
  border-radius: 1.8rem;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.08);
}
.blog-details-section .article-box .article-main-img {
  width: 100%;
  border-radius: 1.4rem;
  margin-bottom: 2.5rem;
}
.blog-details-section .article-box .article-title {
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--logo-dark);
  margin-bottom: 1.5rem;
}
.blog-details-section .article-box .article-meta {
  margin-bottom: 2rem;
  font-size: 1.4rem;
  color: var(--logo-muted);
}
.blog-details-section .article-box .article-meta span {
  margin-right: 1.8rem;
}
.blog-details-section .article-box .article-meta span i {
  color: var(--logo-blue);
  margin-right: 0.5rem;
}
.blog-details-section .article-box p.desc {
  font-size: 1.6rem;
  color: var(--logo-muted);
}
.blog-details-section .article-box h2 {
  font-size: 2.6rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--logo-dark);
}
.blog-details-section .article-box ul {
  margin-left: 2rem;
}
.blog-details-section .article-box ul li {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  color: var(--logo-dark);
}
.blog-details-section .article-box .highlight-box {
  background: var(--lightBgColor);
  border-left: 0.4rem solid var(--logo-blue);
  padding: 1.5rem 2rem;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--logo-dark);
  margin: 2.5rem 0;
}
.blog-details-section .article-box .author-box {
  margin-top: 3.5rem;
  padding: 2rem;
  background: var(--lightBgColor);
  border-radius: 1.2rem;
  display: flex;
  gap: 1.5rem;
}
.blog-details-section .article-box .author-box img {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details-section .article-box .share-box {
  margin-top: 2.5rem;
}
.blog-details-section .article-box .share-box span {
  font-weight: 600;
  margin-right: 1.5rem;
}
.blog-details-section .article-box .share-box a {
  margin-right: 1rem;
  font-size: 1.8rem;
  color: var(--logo-blue);
}
.blog-details-section .article-box .share-box a:hover {
  opacity: 0.7;
}
.blog-details-section .article-box .next-prev-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
.blog-details-section .article-box .next-prev-nav a {
  font-weight: 600;
  color: var(--logo-blue);
}
.blog-details-section .article-box .next-prev-nav a i {
  margin: 0 0.6rem;
}
.blog-details-section .sidebar {
  position: sticky;
  top: 7rem;
}
.blog-details-section .sidebar .sidebar-box {
  background: var(--whiteColor);
  padding: 2rem;
  border-radius: 1.4rem;
  box-shadow: 0 1rem 3.5rem rgba(0, 0, 0, 0.06);
}
.blog-details-section .sidebar .sidebar-box h4 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--logo-dark);
}
.blog-details-section .sidebar .sidebar-box .latest-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  align-items: center;
  text-decoration: none;
}
.blog-details-section .sidebar .sidebar-box .latest-item img {
  width: 8rem;
  height: 6rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.8rem;
}
.blog-details-section .sidebar .sidebar-box .latest-item a {
  font-weight: 600;
  color: var(--logo-dark);
  text-decoration: none;
  line-height: 1.3;
}
.blog-details-section .sidebar .sidebar-box .latest-item a:hover {
  color: var(--logo-blue);
}
.blog-details-section .sidebar .sidebar-box .category-list li {
  margin-bottom: 1rem;
}
.blog-details-section .sidebar .sidebar-box .category-list li a {
  color: var(--logo-dark);
}
.blog-details-section .sidebar .sidebar-box .category-list li a:hover {
  color: var(--logo-blue);
}

@media (max-width: 768px) {
  .article-box {
    padding: 20px !important;
  }
  .sidebar {
    position: static !important;
    margin-top: 30px;
  }
}
span.error-msg {
  font-size: 1.2rem;
  color: #dc3545;
}

@media (max-width: 1199px) {
  html {
    font-size: 53.5%;
  }
  header {
    max-width: 100%;
    top: 1rem;
  }
  header .navbar-nav .nav-item .nav-link {
    font-size: 1.6rem;
  }
  header .logo img {
    max-width: 20rem;
  }
  header .dropdown-menu {
    padding: 1.2rem 1.5rem;
  }
  header .dropdown-menu a {
    font-size: 1.4rem;
  }
  .mega-menu .row {
    gap: 0.5rem !important;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 48.5%;
  }
  .contact-four__left {
    padding-right: 1rem;
  }
  section .banner_text {
    max-width: 100%;
  }
  header {
    border-radius: 0;
    top: 0;
    padding: 8px 0;
    max-width: 100%;
  }
  header .logo img {
    max-width: 16rem;
  }
  .navbar-collapse {
    background: var(--whiteColor);
    padding: 20px;
    border-radius: 15px;
    margin-top: 10px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
  }
  .navbar-nav {
    gap: 0;
  }
  .navbar-nav .nav-link {
    padding: 0rem;
    font-size: 1.6rem;
  }
  .dropdown-menu {
    position: relative;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    padding: 1rem 0;
  }
  .mega-menu .row {
    row-gap: 1rem !important;
  }
}
@media (max-width: 767px) {
  /* Base font size */
  html {
    font-size: 47.5%;
  }
  .blog-section {
    padding: 3rem 2rem;
  }
  .blog-section .blog-card .blog-content h2 {
    font-size: 2.4rem;
  }
  .blog-details-section {
    padding: 3rem 2rem;
  }
  .blog-details-section .article-box .article-title {
    font-size: 2.4rem;
  }
  .blog-details-section .article-box h2 {
    font-size: 2rem;
    margin-top: 1.5rem;
  }
  .register-section {
    padding: 3rem 2rem;
  }
  .register-section .register-card {
    margin-top: 2rem;
  }
  .register-section .left-image img {
    max-width: 100%;
  }
  .about_us .about_img {
    margin-top: 0;
  }
  .about_us .about_img img {
    max-width: 100%;
  }
  .about_us .another_content {
    margin-top: 3rem;
  }
  .about_us .another_content .about_img img {
    margin-bottom: 2rem;
  }
  section .banner_part .img_part img {
    max-width: 100%;
  }
  .privacy_content_inner {
    padding-top: 0;
  }
  section.map_part {
    margin: 0rem 2rem 3rem;
  }
  .inner_pages_content {
    padding: 3rem 2rem 0rem;
  }
  .inner_pages_content p:last-child {
    margin-bottom: 0;
  }
  section .banner_text h1 {
    font-size: 2.6rem;
  }
  .about_us .about_text h2 {
    font-size: 2.4rem;
  }
  .about_us.more_information {
    margin-top: 3rem;
  }
  .about_us.more_information .text_part:last-child {
    margin-bottom: 1.5rem;
  }
  .stacked-swiper-section .custom-swiper-pagination {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    line-height: normal;
  }
  section.why_need_part {
    padding: 3rem 2rem 0;
  }
  section.why_need_part .section_title {
    margin-bottom: 3rem;
  }
  section.why_need_part .colums_part .middle_img_sec {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  section.why_need_part .colums_part .boxes .box:last-child {
    margin-bottom: 0;
  }
  .section_title h2 {
    font-size: 2.4rem;
  }
  section.about_us_inner .content_part {
    margin-bottom: 0rem;
  }
  section.about_us_inner .content_part h2 {
    font-size: 2.4rem;
  }
  section.about_us_inner .content_part p {
    font-size: 1.6rem;
  }
  section.mission_vission .mession_context_flex {
    margin-top: 1.5rem;
  }
  section.mission_vission .mission-row {
    display: block;
  }
  section.mission_vission .mission-right-box {
    margin-top: 2rem;
  }
  .inside_banner_part .banner_content {
    top: 50%;
    max-width: 90%;
  }
  .inside_banner_part .banner_content .banner_title {
    font-size: 2.4rem;
  }
  .inside_banner_part .banner_content .banner_description p {
    font-size: 1.4rem;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .inside_banner_part .img-sec img {
    min-height: 25rem;
    max-height: 25rem;
  }
  section.about_us_inner {
    padding: 3rem 2rem;
  }
  section.top_part {
    border-radius: 0;
    padding: 2rem;
    margin-top: 5rem;
  }
  section.growth_part .section_title, section.customer_review .section_title {
    margin-bottom: 3rem;
  }
  .footer {
    padding: 3rem 2rem;
    text-align: left;
  }
  .footer .footer-top {
    gap: 1rem;
  }
  .footer .footer-col h4 {
    margin-bottom: 1rem;
  }
  .footer .footer-logo {
    text-align: left;
  }
  .footer .footer-logo p {
    text-align: left;
  }
  .footer .footer-col {
    text-align: left;
  }
  .footer .footer-col .service-columns ul {
    min-width: 50%;
  }
  section.our_services {
    margin: 3rem 2rem;
    padding: 3rem 2rem;
  }
  section.our_services .service_list .service_box {
    flex: 1 1 calc(100% - 0px);
    max-width: calc(100% - 0px);
  }
  section.support_part {
    padding: 0rem 2rem 0rem;
  }
  section.support_part .section_title {
    margin-bottom: 3rem;
  }
  section.support_part .details_part .img_part .img_1 {
    margin-top: 0;
  }
  section.support_part .details_part .img_part .img_2 {
    margin-top: 3rem;
  }
  section.support_part .details_part .boxes_part {
    margin-top: 3rem;
  }
  section.support_part .details_part .boxes_part .box {
    margin-bottom: 2rem;
  }
  section.support_part .details_part .boxes_part .box_1, section.support_part .details_part .boxes_part .box_2, section.support_part .details_part .boxes_part .box_3, section.support_part .details_part .boxes_part .box_4 {
    margin: 0;
  }
  .services-one {
    padding: 3rem 2rem 2rem;
  }
  .contact-four {
    padding: 3rem 2rem;
  }
  .contact-four__right {
    margin-top: 2rem;
  }
  .about_us {
    padding: 3rem 2rem;
  }
  .about_us .about_text {
    margin-top: 2rem;
  }
  section .banner_img {
    text-align: center !important;
  }
  section .banner_img img {
    max-width: 90%;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  section .banner_text {
    padding-top: 0;
  }
  /* Header */
  header {
    padding: 1rem 0.5rem;
  }
  header .logo img {
    max-width: 14rem;
  }
  header .navbar-nav {
    gap: 0;
    margin-top: 0;
  }
  header .navbar-nav .mega-menu {
    max-height: 50rem;
    overflow-y: auto;
  }
  header .navbar-nav .nav-item .nav-link {
    font-size: 1.4rem;
  }
  header .navbar-nav .nav-item .nav-link.singnup {
    margin-top: 1rem;
  }
  header .dropdown-menu {
    padding-top: 0;
  }
  header .dropdown-menu a {
    padding-bottom: 0;
    padding-left: 0;
  }
  /* Navbar Collapse Box */
  .navbar-collapse {
    border-radius: 1rem;
    padding: 1.5rem;
  }
  /* Mobile Menu Link Size */
  .navbar-nav .nav-link {
    font-size: 1.5rem;
    padding: 1rem 0rem;
  }
  /* Dropdown Menu */
  .dropdown-menu a {
    font-size: 1.4rem;
  }
  .dropdown-menu .icon img {
    width: 2.4rem !important;
    height: 2.4rem !important;
  }
  /* Mega Menu Titles */
  .mega-menu h5 {
    font-size: 1.6rem;
  }
  /* Stacked Swiper Section */
  .stacked-swiper-section .stacked-swiper {
    height: 23rem;
  }
  .stacked-swiper-section .stacked_slider_content {
    left: 1.5rem;
    bottom: 2rem;
  }
  .stacked-swiper-section .swiper_slide_stacked {
    height: 23rem;
    border-radius: 2rem;
  }
  .stacked-swiper-section .custom-swiper-controls {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .stacked-swiper-section .custom-swiper-arrow svg {
    transform: rotate(-90deg);
  }
}/*# sourceMappingURL=style.css.map */