@charset "UTF-8";
body {
  background-color: #F5F5F5;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (max-width: 1000px) {
  body {
    scrollbar-width: none;
  }
  body::-webkit-scrollbar {
    display: none;
  }
}

html {
  overflow-x: hidden;
}
@media (max-width: 1000px) {
  html {
    scrollbar-width: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }
}

section {
  padding-top: 80px;
  padding-bottom: 40px;
}
@media (max-width: 1000px) {
  section {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

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

.hidden {
  display: none;
}

.row {
  margin-left: 0px;
  margin-right: 0px;
}

p, .content, ul, ol {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 2px;
  font-size: 16px;
  color: #172129;
}

ul {
  padding-left: 1rem;
}
ul li {
  list-style-type: none;
  position: relative;
  padding-left: 20px;
}
ul li::before {
  content: "•";
  color: #00B3FF;
  position: absolute;
  left: 0;
  font-size: 1.6em;
  top: -1px;
}

.news-articles ul li {
  padding-left: 0px;
}
.news-articles ul li::before {
  display: none;
}

ol li::marker {
  color: #00B3FF;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Maven Pro", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  color: #111;
  line-height: normal;
  letter-spacing: 0.72px;
  margin-bottom: 0.5em;
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
  color: #FAFAFA;
}

.dark p, .dark .content {
  color: #FAFAFA;
}

h2, .heading-md {
  font-size: 48px;
}

h3, .heading-sm {
  font-size: 24px;
}

.supertitle {
  font-size: 14px;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 2px;
  font-family: "Maven Pro", sans-serif;
  text-transform: uppercase;
  color: #00B3FF;
  margin-bottom: -0.1em;
}

hr.short {
  width: 50%;
  background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%) !important;
  border: none;
  height: 1px;
  margin: 5px 0px !important;
}

h2.accent-line {
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
h2.accent-line::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #007db3;
}

.about-image {
  border-radius: 12px;
  position: relative;
}
.about-image:before {
  content: "";
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 90%;
  height: 50%;
  background-color: #007db3;
  z-index: -1;
  border-radius: 12px;
}

.fadeInUp, .fadeInDown, .fadeInRight, .fadeInLeft, .fadeInUpShort, .fadeInDownShort, .fadeInRightShort, .fadeInLeftShort, .up, .upShort {
  animation-duration: 1s; /* Set the duration for all animations */
  animation-fill-mode: both; /* Keep the final state of the animation */
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes up {
  0% {
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.up {
  -webkit-animation-name: up;
  animation-name: up;
}

.upShort {
  -webkit-animation-name: upShort;
  animation-name: upShort;
}

.fadeInUpShort {
  -webkit-animation-name: fadeInUpShort;
  animation-name: fadeInUpShort;
}

.fadeInDownShort {
  -webkit-animation-name: fadeInDownShort;
  animation-name: fadeInDownShort;
}

.fadeInRightShort {
  -webkit-animation-name: fadeInRightShort;
  animation-name: fadeInRightShort;
}

.fadeInLeftShort {
  -webkit-animation-name: fadeInLeftShort;
  animation-name: fadeInLeftShort;
}

@keyframes fadeInUpShort {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownShort {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInRightShort {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftShort {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes upShort {
  0% {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.btn {
  font-family: "Inter", sans-serif;
}

.btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px; /* 177.778% */
  letter-spacing: 0.54px;
  font-family: "Inter", sans-serif;
  padding: 5px 15px;
  color: white;
  position: relative;
  margin-top: 20px;
}

.btn-secondary {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px; /* 177.778% */
  letter-spacing: 0.54px;
  font-family: "Maven Pro", sans-serif;
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #111;
  position: relative;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 20px;
  height: 3px;
  background-color: #00B3FF;
  transition: width 0.25s;
}

.btn-secondary:hover {
  color: #111;
}
.btn-secondary:hover:before {
  width: 51px;
}

/* Override Bootstrap btn-primary */
.btn-primary {
  letter-spacing: 2px;
  background-color: #007db3;
  border: 2px solid #005a80;
  color: #fff;
  position: relative; /* Needed for the pseudo-element positioning */
  overflow: hidden; /* Hide the pseudo-element when it moves outside */
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  border-radius: 0px;
}

/* Create the flash effect using a pseudo-element */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%; /* Start well off to the left */
  width: 50%; /* Adjust width for the desired flash size */
  height: 100%;
  background: rgba(255, 255, 255, 0.3); /* White flash for dark button */
  transform: skewX(-25deg); /* Gives it a diagonal look */
  transition: left 0.5s ease; /* Animates the horizontal movement */
  z-index: 0; /* Place it behind the button text */
}

/* Ensure that the button's text and content remain on top */
.btn-primary > * {
  position: relative;
  z-index: 1;
}

/* Hover state: animate the flash across the button */
.btn-primary:hover {
  color: #fff;
  background-color: #008fcc;
  border-color: #008fcc;
}

.btn-primary:hover::before {
  left: 125%; /* Move the pseudo-element off the right side */
}

.btn-sm {
  font-size: 14px;
  padding: 5px 15px !important;
}

.contact-form-wrapper {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.section-contact .text-primary {
  color: rgb(10, 101, 157) !important;
}

.contact-info {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.8rem;
}

.form-control:focus {
  border-color: #1e364c;
  box-shadow: 0 0 0 0.2rem rgba(17, 7, 104, 0.15);
}

.contact-info h5 {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
}

.location-card {
  background: rgba(10, 101, 157, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.location-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.5rem;
}

.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.btn-primary {
  padding: 0.8rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-item a {
  color: #0d0859;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.contact-info-item a:hover {
  color: #121074;
}

.footer {
  background-color: black;
  color: white;
  padding-top: 65px;
  padding-bottom: 50px;
}
.footer .icon-wrapper img {
  width: 18px;
}
.footer .icon-wrapper a {
  display: inline-block;
}
.footer a {
  color: white;
  font-size: 12px;
  display: block;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer p {
  color: white;
  font-size: 12px;
  margin-top: 14px;
  line-height: 145%;
  letter-spacing: 2px;
}
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5 {
  color: white;
}
@media (max-width: 1000px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

/* Fading border-top effect */
.border-top-fade {
  position: relative;
}
.border-top-fade::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
}

.section-map {
  padding: 80px 0;
  background-color: #f8f9fa;
}
@media (max-width: 1000px) {
  .section-map {
    padding: 50px 0;
  }
}

.map-floating {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 300px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .map-floating {
    right: 10px;
    width: 80%;
  }
}
.map-floating .location-address {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}
.map-floating .directions-icon {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  position: absolute;
  right: 20px;
  top: 20px;
}
.map-floating .google-view {
  font-size: 14px;
  font-weight: 600;
  color: #3b82c5;
}

#map, #map1, #map2 {
  height: 500px;
  border-radius: 20px;
  border: 1px solid #00B3FF;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-sidebar {
  position: absolute;
  display: none;
  top: 1px;
  right: 1px;
  width: 350px;
  height: 100%;
  height: calc(100% - 2px);
  background-color: #fff;
  z-index: 1000;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  padding: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.map-sidebar .location-in {
  padding: 20px;
}
.map-sidebar .location-extra {
  margin-bottom: 3px;
}
.map-sidebar .location-extra strong {
  color: #00B3FF;
}
.map-sidebar h3 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.map-sidebar p {
  font-size: 14px;
  line-height: 1.25;
}
.map-sidebar .bg-image {
  width: 100%;
  height: 150px;
  margin: 0;
  padding: 0;
  object-fit: cover;
}

.nav-top {
  position: absolute;
  top: 0px;
  height: 30px;
  background-color: #4377A7;
  color: white;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-top a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  margin: 0px 10px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 1000px) {
  .nav-top {
    display: none;
  }
}

nav.nav {
  margin-top: 30px;
  transition: margin-top 0.5s ease;
  transition: all 0.5s ease;
  position: fixed;
  z-index: 9999;
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 20px 0px;
  min-height: 60px;
}
@media (max-width: 1000px) {
  nav.nav {
    margin-top: 0px;
  }
}
nav.nav .nav-logo {
  position: absolute;
  left: 30px;
  top: 15px;
}
nav.nav .nav-logo img {
  width: 102px;
  height: 54px;
  object-fit: contain;
}
@media (max-width: 1000px) {
  nav.nav .nav-logo {
    display: block;
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
nav.nav.sticky {
  margin-top: 0px;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
nav.nav.sticky .nav-item-wrapper .nav-item {
  color: #FAFAFA;
}
nav.nav.secondary .nav-item-wrapper .nav-item {
  color: #FAFAFA;
}
@media (max-width: 1000px) {
  nav.nav {
    background-color: #333;
  }
}
@media (min-width: 1001px) {
  nav.nav .nav-item-wrapper {
    max-width: 1320px;
    margin: 0 auto;
  }
}
nav.nav .nav-item-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
nav.nav .nav-item-wrapper .button-wrapper {
  margin-left: auto;
  margin-right: 20px;
}
@media (max-width: 1000px) {
  nav.nav .nav-item-wrapper .button-wrapper {
    margin-left: 0px;
    margin-right: auto;
  }
}
nav.nav .nav-item-wrapper .button-wrapper .btn {
  position: relative;
  margin-top: 6px;
  padding: 0px 10px;
  top: -3px;
}
nav.nav .nav-link, nav.nav .nav-item {
  color: white;
  text-align: center;
  padding: 0px 14px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 2px;
  font-family: Arimo;
  margin: 0px 10px;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 1000px) {
  nav.nav .nav-link, nav.nav .nav-item {
    color: white;
  }
}
nav.nav .nav-link:before, nav.nav .nav-item:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 14px;
  width: 0px;
  height: 3px;
  border-radius: 2px;
  background-color: #00B3FF;
  transition: width 0.25s;
}
nav.nav .nav-link.active:before, nav.nav .nav-item.active:before {
  width: 0px;
  display: none;
}
nav.nav .nav-link:hover:before, nav.nav .nav-item:hover:before {
  width: 40px;
}
nav.nav .nav-link.dropdown-toggle::after, nav.nav .nav-item.dropdown-toggle::after {
  margin-left: 8px;
}
nav.nav .nav-link.dropdown, nav.nav .nav-item.dropdown {
  padding: 0px !important;
  margin: 0px !important;
}
@media (min-width: 1001px) {
  nav.nav .dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }
  nav.nav .dropdown .nav-item.dropdown-toggle {
    height: 100%;
    display: flex;
    align-items: center;
  }
  nav.nav .dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 9999;
    border-radius: 0;
  }
}
nav.nav .dropdown-menu {
  background-color: #222;
  border: none;
  border-radius: 0;
  padding: 0;
  min-width: max-content;
  display: none;
}
nav.nav .dropdown-menu .dropdown-item {
  color: white;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
nav.nav .dropdown-menu .dropdown-item:hover {
  background-color: #333;
}
nav.nav .far-right {
  position: absolute;
  right: 20px;
}
nav.nav .hamburger {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 21px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 11000;
}
nav.nav .hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}
nav.nav .hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
nav.nav .hamburger.active span:nth-child(2) {
  opacity: 0;
}
nav.nav .hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media (max-width: 1000px) {
  nav.nav {
    justify-content: flex-start;
    padding: 20px;
  }
  nav.nav .hamburger {
    display: flex;
  }
  nav.nav .nav-item-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #111;
    display: flex;
    flex-direction: column;
    padding: 50px 20px 20px;
    transition: right 0.3s ease;
    z-index: 10000;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  nav.nav .nav-item-wrapper.active {
    right: 0;
  }
  nav.nav .nav-item-wrapper .nav-item {
    margin: 5px 0;
    padding: 10px 0;
    width: 100%;
    display: block;
    text-align: left;
  }
  nav.nav .nav-item-wrapper .nav-item:before {
    bottom: auto;
    left: 0;
    height: 2px;
    width: 0;
  }
  nav.nav .nav-item-wrapper .nav-item:hover:before {
    width: 40px;
  }
  nav.nav .nav-item-wrapper .dropdown {
    width: 100%;
  }
  nav.nav .nav-item-wrapper .dropdown .dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
  }
  nav.nav .nav-item-wrapper .dropdown .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin-top: 0;
    box-shadow: none;
    display: none;
  }
  nav.nav .nav-item-wrapper .dropdown .dropdown-menu.show {
    display: block;
  }
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9990;
}
.nav-overlay.active {
  display: block;
}

body.menu-open {
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  background-color: #00B3FF;
  background-image: url("/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #010022, #000000);
  opacity: 0.6;
  z-index: 0;
}
.hero p {
  color: white;
}
.hero .container {
  z-index: 1;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .col-in {
  margin-top: 150px;
}
@media (max-width: 1000px) {
  .hero .col-in {
    margin-top: 50px;
  }
}
.hero h1 {
  font-size: 64px;
  color: white;
  font-weight: 700;
  text-align: left;
}
.hero .hero-bubble {
  background-color: rgba(10, 101, 157, 0.7333333333);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
}
.hero .hero-bubble h3 {
  font-size: 24px;
  color: white;
  text-align: left;
}
.hero .hero-bubble p {
  color: white;
  text-align: left;
}

.insurance-swiper {
  padding: 0 20px 60px 20px;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .insurance-swiper {
    padding: 0 20px 50px 20px;
  }
}
.insurance-swiper .swiper-wrapper {
  align-items: stretch;
}
.insurance-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.insurance-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.insurance-logo img {
  filter: grayscale(1);
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.insurance-logo img:hover {
  filter: grayscale(0);
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}

.swiper-pagination {
  display: none;
}

@media (max-width: 1200px) {
  .insurance-swiper {
    padding: 0 15px 50px 15px;
  }
}
@media (max-width: 992px) {
  .insurance-carousel {
    padding: 60px 0;
  }
  .insurance-carousel .section-header {
    margin-bottom: 40px;
  }
  .insurance-carousel .section-header h2 {
    font-size: 2rem;
  }
  .insurance-logo {
    height: 100px;
    padding: 15px;
  }
  .insurance-logo img {
    max-height: 70px;
  }
}
@media (max-width: 768px) {
  .insurance-carousel {
    padding: 50px 0;
  }
  .insurance-swiper {
    padding: 0 10px 40px 10px;
  }
  .insurance-logo {
    height: 90px;
    padding: 12px;
  }
  .insurance-logo img {
    max-height: 60px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 576px) {
  .insurance-carousel .section-header h2 {
    font-size: 1.8rem;
  }
  .insurance-carousel .section-header p {
    font-size: 1rem;
  }
  .insurance-logo {
    height: 80px;
    padding: 10px;
  }
  .insurance-logo img {
    max-height: 50px;
  }
}
/* Flex Container for Staff Cards */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 50px;
}

.staff-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.staff-wrapper .staff-member {
  flex: 0 1 calc(48% - 20px);
  max-width: 600px;
  min-width: 360px;
  background: white;
  border-radius: 18px;
  padding: 36px 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}
.staff-wrapper .staff-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.staff-wrapper .staff-member .staff-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 18px;
}
.staff-wrapper .staff-member .staff-image img {
  width: 80%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .staff-wrapper .staff-member {
    flex: 0 1 calc(54% - 15px);
  }
}
@media (max-width: 992px) {
  .staff-wrapper .staff-member {
    flex: 0 1 calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .staff-wrapper .staff-member {
    flex: 0 1 100%;
    max-width: 100%;
  }
  .staff-wrapper .staff-image {
    height: 400px;
  }
}

.section-staff {
  padding: 80px 0;
  background-color: #f8f9fa;
}
@media (max-width: 1000px) {
  .section-staff {
    padding: 50px 0;
  }
}

.staff-header {
  margin-bottom: 60px;
  text-align: center;
}

.staff-header h1 {
  color: #2c3e50;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.staff-header p {
  color: #7f8c8d;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Staff Grid Layout */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 36px;
  margin-top: 60px;
}
@media (max-width: 1000px) {
  .staff-grid {
    margin-top: 50px;
  }
}

/* Staff Card Design */
.staff-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  height: 600px;
}

.staff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Staff Image Container */
.staff-image-container {
  position: relative;
  height: 468px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.staff-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.staff-card:hover .staff-image {
  transform: scale(1.1);
}

/* Staff Info Overlay */
.staff-info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(67, 119, 167, 0.7333333333);
  color: white;
  padding: 48px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.staff-info-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.33);
  backdrop-filter: blur(5px);
  z-index: -1;
}

/* Staff Info Below Image */
.staff-info {
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.33);
  backdrop-filter: blur(5px);
  border-radius: 0 0 18px 18px;
}

.staff-card:hover .staff-info-overlay {
  transform: translateY(0);
}

.staff-name {
  font-size: 2.16rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
}

.staff-title {
  font-size: 1.44rem;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 24px;
}

.staff-description {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
  max-width: 90%;
}

.staff-card:hover .staff-description {
  opacity: 1;
}

/* Staff Info Below Image */
.staff-info {
  padding: 20px;
  text-align: center;
}

.staff-info .staff-name {
  color: #2c3e50;
  font-size: 1.68rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.staff-info .staff-title {
  color: #7f8c8d;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .flex-container {
    gap: 20px;
    margin-top: 30px;
  }
  .staff-grid {
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 24px;
  }
  .staff-card {
    height: 540px;
  }
}
@media (max-width: 768px) and (max-width: 1000px) {
  .staff-card {
    height: 490px;
  }
}
@media (max-width: 768px) {
  .section-about {
    background-color: #fff;
  }
}
@media (max-width: 768px) {
  .staff-image-container {
    height: 360px;
  }
  .staff-info-overlay {
    padding: 42px 24px;
  }
  .staff-description {
    font-size: 1.14rem;
    line-height: 1.5;
  }
  .staff-header h1 {
    font-size: 2.5rem;
  }
  .staff-header p {
    font-size: 1.1rem;
  }
}
@media (max-width: 576px) {
  .flex-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .staff-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .staff-card {
    height: 504px;
  }
}
@media (max-width: 576px) and (max-width: 1000px) {
  .staff-card {
    height: 454px;
  }
}
@media (max-width: 576px) {
  .staff-image-container {
    height: 324px;
  }
  .staff-info-overlay {
    padding: 36px 18px;
  }
  .staff-description {
    font-size: 1.08rem;
    line-height: 1.5;
  }
  .staff-header h1 {
    font-size: 2rem;
  }
  .staff-header p {
    font-size: 1rem;
  }
}
/* Animation for cards appearing */
.staff-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.staff-card:nth-child(1) {
  animation-delay: 0.1s;
}

.staff-card:nth-child(2) {
  animation-delay: 0.2s;
}

.staff-card:nth-child(3) {
  animation-delay: 0.3s;
}

.staff-card:nth-child(4) {
  animation-delay: 0.4s;
}

.staff-card:nth-child(5) {
  animation-delay: 0.5s;
}

.staff-card:nth-child(6) {
  animation-delay: 0.6s;
}

.staff-card:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-form-wrapper {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.section-contact .text-primary {
  color: rgb(10, 101, 157) !important;
}

.contact-info {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.8rem;
}

.form-control:focus {
  border-color: #1e364c;
  box-shadow: 0 0 0 0.2rem rgba(17, 7, 104, 0.15);
}

.contact-info h5 {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
}

.location-card {
  background: rgba(10, 101, 157, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.location-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.5rem;
}

.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.btn-primary {
  padding: 0.8rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-item a {
  color: #0d0859;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.contact-info-item a:hover {
  color: #121074;
}

.testimonials {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 60px 0px;
  position: relative;
}
@media (max-width: 1000px) {
  .testimonials {
    padding: 50px 0px;
  }
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/officescroller.jpg");
  background-size: cover;
  background-repeat: repeat;
  opacity: 1;
  z-index: 0;
}
.testimonials::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
.testimonials * {
  position: relative;
  z-index: 1;
}
.testimonials .testimonial-wrapper {
  position: relative;
  padding: 40px 0;
}
.testimonials .testimonial-wrapper .swiper {
  width: 100%;
  padding: 30px 0;
  overflow: visible;
}
.testimonials .testimonial-wrapper .swiper-slide {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  padding: 25px;
  margin: 0 5px;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  height: auto;
  min-height: 250px;
  max-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 300px;
  opacity: 0.75;
  transform: scale(0.75) !important;
}
.testimonials .testimonial-wrapper .swiper-slide.swiper-slide-active {
  transform: scale(1.25) !important;
  border-color: #2c3e50;
  z-index: 2;
  opacity: 1;
}
.testimonials .testimonial-wrapper .swiper-slide.swiper-slide-prev, .testimonials .testimonial-wrapper .swiper-slide.swiper-slide-next {
  opacity: 0.6;
  z-index: 1;
}
.testimonials .testimonial-wrapper .testimonial-item {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonials .testimonial-wrapper .testimonial-item .testimonial-content {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px;
  font-style: italic;
  flex-grow: 1;
  height: 120px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  position: relative;
  z-index: 10;
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}
.testimonials .testimonial-wrapper .testimonial-item .testimonial-content::-webkit-scrollbar {
  width: 6px;
}
.testimonials .testimonial-wrapper .testimonial-item .testimonial-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.testimonials .testimonial-wrapper .testimonial-item .testimonial-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
  transition: background 0.3s ease;
}
.testimonials .testimonial-wrapper .testimonial-item .testimonial-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.testimonials .testimonial-wrapper .testimonial-item .testimonial-content::-webkit-scrollbar-thumb:active {
  background: #888;
}
.testimonials .testimonial-wrapper .testimonial-item .stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
}
.testimonials .testimonial-wrapper .testimonial-item .stars::before {
  content: "★★★★★";
  color: #ffc107;
  font-size: 24px;
  letter-spacing: 3px;
}
.testimonials .testimonial-wrapper .testimonial-item .testimonial-attribution {
  margin-top: auto;
  text-align: center;
  padding-top: 15px;
  border-top: 2px solid #f0f0f0;
}
.testimonials .testimonial-wrapper .testimonial-item .testimonial-attribution .testimonial-person {
  font-weight: 700;
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonials .testimonial-wrapper .testimonial-item .testimonial-attribution .testimonial-location {
  font-style: italic;
  font-size: 14px;
  color: #7f8c8d;
  font-weight: 500;
}
.testimonials .testimonial-wrapper .swiper-button-next,
.testimonials .testimonial-wrapper .swiper-button-prev {
  color: #2c3e50;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.testimonials .testimonial-wrapper .swiper-button-next:hover,
.testimonials .testimonial-wrapper .swiper-button-prev:hover {
  background: #2c3e50;
  color: white;
  transform: scale(1.1);
}
.testimonials .testimonial-wrapper .swiper-button-next::after,
.testimonials .testimonial-wrapper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}
.testimonials .testimonial-wrapper .swiper-button-next {
  right: 20px;
}
.testimonials .testimonial-wrapper .swiper-button-prev {
  left: 20px;
}
.testimonials .testimonial-wrapper .swiper-pagination {
  position: relative;
  margin-top: 30px;
}
.testimonials .testimonial-wrapper .swiper-pagination .swiper-pagination-bullet {
  background: #bdc3c7;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  transition: all 0.3s ease;
}
.testimonials .testimonial-wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #2c3e50;
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .testimonials .testimonial-wrapper .swiper {
    padding: 5px 0;
  }
  .testimonials .testimonial-wrapper .swiper-slide {
    padding: 8px;
    margin: 0 3px;
    min-height: 150px;
    max-height: 200px;
    width: 200px;
    opacity: 0.75;
    transform: scale(0.8) !important;
  }
  .testimonials .testimonial-wrapper .swiper-slide.swiper-slide-active {
    transform: scale(1.1) !important;
    opacity: 1;
  }
  .testimonials .testimonial-wrapper .swiper-slide.swiper-slide-prev, .testimonials .testimonial-wrapper .swiper-slide.swiper-slide-next {
    opacity: 0.6;
  }
  .testimonials .testimonial-wrapper .testimonial-item .testimonial-content {
    font-size: 12px;
    height: 80px;
  }
  .testimonials .testimonial-wrapper .testimonial-item .stars::before {
    font-size: 20px;
  }
  .testimonials .testimonial-wrapper .testimonial-item .testimonial-attribution .testimonial-person {
    font-size: 16px;
  }
  .testimonials .testimonial-wrapper .testimonial-item .testimonial-attribution .testimonial-location {
    font-size: 12px;
  }
  .testimonials .testimonial-wrapper .swiper-button-next,
  .testimonials .testimonial-wrapper .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  .testimonials .testimonial-wrapper .swiper-button-next::after,
  .testimonials .testimonial-wrapper .swiper-button-prev::after {
    font-size: 14px;
  }
  .testimonials .testimonial-wrapper .swiper-button-next {
    right: 10px;
  }
  .testimonials .testimonial-wrapper .swiper-button-prev {
    left: 10px;
  }
}

.secondary-hero {
  min-height: 60vh;
}
.secondary-hero .row .col-in {
  margin-top: 80px;
  margin-bottom: 130px;
}
@media (max-width: 1000px) {
  .secondary-hero .row .col-in {
    margin-top: 50px;
  }
}
.secondary-hero h1 {
  text-align: center !important;
}

.secondary-hero:after {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background-image: url("data:image/svg+xml, <svg width='100%' height='100px' viewBox='0 0 1280 140' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'><g fill='%23ffffff'><path d='M725.29 101.2C325.22 122.48 0 0 0 0v140h1280V0s-154.64 79.92-554.71 101.2z' fill-opacity='.3'/><path d='M556.45 119.74C953.41 140 1280 14 1280 14v126H0V0s159.5 99.48 556.45 119.74z' fill-opacity='.5'/><path d='M640 140c353.46 0 640-140 640-139v140H0V0s286.54 140 640 140z'/></g></svg>");
  position: absolute;
  left: 0;
  bottom: 0;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}

.plans {
  background-color: white;
}
.plans .sticky-sidebar-container {
  position: relative;
  overflow: visible;
}
.plans .sticky-sidebar-container .sticky-sidebar {
  position: sticky;
  top: 100px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.plans .sticky-sidebar-container .sticky-sidebar:before {
  content: "";
  position: absolute;
  bottom: -10px;
  border-radius: 4px;
  right: -10px;
  width: 50%;
  height: 30px;
  background-color: #0d6efd;
  z-index: -1;
}
.plans .sticky-sidebar-container .nav-link > h5 {
  margin-bottom: 0px;
  font-size: 22px;
  text-align: left;
}
.plans .sticky-sidebar-container .nav-link {
  color: #00B3FF;
  background-color: #FFFFFF;
  padding: 12px 10px;
  padding-right: 40px;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 0px;
}
.plans .sticky-sidebar-container .nav-link:before, .plans .sticky-sidebar-container .nav-link:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 0px;
  background-color: #00B3FF;
  transition: all 0.3s ease;
}
.plans .sticky-sidebar-container .nav-link:before {
  bottom: 0px;
  left: -2px;
}
.plans .sticky-sidebar-container .nav-link:after {
  bottom: 0px;
  right: -2px;
}
.plans .sticky-sidebar-container .nav-link:hover {
  background-color: #DDDDDD;
  color: white;
}
.plans .sticky-sidebar-container .nav-link:hover:before, .plans .sticky-sidebar-container .nav-link:hover:after {
  height: 100%;
}
.plans .plan-detail {
  margin-bottom: 30px;
}
.plans .plan-detail h4 {
  font-size: 28px;
  text-align: left;
}

/* Insurance Types Section - Based on Hero Bubble Styles */
.insurance-types {
  padding: 80px 0;
  background-color: #f8f9fa;
}
@media (max-width: 1000px) {
  .insurance-types {
    padding: 50px 0;
  }
  .insurance-types .row .col-md-4 {
    margin-bottom: 20px;
  }
}

.insurance-types-header {
  margin-bottom: 60px;
  text-align: center;
}

.insurance-types-header h2 {
  color: #2c3e50;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.insurance-types-header p {
  color: #7f8c8d;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Insurance Card - Based on Hero Bubble */
.insurance-card {
  background-color: rgba(10, 101, 157, 0.7333333333);
  padding: 30px 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.insurance-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.insurance-icon {
  margin-bottom: 20px;
}
.insurance-icon i {
  color: white;
  font-size: 2.5rem;
}

.insurance-title {
  font-size: 1.8rem;
  color: white;
  text-align: left;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.insurance-description {
  color: white;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.insurance-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  margin-top: auto;
  transition: color 0.3s ease;
}
.insurance-link:hover {
  color: #ffd700;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .insurance-types {
    padding: 60px 0;
  }
  .insurance-types-header h2 {
    font-size: 2.5rem;
  }
  .insurance-types-header p {
    font-size: 1.1rem;
  }
  .insurance-card {
    padding: 25px 20px;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) and (max-width: 1000px) {
  .insurance-card {
    padding-bottom: 35px;
  }
}
@media (max-width: 768px) {
  .insurance-title {
    font-size: 1.6rem;
  }
  .insurance-description {
    font-size: 0.95rem;
  }
  .insurance-icon i {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .insurance-types-header h2 {
    font-size: 2rem;
  }
  .insurance-types-header p {
    font-size: 1rem;
  }
  .insurance-card {
    padding: 20px 15px;
  }
  .insurance-title {
    font-size: 1.4rem;
  }
  .insurance-description {
    font-size: 0.9rem;
  }
  .insurance-icon i {
    font-size: 1.8rem;
  }
}
/* Animation for cards appearing */
.insurance-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.insurance-card:nth-child(1) {
  animation-delay: 0.1s;
}

.insurance-card:nth-child(2) {
  animation-delay: 0.2s;
}

.insurance-card:nth-child(3) {
  animation-delay: 0.3s;
}

.insurance-card:nth-child(4) {
  animation-delay: 0.4s;
}

.insurance-card:nth-child(5) {
  animation-delay: 0.5s;
}

.insurance-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cta-banner {
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  padding: 2rem 0;
  margin: 3rem 0;
  border-radius: 10px 10px 100px 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

.cta-logo {
  /*flex-shrink: 0;*/
}
.cta-logo .logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 191px;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
}
.cta-logo .logo-img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .cta-logo .logo-img {
    width: auto;
    height: auto;
    max-width: 140px;
    max-height: 48px;
  }
}

.cta-text {
  flex: 1;
  margin: 0 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .cta-text {
    margin: 0;
  }
}

.cta-subtitle {
  font-family: "Maven Pro", sans-serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .cta-subtitle {
    font-size: 1.1rem;
  }
}

.cta-title {
  font-family: "Maven Pro", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .cta-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .cta-title {
    font-size: 1.3rem;
  }
}

.cta-decorative {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cta-decorative {
    order: -1;
  }
}

.cta-shapes {
  position: relative;
}
.cta-shapes .cta-circle {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -5px;
  animation: float 3s ease-in-out infinite;
}
.cta-shapes .cta-leaf {
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50% 0;
  position: absolute;
  top: 5px;
  right: -10px;
  animation: float 3s ease-in-out infinite 1.5s;
}

.cta-arrow {
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.cta-arrow:hover {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .cta-arrow {
    font-size: 1.25rem;
  }
}

.cta-button {
  background: white;
  color: #0066cc;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}
.cta-button:hover {
  background: #f8f9fa;
  color: #004499;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.cta-button:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .cta-button {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 992px) {
  .cta-content {
    padding: 0 1.5rem;
  }
  .cta-text {
    margin: 0 1rem;
  }
}
@media (max-width: 576px) {
  .cta-banner {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-radius: 0 30px 30px 0;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-content {
    padding: 0 1rem;
  }
  .cta-shapes {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */