* {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font);
  box-sizing: border-box;
}

body {
  font-family: var(--theme-font);
  color: #000;
  font-size: 16px;
}

:root {
  --color-black: #000;
  --theme-color: #f6b924;
  --theme-color2: #2a55a3;
  --white-color: #fff;
  --theme-font:"Poppins", sans-serif;
  --heading-font: "Momo Trust Display", sans-serif;
}

::-moz-selection {
  background-color: var(--theme-color);
  color: #fff;
}

::selection {
  background-color: var(--theme-color);
  color: #fff;
}

.bg-grey {
  background-color: #EFEFEF;
}

.text-bold {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

p {
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--theme-font);
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
}

.theme-color {
  color: var(--theme-color);
  font-family: inherit;
}

.theme-color2 {
  color: var(--theme-color2);
  font-family: inherit;
}

.ab-graphic-responsive-title {
  display: none;
}

.common-heading {
  color: var(--theme-color);
  font-size: 46px;
  line-height: 1.2em;
  margin-bottom: 1.5rem;
}
.common-heading span {
  font-family: inherit;
}

.section-title h3 {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  background-color: var(--theme-color2);
  color: #fff;
  border-radius: 99px;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.common-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1em;
  color: #fff;
  background: var(--theme-color);
  text-transform: capitalize;
  padding: 18px 55px 18px 20px;
  border-radius: 99px;
  border: none;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.common-btn:before {
  content: "\f061";
  position: absolute;
  top: 50%;
  font-family: "fontawesome";
  right: 0;
  bottom: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--theme-color2);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-10px, -50%);
  transition: all 0.4s ease-in-out;
  color: white;
}
.common-btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 102%;
  border-radius: 99px;
  background: var(--theme-color2);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.common-btn:hover {
  color: #fff !important;
}
.common-btn:hover:after {
  width: 106%;
}
.common-btn:hover:before {
  background-color: var(--theme-color);
}

.common-space {
  padding: 4rem 0;
}

header {
  position: fixed;
  width: 100%;
  top: 47px;
  z-index: 11;
}
header .navbar-brand img {
  max-height: 103px;
}
header nav {
  background-color: transparent;
  padding: 5px 0 !important;
}
header nav ul.navbar-nav .nav-item .nav-link {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--theme-font);
  padding: 10px 15px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5019607843);
}
header nav ul.navbar-nav .nav-item .nav-link.active {
  color: var(--theme-color);
}
header nav ul.navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-color);
}
header .callnw-btns a {
  display: flex;
  align-items: center;
  background-color: var(--theme-color2);
  color: #fff;
  padding: 10px 25px;
  border-radius: 45px;
  transition: all 0.3s;
}
header .callnw-btns a:hover {
  background-color: var(--theme-color);
  color: #fff;
}
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: #f5f5f5;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.call-flaot {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: #189233;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  margin-top: 0px;
  line-height: 50px;
  transition: all ease-in-out 0.2s;
  bottom: 82px;
  left: 12px;
}

.whatsapp {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: #00e676;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10;
  line-height: 50px;
  transition: all ease-in-out 0.2s;
  bottom: 20px;
  left: 10px;
}

.banner-home {
  padding: 0px 0 0;
  height: 100vh;
  overflow: hidden;
}
.banner-home .bnr-img {
  position: relative;
}
.banner-home .bnr-img .name-float {
  position: absolute;
  z-index: 2;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0705882353);
  text-align: center;
  display: flex;
  width: 80%;
  gap: 20px;
}
.banner-home .bnr-img .name-float h4 {
  margin-bottom: 0px;
  font-size: 24px;
  font-weight: 600;
  color: #30499e;
}
.banner-home .bnr-img .name-float p {
  margin-bottom: 0;
  line-height: 25px;
}
.banner-home .bnr-img .name-float .years-ex {
  border-left: 1px dotted var(--theme-color);
  padding-left: 20px;
}
.banner-home .bnr-img .name-float .years-ex p b {
  color: var(--theme-color);
  font-size: 20px;
  display: block;
}
.banner-home .content-bnr {
  margin-top: 8rem;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  padding: 15px;
}
.banner-home .inner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  left: 0;
  width: 100%;
}
.banner-home .inner-content h2 {
  color: var(--theme-color);
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1450980392);
}
.banner-home .inner-content h2 span {
  color: rgb(140, 155, 33);
  font-family: inherit;
}
.banner-home .inner-content p {
  color: #fff;
}
.banner-home .bnr-btn-wraps {
  display: flex;
  align-items: center;
}
.banner-home .bnr-btn-wraps a:nth-child(2) {
  background-color: #fff;
  color: var(--theme-color);
  margin-left: 0.5rem;
}
.banner-home .common-btn {
  margin-left: 5px;
}
.banner-home .bnr-btn-wraps span {
  font-weight: 600;
}
.banner-home .bnr-btn-wraps a {
  font-weight: 600;
}
.banner-home img {
  display: block;
  width: 100%;
  filter: brightness(1);
  z-index: 0;
  position: relative;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-home .owl-carousel {
  position: relative;
}
.banner-home .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.banner-home .owl-carousel .owl-nav button.owl-prev,
.banner-home .owl-carousel .owl-nav button.owl-next {
  pointer-events: all;
  background: var(--theme-color2);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.banner-home .owl-carousel .owl-nav button.owl-prev:hover,
.banner-home .owl-carousel .owl-nav button.owl-next:hover {
  background: var(--theme-color);
  color: #fff;
  transform: scale(1.1);
  border-color: #fff;
}
.banner-home .owl-carousel .owl-nav button.owl-prev i,
.banner-home .owl-carousel .owl-nav button.owl-next i {
  line-height: 0;
}
.banner-home .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: 10px;
}
.banner-home .owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: 10px;
}
@media (max-width: 768px) {
  .banner-home .owl-carousel .owl-nav button.owl-prev,
  .banner-home .owl-carousel .owl-nav button.owl-next {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  .banner-home .owl-carousel .owl-nav .owl-prev {
    left: 5px;
  }
  .banner-home .owl-carousel .owl-nav .owl-next {
    right: 5px;
  }
}

.footer {
  padding: 60px 0px;
  background-color: #02344b;
}
.footer #query-form {
  padding: 15px;
  background-color: var(--theme-color);
  border-radius: 2px;
}
.footer #query-form input {
  margin-bottom: 10px;
  line-height: 40px;
  height: 40px;
}
.footer #query-form button {
  background-color: var(--theme-color2);
  color: #fff;
  margin-top: 15px;
  padding: 10px 25px;
  border-radius: 5px;
  border: none;
  transition: all 0.3s;
}
.footer #query-form button:hover {
  background-color: #fff;
  color: var(--theme-color);
}
.footer .footer-inner p {
  padding-top: 10px;
  margin-bottom: 0px;
  color: white;
}
.footer .footer-widget h4 {
  color: rgb(255, 255, 255);
  font-size: 24px;
  line-height: 1.5;
  position: relative;
  margin-bottom: 25px;
}
.footer .footer-widget h4::before {
  width: 70px;
  height: 3px;
  content: "";
  left: 0;
  bottom: -10px;
  position: absolute;
  background: #fff;
}
.footer .footer-widget ul {
  padding-left: 0px;
  margin-bottom: 0px;
}
.footer .footer-widget ul li {
  list-style: none;
  padding-top: 10px;
}
.footer .footer-widget ul a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  opacity: 1;
  transition: all 0.3s;
  font-size: 15px;
}
.footer .footer-widget ul a:hover {
  color: var(--theme-color2);
}
.footer .footer-widget .add li {
  font-size: 15px;
  color: white;
  display: grid;
  gap: 10px;
  grid-template-columns: 30px 1fr;
  align-items: center;
}
.footer .footer-widget .add li i {
  font-size: 15px;
  color: #ffffff;
  background: var(--theme-color2);
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
}
.footer .footer-widget .social li {
  display: inline-block;
}
.footer .footer-widget .social a {
  text-decoration: none;
  color: white;
  opacity: 1;
  margin-right: 10px;
  font-size: 16px;
  min-width: 35px;
  height: 35px;
  background: var(--theme-color2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  transition: 0.3s;
}
.footer .footer-widget .social a:hover {
  background: white;
  color: var(--theme-color2);
}

.footer-bottom {
  background-color: #022c3f;
  border-top: 0.5px solid rgba(255, 255, 255, 0.0901960784);
  padding: 15px;
}
.footer-bottom p {
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0px;
}

.about-us-section {
  background-color: #fdfaf5;
}
.about-us-section .about-content h2 {
  color: var(--theme-color);
  margin-bottom: 20px;
}
.about-us-section .about-content p {
  color: #000000;
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 16px;
}
.about-us-section .about-content .about-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.about-us-section .about-content .about-list li {
  font-size: 15px;
  color: #000000;
  margin-bottom: 8px;
}
.about-us-section .about-content .about-list li i {
  color: var(--theme-color2);
  margin-right: 8px;
}
.about-us-section .about-content .common-btn {
  background-color: var(--theme-color);
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}
.about-us-section .about-content .common-btn:hover {
  background-color: var(--theme-color2);
}
.about-us-section .about-img img {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.services-section {
  background: linear-gradient(45deg, #2a55a3, #2b3a65);
  text-align: center;
}
.services-section .common-heading {
  color: var(--theme-color);
}
.services-section .sub-heading {
  color: #fff;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 16px;
}
.services-section .service-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.services-section .service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.services-section .service-box:hover .overlay {
  opacity: 1;
  transform: scale(1);
}
.services-section .service-box:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}
.services-section .service-box .service-img {
  position: relative;
  overflow: hidden;
}
.services-section .service-box .service-img img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
  transition: all 0.5s ease;
}
.services-section .service-box .service-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s ease;
}
.services-section .service-box .service-img .overlay i {
  color: #fff;
  font-size: 48px;
  animation: floatIcon 3s ease-in-out infinite;
}
.services-section .service-box .service-content {
  padding: 25px 20px 30px;
}
.services-section .service-box .service-content h3 {
  color: var(--theme-color);
  font-size: 20px;
  margin-bottom: 10px;
}
.services-section .service-box .service-content p {
  color: #000000;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}
@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.faq-section {
  background: #fffaf4;
}
.faq-section .common-heading {
  color: var(--theme-color2);
}
.faq-section .sub-heading {
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 16px;
}
.faq-section .faq-accordion .accordion-item {
  background: #fff;
  border: none;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .faq-accordion .accordion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.faq-section .faq-accordion .accordion-item .accordion-button {
  font-size: 17px;
  color: var(--theme-color2);
  background: #fff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.faq-section .faq-accordion .accordion-item .accordion-button i {
  color: var(--theme-color);
  font-size: 20px;
  margin-right: 12px;
  transition: transform 0.3s ease;
}
.faq-section .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  background: rgba(246, 185, 36, 0.12);
  color: var(--theme-color2);
  box-shadow: inset 0 -2px 0 var(--theme-color);
}
.faq-section .faq-accordion .accordion-item .accordion-button:not(.collapsed) i {
  transform: rotate(15deg);
  color: var(--theme-color);
}
.faq-section .faq-accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.faq-section .faq-accordion .accordion-item .accordion-body {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar {
  background-color: var(--theme-color2);
  color: #fff;
  font-size: 14px;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.top-bar a:hover {
  color: var(--theme-color);
}
.top-bar .top-left i {
  color: var(--theme-color);
  margin-right: 6px;
}
.top-bar .social-icons li {
  margin: 0 5px;
}
.top-bar .social-icons li a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 13px;
  transition: all 0.3s ease;
}
.top-bar .social-icons li a:hover {
  background: var(--theme-color);
  color: #fff;
  transform: translateY(-2px);
}
.top-bar .lang-switch select {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 13px;
  border-radius: 5px;
  padding: 4px 8px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
}
.top-bar .lang-switch select:hover {
  background: var(--theme-color);
}
.top-bar .lang-switch select option {
  color: #333;
}
@media (max-width: 576px) {
  .top-bar .container {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}
.top-bar .banner-home img {
  height: 28vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-bar .banner-home {
  margin-top: 65px;
  max-height: 28vh;
}
.top-bar .banner-home .content-bnr {
  margin-top: 8rem;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(0px);
  padding: 15px;
}/*# sourceMappingURL=style.css.map */