@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,500;1,700;1,900&family=Vidaloka&display=swap");
.btn-pulse {
  animation: pulse 3s infinite; /* Wave pulse animation */
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 83, 156, 0.5); /* Initial state with subtle shadow */
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 83, 156, 0.3); /* Mid-point, expanding the shadow */
  }
  100% {
    opacity: 1; /* Fade out */
    box-shadow: 0 0 0 0 rgba(0, 83, 156, 0); /* Shadow shrinks back */
  }
}
::-moz-selection {
  background: #000;
  color: #f0f0f0;
  text-shadow: none;
}
::selection {
  background: #000;
  color: #f0f0f0;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 1em;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(46, 39, 81, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #00539c;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #4659e8;
  border-radius: 10px;
}

.color-primary {
  color: #00539c;
}

.color-primary-dark {
  color: #4659e8;
}

.color-primary-light {
  color: #46e8dd;
}

.color-secondary {
  color: #f0f0f0;
}

.color-secondary-light {
  color: #e8e8e8;
}

.color-dark {
  color: #000;
}

.color-white {
  color: #fff;
}

.color-accent {
  color: #ff4500;
}

.bg-primary {
  background-color: #00539c;
}

.bg-primary-light {
  background-color: #46e8dd;
}

.bg-secondary {
  background-color: #f0f0f0;
}

.bg-secondary-light {
  background-color: #e8e8e8;
}

.no-padding {
  padding: 0 !important;
  margin: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.fs-1,
.fs-2,
.fs-3,
.fs-4,
.fs-5,
.fs-6 {
  font-family: "Vidaloka", serif !important;
}

h2 {
  font-size: 44px;
}

a,
a:link,
a:visited {
  font-size: 18px !important;
  transition: all 0.25s ease-in-out;
}

a.link-primary {
  color: #00539c !important;
  font-weight: 600;
}

a:hover {
  opacity: 0.8;
}

.btn {
  color: #fff;
  background: #00539c !important;
  font-size: 18px !important;
  font-weight: 600;
  border-radius: 44px;
  box-shadow: none;
  z-index: 1;
  cursor: pointer;
}
.btn.btn-outline {
  padding: 20px;
  font-size: 16px !important;
  background-color: transparent !important;
  color: #00539c;
  border: 2px solid #00539c;
  width: 200px;
}
.btn.btn-outline:hover {
  color: #00539c !important;
  border-color: #00539c;
}
.btn.btn-primary {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}
.btn:active {
  top: 2px;
  color: #fff !important;
}
.btn:hover {
  color: #fff;
  border-color: #00539c;
}

.product-card {
  position: relative;
  box-shadow: 0 2px 7px #dfdfdf;
  background: rgba(147, 184, 232, 0.4) !important;
  min-height: 375px;
}
.product-card img {
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card:hover {
  background: rgba(147, 184, 232, 0.6) !important;
}

.badge {
  position: absolute;
  right: 8px;
  top: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 83.492%;
  letter-spacing: 0.6px;
  padding: 12px 20px;
  border-radius: 100px;
  margin: 6px 6px 0;
}

.badge-best-seller {
  background: linear-gradient(to right, #ff8c64, #e94c3d);
}

.badge-top-rated {
  background: linear-gradient(to right, #46e8dd, #004080);
}

.badge-sale {
  background: linear-gradient(to right, #6ebd4b, #3b6b2b);
}

.badge-new {
  background: linear-gradient(to right, #f0f0f0, #c18965);
}

.badge-custom {
  display: inline-block;
  background-color: #f0f3ff;
  color: #4169e1;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 1rem;
}

.modal-dialog {
  width: 100%;
}

.modal-title {
  color: #00539c;
  font-size: 40px;
}

.modal-content {
  width: 100%;
  padding: 0 60px 0 60px;
}

.modal-body {
  padding-top: 0;
}

.model-close-btn {
  background: #00539c;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 24px;
  opacity: 1 !important;
  transition: all 0.5s;
}
.model-close-btn i.fa-xmark {
  background: none !important;
}
.model-close-btn:hover {
  color: rgb(66, 66, 67) !important;
  background: rgba(0, 83, 156, 0.8);
}

.modal-header,
.modal-footer {
  border: none;
}

.product-tumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  padding: 10px;
}

.product-tumb img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-details {
  padding: 16px;
}

.product-catagory {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 18px;
}

.product-details h4 a {
  font-weight: 500;
  display: block;
  margin-bottom: 18px;
  text-transform: uppercase;
  color: #00539c;
  text-decoration: none;
  transition: 0.3s;
}

.product-details h4 a:hover {
  color: #00539c;
}

.product-details p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 18px;
  color: #000;
}

.product-bottom-details {
  overflow: hidden;
}

.product-bottom-details div {
  float: left;
  width: 50%;
}

.product-price {
  font-size: 22px;
  color: #ff4500;
  font-weight: 600;
}

.product-price small {
  font-size: 80%;
  font-weight: 400;
  text-decoration: line-through;
  display: inline-block;
  margin-right: 5px;
}

.product-links {
  text-align: right;
}

.product-links a {
  display: inline-block;
  margin-left: 5px;
  color: rgba(0, 0, 0, 0.8);
  transition: 0.3s;
  font-size: 17px;
}

.product-links a:hover {
  color: #fbb72c;
}

.faq-section h2 {
  color: #00539c;
  font-size: 2.5rem;
  font-weight: 700;
}

.accordion {
  margin: 0 auto;
}
.accordion .accordion-item {
  background-color: #fff;
  border: none;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.accordion .accordion-button {
  font-size: 1.1rem;
  font-weight: 600;
  color: #00539c;
  background-color: #fff;
  transition: all 0.3s ease;
}
.accordion .accordion-button:not(.collapsed) {
  background-color: #00539c;
  color: #fff;
  box-shadow: none;
}
.accordion .accordion-button:focus {
  box-shadow: none;
}
.accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300539c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion .accordion-body {
  color: #333;
  background-color: #fff;
}

@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 2rem;
  }
  .accordion .accordion-button {
    font-size: 1rem;
    padding: 1rem;
  }
}
.bento-section {
  background-color: #f8f9fa;
}
.bento-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00539c;
  line-height: 1.2;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.bento-grid .bento-item {
  background-color: #00539c;
  border-radius: 24px;
  padding: 32px;
  color: #fff;
  transition: all 0.3s ease;
}
.bento-grid .bento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 83, 156, 0.2);
}
.bento-grid .bento-item h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.bento-grid .bento-item p {
  opacity: 0.9;
  font-size: 1rem;
  line-height: 1.6;
}
.bento-grid .bento-large {
  grid-column: 1/-1;
}
.bento-grid .bento-large .phone-mockup {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
}
.bento-grid .bento-large .phone-mockup .phone-screen {
  background: white;
  border-radius: 16px;
  padding: 12px;
  color: #00539c;
  text-align: center;
}
.bento-grid .bento-large .phone-mockup .phone-screen .qr-section .img-app-qr-code {
  margin: 0 auto;
  width: auto;
  height: 250px;
}
.bento-grid .bento-large .phone-mockup .phone-screen .qr-section p {
  color: #00539c;
  font-weight: 500;
  text-align: center;
}
.bento-grid .step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.bento-grid .step .step-number {
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
}
.bento-grid .step .step-content {
  flex: 1;
}
.bento-grid .store-buttons {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.bento-grid .store-buttons .store-btn {
  background: #00539c;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.bento-grid .store-buttons .store-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.bento-grid .store-buttons .store-btn svg {
  width: 20px;
  height: 20px;
}
.bento-grid .share-btn,
.bento-grid .contact-btn {
  background: #00539c;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
  font-size: 16px !important;
}
.bento-grid .share-btn:hover,
.bento-grid .contact-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.bento-grid .share-btn svg,
.bento-grid .contact-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid .bento-large .row {
    text-align: center;
  }
  .bento-grid .bento-large .row .col-md-6:last-child {
    margin-top: 2rem;
  }
  .bento-grid .store-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .bento-section h1 {
    font-size: 2rem;
  }
}
#product {
  margin: 0 auto;
  display: flex;
}
#product h2 {
  font-size: 34px;
}
#product .product_images {
  width: 657px;
  min-width: 657px;
  height: 683px;
  background: url("https://source.unsplash.com/E-0ON3VGrBc") no-repeat center/cover;
  background-color: #e1e1e1;
}
#product .product_details {
  flex-grow: 1;
  padding-left: 28px;
}
#product .product_details h4 {
  font-size: 24px;
  font-weight: 600;
  color: #111111;
}
#product .product_details .sub-heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
#product .product_details p {
  font-size: 16px;
  color: #000;
}
#product .product_details .product-price {
  color: color;
  font-size: 28px;
}
#product .product_details ul {
  margin-bottom: 40px;
}
#product .product_details ul li {
  font-size: 14px;
  color: #555555;
  font-weight: 300;
  line-height: 24px;
  margin-left: 14px;
  list-style: none;
}
#product .product_details ul li::before {
  content: "•";
  color: #cccccc;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.product-thumbs .swiper-slide img {
  border: 2px solid transparent;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.product-thumbs .swiper-slide-active img {
  border-color: #bc4f38;
}

