/* @import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Roboto:wght@400;700&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

:root {
  --primary: #766391;
  --secondary: #3cacae;
  --tertiary: #c3fefc;
  --quarternary: #d0c3f1;
  --fifth: #272030;
  --last: #efebe2;
  --ff-primary: "Cinzel", serif;
  --ff-secondary: "Lora", serif;
  --section-divider-height: 60;
  --section-divider-width: 1920;
  --section-divider-ratio: calc(
    100% * var(--section-divider-height) / var(--section-divider-width)
  );
}

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

p,
a,
span,
li,
div {
  font-family: var(--ff-secondary);
}

a {
  text-decoration: none;
  color: #7a7a7a;
  opacity: 1;
  transition: all 0.356s;
}

a:hover {
  opacity: 0.65;
  transition: all 0.356s;
}
body {
  /* padding-top: 96px; */ /* Adjust this value based on your navbar height */
}

.navbar.fixed-top {
  top: 40px; /* Adjust based on your top bar height */
}
html,
body {
  overflow-x: hidden;
}

.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 10;
}
.z-2 {
  z-index: 20;
}
.z-9 {
  z-index: 999999;
}

.invert {
  filter: invert(100%) !important;
}

.mirror {
  transform: scaleX(-1) !important;
}

.min-h-inherit {
  min-height: inherit;
}

.o-cover {
  object-fit: cover;
}

.w-short {
  width: 75%;
}

@media (max-width: 991px) {
  .w-short {
    width: 100%;
  }
  .nav-pills .nav-link {
  
    padding: 5px 10px;
}
.tab-pane {
    padding: 0;
}

.nav-pills {
    
   padding-bottom: 0;
}
.parallax .container {
  
  margin-top: 6em !important;
 
}
}
ul#serviceTab {
  margin-top: 2em;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 1200px) {
  .col-xl-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.lined-up-btns {
  position: absolute;
  bottom: 5%;
  transform: translateX(-50%);
}

.rotate-45 {
  rotate: 45deg;
}

/********************/
/*PARALLAX */
/********************/
.parallax {
  min-height: 500px;
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-box-shadow: inset 0 0 20px #00000068;
  -webkit-box-shadow: inset 0 0 20px #00000068;
  box-shadow: inset 0 0 20px #00000068;
}

@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
  .parallax {
    background-attachment: scroll;
  }
}
.neg-margin {
  margin-bottom: -1px;
}

.parallax {
  background-image: url('/images/steam-paralax.jpg'); /* Placeholder image */
  min-height: 60vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5); */ /* Dark overlay for text readability */
  z-index: 1;
}

.parallax .container {
  position: relative;
  margin-top: 0em;
  z-index: 2;
}
/****************************
*************BG**************
****************************/
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-tertiary {
  background-color: var(--tertiary) !important;
}
.bg-quarternary {
  background-color: var(--quarternary) !important;
}
.bg-beige {
  background: #efebe2;
}
.text-red {
  color: var(--dark-red);
}
.text-tertiary {
  color: var(--tertiary) !important;
}

.text-pastel-green {
  color: var(--pastel-green);
}
.bg-gradient {
  background: var(--primary);
  background: -moz-linear-gradient(
    266deg,
    var(--primary) 0%,
    var(--secondary) 82%
  );
  background: -webkit-linear-gradient(
    266deg,
    var(--primary) 0%,
    var(--secondary) 82%
  );
  background: linear-gradient(
    266deg,
    var(--primary) 0%,
    var(--secondary) 82%
  );
}
.sm {
  font-weight: 400;
  font-size: 1em !important;
}
/****************************
*************BORDER**************
****************************/
.border-primary {
  border-color: var(--primary) !important;
}
.border-secondary {
  border-color: var(--secondary) !important;
}
.border-tertiary {
  border-color: var(--tertiary) !important;
}
.border-quarternary {
  border-color: var(--quarternary) !important;
}

/****************************
************FONT*************
****************************/
.font-primary {
  font-family: var(--ff-primary) !important;
}

.font-secondary {
  font-family: var(--ff-secondary) !important;
}

/****************************
************TEXT*************
****************************/
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-tertiary {
  color: var(--tertiary) !important;
}
.text-quarternary {
  color: var(--quarternary) !important;
}

/****************************
**********DIVIDER************
****************************/
.has-divider {
  position: relative;
  padding-bottom: var(--section-divider-ratio);
}
.section-divider {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
}

/****************************
*********NAVIGATION**********
****************************/
nav li a {
  margin: 0;
  border-radius: 20px;
  padding: 10px 15px !important;
  background-color: transparent;
  color: #333;
  transition: background-color 0.25s, color 0.25s;
}

.nav-link {
  font-family: var(--ff-primary);
  font-size: 16px;
  position: relative;
}

#phone-no a {
  font-size: 1.3em;
}
@media (max-width: 1080px) {
  #phone-no a {
    font-size: 0.75em;
  }
}

@media (max-width: 430px) {
  #phone-no {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0;
  }
}
.container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;  /* Ensure padding for small screens */
  padding-right: 15px;  /* Ensure padding for small screens */
}

.navbar-brand {
  flex-grow: 1;
  flex-shrink: 1;
}

.navbar-phone {
  display: none;  /* Hidden by default */
  text-align: right;  /* Aligns the phone number to the right */
  position: absolute;
  right: 7px; /* Adjust this based on actual space needed for the toggler */
  top: 10px; /* Position it slightly higher on the navbar */
}

.navbar-toggler {
  flex-grow: 0;  /* Prevents stretching */
  position: absolute;
  right: 15px; /* Keep this aligned to the right edge of the container */
  top: 55px; /* Position it below the phone number */
}

.nav-link {
  transition: transform 0.2s ease-in-out;
}

.nav-link:hover,
.nav-link.active {
  transform: scale(1.1);
}

.top-bar .d-flex {
  flex-wrap: wrap;
}

.top-bar .d-flex.flex-row {
  flex-wrap: nowrap;
}


@media (max-width: 767px) {
  .top-bar .d-flex {
      flex-direction: column;
  }

  .top-bar .d-flex.flex-row {
      flex-direction: row;
      justify-content: center;
  }
}



/* Adjust visibility and alignment for mobile and desktop */
.navbar-phone-desktop {
  display: none;  /* Hide desktop-specific elements on mobile */
}

@media (max-width: 992px) {
  .navbar-phone {
    display: block;  /* Show on mobile */
  }
}

@media (min-width: 992px) {
  .navbar-phone-desktop {
    display: block;  /* Show only on desktop */
    flex-grow: 0;  /* Keep the desktop phone number on the right */
    text-align: right;
    position: static;  /* Normal flow within flexbox */
  }
  .navbar-toggler {
    display: none;  /* Hide the toggler on desktop */
  }
}

/****************************
***********TOP-BAR************
****************************/
@media (max-width: 768px) {
  .top-bar {
    height: 56px !important; /* Set a fixed height for the top bar */
  }
  .navbar.fixed-top {
    top: 55px !important;
  }
}

.top-bar {
  background-color: var(--fifth); /* Dark background */
  color: #fff; /* White text color */
  border-bottom: 2px solid var(--secondary); /* Yellow bottom border */
  height: 40px; /* Set a fixed height for the top bar */
  position: fixed;
  width: 100%; /* Ensure it spans the full width */
  top: 0;
  z-index: 1030; /* Same z-index level as .fixed-top to ensure it doesn't go behind anything else */
}

/* Styling for social media icons */
.top-bar .fa {
  font-size: 1rem; /* Icon size */
}

/* Adjusting the header if it is fixed */
.navbar.fixed-top {
  top: 40px; /* Push down the navbar by the height of the top bar */
}

.typewrite-container {
  /* width: 430px; */ /* Adjust as needed */
  height: 60px; /* Adjust as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.typewrite {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  font-size: 4em;
  border-right: 0.08em solid #fff; /* Cursor effect */
}

/* MODAL VIDEO */

/* Hero Section Buttons */
#hero .btn {
  background: #8679a0;
  color: #000000;
  border: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#hero .btn:hover, #hero .btn:focus {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

#hero .btn-group {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

#hero .btn-group .btn {
  flex-grow: 1;
  min-width: 150px;
}

#hero .btn-intro {
  padding: 8px 20px;
  font-size: 14px;
  line-height: 1.5;
  border: 2px solid white;
  border-radius: 20px;
  background: transparent;
  color: white;
  transition: background-color 0.3s, color 0.3s;
}

#hero .btn-intro:hover {
  background-color: white;
  color: #000;
}

#hero .btn-intro i {
  margin-right: 5px;
}

#hero .btn-md {
  padding: 15px 45px;
  font-size: 16px;
}

.modal {
  z-index: 1055; /* Higher than usual to be above any fixed headers or other elements */
}

#hero .btn-intro {
  padding: 8px 20px; /* Redefine padding to be smaller */
  font-size: 14px; /* Set font size smaller */
  line-height: 1.5; /* Standard line height for better text alignment */
  border: 2px solid white; /* Define a specific border */
  border-radius: 20px; /* Rounded borders */
  background: transparent; /* Clear background */
  color: white; /* Text color */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}

#hero .btn-intro:hover {
  background-color: white; /* White background on hover */
  color: #000; /* Black text on hover */
}

#hero .btn-intro i {
  margin-right: 5px; /* Space between icon and text */
}


#hero .btn-md {
    padding: 15px 45px;
    font-size: 16px;
}

/****************************
***********HERO-SLIDER************
****************************/
.img-slider {
  position: absolute;
  width: 100%;
  height: 90vh;
  top: 0;
  left: 0;
  overflow: hidden;
}

.img-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.5s ease, transform 0.5s ease;
  animation: slide-animation 18s infinite;
}

@keyframes slide-animation {
  0%, 5% {
    opacity: 0;
    transform: scale(1.1);
  }
  10%, 45% {
    opacity: 1;
    transform: scale(1);
  }
  50%, 95% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.img-slider .slide:nth-child(1) {
  animation-delay: 0s;
}

.img-slider .slide:nth-child(2) {
  animation-delay: 6s;
}

.img-slider .slide:nth-child(3) {
  animation-delay: 12s;
}

/****************************
***********INTRO HEADING TEXT************
****************************/
@media (max-width: 768px) {
  .intro-heading, .intro-text {
    max-width: 100% !important; /* Adjust this value as needed */
    margin-left: auto;
    margin-right: auto;
  }
}

.intro-heading, .intro-text {
  max-width: 70%; /* Adjust this value as needed */
  margin-left: auto;
  color: black;
  margin-right: auto;
}

/****************************
***********THREE TAB SECTION************
****************************/
.nav-pills .nav-link {
  border-radius: 10px;
  border: 1px solid var(--secondary);
  color: #000;
  background-color: #f8f9fa;
  margin-right: 5px;
  padding: 10px 20px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.nav-pills .nav-link:hover {
  color: #000;
  border-color: #ca94c0;
  transform: scale(1.04);
}

.nav-pills .nav-link.active {
  color: #fff;
  background-color: var(--quarternary);
  border-color: var(--secondary);
  border: 1px solid;
  transform: none;
}

.nav-pills {
  justify-content: center;
  border-bottom: none;
  padding-bottom: 1rem;
}

.tab-content {
  margin-top: 20px;
  background-color: #fff;
  border-radius: 5px;
}

.tab-pane {
  padding: 20px;
}

.service-22 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #000;
}

.nav-pills .nav-link.active, .nav-pills .nav-link:hover {
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%);
}

.text-box h4 {
  font-size: 2em;
}

.service-11 {
  /* font-family: "Montserrat", sans-serif; */
  color: #8d97ad;
  font-weight: 300;
}

.service-11 h1, .service-11 h2, .service-11 h3, .service-11 h4, .service-11 h5, .service-11 h6 {
  color: #3e4555;
}

.service-11 .font-weight-medium {
  font-weight: 500;
}

.service-11 .bg-light {
  background-color: #f4f8fa !important;
}

.service-11 .subtitle {
  color: #8d97ad;
  line-height: 24px;
}

.service-11 .card.card-shadow {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.service-11 .wrap-service11-box {
  margin-top: 60px;
}

.service-11 .wrap-service11-box .icon-space {
  margin: -70px 0 20px;
}

.service-11 .wrap-service11-box .icon-space .icon-round {
  font-size: 45px;
  color: #ffffff;
}
/* 
.service-11 .btn-success-gradiant {
  background: var(--primary);
  background: -webkit-linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%);
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%);
  font-family: var(--ff-primary);
}

.service-11 .btn-success-gradiant:hover {
  background: var(--secondary);
  background: -webkit-linear-gradient(to right, var(--secondary) 0%, var(--primary) 100%);
  background: linear-gradient(to right, var(--secondary) 0%, var(--primary) 100%);
  opacity: 1 !important;
}

.service-11 .btn-md {
  padding: 15px 45px;
  font-size: 16px;
  font-family: var(--ff-primary);
} */

.service-11 .bg-success-gradiant {
  background: var(--primary);
  background: -webkit-linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%);
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%);
}

.service-11 .icon-round {
  width: 80px;
  line-height: 80px;
}

/* .btn-primary-gradient {
  background: var(--primary);
  background: -webkit-linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%) !important;
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%) !important;
  color: #000;
  padding: 15px 45px;
  font-size: 16px;
  border: none;
  font-family: var(--ff-primary);
}

.btn-primary-gradient:hover {
  background: var(--secondary);
  background: -webkit-linear-gradient(to right, var(--secondary) 0%, var(--primary) 100%) !important;
  background: linear-gradient(to right, var(--secondary) 0%, var(--primary) 100%) !important;
  opacity: 1 !important;
} */

/* Phone number styling */
.navbar-phone a,
.navbar-phone-desktop a {
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
}

/* Remove underline on hover */
.navbar-phone a:hover,
.navbar-phone-desktop a:hover {
    text-decoration: none;
}

/* Additional styling for the phone icon */
.navbar-phone a i,
.navbar-phone-desktop a i {
    color: rgba(0, 0, 0, 0.9);
}


.btn-primary {
  background: var(--primary);
  color: var(--last);
  padding: 12px 30px;
  font-weight: 600;
  font-size: 18px;
  border: none;
  font-family: var(--ff-primary);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(39, 32, 48, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(195, 254, 252, 0.3),
    transparent
  );
  transition: all 0.5s;
}

.btn-primary:hover {
  background: var(--secondary);
  box-shadow: 0 6px 8px rgba(39, 32, 48, 0.3);
  transform: translateY(-2px);
color: black;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  background: var(--primary); /* Ensuring it stays primary color when clicked */
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(39, 32, 48, 0.2) inset;
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(118, 99, 145, 0.3);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--tertiary);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn-primary:active::after {
  animation: ripple 0.6s ease-out;
}

/* Override any potential Bootstrap styles */
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled):active {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--secondary);
}
.nav-pills .nav-link {

  background: white;
}

/* .service-11 .btn-success-gradiant {
  background: var(--primary);
  background: -webkit-linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%);
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%);
  font-family: var(--ff-primary) !important;
}

.service-11 .btn-md {
  padding: 15px 45px;
  font-size: 16px;
  font-family: var(--ff-primary) !important;
} */

/* Override Bootstrap default button hover opacity */
.btn-primary:hover, .btn-primary-gradient:hover {
  opacity: 1 !important;
}
#hero .btn-secondary {
  background: var(--secondary);
  color: var(--last);
  padding: 12px 30px;
  font-weight: 600;
  font-size: 20px;
  border: none;
  font-family: var(--ff-secondary);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(39, 32, 48, 0.2);
}

#hero .btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(195, 254, 252, 0.3),
    transparent
  );
  transition: all 0.5s;
}

#hero .btn-secondary:hover {
  background: var(--primary);
  box-shadow: 0 6px 8px rgba(39, 32, 48, 0.3);
  transform: translateY(-2px);
  color: white;
}

#hero .btn-primary {
  background: var(--primary);
  color: var(--last);
  padding: 12px 30px;
  font-weight: 600;
  font-size: 20px;
  border: none;
  font-family: var(--ff-primary);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(39, 32, 48, 0.2);
}

#hero .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(195, 254, 252, 0.3),
    transparent
  );
  transition: all 0.5s;
}

#hero .btn-primary:hover {
  background: var(--secondary);
  box-shadow: 0 6px 8px rgba(39, 32, 48, 0.3);
  transform: translateY(-2px);
color: black;
}
.pricing-card {
  padding: 20px;
  background-color: var(--tertiary);
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 300px;
}

.featured .saving-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffdede;
  color: #ff6666;
  padding: 5px 10px;
  border-radius: 10px;
  font-weight: bold;
}

.service-title {
  color: #ff6666;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.price {
  font-size: 24px;
  color: #ff4444;
  font-weight: bold;
  margin-bottom: 5px;
}

.duration, .description {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.d-flex {
  display: flex;
  /* height: 100%; */
}

@media (max-width: 767px) {
  .d-flex {
    flex-direction: column;
    align-items: center;
  }
}

.bsb-pricing-1 {
  background-color: var(--last);
  padding: 3rem 0;
}

.bsb-btn-xl {
  padding: 0.75rem 1.5rem;
  margin-top: .5em;
}

.text-dark {
  color: #333;
}

.text-muted {
  color: #6c757d;
}

.border-secondary {
  border-color: #6c757d !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.card-body p {
  margin-bottom: 0.5rem;
}

.card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.icon-spacing {
  width: 30px;
  height: 60px;
}

.text-dark {
  color: #333 !important;
}

.text-muted {
  color: #6c757d !important;
}

.font-weight-medium {
  font-weight: 500;
}

.card-body p {
  margin-bottom: 0;
}

.text-decoration-none {
  text-decoration: none;
}

/* NEW PRICING CARDS */
.pricing5 {
  font-family: "Montserrat", sans-serif;
  color: #8d97ad;
  font-weight: 300;
}
/* 
.pricing5 h1,
.pricing5 h2,
.pricing5 h3,
.pricing5 h4,
.pricing5 h5,
.pricing5 h6 {
  color: #3e4555;
}

.pricing5 h5 {
  line-height: 22px;
  font-size: 18px;
}

.pricing5 .font-weight-medium {
  font-weight: 500;
}

.pricing5 .bg-light {
  background-color: #f4f8fa !important;
}

.pricing5 .subtitle {
  color: #8d97ad;
  line-height: 24px;
}

.pricing5 .card.card-shadow {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.pricing5 .general-listing {
  margin: 90px 0 60px 0;
}

.pricing5 .card {
  background-size: 100% !important;
}

.pricing5 .yearly {
  display: none;
}

.pricing5 .pricing-box {
  margin-top: 120px;
}

.pricing5 .pricing-box .middle-box {
  margin-top: -75px;
}

.pricing5 .pricing-box .middle-box .general-listing {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .pricing5 .pricing-box {
    margin-top: 40px;
  }
  .pricing5 .pricing-box .middle-box {
    margin-top: 0px;
  }
}

.pricing5 .btn-success-gradiant {
  background: var(--primary);
  color: black;
  background: -webkit-linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%);
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%);
  font-family: var(--ff-primary);
}

.pricing5 .btn-success-gradiant:hover {
  background: var(--secondary);
  background: -webkit-linear-gradient(to right, var(--secondary) 0%, var(--primary) 100%);
  background: linear-gradient(to right, var(--secondary) 0%, var(--primary) 100%);
  opacity: 1 !important;
}

.pricing5 .btn-md {
  padding: 15px 45px;
  font-size: 16px;
  font-family: var(--ff-primary);
}

.pricing5 .rounded-left {
  border-top-left-radius: 60px!important;
  border-bottom-left-radius: 60px!important;
}

.pricing5 .rounded-right {
  border-top-right-radius: 60px!important;
  border-bottom-right-radius: 60px!important;
}

.pricing5 .btn-outline-success {
  color: #0e0e0e;
  background-color: transparent;
  border-color: var(--secondary);
}

.pricing5 .btn-outline-success:hover {
  background: var(--secondary);
  border-color: var(--primary);
  color: #000;
} */

.tab-content {
  background: transparent;
}

/****************************
***********BG-Colors************
****************************/
.gradient-background {
    background: 
        linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%),
        url('/images/shattered.png');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: overlay; /* This blends the gradient and the image */
}


