@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@200..700&display=swap");
/* Overides */
.bg-light-1 {
  background-color: #E3ECFA;
}

#anHeader {
  background-color: #ffffff;
}
#anHeader .logo img {
  height: 40px !important;
  margin: 0px;
}
@media (max-width: 992px) {
  #anHeader .logo img {
    height: 30px !important;
  } 
}

.menu-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.menu-wrapper li a {
  color: #000000 !important;
  text-transform: uppercase;
  transition: all 0.2s;
}
.menu-wrapper li a:hover {
  color: #2056A2 !important;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .menu-wrapper li a {
    font-size: 16px !important;
  }
}
.menu-wrapper .contact-icon a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #2057a3;
  text-decoration: none;
  color: white;
}
.menu-wrapper .contact-icon a i {
  color: white;
  font-size: 20px;
}

.language-selector {
  position: relative;
  user-select: none;
}
.language-selector .selected-language {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: white;
  border: 2px solid #2056A2;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.language-selector .selected-language:hover {
  background-color: #E3ECFA;
  border-color: #3e7cb1;
}
.language-selector .selected-language .flag-icon {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}
.language-selector .selected-language span {
  font-weight: 600;
  color: #2056A2;
  font-size: 14px;
}
.language-selector .selected-language i {
  font-size: 12px;
  color: #2056A2;
  transition: transform 0.3s ease;
}
.language-selector .selected-language.active i {
  transform: rotate(180deg);
}
.language-selector .language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 2px solid #2056A2;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 150px;
}
.language-selector .language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-selector .language-dropdown .language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #E3ECFA;
}
.language-selector .language-dropdown .language-option:last-child {
  border-bottom: none;
}
.language-selector .language-dropdown .language-option:hover {
  background-color: #E3ECFA;
}
.language-selector .language-dropdown .language-option.selected {
  background-color: #b7cff1;
}
.language-selector .language-dropdown .language-option .flag-icon {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}
.language-selector .language-dropdown .language-option span {
  font-weight: 600;
  color: #2056A2;
  font-size: 14px;
}

@media (max-width: 992px) {
  .language-selector {
    order: -1;
  }
  .language-selector .language-dropdown {
    right: auto;
    left: 0;
  }
}
/* End of Overides */
.bebas {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  font-family: "Inter", sans-serif;
  color: black;
  font-size: 16px;
  line-height: 24px;
}

main {
  min-height: 100vh;
}
@media (max-width: 992px) {
  main {
    padding-top: 76px;
  }
}

.shadowed-box {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
}

.hidden {
  display: none !important;
}

/* Hero Section */
.heroSection {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-repeat: no-repeat;
  position: relative;
  background: #08121d;
}
.heroSection .gradientBubble {
  height: 120vh;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #2056A2, #E3ECFA);
  animation: _rotate_1hn82_1 14s infinite;
  animation-delay: 0.5s;
  filter: blur(120px);
  z-index: 1;
}
@media (max-width: 992px) {
  .heroSection .gradientBubble {
    height: 80vh;
    top: 50vh;
  }
}
.heroSection .shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.heroSection .hero-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url("/assets/images/hero-thing.svg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.3;
}
.heroSection .inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  width: calc(100% - 40px);
  padding: 25px;
}
@media (max-width: 992px) {
  .heroSection .inner {
    flex-direction: column;
    gap: 30px;
  }
}
.heroSection .inner .left {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.heroSection .inner .left h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 56px;
  text-align: left;
  color: white;
}
@media (max-width: 992px) {
  .heroSection .inner .left h1 {
    font-size: 30px;
    line-height: 38px;
  }
}
.heroSection .inner .left p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: white;
}
@media (max-width: 992px) {
  .heroSection .inner .left {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .heroSection .inner .left h1,
  .heroSection .inner .left p {
    text-align: center;
  }
}
.heroSection .inner .right {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 992px) {
  .heroSection .inner .right {
    width: 100%;
  }
}
.heroSection .inner .right img {
  max-width: 100%;
  max-height: 100%;
}

@keyframes _rotate_1hn82_1 {
  0% {
    rotate: 0deg;
  }
  50% {
    scale: 1 1.35;
  }
  100% {
    rotate: 360deg;
  }
}
/* End of Hero Section */
#stickyPhone {
  background: linear-gradient(135deg, rgb(50, 136, 235) 0%, rgb(59, 187, 222) 50%, rgb(41, 235, 165) 100%);
  border: 0px !important;
  transition: all 0.2s;
}
#stickyPhone:hover {
  background-color: white !important;
  background: white !important;
  color: #2056A2 !important;
}

@media (max-width: 992px) {
  #anHeader .header-content .menu-wrapper .mobile-menu-toggler {
    margin-right: 12px;
  }
  #anHeader .header-content .menu-wrapper .mobile-menu-toggler i {
    color: #2056A2 !important;
  }
  .menu.active {
    background-color: #ffffff !important;
  }
}
#main-footer {
  background-color: #08121d;
}

.wrapper-features {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 992px) {
  .wrapper-features {
    flex-direction: column;
  }
}
.wrapper-features .item {
  padding: 35px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: calc(33.3333333333% - 12px);
  border: 3.2px solid;
  border-image: linear-gradient(to bottom right, #32a6e4, #164475, #79cbb3) 1;
  border-radius: 4px;
  background: linear-gradient(135deg, rgb(50, 136, 235) 0%, rgb(59, 187, 222) 50%, rgb(41, 235, 165) 100%);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(6, 23, 40, 0.1607843137);
  display: flex;
  transition: all 0.2s;
}
@media (max-width: 992px) {
  .wrapper-features .item {
    width: 100%;
  }
}
.wrapper-features .item .icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #21506f;
}
.wrapper-features .item .icon-wrapper img {
  width: 34px;
  height: 34px;
}
.wrapper-features .item .icon-wrapper i {
  font-size: 24px;
  color: white;
}
.wrapper-features .item h3 {
  color: white;
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
  margin: 0px;
  padding: 0px;
}
.wrapper-features .item p {
  color: white;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin: 0;
  padding: 0;
}
.wrapper-features .item.light h3 {
  color: #2056A2;
}
.wrapper-features .item.light p {
  color: black;
}
.wrapper-features .item:hover {
  background: linear-gradient(135deg, rgb(50, 136, 235) 0%, rgb(59, 187, 222) 50%, rgb(41, 235, 165) 100%);
}
.wrapper-features .item:hover h3,
.wrapper-features .item:hover p {
  color: white;
}

.faq-section .faq-categories {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.faq-section .faq-categories .item {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  border: 1px solid white;
  cursor: pointer;
  padding: 10px 25px;
}
.faq-section .faq-categories .item span,
.faq-section .faq-categories .item i {
  color: #2056A2;
}
.faq-section .faq-categories .item i {
  font-size: 20px;
}
.faq-section .faq-categories .item span {
  font-size: 18px;
  font-weight: bold;
}
.faq-section .faq-categories .item.selected, .faq-section .faq-categories .item:hover {
  background-color: #2056A2;
  border: 1px solid #2056A2;
}
.faq-section .faq-categories .item.selected span,
.faq-section .faq-categories .item.selected i, .faq-section .faq-categories .item:hover span,
.faq-section .faq-categories .item:hover i {
  color: white;
}

/* FAQ Pricing */
.faq-section {
  background-color: #0b2542;
}
.faq-section .faq-wrapper {
  padding-top: 30px;
}
.faq-section .accordion1 .accordion-item1 {
  border-bottom: 1px solid rgba(195, 190, 183, 0.1215686275);
}
.faq-section .accordion1 .accordion-item1 button[aria-expanded=true] {
  border-bottom: 1px solid rgba(195, 190, 183, 0.1215686275);
}
.faq-section .accordion1 button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: white;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.faq-section .accordion1 button:hover, .faq-section .accordion1 button:focus {
  cursor: pointer;
  color: #E3ECFA;
}
.faq-section .accordion1 button:hover::after, .faq-section .accordion1 button:focus::after {
  cursor: pointer;
  color: #E3ECFA;
  border: 1px solid #E3ECFA;
}
.faq-section .accordion1 button .accordion-title1 {
  padding: 1em 1.5em 1em 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
}
@media (max-width: 992px) {
  .faq-section .accordion1 button .accordion-title1 {
    font-size: 20px;
    line-height: 28px;
  }
}
.faq-section .accordion1 button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.faq-section .accordion1 button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.faq-section .accordion1 button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.faq-section .accordion1 button[aria-expanded=true] {
  color: #E3ECFA;
}
.faq-section .accordion1 button[aria-expanded=true] .icon::after {
  width: 0;
}
.faq-section .accordion1 button[aria-expanded=true] + .accordion-content1 {
  opacity: 1;
  max-height: fit-content;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.faq-section .accordion1 .accordion-content1 {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.faq-section .accordion1 .accordion-content1 p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin: 2em 0;
  color: white;
}

/* End of FAQ Pricing */
#testimonials {
  background: url("/assets/images/testimonials-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
#testimonials .shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(220, 237, 255, 0.86);
  z-index: 2;
}
#testimonials .an-page-title h2 {
  color: #2056A2;
}
#testimonials .an-page-title,
#testimonials .swiper-carousel-container {
  z-index: 3;
  position: relative;
}
#testimonials .testimonial-box {
  background: linear-gradient(45deg, #daf5ff, #ffffff);
  padding: 24px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
#testimonials .testimonial-box p {
  margin: 0;
  padding: 0;
  text-align: center;
}
#testimonials .testimonial-box .message {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
#testimonials .testimonial-box .author {
  font-size: 16px;
  font-weight: bold;
  color: #244b78;
  font-style: italic;
}
#testimonials .testimonial-box .stars-wrapper .stars {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
#testimonials .testimonial-box .stars-wrapper .stars i {
  color: #2056A2;
}