.product-slider .swiper-button-next:after,
.product-slider .swiper-button-prev:after {
  font-size: 20px;
  color: #000;
  font-weight: bold;
}

.card {
  transition: all 0.25s ease-in-out;
  box-shadow: none !important;
}

.card-link {
  font-size: 16px;
  font-weight: 600;
  color: #4659e8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 86px 0 0 0;
  color: #000;
  font-family: "Roboto", sans-serif;
}
body p {
  font-weight: 500;
}

img,
video {
  border-radius: 12px;
}

section {
  padding: 80px 0;
}

nav {
  background-color: #e8e8e8;
  box-shadow: none !important;
  position: fixed !important;
  top: 0;
  width: 100%;
  transition: background-color 1s;
  /* Dropdown styling with transitions */
  /* Fix for dropdown text wrapping and icon alignment */
  /* Icon styling in dropdown */
  /* Products nav-link icon */
  /* Media query for mobile */
}
nav h5 {
  margin: 0;
  font-weight: 600;
  font-size: 1.5rem;
}
nav .nav-link,
nav .navbar-brand {
  color: #00539c !important;
  font-weight: 600;
}
nav .nav-link .img-logo,
nav .navbar-brand .img-logo {
  width: 160px !important;
}
nav .nav-link .fa-solid,
nav .navbar-brand .fa-solid {
  color: #fff !important;
}
nav .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-top: 0;
}
nav .nav-item.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
nav .dropdown-item {
  white-space: normal;
  word-wrap: break-word;
  min-width: 262px;
  display: flex;
  align-items: center;
  gap: 10px;
}
nav .dropdown-item i {
  width: 20px;
  text-align: center;
  color: #666;
}
nav .nav-link .fa-angle-down {
  margin-left: 5px;
}
nav .fas {
  color: #00539c !important;
}
@media (max-width: 991.98px) {
  nav .dropdown-menu {
    display: none;
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  nav .dropdown.show .dropdown-menu {
    display: block;
  }
}

.social-media-icons a {
  background-color: #fff;
  border-radius: 100%;
  padding: 10px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  transition: all 0.25s ease-in-out;
}
.social-media-icons a .fa-brands {
  color: #4659e8;
}
.social-media-icons a:hover {
  opacity: 1;
  background-color: #00539c;
  box-shadow: rgba(226, 226, 226, 0.4) 0px 7px 29px 0px;
}
.social-media-icons a:hover .fa-brands {
  color: #fff !important;
}

.hero-section {
  padding: 5rem 0;
}
.hero-section .fa-solid {
  color: #00539c;
  font-size: 68px;
  font-size: 2rem;
  color: #fff;
  background-color: #00539c;
  padding: 24px;
  border-radius: 100%;
  height: 80px;
  width: 80px;
  animation: bounce 1s infinite;
}

.section-main-video {
  background-color: #170656;
}
.section-main-video h2 {
  font-size: 80px;
  color: #ffbf00 !important;
}
.section-main-video h3 {
  font-size: 60px !important;
  color: #fff;
}
.section-main-video .img-logo {
  -o-object-fit: contain;
     object-fit: contain;
  height: -moz-fit-content;
  height: fit-content;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translate(0.5rem);
  }
}
.main-title {
  font-size: 5rem;
  font-weight: 800;
  color: #00539c;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  text-align: start;
}

.label {
  font-size: 2.75rem;
  font-weight: 700;
  color: #00539c;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.image-container:hover {
  transform: translateY(-10px);
}

.image-container:hover::before {
  opacity: 1;
}

.image-container img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.video-thumbnail {
  max-width: 900px;
  margin: 4rem auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.video-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #00539c;
  color: #fff;
  padding: 20px 40px;
  font-size: 1.75rem;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.5s ease;
  z-index: 2;
  overflow: hidden;
  border: none;
}

.video-label:hover {
  background-color: rgb(30, 58, 138);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.video-label:hover::before {
  transform: scale(1);
}

@media (max-width: 768px) {
  .main-title {
    font-size: 3rem;
  }
  .label {
    font-size: 2rem;
  }
  .video-label {
    font-size: 1.5rem;
    padding: 15px 30px;
  }
}
.main-header {
  height: 90vh !important;
  position: relative;
}

.main-banner {
  background-color: #e8e8e8;
  height: 60vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-banner .banner-caption {
  color: #00539c !important;
}
.main-banner .banner-caption h1 {
  margin-bottom: 20px;
  font-size: 48px;
  color: #00539c !important;
}
.main-banner .banner-caption h6 {
  color: #00539c !important;
  font-weight: 400 !important;
}
.main-banner .banner-caption p {
  font-size: 20px !important;
  font-weight: 400 !important;
}
.main-banner .row-header {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.main-banner .header-testimonial {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  flex-wrap: wrap;
}
.main-banner .header-testimonial h3 {
  margin: 0px;
  font-size: 16px;
  font-family: "Roboto", sans-serif !important;
  line-height: 20px !important;
  font-weight: 700;
  color: #00539c;
}
.main-banner .btn {
  padding: 14px 24px;
  font-size: 16px !important;
  font-weight: 500;
}

.rating-stars {
  display: flex;
  flex-direction: row !important;
}
.rating-stars i {
  color: #00539c;
  color: #ffd700 !important;
}

.banner-about {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(240, 240, 240, 0.6) 100%), url("/assets/img/jungle-muur-waterval-1-1400x764.jpg");
  background-position: center;
  background-size: cover;
}
.banner-about .banner-caption {
  color: #fff !important;
}
.banner-about .banner-caption h1 {
  color: #fff !important;
}

.img-header {
  width: 100%;
  height: 85vh !important;
  margin: 0 auto;
  border-radius: 0;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 48px 0;
}

.featured-products {
  padding: 0;
  margin: 0 auto;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.featured-products h2 {
  color: #00539c;
  font-size: 44px;
}
.featured-products h3 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400 !important;
}
.featured-products .card {
  color: #00539c !important;
  height: 400px;
  width: 100%;
}
.featured-products .card h4 {
  color: #00539c !important;
}

.section-partners .row .col-sm-6 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-partners .row .col-sm-6 img {
  width: 50%;
}

.free-trial-section {
  background-color: #e8e8e8;
  padding: 80px 0;
}
.free-trial-section .products-label {
  padding: 12px 22px;
  background-color: rgba(0, 83, 156, 0.1);
  border: 1px solid #00539c;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 600;
  color: #00539c;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.free-trial-section .products-label:hover {
  background-color: #00539c;
  color: #fff;
}
.free-trial-section .main-heading {
  font-size: 68px;
  font-weight: 700;
  color: #00539c;
  margin-bottom: 24px;
  line-height: 1.2;
  position: relative;
}
.free-trial-section .subtitle {
  font-size: 28px;
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.free-trial-section .product-card {
  padding: 32px;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.free-trial-section .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.free-trial-section .product-card .icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background-color: rgba(0, 83, 156, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.free-trial-section .product-card .icon-wrapper i {
  font-size: 28px;
  color: #00539c;
  transition: all 0.3s ease;
}
.free-trial-section .product-card:hover .icon-wrapper {
  background-color: #00539c;
}
.free-trial-section .product-card:hover .icon-wrapper i {
  color: #fff;
}
.free-trial-section .product-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #000;
}
.free-trial-section .product-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.7);
}
.free-trial-section .bg-primary {
  background-color: #00539c;
  color: #fff;
}
.free-trial-section .bg-primary h3,
.free-trial-section .bg-primary p {
  color: #fff;
}
.free-trial-section .bg-primary .icon-wrapper {
  background-color: rgba(255, 255, 255, 0.2);
}
.free-trial-section .bg-primary .icon-wrapper i {
  color: #fff;
}
.free-trial-section .bg-primary:hover .icon-wrapper {
  background-color: #fff;
}
.free-trial-section .bg-primary:hover .icon-wrapper i {
  color: #00539c;
}
.free-trial-section .bg-light {
  background-color: #fff;
}

.section-what-do-we-stand-for {
  color: #00539c;
}
.section-what-do-we-stand-for h2 {
  color: #00539c;
}
.section-what-do-we-stand-for h3 {
  font-family: "Roboto", sans-serif !important;
  font-size: 24px;
}
.section-what-do-we-stand-for img {
  -o-object-fit: cover;
     object-fit: cover;
}
.section-what-do-we-stand-for video {
  -o-object-fit: fill;
     object-fit: fill;
}
.section-what-do-we-stand-for img,
.section-what-do-we-stand-for video {
  height: 440px;
  width: 100%;
}

.section-health-services h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}
.section-health-services .subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.section-health-services .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.section-health-services .play-btn i {
  font-size: 20px;
  color: #4169e1;
  margin-bottom: 5px;
}
.section-health-services .play-btn span {
  font-size: 12px;
  color: #333;
}
.section-health-services .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.section-health-services .services-grid {
  margin: 2rem 0;
}
.section-health-services .service-item {
  width: 100%;
}
.section-health-services .service-item .service-icon {
  background-color: #f0f3ff;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.section-health-services .service-item .service-icon i {
  color: #4169e1;
  font-size: 20px;
}
.section-health-services .service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.section-health-services .service-item p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}
.section-health-services img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.section-breakthrough-technology img {
  height: 420px !important;
  width: 100% !important;
}
.section-breakthrough-technology h2 {
  font-size: 32px !important;
  padding: 12px 0;
  color: #00539c !important;
}
.section-breakthrough-technology h3 {
  padding: 12px 0;
  color: #00539c !important;
}

