@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;
  --orangeColor: #4c3d97;
  --greenColor: #f39630;
  --lightBgColor: #e9f9fd;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  color: var(--blackColor);
  max-width: 1920px;
  margin: auto;
  overflow-x: hidden;
  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;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff; /* optional: to avoid transparency */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* optional: adds shadow */
  transition: all 0.3s ease;
}

.heading {
  position: relative;
  z-index: 5;
  margin-bottom: 2rem;
}
.heading .heading-title {
  font-weight: 600;
  line-height: 1.3;
  color: var(--orangeColor);
  margin-bottom: 0;
  font-size: 3.4rem;
  text-transform: uppercase;
}
.heading .heading-title .TopColor {
  color: var(--greenColor);
}
.heading .heading-line {
  margin-bottom: 1rem;
  position: relative;
  line-height: normal;
  display: none;
}
.heading .heading-line .short-line {
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: var(--orangeColor);
  border-radius: 10px;
  position: relative;
  margin-right: 10px;
  transition: all 0.4s linear;
}
.heading .heading-line .long-line {
  display: inline-block;
  width: 100px;
  height: 3px;
  background-color: var(--greenColor);
  border-radius: 10px;
  position: relative;
  transition: all 0.4s linear;
}
.heading .heading-subtitle {
  margin-bottom: 15px;
}
.heading p {
  margin-bottom: 10px;
}
.heading .heading-text {
  font-size: 24px;
  line-height: 30px;
}

.educt-btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none !important;
  font-size: 1.3rem;
  border-radius: 10px;
  text-transform: capitalize;
  min-width: 13rem;
  overflow: hidden;
  z-index: 2;
  padding: 1rem 1rem;
  position: relative;
  transition: all ease 0.3s;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}
.educt-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 50%;
  background-color: var(--orangeColor);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.educt-btn::after {
  content: "";
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0%;
  height: 50%;
  background-color: var(--orangeColor);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.educt-btn:hover {
  background: var(--orangeColor);
  color: var(--whiteColor);
}
.educt-btn:hover::before, .educt-btn:hover::after {
  width: 100%;
}
.educt-btn.blue_bg {
  background: var(--orangeColor);
  color: var(--whiteColor);
}
.educt-btn.blue_bg:hover {
  background: var(--greenColor);
  color: var(--whiteColor);
}

.slider_btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5rem;
  height: auto;
}
.slider_btn .swiper-button-next,
.slider_btn .swiper-button-prev {
  background: var(--whiteColor);
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
}
.slider_btn .swiper-button-next:after,
.slider_btn .swiper-button-prev:after {
  color: var(--whiteColor);
}