/* Contact */
#contact {
  background: #08121d;
  padding: 100px 0px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ededed;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 18px;
  color: black;
  font-weight: bold;
  background-color: white;
  /* placeholder */
  transition: 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: black;
  opacity: 0.7;
}
.contact-form .an-btn {
  width: 100%;
}
.contact-form.enquiry {
  width: 100%;
  border: 2px solid #ededed;
  padding: 24px;
}
.contact-form.enquiry .text-center {
  font-size: 20px;
  font-weight: bold;
  color: #2056A2;
}

/* End of Contact */
/* Form */
.input-row.mb {
  margin-bottom: 25px;
}

.input-row.half {
  display: flex;
  align-items: top;
  justify-content: space-between;
}
.input-row.half .input-group {
  width: 48%;
}

@media (max-width: 992px) {
  .input-row.half {
    flex-wrap: wrap;
  }
  .input-row.half .input-group {
    width: 100%;
  }
  .input-row.half .input-group:first-child {
    margin-bottom: 15px;
  }
}
/* End of Form */
.type-of-services {
  background-color: #f1f8ff;
}
.type-of-services .section-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 50px;
}
.type-of-services .section-title-wrapper .subtitle {
  font-size: 24px;
  font-weight: 400;
  color: black;
  opacity: 0.6;
  text-align: center;
  display: block;
  width: 100%;
  text-transform: uppercase;
  font-weight: bold;
}
.type-of-services .section-title-wrapper h3 {
  font-size: 36px;
  line-height: 44px;
  color: #2056A2;
  text-align: center;
  margin: 0;
}
.type-of-services .section-title-wrapper p {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
}
.type-of-services .wrapper-features {
  display: flex;
  flex-wrap: wrap;
}
.type-of-services .wrapper-features .item {
  width: calc(33.3333333333% - 16px);
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 0px;
  border: none;
  border-radius: 0;
  transition: 0.5sease-in-out;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(6, 23, 40, 0.1607843137);
  display: flex;
  transition: all 0.2s;
  background: linear-gradient(45deg, #dcecff, #ffffff);
}
@media (max-width: 992px) {
  .type-of-services .wrapper-features .item {
    width: 100%;
  }
}
.type-of-services .wrapper-features .item:hover {
  transition: 0.2s all;
  background: linear-gradient(45deg, #dcecff, rgba(47, 217, 187, 0.3215686275));
}
.type-of-services .wrapper-features .item:hover h3,
.type-of-services .wrapper-features .item:hover p {
  color: inherit !important;
}
.type-of-services .wrapper-features .item:hover h3 {
  color: #2056A2 !important;
}

.benefits-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.benefits-wrapper .item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.benefits-wrapper .item .icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: linear-gradient(135deg, rgb(50, 136, 235) 0%, rgb(59, 187, 222) 50%, rgb(41, 235, 165) 100%);
  flex: none;
}
.benefits-wrapper .item .icon-wrapper i {
  color: white;
  font-size: 24px;
}
.benefits-wrapper .item .text {
  padding: 0px;
  margin: 0px;
  font-size: 18px;
  line-height: 25px;
  font-weight: bold;
  color: black;
}

.footer-logo img {
  height: 55px;
  max-width: 100%;
}
@media (max-width: 992px) {
  .footer-logo img {
    width: 100%;
    max-height: 30px;
  }
}

.contact-footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-footer-wrapper .item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 992px) {
  .contact-footer-wrapper .item {
    justify-content: center;
  }
}
.contact-footer-wrapper .item .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E3ECFA;
  color: black;
  width: 24px;
  height: 24px;
  border-radius: 12px;
}
.contact-footer-wrapper .item .icon-wrapper i {
  font-size: 16px;
}
.contact-footer-wrapper .item p {
  margin: 0;
  color: white;
  font-size: 14px;
  font-weight: 500;
}

#smashed-phone {
  background-color: #dcf6fe;
}

@media (max-width: 992px) {
  .an-col.p20 {
    padding: 0px !important;
  }
}

.loader-section {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 18, 29, 0.7882352941);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-section .inner i {
  font-size: 64px;
  color: white;
  animation: _rotate_1hn82_1 2s infinite;
}

@keyframes _rotate_1hn82_1 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about-actions .second {
  background-color: white;
  border: 1px solid #2056A2;
  border-radius: 4px;
  padding: 12px 24px;
  color: #2056A2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}
.about-actions .second:hover {
  background-color: #2056A2;
  color: white;
  transition: 0.2s all;
}

/* Hero 1 */
.hero1 {
  position: relative;
  background: url("/assets/images/hero-truck-1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero1 .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 64px 0px;
  min-height: 400px;
  max-width: 800px;
  width: calc(100% - 24px);
  margin: 0 auto;
}
.hero1 .inner .top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero1 .inner .top h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: bold;
  margin: 0;
  padding: 0;
  text-align: center;
  color: white;
}
.hero1 .inner .top p {
  font-size: 18px;
  color: white;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  padding: 0;
}
.hero1 .inner .top p strong {
  font-weight: bold;
}
.hero1 .inner .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero1 .inner .bottom .authorized {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  background-color: white;
  flex-wrap: wrap;
  width: fit-content;
}
.hero1 .inner .bottom .authorized span {
  font-size: 14px;
  font-weight: bold;
  color: black;
}
.hero1 .inner .bottom .authorized img {
  height: 40px;
}

/* End of Hero 1 */
/* Home Form */
.homeForm {
  position: relative;
  z-index: 3;
  margin-top: -32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homeForm .inner {
  max-width: 800px;
  background-color: white;
  width: calc(100% - 24px);
  margin: 0 auto;
  padding: 32px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.homeForm .inner .title-wrapper p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
}
.homeForm .inner .title-wrapper h2 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.6;
  color: black;
  text-align: center;
  margin: 0;
  padding: 0px;
}
.homeForm .inner .form-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.homeForm .inner .form-groups .group {
  width: calc(33.3333333333% - 16px);
}
@media (max-width: 992px) {
  .homeForm .inner .form-groups .group {
    width: 100%;
  }
}
.homeForm .inner .form-groups .group select, .homeForm .inner .form-groups .group input {
  background-color: white;
  border: 1px solid #DFEAF2;
  border-radius: 6px;
  padding: 8px 12px;
  color: black;
  font-size: 16px;
  width: 100%;
  transition: 0.2s all;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
.homeForm .inner .form-groups .group select:focus, .homeForm .inner .form-groups .group input:focus {
  border-color: #2056A2;
}
.homeForm .inner .search-button-full {
  text-decoration: none;
  width: 100%;
  border-radius: 6px;
  background-color: #2056A2;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid #2056A2;
  cursor: pointer;
}
.homeForm .inner .search-button-full i, .homeForm .inner .search-button-full span {
  color: white;
}
.homeForm .inner .search-button-full span {
  font-weight: 600;
}
.homeForm .inner .search-button-full:hover {
  background-color: white;
  transition: 0.2s all;
}
.homeForm .inner .search-button-full:hover i, .homeForm .inner .search-button-full:hover span {
  color: #2056A2;
}

/* End of Home Form */
.home-whys-boxes {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.home-whys-boxes .box {
  width: calc(25% - 24px);
  background-color: white;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 1200px) {
  .home-whys-boxes .box {
    width: calc(50% - 24px);
  }
}
@media (max-width: 992px) {
  .home-whys-boxes .box {
    width: 100%;
  }
}
.home-whys-boxes .box .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-whys-boxes .box h4 {
  font-size: 20px;
  font-weight: bold;
  color: black;
  margin: 0;
  padding: 0;
  text-align: center;
}
.home-whys-boxes .box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: black;
  margin: 0;
  padding: 0;
}

.products-listing-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.products-listing-wrapper .product-box {
  width: calc(25% - 24px);
}
@media (max-width: 1200px) {
  .products-listing-wrapper .product-box {
    width: calc(50% - 24px);
  }
}
@media (max-width: 992px) {
  .products-listing-wrapper .product-box {
    width: 100%;
  }
}

.product-box {
  background-color: white;
  border: 1px solid #E3E3E3;
  text-decoration: none;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0);
  cursor: pointer;
}
.product-box:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.product-box .image-wrapper {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  padding: 8px;
  position: relative;
}
.product-box .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-box .image-wrapper .badges-wrapper {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}
.product-box .image-wrapper .badges-wrapper .badge {
  padding: 4px 12px;
  border-radius: 20px;
}
.product-box .image-wrapper .badges-wrapper .badge span {
  font-size: 14px;
  font-weight: bold;
}
.product-box .image-wrapper .badges-wrapper .badge.type-1 {
  background-color: #BBD2F3;
}
.product-box .image-wrapper .badges-wrapper .badge.type-1 span {
  color: #0C1F3A;
}
.product-box .image-wrapper .badges-wrapper .badge.type-2 {
  background-color: #ffffff;
  border: 1px solid #BBD2F3;
}
.product-box .image-wrapper .badges-wrapper .badge.type-2 span {
  color: #0C1F3A;
}
.product-box .meta {
  border-top: 1px solid #E3E3E3;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
}
.product-box .meta p {
  margin: 0;
  padding: 0;
}
.product-box .meta .title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  color: black;
}
.product-box .meta .price {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  color: black;
}

.btn-primary {
  background-color: #2056A2 !important;
  border: 1px solid #2056A2 !important;
  border-radius: 0px !important;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: fit-content;
  color: white !important;
  transition: 0.2s all;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: white !important;
  color: #2056A2 !important;
  transition: 0.2s all;
}

.page-title-section {
  background-color: #e9f2ff;
}

.contact-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
}
.contact-items-wrapper .item {
  width: calc(33.3333333333% - 32px);
  background-color: white;
  padding: 24px;
  border: 1px solid #E3E3E3;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 992px) {
  .contact-items-wrapper .item {
    width: 100%;
  }
}
.contact-items-wrapper .item .icon-wrapper {
  background-color: #2056A2;
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 32px;
  margin: 0 auto;
  font-size: 28px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.contact-items-wrapper .item p {
  color: black;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin: 0;
  padding: 0;
}

.form-control:focus {
  outline: none;
  border: inherit !important;
  box-shadow: none !important;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.table thead {
  background-color: #f1f1f1;
}
.table thead th {
  padding: 12px;
  font-weight: bold;
  color: black;
  text-align: left;
}
.table tbody tr {
  border-bottom: 1px solid #f1f1f1;
}
.table tbody tr td {
  padding: 12px;
  color: black;
}
.table.table-striped tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.finances-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.finances-listing .item {
  border: 1px solid #ededed;
  padding: 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: calc(33.3333333333% - 32px);
  background: white;
}
@media (max-width: 1200px) {
  .finances-listing .item {
    width: 100%;
  }
}
.finances-listing .item .image-wrapper {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.finances-listing .item .image-wrapper img {
  padding: 8px;
  width: 100%;
  max-height: 100%;
}
.finances-listing .item .name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  color: black;
}

.footer-extra-links {
  width: 100%;
  margin-top: 30px;
  position: relative;
}
.footer-extra-links .wrapper {
  max-height: 60px;
  overflow: auto;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-extra-links .wrapper a {
  background-color: white;
  padding: 2px 4px;
  font-size: 10px;
  font-weight: 400;
  color: black;
  text-decoration: none;
}

/* Chat Widget */
#chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
#chat-widget #chat-toggle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
#chat-widget #chat-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}
#chat-widget #chat-container {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#chat-widget #chat-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
}
#chat-widget #chat-header h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 600;
}
#chat-widget #chat-header p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}
#chat-widget #chat-header .mobile-close-btn {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s ease;
}
#chat-widget #chat-header .mobile-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 480px) {
  #chat-widget #chat-header .mobile-close-btn {
    display: flex;
  }
}
#chat-widget #chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: #f8f9fa;
}
#chat-widget #chat-messages .message {
  margin-bottom: 15px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#chat-widget #chat-messages .message.user-message {
  text-align: right;
}
#chat-widget #chat-messages .message.user-message .message-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
#chat-widget #chat-messages .message.assistant-message {
  text-align: left;
}
#chat-widget #chat-messages .message.assistant-message .message-content {
  background: white;
  color: #333;
  border: 1px solid #e1e5e9;
}
#chat-widget #chat-messages .message .message-content {
  display: inline-block;
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
}
#chat-widget #chat-messages .message .message-content .product-link {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  text-decoration: none;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
}
#chat-widget #chat-messages .message .message-content .product-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  color: white !important;
}
#chat-widget #chat-messages .message .message-content .chat-link {
  color: #667eea;
  text-decoration: underline;
}
#chat-widget #chat-messages .message .message-content .chat-link:hover {
  color: #764ba2;
}
#chat-widget #chat-messages .typing-indicator {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: white;
  border: 1px solid #e1e5e9;
  border-radius: 18px;
  margin-bottom: 15px;
  animation: fadeIn 0.3s ease;
}
#chat-widget #chat-messages .typing-indicator .typing-dots {
  display: flex;
  gap: 4px;
}
#chat-widget #chat-messages .typing-indicator .typing-dots .typing-dot {
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
}
#chat-widget #chat-messages .typing-indicator .typing-dots .typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}
#chat-widget #chat-messages .typing-indicator .typing-dots .typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typingDot {
  0%, 60%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  30% {
    transform: scale(1);
    opacity: 1;
  }
}
#chat-widget #chat-input-container {
  display: flex;
  padding: 15px;
  background: white;
  border-top: 1px solid #e1e5e9;
  gap: 10px;
}
#chat-widget #chat-input-container #chat-input {
  flex: 1;
  border: 1px solid #e1e5e9;
  border-radius: 25px;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}