.news-section {
  padding: 80px 0;
  background-color: #fff;
}
.news-section h2 {
  font-size: 2.5rem;
  color: #00539c;
  margin-bottom: 1rem;
}
.news-section .subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.article-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}
.article-card:hover {
  transform: translateY(-5px);
}
.article-card:hover .card-image img {
  transform: scale(1.05);
}
.article-card .card-image {
  position: relative;
  overflow: hidden;
}
.article-card .card-image img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.article-card .card-image .read-more {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #00539c;
  background: #fff !important;
  font-weight: 500;
  border-radius: 20px !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.article-card .card-image .read-more:hover {
  background: #f2f2f2 !important;
}
.article-card .card-body {
  padding: 24px;
}
.article-card .card-body .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}
.article-card .card-body .tags .tag {
  background-color: #f8f9fa;
  color: #666;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.article-card .card-body .tags .tag:hover {
  background-color: #e9ecef;
}
.article-card .card-body h3 {
  color: #00539c;
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}
.article-card .card-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

.community-section {
  padding: 4rem 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .community-section {
    padding: 2rem 0;
  }
}
.community-section .col-md-6 {
  padding: 48px 0;
}
.community-section .hero-header {
  max-width: 800px;
  margin: 0 auto 4rem;
}
.community-section .hero-header h2 {
  color: #00539c;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .community-section .hero-header h2 {
    font-size: 2rem;
  }
}
.community-section .hero-header .lead {
  color: white;
  font-size: 1.1rem;
}
.community-section .content-section .image-wrapper {
  transition: transform 0.3s ease;
}
.community-section .content-section .image-wrapper:hover {
  transform: translateY(-5px);
}
.community-section .content-section .image-wrapper img,
.community-section .content-section .image-wrapper video {
  height: 440px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.community-section .content-section .image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
}
.community-section .content-section .image-wrapper video {
  -o-object-fit: fill;
     object-fit: fill;
}
.community-section .content-section .content-box {
  padding: 2rem;
}
@media (max-width: 768px) {
  .community-section .content-section .content-box {
    padding: 2rem 0;
  }
}
.community-section .content-section .content-box h2 {
  font-size: 2rem;
  color: #00539c;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .community-section .content-section .content-box h2 {
    font-size: 1.75rem;
  }
}
.community-section .content-section .content-box p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonials-section {
  padding: 60px 0;
  background-color: #fff;
}
.testimonials-section .testimonial-image {
  border-radius: 24px;
  overflow: hidden;
  background-color: #e8e8e8;
  margin-bottom: 2rem;
  height: 400px;
}
@media (min-width: 992px) {
  .testimonials-section .testimonial-image {
    margin-bottom: 0;
  }
}
.testimonials-section .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials-section .testimonial-content {
  padding: 0 15px;
}
@media (min-width: 992px) {
  .testimonials-section .testimonial-content {
    padding: 0 0 0 40px;
  }
}
.testimonials-section .testimonial-content .badge-custom {
  display: inline-block;
  background-color: rgba(147, 184, 232, 0.1);
  color: #00539c;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 16px;
}
.testimonials-section .testimonial-content .swiper-controls {
  margin-bottom: 24px;
}
.testimonials-section .testimonial-content .swiper-controls .nav-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.testimonials-section .testimonial-content .swiper-controls .nav-buttons .nav-button {
  background: #fff;
  border: 1px solid #00539c;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00539c;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.testimonials-section .testimonial-content .swiper-controls .nav-buttons .nav-button:hover {
  background: #00539c;
  color: #fff;
}
.testimonials-section .testimonial-content .swiper-controls .nav-buttons .nav-button i {
  font-size: 12px;
}
.testimonials-section .testimonial-content .swiper-controls .swiper-pagination {
  position: static;
  width: auto;
  margin: 0 8px;
}
.testimonials-section .testimonial-content .swiper-controls .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #e8e8e8;
  opacity: 1;
  margin: 0 3px;
  transition: all 0.3s ease;
}
.testimonials-section .testimonial-content .swiper-controls .swiper-pagination .swiper-pagination-bullet-active {
  background: #00539c;
  transform: scale(1.3);
}
.testimonials-section .testimonial-content blockquote {
  font-size: 28px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 32px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .testimonials-section .testimonial-content blockquote {
    font-size: 20px;
  }
}
.testimonials-section .testimonial-content .author-info h3 {
  color: #00539c;
  font-size: 24px;
  margin-bottom: 8px;
}
.testimonials-section .testimonial-content .author-info p {
  color: #9c9c9c;
  font-size: 16px;
  margin-bottom: 12px;
}
.testimonials-section .testimonial-content .author-info .rating {
  color: #ffbf00;
  font-size: 16px;
  margin-bottom: 24px;
}
.testimonials-section .testimonial-content .author-info .rating .fa-star {
  margin-right: 4px;
}