.slider_btn .swiper-button-next,
.slider_btn .swiper-button-prev {
  background: #4c3d97;
  color: #fff;
  width: 4rem;
  height: 4rem;
  border-radius: 1.2rem;
  box-shadow: 6px 6px 12px #0d2d5c, -6px -6px 12px #1d58a0;
  transition: all 0.3s ease;
  animation: pulseBorder 1.5s infinite;
}
.slider_btn .swiper-button-next:hover,
.slider_btn .swiper-button-prev:hover {
  box-shadow: inset 6px 6px 12px #0d2d5c, inset -6px -6px 12px #1d58a0;
}
.slider_btn .swiper-button-next:after,
.slider_btn .swiper-button-prev:after {
  font-size: 1.4rem;
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 107, 177, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(61, 107, 177, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 107, 177, 0);
  }
}
section.top_bar {
  background-color: var(--orangeColor);
  padding: 0.5rem 0rem;
  font-size: 1.2rem;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 30;
  transition: all 0.3s ease;
}
section.top_bar .top_details {
  color: var(--whiteColor);
  display: flex;
  align-items: center;
  display: flex;
}
section.top_bar .top_details .contact-item {
  flex-grow: 1;
  line-height: normal;
  display: flex;
  align-items: center;
  color: #fff !important;
  gap: 1rem;
}
section.top_bar .top_details .contact-item a {
  color: #fff !important;
}
section.top_bar .top_details .contact-item .whatsapp_icon {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
section.top_bar .top_details .contact-item .whatsapp_icon i {
  font-size: 2.4rem;
  margin-right: 1rem;
}
section.top_bar .top_details .follow_us a {
  color: var(--whiteColor);
  margin-right: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
section.top_bar .top_details .follow_us a:hover {
  color: var(--blackColor);
}
section.top_bar .top_details .follow_us a:last-child {
  margin-right: 0;
}

header {
  padding: 5px 0px;
}
header .navbar {
  padding: 0;
}
header .dropdown-menu a {
  text-decoration: none;
  color: #000000;
}
header .dropdown-menu a .d-flex {
  transition: all 0.5s;
}
header .dropdown-menu .col-sm-6:nth-child(1) a:hover .d-flex {
  background-color: var(--bs-warning-bg-subtle);
}
header .dropdown-menu .col-sm-6:nth-child(2) a:hover .d-flex {
  background-color: var(--bs-danger-bg-subtle);
}
header .dropdown-menu .col-sm-6:nth-child(3) a:hover .d-flex {
  background-color: var(--bs-success-bg-subtle);
}
header .dropdown-menu .col-sm-6:nth-child(4) a:hover .d-flex {
  background-color: var(--bs-secondary-bg-subtle);
}
header .dropdown-menu .col-sm-6:nth-child(5) a:hover .d-flex {
  background-color: var(--bs-tertiary-bg);
}
header .dropdown-menu .col-sm-6:nth-child(6) a:hover .d-flex {
  background-color: var(--bs-info-bg-subtle);
}
@media only screen and (min-width: 992px) {
  header .dropdown-menu {
    width: 33vw;
    left: -5rem;
    background-position: right bottom;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.16);
  }
  header .dropdown:hover .dropdown-menu {
    display: flex;
  }
  header .dropdown-menu.show {
    display: flex;
  }
}
header .logo img {
  max-width: 12rem;
}
header .navbar-nav {
  gap: 1.5rem;
}
header .navbar-nav .nav-item .nav-link {
  font-size: 1.7rem;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #000;
}
header .navbar-nav .nav-item .nav-link.active, header .navbar-nav .nav-item .nav-link:focus, header .navbar-nav .nav-item .nav-link.active, header .navbar-nav .nav-item .nav-link:hover {
  color: var(--greenColor);
  text-decoration: none;
}
header .navbar-nav .nav-item .nav-link.btn {
  background: var(--greenColor);
  color: var(--whiteColor);
  font-weight: 600;
  font-size: 1.5rem;
  border-radius: 5px;
  padding: 5px 10px;
  width: -moz-fit-content;
  width: fit-content;
}
header .navbar-nav .nav-item .nav-link.singnup {
  background: var(--orangeColor);
}

section.about_us {
  padding: 5rem 0rem;
}
section.about_us p {
  line-height: 2.5rem;
  font-size: 1.5rem;
  color: #222222;
}
section.about_us .button_part {
  margin-top: 2rem;
}
section .heading .read-more:hover {
  color: #f68535;
}
section .heading .heading-line .short-line {
  width: 0;
  animation: move-short 1.5s infinite linear;
}
@keyframes move-short {
  100% {
    width: 140px;
    margin-right: 0;
  }
}
section .heading .heading-line .long-line {
  width: 130px;
  animation: move 1.5s infinite linear;
}
@keyframes move {
  100% {
    width: 0;
  }
}

section.our_services {
  background: #e9f9fd;
  padding: 5rem 2rem;
}
section.our_services .service_boxes .row {
  --bs-gutter-y: 1.5rem;
}
section.our_services .service_boxes .box {
  background-color: #FFFFFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 21px;
  padding: 20px 25px 25px;
  position: relative;
  text-align: center;
  height: 100%;
}
section.our_services .service_boxes .sbox {
  background: #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 1px 4px 21px -1px rgba(0, 0, 0, 0.17);
  width: 9rem;
  height: 9rem;
  text-align: center;
  line-height: 8rem;
  margin: 1rem auto 2rem;
  border: 0px dotted #000;
}
section.our_services .service_boxes .sbox .svimg a img {
  width: 6rem;
}
section.our_services .service_boxes .title-names {
  display: block;
  text-decoration: none;
  color: #2f2c2c;
  transition: all 0.15s linear;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
}

section.great_for {
  padding: 5rem 2rem;
  background: #e9f9fd;
}
section.great_for .boxes {
  overflow: hidden;
}
section.great_for .boxes .info-box {
  text-align: center;
  max-width: 90%;
  margin: auto;
}
section.great_for .boxes .info-box .info-box-content {
  margin-top: 2rem;
}
section.great_for .boxes .info-box .info-box-content .info-box-title {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
section.great_for .boxes .info-box .info-box-content .text {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 0;
}

section.smart_solutions {
  padding: 5rem 2rem;
  overflow-x: hidden;
}
section.smart_solutions .solution {
  margin-bottom: 5rem;
}
section.smart_solutions .solution .content_part p {
  text-align: justify;
}
section.smart_solutions .solution:last-child {
  margin-bottom: 0;
}

section.our_partners {
  padding: 5rem 2rem;
}
section.our_partners .partner_slider {
  margin-top: 2rem;
}
section.our_partners .partner_slider .swiper-slide {
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 1.5rem;
  margin-bottom: 1rem;
}
section.our_partners .partner_slider .swiper-slide img {
  max-width: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
  height: 8rem;
}

footer {
  background: var(--orangeColor);
  padding: 3rem 2rem;
  color: var(--whiteColor);
  font-size: 1.4rem;
  line-height: 2.5rem;
}
footer p {
  margin-bottom: 0;
}
footer .about_part .footer_logo img {
  max-width: 10rem;
  margin-bottom: 1rem;
  background: var(--whiteColor);
  border-radius: 1rem;
  padding: 1rem;
}
footer .about_part .footer_text p {
  color: var(--whiteColor);
}
footer .footer_links h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
footer .footer_links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer_links ul li {
  margin-bottom: 1rem;
}
footer .footer_links ul li a {
  color: var(--whiteColor);
  text-decoration: none;
  transition: all 0.3s ease;
}
footer .footer_links ul li a:hover {
  color: var(--greenColor);
}
footer .copyright {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
}
footer .copyright p {
  text-align: center;
  font-size: 1.3rem;
  color: var(--whiteColor);
}

section.section_top_banner .col-md-12 {
  padding: 0;
}
section.section_top_banner .top_banner {
  position: relative;
}
section.section_top_banner .top_banner .img-sec {
  position: relative;
}
section.section_top_banner .top_banner .img-sec::before {
  content: "";
  position: absolute;
  background: var(--blackColor);
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.7;
}
section.section_top_banner .top_banner .img-sec img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 20rem;
  min-height: 20rem;
}
section.section_top_banner .top_banner .banner_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  text-align: center;
  color: var(--whiteColor);
  width: 100%;
}
section.section_top_banner .top_banner .banner_content .listing {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  color: var(--whiteColor);
  margin-bottom: 1.5rem;
  justify-content: center;
  text-transform: uppercase;
  font-size: 1.4rem;
}
section.section_top_banner .top_banner .banner_content .listing li {
  position: relative;
  color: rgba(255, 255, 255, 0.6588235294);
}
section.section_top_banner .top_banner .banner_content .listing li a {
  color: var(--whiteColor);
  position: relative;
  --underline-scale: 0;
  text-decoration: none;
}
section.section_top_banner .top_banner .banner_content .listing li a::after {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background: var(--whiteColor);
  transition: transform 300ms cubic-bezier(0, 0, 0.3, 1);
  transform: scaleX(var(--underline-scale));
  transform-origin: bottom right;
}
section.section_top_banner .top_banner .banner_content .listing li a:hover {
  --underline-scale: 1;
}
section.section_top_banner .top_banner .banner_content .listing li a:hover::after {
  transform-origin: bottom left;
}
section.section_top_banner .top_banner .banner_content .listing li::after {
  content: "/";
  display: inline-block;
  margin: 0 0.5rem;
  color: var(--whiteColor);
}
section.section_top_banner .top_banner .banner_content .listing li:last-child::after {
  display: none;
}
section.section_top_banner .top_banner .banner_content .banner_heading {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 0;
  text-transform: uppercase;
}
section.section_top_banner .top_banner .banner_content.blog_inside {
  max-width: 60%;
  margin: auto;
}
section.section_top_banner .top_banner .banner_content.blog_inside .banner_heading {
  line-height: 4.4rem;
}

section.about_part {
  padding: 5rem 2rem;
  overflow-x: hidden;
}
section.about_part .about_content p {
  text-align: justify;
}
section.about_part .about_content h5 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
section.about_part .about_content ul {
  list-style: none;
  padding-left: 2rem;
  margin-top: 1rem;
  padding: 0;
}
section.about_part .about_content ul li {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  line-height: 2.5rem;
  color: #222222;
}
section.about_part.inner_about {
  background: #e9f9fd;
}
section.about_part.inner_about .about_content p {
  color: #222222;
}
section.about_part.inner_about .about_img {
  text-align: right;
}

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

section.inner_pages_design {
  background: var(--lightBgColor);
  padding: 5rem 2rem;
}
section.inner_pages_design .part_desc .sub_title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
section.inner_pages_design .part_desc h5 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
section.inner_pages_design .part_desc p:last-child {
  margin-bottom: 0;
}
section.inner_pages_design .part_desc {
  padding-bottom: 1.5rem;
}
section.inner_pages_design .part_desc:last-child {
  padding-bottom: 0;
}
section.inner_pages_design p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #707070;
}
section.inner_pages_design p span {
  color: var(--blackColor);
}
section.inner_pages_design .terms_service ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  line-height: 2.6rem;
  color: #707070;
}
section.inner_pages_design .terms_service ul li {
  padding-bottom: 1rem;
}
section.inner_pages_design .terms_service ul li:last-child {
  padding-bottom: 0;
}

.logo_connect {
  text-align: right;
  margin-bottom: 1rem;
}
.logo_connect img.img-fluid {
  max-width: 10rem;
}

.whatsapp_icon img {
  max-width: 3rem;
}

.section-confetti-trigger {
  height: 0;
  position: relative;
  z-index: 9999999;
}

@media (max-width: 1199px) {
  html {
    font-size: 53.5%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 48.5%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 47.5%;
  }
  section.inner_pages_design {
    padding: 3rem 2rem;
  }
  .top_bar {
    display: none;
  }
  section.about_us, section.our_services, section.great_for, section.smart_solutions, section.our_partners {
    padding: 3rem 2rem;
    overflow-x: hidden;
  }
  .heading {
    margin-bottom: 1rem;
  }
  .heading .heading-title {
    font-size: 2.2rem;
  }
  header .logo img {
    max-width: 9rem;
  }
  header .navbar-nav {
    gap: 0;
    margin-top: 1rem;
  }
  header .navbar-nav .nav-item .nav-link {
    font-size: 1.4rem;
  }
  header .navbar-nav .nav-item .nav-link.singnup {
    margin-top: 1rem;
  }
  section.section_top_banner .top_banner .img-sec img {
    max-height: 12rem;
    min-height: 12rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  section.section_top_banner .top_banner .banner_content .banner_heading {
    font-size: 1.8rem;
    line-height: normal;
  }
  section.section_top_banner .top_banner .banner_content .listing {
    margin-bottom: 5px;
    font-size: 1.2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  section.our_services .service_boxes .box {
    padding: 1.5rem 2rem 2rem;
  }
  section.our_services .service_boxes .sbox {
    width: 7rem;
    height: 7rem;
    line-height: 6rem;
  }
  section.our_services .service_boxes .sbox .svimg a img {
    width: 5rem;
  }
  section.our_services .service_boxes .title-names {
    font-size: 1.8rem;
  }
  section.great_for .boxes .info-box {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  section.great_for .boxes .info-box .info-box-image img {
    max-width: 10rem;
  }
  section.great_for .boxes .info-box .info-box-content .info-box-title {
    font-size: 1.8rem;
  }
  section.great_for .boxes .info-box .info-box-content .text {
    font-size: 1.4rem;
  }
  section.great_for .boxes .col-lg-4:last-child .info-box {
    margin-bottom: 0;
  }
  section.smart_solutions .solution {
    margin-bottom: 0;
  }
  section.smart_solutions .solution .smart_img img {
    max-width: 100%;
  }
  section.smart_solutions .solution .content_part {
    margin-top: 2rem;
  }
  footer {
    padding: 3rem 2rem 1rem;
  }
  footer .footer_links {
    margin-top: 1.5rem;
  }
  footer .copyright {
    margin-top: 1rem;
  }
  .slider_btn {
    bottom: 2rem;
  }
  .slider_btn .swiper-button-next, .slider_btn .swiper-button-prev {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 5px;
  }
  section.about_part {
    padding: 3rem 2rem;
    overflow-x: hidden;
  }
  section.about_part .about_content {
    margin-top: 2rem;
  }
  section.about_part.inner_about .about_content {
    margin-top: 0;
  }
  section.about_part.inner_about .about_img {
    text-align: center;
    margin-top: 2rem;
  }
}/*# sourceMappingURL=style.css.map */