#chat-widget #chat-input-container #chat-input:focus {
  border-color: #667eea;
}
#chat-widget #chat-input-container #send-button {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
#chat-widget #chat-input-container #send-button:hover {
  transform: scale(1.05);
}
#chat-widget #chat-input-container #send-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 480px) {
  #chat-widget #chat-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100dvh;
    border-radius: 0;
    z-index: 999999;
    flex-direction: column;
  }
  #chat-widget #chat-container #chat-input {
    font-size: 16px;
  }
  #chat-widget #chat-toggle {
    z-index: 999998;
  }
  #chat-widget #chat-header {
    flex-shrink: 0;
    position: relative;
  }
  #chat-widget #chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
  }
  #chat-widget #chat-input-container {
    flex-shrink: 0;
    background: white;
    padding: 15px;
    border-top: 1px solid #e1e5e9;
  }
  #chat-widget #chat-input-container #chat-input {
    font-size: 16px;
    min-height: 44px;
  }
}

/* End of Chat Widget */
.starting-from-price .label-price {
  font-size: 12px;
  text-decoration: none;
  color: black;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.starting-from-price .price-amount {
  font-size: 18px;
  font-weight: bold;
  color: #4c78b6;
}

/* Price Configurator Section */
.price-configurator-section {
  background: linear-gradient(135deg, #2057a3 0%, #143869 100%);
  border-radius: 16px;
  padding: 40px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}
.price-configurator-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulseEffect 4s ease-in-out infinite;
}

@keyframes pulseEffect {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
.price-configurator-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.price-badge .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.price-configurator-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}
.price-display .starting-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.price-display .price-amount {
  font-size: 56px;
  font-weight: 800;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.price-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.cta-button-wrapper {
  margin-top: 8px;
}

.configure-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #667eea;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 3px solid white;
}
.configure-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  background: #667eea;
  color: white;
}
.configure-cta i {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.configure-cta:hover i {
  transform: translateX(5px);
}

.features-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  color: white;
  font-weight: 500;
}
.feature-chip i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .price-configurator-section {
    padding: 30px 20px;
  }
  .price-display .price-amount {
    font-size: 42px;
  }
  .configure-cta {
    padding: 16px 32px;
    font-size: 16px;
  }
}
/* End of Price Configurator Section */

/*# sourceMappingURL=main.css.map */