.swiper-pagination-progressbar {
  background: #e8e8e8 !important;
  height: 2px !important;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #00539c !important;
}

.bg-primary-gradient-light {
  background-image: linear-gradient(rgba(0, 83, 156, 0.6), rgba(0, 83, 156, 0.1));
}
.bg-primary-gradient-light .free-trial-section {
  background: transparent;
}

.bg-primary-gradient {
  background-image: linear-gradient(#00539c, rgba(240, 240, 240, 0.4));
}
.bg-primary-gradient .free-trial-section {
  background: transparent;
}

.bg-secondary-gradient {
  background-image: linear-gradient(#fff, rgba(240, 240, 240, 0.4));
}

.section-large-text {
  background-color: #00539c;
  color: #e8e8e8;
  height: 400px;
  display: flex;
  align-items: center;
}
.section-large-text h1 {
  font-size: 64px;
}
.section-large-text .img-comfort-tech {
  height: 500px;
}

.contact,
#requestQuotePopup {
  width: 100%;
  padding: 80px 0;
}
.contact h1,
#requestQuotePopup h1 {
  margin-bottom: 50px;
}
.contact input,
.contact textarea,
.contact select,
#requestQuotePopup input,
#requestQuotePopup textarea,
#requestQuotePopup select {
  padding: 18px 10px !important;
  margin-bottom: 20px !important;
  border: none !important;
  border-bottom: 2px solid #00539c !important;
  border-radius: 0 !important;
  background-color: #fff !important;
  outline: none !important;
  width: 100% !important;
}
.contact input:focus,
.contact textarea:focus,
.contact select:focus,
#requestQuotePopup input:focus,
#requestQuotePopup textarea:focus,
#requestQuotePopup select:focus {
  box-shadow: none;
  outline: none;
  border-bottom-color: #46e8dd !important;
}
.contact p,
#requestQuotePopup p {
  font-weight: 500;
  margin-bottom: 30px;
}
.contact a,
#requestQuotePopup a {
  font-weight: 500;
  color: #00539c !important;
}
.contact i,
#requestQuotePopup i {
  color: #f0f0f0;
  background-color: #00539c;
  padding: 10px;
  border-radius: 100%;
  font-size: 16px;
}
.contact ul.social-link,
#requestQuotePopup ul.social-link {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
}
.contact ul.social-link li a,
#requestQuotePopup ul.social-link li a {
  padding: 0 10px;
  color: #00539c;
  font-size: 1.2em;
  transition: 0.3s ease;
}
.contact a:hover,
#requestQuotePopup a:hover {
  color: #00539c !important;
}
.contact a, .contact:link, .contact:visited,
#requestQuotePopup a,
#requestQuotePopup:link,
#requestQuotePopup:visited {
  color: #00539c;
}

.section-our-story h1 {
  color: #fff !important;
}
.section-our-story .card {
  background-color: #00539c;
  color: #fff;
  padding: 24px;
  text-align: left;
  min-height: 282px;
}
.section-our-story .card i.fa-solid {
  color: #e8e8e8 !important;
}
.section-our-story .card i.fa-regular {
  color: #e8e8e8 !important;
}
.section-our-story .card h3 {
  color: #e8e8e8;
}
.section-our-story .card .card-text {
  font-size: 18px;
}