.gradient-background-dark {
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%) center center / cover;
}

.nav-pills .nav-link.active, .nav-pills .nav-link:hover {
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

/****************************
***********FOOTER************
****************************/
footer {
  background-color: var(--fifth);
  color: #ccc;
  font-size: 0.9rem;
}

footer a.footer-link {
  color: #d2d2d2;
  transition: color 0.3s ease-in-out;
}

footer a.footer-link:hover, footer a.footer-link:focus {
  color: #ffffff;
  text-decoration: none;
}

footer img {
  max-height: 80px;
  margin-bottom: 15px;
}

footer h5 {
  color: #fff;
  margin-bottom: 15px;
}

footer ul {
  padding-left: 0;
  line-height: 1.6;
}

footer ul li {
  margin-bottom: 10px;
}

footer .social-icons a {
  font-size: 1.5rem;
  color: #ccc;
}

footer .social-icons a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  footer .container {
    text-align: center;
  }
  footer .row {
    justify-content: center;
  }
}

/****************************
***********SHAPE DIVIDERS************
****************************/
.shapedividers_com-6449 {
  overflow: hidden;
  position: relative;
}

.shapedividers_com-6449::before {
  content: '';
  font-family: 'shape divider from ShapeDividers.com';
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 203% 121px;
  background-position: 42% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23ffffff"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23ffffff"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23ffffff"/></svg>');
}

@media (min-width: 768px) {
  .shapedividers_com-6449::before {
    background-size: 177% 144px;
    background-position: 49% 0%;
  }
}

@media (min-width: 1025px) {
  .shapedividers_com-6449::before {
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 146% 174px;
    background-position: 50% 0%;
  }
}

@media (min-width: 2100px) {
  .shapedividers_com-6449::before {
    background-size: 146% calc(2vw + 174px);
  }
}

.shapedividers_com-2975 {
  overflow: hidden;
  position: relative;
}

.shapedividers_com-2975::before {
  content: '';
  font-family: 'shape divider from ShapeDividers.com';
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 245% 133px;
  background-position: 59% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>');
}

@media (min-width: 768px) {
  .shapedividers_com-2975::before {
    background-size: 237% 197px;
    background-position: 54% 0%;
  }
}

@media (min-width: 1025px) {
  .shapedividers_com-2975::before {
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 172% 233px;
    background-position: 83% 0%;
  }
}

@media (min-width: 2100px) {
  .shapedividers_com-2975::before {
    background-size: 172% calc(2vw + 233px);
  }
}

.on-top {
  position: relative;
  z-index: 9999;
}

/* Comparison cards */
.card-header {
  font-weight: 500;
}

.card-body h5 {
  color: #333;
}
/* 
.btn-success {
  background-color: #4CAF50;
  border-color: #4CAF50;
} */

@media (max-width: 768px) {
  .card {
    margin-bottom: 20px;
  }
}

.pricing3 {
  font-family: "Montserrat", sans-serif;
  color: #8d97ad;
  font-weight: 300;
}
/* 
.pricing3 h1, .pricing3 h2, .pricing3 h3, .pricing3 h4, .pricing3 h5, .pricing3 h6 {
  color: #3e4555;
}

.pricing3 .font-weight-medium {
  font-weight: 500;
}

.pricing3 .bg-light {
  background-color: #f4f8fa !important;
}

.pricing3 .subtitle {
  color: #8d97ad;
  line-height: 24px;
}

.pricing3 .col-lg-2 {
  padding-right: 0px;
  position: relative;
  z-index: 1;
}

.pricing3 .col-lg-10 {
  padding-left: 0px;
}

.pricing3 .nav-pills {
  border: 1px solid rgba(120, 130, 140, 0.13);
  border-radius: 4px;
  border-right: 0px;
}

.pricing3 .nav-pills .nav-link {
  padding: 30px 25px;
}

.pricing3 .nav-pills .nav-link h2 {
  color: #8d97ad;
}

.pricing3 .nav-pills .nav-link.active {
  background: #ffffff;
  border-left: 3px solid #ff4d7e;
  border-radius: 0px;
  margin-left: -3px;
  -webkit-box-shadow: -20px 0 40px rgba(0, 0, 0, 0.1);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.1);
}

.pricing3 .nav-pills .nav-link.active h2 {
  color: #263238;
}

.pricing3 .tab-content {
  background: #ffffff;
  overflow: hidden;
  -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
}

.pricing3 .tab-content .pricing-box {
  padding: 50px 80px;
}

.pricing3 .tab-content .list-inline {
  margin-top: 20px;
}

.pricing3 .tab-content .list-inline li {
  padding: 30px 0;
  font-weight: 400;
}

.pricing3 .tab-content .list-inline li span {
  display: inline-block;
  vertical-align: middle;
}

.pricing3 .tab-content .list-inline li i {
  font-size: 40px;
  vertical-align: middle;
  width: 80px;
  opacity: 0.5;
}

.pricing3 .tab-content .bg-image {
  background-size: cover;
}

.pricing3 .tab-content .bg-image .quote-box {
  padding: 40px;
}



.pricing3 .btn-md {
  padding: 15px 45px;
  font-size: 16px;
  font-family: var(--ff-primary);
}

.pricing3 .display-5 {
  font-size: 3rem;
}

@media (max-width: 767px) {
  .pricing3 .col-lg-2 {
    padding-right: 15px;
  }
  .pricing3 .col-lg-10 {
    padding-left: 15px;
  } 
  .pricing3 .nav-pills {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    border-bottom: 0px;
    border-right: 1px solid rgba(120, 130, 140, 0.13);
  }
  .pricing3 .nav-pills .nav-link {
    padding: 25px 
  }
}
.pricing3 .display-5 {
  font-size: 3rem;
}

@media (max-width: 767px) {
  .pricing3 .col-lg-2 {
    padding-right: 15px;
  }
  .pricing3 .col-lg-10 {
    padding-left: 15px;
  }
  .pricing3 .nav-pills {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    border-bottom: 0px;
    border-right: 1px solid rgba(120, 130, 140, 0.13);
  }
  .pricing3 .nav-pills .nav-link {
    padding: 25px 18px;
  }
  .pricing3 .nav-pills .nav-link.active {
    border-left: 0px;
    border-top: 3px solid #ff4d7e;
    margin-top: -4px;
    margin-left: 0px;
    margin-bottom: -1px;
    -webkit-box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
  }
  .pricing3 .tab-content .pricing-box {
    padding: 20px;
  }
}
*/
.border-dark-red {
  border-bottom: 2px solid var(--secondary) !important;
}

.border-pastel-green {
  border-bottom: 2px solid var(--primary) !important;
}

.contact3 {
  font-family: "Montserrat", sans-serif;
  color: #8d97ad;
  font-weight: 300;
}

.contact3 h1,
.contact3 h2,
.contact3 h3,
.contact3 h4,
.contact3 h5,
.contact3 h6 {
  color: #000000;
}

.contact3 .font-weight-medium {
  font-weight: 500;
}

.contact3 .card-shadow {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.custom-shape-divider-bottom-1715385252 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1715385252 svg {
  position: relative;
  display: block;
  width: calc(139% + 1.3px);
  height: 70px;
}

.custom-shape-divider-bottom-1715385252 .shape-fill {
  fill: #ffffff;
}

#hero .divider {
  z-index: 9;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

#hero .divider svg {
  position: relative;
  display: block;
  width: calc(160% + 1.3px);
  height: 150px;
}

#hero .divider .shape-fill {
  fill: var(--last);
}

@media only screen and (max-width: 768px) {
  #hero .divider svg {
    position: relative;
    display: block;
    width: calc(160% + 1.3px);
    height: 75px;
  }
}

.custom-shape-divider-bottom-1715386068 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1715386068 svg {
  position: relative;
  display: block;
  width: calc(153% + 1.3px);
  height: 77px;
}

@media only screen and (max-width: 768px) {
  .custom-shape-divider-bottom-1715386068 svg {
    position: relative;
    display: block;
    width: calc(153% + 1.3px);
    height: 50px;
  }
}

.custom-shape-divider-bottom-1715387558 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1715387558 svg {
  position: relative;
  display: block;
  width: calc(190% + 1.3px);
  height: 127px;
}

.custom-shape-divider-bottom-1715387558 .shape-fill {
  fill: var(--tertiary);
}

.custom-shape-divider-bottom-1715386068 .shape-fill {
  fill: var(--last);
}
.custom-shape-divider-top-1718726939 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1718726939 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.custom-shape-divider-top-1718726939 .shape-fill {
  fill: var(--last);
}
.custom-shape-divider-bottom-1718727173 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1718727173 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.custom-shape-divider-bottom-1718727173 .shape-fill {
  fill: #FFFFFF;
}

.icon-spacing {
  margin-right: 10px;
}

.card-body {
  flex-grow: 1;
}

.card-body-1 {
  flex-grow: 1;
}

.card {
  height: 100%;
}

@media (max-width: 767px) {
  .row .col-lg-4 .card-body {
    margin-bottom: 20px;
  }
}

.text-box p {
  margin-bottom: 1rem;
}

.text-box {
  max-width: 500px;
  margin: auto;
}

.fa-brands, .fab {
  font-weight: 400;
  font-size: 1.5em;
}

.top-bar .text-black {
  font-size: 14px;
  word-wrap: break-word;
}

.top-bar .text-tertiary {
  font-size: 16px;
}

.top-bar .fab {
  font-size: 18px;
}

.d-flex.align-items-center img {
    margin-right: 10px;
    max-width: 48px;
    height: auto;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-body h2 {
    flex: 1;
}
.card-body-1 {
  display: flex;
  flex-direction: column;
}

.card-body-1 h2 {
  flex: 1;
}
/* .pricing5 .display-5 {
  font-size: 3rem;
}

@media (max-width: 767px) {
  .pricing5 .col-lg-2 {
    padding-right: 15px;
  }
  .pricing5 .col-lg-10 {
    padding-left: 15px;
  }
  .pricing5 .nav-pills {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    border-bottom: 0px;
    border-right: 1px solid rgba(120, 130, 140, 0.13);
  }
  .pricing5 .nav-pills .nav-link {
    padding: 25px 18px;
  }
  .pricing5 .nav-pills .nav-link.active {
    border-left: 0px;
    border-top: 3px solid #ff4d7e;
    margin-top: -4px;
    margin-left: 0px;
    margin-bottom: -1px;
    -webkit-box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
  }
  .pricing5 .tab-content .pricing-box {
    padding: 20px;
  }
} */

.border-dark-red {
  border-bottom: 2px solid var(--secondary) !important;
}

.border-pastel-green {
  border-bottom: 2px solid var(--primary) !important;
}

.contact3 {
  font-family: "Montserrat", sans-serif;
  color: #8d97ad;
  font-weight: 300;
}

.contact3 h1,
.contact3 h2,
.contact3 h3,
.contact3 h4,
.contact3 h5,
.contact3 h6 {
  color: #000000;
}

.contact3 .font-weight-medium {
  font-weight: 500;
}

.contact3 .card-shadow {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.custom-shape-divider-bottom-1715385252 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1715385252 svg {
  position: relative;
  display: block;
  width: calc(139% + 1.3px);
  height: 70px;
}

.custom-shape-divider-bottom-1715385252 .shape-fill {
  fill: #ffffff;
}

#hero .divider {
  z-index: 9;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

#hero .divider svg {
  position: relative;
  display: block;
  width: calc(160% + 1.3px);
  height: 150px;
}

#hero .divider .shape-fill {
  fill: var(--last);
}

@media only screen and (max-width: 768px) {
  #hero .divider svg {
    position: relative;
    display: block;
    width: calc(160% + 1.3px);
    height: 75px;
  }
}

.custom-shape-divider-bottom-1715386068 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1715386068 svg {
  position: relative;
  display: block;
  width: calc(153% + 1.3px);
  height: 77px;
}

@media only screen and (max-width: 768px) {
  .custom-shape-divider-bottom-1715386068 svg {
    position: relative;
    display: block;
    width: calc(153% + 1.3px);
    height: 50px;
  }
}

.custom-shape-divider-bottom-1715387558 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1715387558 svg {
  position: relative;
  display: block;
  width: calc(190% + 1.3px);
  height: 127px;
}

.custom-shape-divider-bottom-1715387558 .shape-fill {
  fill: var(--tertiary);
}

.custom-shape-divider-bottom-1715386068 .shape-fill {
  fill: var(--last);
}
.custom-shape-divider-top-1718726939 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1718726939 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.custom-shape-divider-top-1718726939 .shape-fill {
  fill: var(--last);
}
.custom-shape-divider-bottom-1718727173 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1718727173 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.custom-shape-divider-bottom-1718727173 .shape-fill {
  fill: #FFFFFF;
}

.icon-spacing {
  margin-right: 10px;
}

.card-body {
  flex-grow: 1;
}
.card-body-1 {
  flex-grow: 1;
}
.card {
  height: 100%;
}

@media (max-width: 767px) {
  .row .col-lg-4 .card-body {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .row .col-lg-4 .card-body-1 {
    margin-bottom: 20px;
  }
}
.text-box p {
  margin-bottom: 1rem;
}

.text-box {
  max-width: 500px;
  margin: auto;
}

.fa-brands, .fab {
  font-weight: 400;
  font-size: 1.5em;
}

.top-bar .text-white {
  font-size: 14px;
  word-wrap: break-word;
}

.top-bar .text-tertiary {
  font-size: 16px;
}

.top-bar .fab {
  font-size: 18px;
}

.d-flex.align-items-center img {
    margin-right: 10px;
    max-width: 48px;
    height: auto;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-body h2 {
    flex: 1;
}
.card-body-1 {
  display: flex;
  flex-direction: column;
}

.card-body-1 h2 {
  flex: 1;
}
.custom-shape-divider-top-1718753003 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1718753003 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 44px;
}

.custom-shape-divider-top-1718753003 .shape-fill {
  fill: #FFFFFF;
}

.custom-shape-divider-bottom-1718826164 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1718826164 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.custom-shape-divider-bottom-1718826164 .shape-fill {
  fill: var(--last);
}
.custom-shape-divider-bottom-1718829068 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1718829068 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.custom-shape-divider-bottom-1718829068 .shape-fill {
  fill: #ffffff;
}


h6 {
  font-size: 1.6em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600 !important;
}

.card-container {
  perspective: 1000px;
  height: 490px; /* Set a fixed height for the cards */
}

.twist-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
}

.card-body, .card-back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card-body-1 {

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card-back {
  transform: rotateY(180deg);
  background-color: #fff; /* Adjust as needed */
  border-radius: 0.25rem; /* Match the card's border radius */
}

.card-container.flipped .twist-card {
  transform: rotateY(180deg);
}

/* Ensure text content is evenly distributed within the card */
.twist-card .card-body > * {
  margin-bottom: 1rem;
}
.card-body-1 > * {
  margin-bottom: 1rem;
}

.twist-card .card-body > *:last-child {
  margin-bottom: 0;
}

.icon-flip {
  transition: transform 0.6s;
}

.card:hover .icon-flip {
  transform: rotateY(180deg);
}

.card-container {margin-bottom: 30px; /* Add margin to create space below the card */}

.custom-shape-divider-bottom-1718829068 {
  margin-top: 30px; /* Add margin to create space above the SVG */
}

button#serviceDropdown {
  border: solid 2px;
  margin-top: 10px;
  background: #00000042 !important;
}
.tab-content>.active {
 
  margin-top: -1em;
}
.custom-shape-divider-bottom-1718926780 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1718926780 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.custom-shape-divider-bottom-1718926780 .shape-fill {
  fill: #efebe2;
}




.parallax {
  background-image: url('/images/steam-paralax.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .parallax {
      background-attachment: scroll;
      background-size: cover;
      background-position: center center;
  }
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}


/* Custom card classes */
.custom-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.custom-section {
  padding: 2rem 0;
}

.custom-section h2 {
  margin-bottom: 2rem;
}

/* Ensure all sections have enough space between them */
.custom-section + .custom-section {
  margin-top: 0rem;
}

/* Ensure cards are responsive and have a consistent layout */
@media (max-width: 767px) {
  .custom-card {
    margin-bottom: 2rem;
  }
}

/* Custom card styles to avoid interference with other page styles */
.custom-card .card-body {
  flex-grow: 1;
}
.custom-card .card-body-1 {
  flex-grow: 1;
}
.custom-card .card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.custom-card .card-text {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.custom-card ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.custom-card ul li {
  margin-bottom: 0.5rem;
}

.custom-card p {
  margin-bottom: 0;
}

/* Ensure the hero section image covers the entire background */
#services-hero .img-slider {
  height: 100%;
}

#services-hero .img-slider .slide {
  background-size: cover;
  background-position: center;
  height: 100%;
}

h3.custom-card-title {
  margin-top: 3rem;
}
a.btn.btn-outline-light.rounded-pill.btn-md {
  background: white;
  color: black;
  font-size: 1.4em;
}
#contact-hero .img-cover {
  background-image: url('images/cleaning-contact-hero.jpg');
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  #contact-hero .img-cover {
      background-position: top;
  }
}

.offer-section {
  /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
}

.section-title {
  position: relative;
  color: #333;
  font-size: 2.5rem;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #52b5b8;
}

.service-card {
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.service-icon {
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2);
  color: #0056b3;
}

.card-title {
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.list-unstyled li {
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.list-unstyled li:hover {
  transform: translateX(5px);
  color: #007bff;
}

.fa-check {
  color: #28a745;
}