.section-follow-us-on-instagram {
  text-align: center;
  color: #00539c;
}
.section-follow-us-on-instagram .swiper-slide img {
  height: 240px;
  width: 240px;
}

.contact-section .container {
  display: flex;
  align-items: center;
  border-radius: 24px;
}
.contact-section .text-box {
  text-align: center;
  color: #00539c;
  border-radius: 24px;
  padding: 48px;
  width: 100%;
}
.contact-section .text-box h4 {
  font-size: 48px;
  font-weight: 800;
}
.contact-section .text-box p {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
}
.contact-section .input-group {
  padding: 12px;
  border-radius: 12px;
  width: 65%;
  margin: 0 auto;
}
.contact-section .input-group input {
  border-radius: 12px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background-color: #e8e8e8;
  border-color: #f0f0f0 !important;
  padding: 34px;
  color: #00539c !important;
  font-weight: 500;
}
.contact-section .input-group input:focus {
  box-shadow: inset 0 0 0 1px #00539c;
}
.contact-section .input-group input::-moz-placeholder {
  color: rgba(0, 83, 156, 0.8) !important;
}
.contact-section .input-group input::placeholder {
  color: rgba(0, 83, 156, 0.8) !important;
}
.contact-section .input-group .btn {
  border-radius: 12px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.text-box h2 {
  color: #00539c;
}
.text-box p {
  color: #00539c;
}

.about-video video {
  height: 480px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.section-our-mission {
  color: #00539c;
}
.section-our-mission h2 {
  color: #00539c;
}
.section-our-mission img {
  -o-object-fit: cover;
     object-fit: cover;
}
.section-our-mission video {
  -o-object-fit: fill;
     object-fit: fill;
}
.section-our-mission img,
.section-our-mission video {
  height: 440px;
  width: 100%;
}
.section-our-mission p {
  color: #000 !important;
}

.products-section .banner-caption {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
.products-section .row {
  margin-top: 48px;
}
.products-section .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  cursor: pointer;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.section-faqs .accordion .accordion-button {
  border: none !important;
  padding: 1.8rem 1.5rem;
  font-size: 1.4rem;
}
.section-faqs .accordion .accordion-button:not(.collapsed) {
  color: #00539c !important;
}
.section-faqs .accordion .accordion-body {
  border: none !important;
  padding-top: 0px !important;
}
.section-faqs .accordion .accordion-item {
  border: none;
  border-top: 2px solid #000;
}
.section-faqs .accordion .accordion-item .accordion-button {
  box-shadow: none;
  border-radius: 0px;
}

.section-privacy-policy {
  font-size: 18px;
}
.section-privacy-policy .card-container .card {
  background-color: #00539c;
  color: #fff !important;
}
.section-privacy-policy .card-container .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.section-privacy-policy .card-container .card .card-body {
  padding: 2rem;
}
.section-privacy-policy .card-container .card .card-body .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-privacy-policy .card-container .card .card-body .card-text {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.section-privacy-policy .card-container .card .card-body .btn {
  background: #fff !important;
  color: #00539c;
}
.section-privacy-policy .card-container .email-card .card-title,
.section-privacy-policy .card-container .email-card .card-text,
.section-privacy-policy .card-container .website-card .card-title,
.section-privacy-policy .card-container .website-card .card-text {
  color: #fff;
}
.section-privacy-policy .card-container .icon {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.video-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.video-container video {
  width: 100%;
  display: block;
}
.video-container .play-button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 50px;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  width: 80px;
  height: 80px;
}
.video-container video::-webkit-media-controls, .video-container video::-moz-media-controls, .video-container video::-ms-media-controls {
  display: none !important;
}
.video-container.playing .play-button {
  display: none;
}

.swiper-pagination {
  position: relative !important;
  margin-top: 28px;
}
.swiper-pagination .swiper-pagination-bullet {
  background: #46e8dd !important;
  width: 1rem;
  height: 1rem;
  border-radius: 0.5rem;
  opacity: 1;
  transition: all 0.25s ease-in-out;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00539c !important;
}

.swiper-button-prev {
  left: 0 !important;
}

.swiper-button-next {
  right: 0 !important;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute !important;
  background-color: #00539c;
  padding: 28px;
  color: #fff !important;
  fill: #fff !important;
  stroke: #fff !important;
  transition: all 0.25s ease-in-out;
  border-radius: 100%;
  top: 45% !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 32px !important;
  font-weight: 800;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0, 83, 156, 0.9);
  box-shadow: #4659e8 2px 2px 0px 0px;
}

.swal2-title {
  color: #00539c;
}

.swal2-html-container {
  color: #00539c;
}

.swal2-styled.swal2-confirm {
  background-color: #00539c !important;
  border-radius: 24px;
  color: #fff;
  width: 160px;
  font-size: 18px !important;
  font-weight: 700;
  padding: 12px 30px;
  letter-spacing: 1.5px;
  border-radius: 44px !important;
}
.swal2-styled.swal2-confirm:active {
  position: relative;
  top: 2px !important;
}
.swal2-styled.swal2-confirm:focus {
  box-shadow: 0 0 0 3px rgba(240, 240, 240, 0.5);
}

footer {
  background: #00539c;
  color: #fff;
}
footer a.text-reset {
  font-size: 16px !important;
}

@media only screen and (max-width: 1400px) {
  .section-our-story .card {
    min-height: 282px;
    max-height: 320px !important;
  }
}
@media only screen and (max-width: 1199.5px) {
  .featured-products .product-card {
    min-height: 340px !important;
    max-height: 340px !important;
  }
  .section-large-text {
    height: 360px;
  }
  .section-large-text h1 {
    font-size: 46px;
  }
  .section-large-text .img-comfort-tech {
    height: 360px;
  }
  .section-our-story .card {
    min-height: 282px;
    max-height: 460px !important;
    height: 100%;
    padding: 12px;
  }
  .section-our-story .card .card-body {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
@media only screen and (max-width: 991.5px) {
  .modal-title {
    font-size: 40px !important;
  }
  .modal-content {
    padding: 0 20px 0 20px;
  }
  .contact-section .input-group {
    width: 100%;
  }
  .contact-section .btn {
    font-size: 14px !important;
  }
  .section-large-text {
    height: 300px;
  }
  .section-large-text h1 {
    font-size: 44px;
  }
}
@media screen and (max-width: 900px) {
  .section-large-text {
    height: 280px;
  }
  .section-large-text h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 856px) {
  .section-large-text h1 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 767.5px) {
  .img-header {
    height: 325px !important;
  }
  .main-header {
    height: 80vh !important;
  }
  .banner-caption {
    padding: 24px !important;
    margin: 0 auto;
  }
  .banner-caption h1 {
    font-size: 44px !important;
  }
  .banner-caption p {
    font-size: 16px !important;
  }
  .section-our-mission .btn {
    margin-bottom: 12px;
  }
  .featured-products .product-card {
    min-height: 360px !important;
    max-height: 360px !important;
  }
  .section-large-text {
    height: 200px;
  }
  .section-large-text h1 {
    font-size: 34px;
  }
  .section-our-story .card {
    min-height: 282px;
    max-height: 460px !important;
    height: 100%;
    padding: 12px;
  }
  section {
    padding: 40px 0 !important;
  }
}
@media only screen and (max-width: 575.5px) {
  .main-header .row-header {
    height: auto !important;
  }
  .banner-caption h1 {
    font-size: 34px !important;
  }
  .banner-caption p {
    font-size: 14px !important;
  }
  .featured-products .product-card {
    min-height: auto !important;
    max-height: auto !important;
  }
  .contact-section .input-group input {
    padding: 26px;
  }
  .contact-section .btn {
    font-size: 12px !important;
  }
}
@media only screen and (max-width: 500px) {
  .main-header {
    height: 80vh !important;
  }
  .main-header .banner-caption .heading-secondary-text p {
    font-size: 14px !important;
  }
}
@media only screen and (max-width: 487px) {
  .main-header .banner-caption .heading-secondary-text p {
    font-size: 14px !important;
  }
}
@media only screen and (max-width: 343.5px) {
  .banner-caption h1 {
    font-size: 22px !important;
  }
}
@media (min-width: 767.5px) and (max-width: 991.5px) {
  .content-section .col-md-6 {
    margin-bottom: 0;
  }
  .content-section .col-md-6:last-child {
    margin-bottom: 0;
  }
  .news-section {
    padding: 40px 0;
  }
  .news-section .section-header h2 {
    font-size: 2rem;
  }
  .article-card {
    margin-bottom: 30px;
  }
  .article-card .card-image img {
    height: 200px;
  }
}
@media print {
  .news-section {
    padding: 20px 0;
  }
  .article-card {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    box-shadow: none;
  }
  .read-more {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */