html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lexend Deca", sans-serif;
  font-family: "Josefin Sans", sans-serif;
  font-family: "Merienda", cursive;
  font-family: "Funnel Display", sans-serif;
}

ul {
  padding-left: 0;
  padding-bottom: 0;
  /* margin-bottom: 0; */
}

li {
  list-style: none;
}

a {
  text-decoration: none !important;
}
/* ==================================== */

/* Global Variables */

:root {
  --primary-ebook-color: #3bbbc2;
  --secondary-ebook-color: #3bbbc2;
}

@media screen and (min-width: 991px) {
  .container {
    max-width: 100% !important;
    padding: 0 50px !important;
    padding-top: unset !important;
    padding-bottom: unset !important;
  }
}

/* Main Content CSS Start Here */

#navbarNavAltMarkup .dropdown-menu {
  display: none;
  position: absolute;
}

#navbarNavAltMarkup .dropend .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  background: #fff;
  /* box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.2); */
}

header .navbar-expand-lg .navbar-collapse {
  display: flex;
  justify-content: center;
  flex-basis: auto;
}

header .navbar {
  padding: 0;
}

#navbarNavAltMarkup .navbar-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  width: 300px;
  left: 0;
  z-index: 1050;
  background: white;
  border-radius: 0;
  box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.2);
  border: 0;
}

#navbarNavAltMarkup .navbar-nav .dropend .dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: -1px;
}

#navbarNavAltMarkup .navbar-nav .dropdown:hover > .dropdown-menu {
  display: block;
}

#navbarNavAltMarkup .navbar-nav .dropend:hover > .dropdown-menu {
  display: block;
}

header .nav-link {
  font-size: 14px;
  margin: 0;
  padding: 40px 0;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
}

header .dropdown-menu .nav-link {
  font-size: 14px;
  margin: 0 20px;
  color: #000;
}

header .dropdown-menu .nav-link {
  padding: 10px 0;
}

.navbar-brand {
  margin: 0;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link:hover {
  color: #3bbbc2;
}

header .dropdown-toggle::after {
  display: inline-block;
  margin-left: 10px;
  vertical-align: 2px;
  content: "";
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}

header .dropdown.show .dropdown-toggle::after {
  border-top: 0;
  border-bottom: 0.3em solid;
}

.header-num {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  gap: 20px;
}

.header-num a {
  color: #000000;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.header-num a i {
  color: #3bbbc2;
  font-size: 22px;
}

.header-num .animate {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* Header CSS End */

/* Global Buttons Start */
.theme-btn-1 {
  border: 0;
  padding: 15px 25px;
  border-radius: 5px;
  background: #3bbbc2;
  color: #fff !important;
}

.theme-btn-1 a {
  color: #000000;
}

.theme-btn-1:hover {
  background: #16bbfc;
}
/* Global Buttons End */

/* Banner Section CSS Start */
.banner {
  position: relative;
  padding-top: 150px;
  background: #fff;
  padding-bottom: 50px;
  /* background-image: url("../images/banner-main.webp"); */
  /* background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  height: unset;
}

/* .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000061;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
} */

.banner .left-box {
  position: relative;
}

.banner .left-box .banner-left-img {
  padding-left: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.4));
}

.banner .left-box .back {
  background: #d8f1f3;
  border-radius: 30px;
  width: 85%;
  height: 75%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: end;
  align-items: center;
}

.banner .left-box .back .content {
  width: 40%;
  position: absolute;
  right: -70px;
}

.banner .left-box .back .content h5 {
  color: #5c5c5c;
}

.banner .left-box .back .content h1 {
  font-weight: 800;
}

.banner .left-box .back .content p {
  color: #5c5c5c;
}

.banner .left-box .back .content .rating {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.banner .left-box .back .content .rating p {
  margin: 0;
}

.read-more-btn {
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.read-more-btn i {
  font-size: 12px;
  text-decoration: 0;
  padding-top: 4px;
}

.banner .right-box {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.banner .right-box .top {
  position: relative;
}

.banner .right-box .top .banner-right-img {
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.4));
}

.banner .right-box .top .back {
  width: 60%;
  box-shadow: 0 0 10px #00000061;
  border-radius: 20px;
  padding: 25px 10px;
  position: absolute;
  right: 0;
  top: 50px;
  background: #fff;
}

.banner .right-box .top .back h4 {
  font-size: 14px;
  font-weight: 800;
}

.banner .right-box .top .back h5 {
  color: #5c5c5c;
  font-size: 14px;
}

.banner .right-box .back .content p {
  color: #5c5c5c;
}

.buttons-group {
  display: flex;
  gap: 20px;
}

.btn.btn-primary {
  background-color: #3bbbc2;
  color: #000000;
  padding: 16px 20px;
  font-weight: 500;
  border: 2px solid #3bbbc2;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: #1be7f6;
  border-color: #1be7f6;
  color: #000000;
}

.btn.btn-primary:not(:disabled):not(.disabled).active,
.btn.btn-primary:not(:disabled):not(.disabled):active,
.btn.btn-primary:hover,
.btn.btn-primary.focus,
.btn.btn-primary:focus {
  background-color: #1be7f6;
  border-color: #1be7f6;
  color: #000000;
}

.transparent-btn {
  background-color: transparent;
  color: #000000;
  padding: 16px 40px;
  font-weight: 500;
  border: 2px solid #3bbbc2;
  text-transform: uppercase;
}

.transparent-btn:not(:disabled):not(.disabled).active,
.transparent-btn:not(:disabled):not(.disabled):active,
.transparent-btn:hover,
.transparent-btn:focus,
.transparent-btn.focus {
  background-color: #1be7f6;
  border-color: #1be7f6;
  color: #000000;
}

.transparent-btn:hover {
  background-color: #1be7f6;
  color: #000000;
  padding: 16px 40px;
  font-weight: 500;
  border: 2px solid #1be7f6;
}

.transparent-btn-dark {
  background-color: transparent;
  color: #000000;
  padding: 16px 40px;
  font-weight: 500;
  border: 2px solid #000000;
}

.transparent-btn-dark:not(:disabled):not(.disabled).active,
.transparent-btn-dark:not(:disabled):not(.disabled):active,
.transparent-btn-dark:hover,
.transparent-btn-dark:focus,
.transparent-btn-dark.focus {
  background-color: #1be7f6;
  border-color: #1be7f6;
  color: #fff;
}

.transparent-btn-dark:hover {
  background-color: #1be7f6;
  color: #fff;
  padding: 16px 40px;
  font-weight: 500;
  border: 2px solid #1be7f6;
}
/* Banner Section CSS End */

/* Brand Logos Section CSS Start */
.brand-logos {
  padding: 50px 0;
}
/* Brand Logos Section CSS End */

/* Call To Action Section 1 CSS Start */
p {
  color: #5c5c5c;
  line-height: 32px;
}

.call-to-action-1 {
  padding: 50px 0;
}

.top-headings-center {
  text-align: center;
}

.top-headings-center h2 {
  font-weight: 700;
  font-family: "Merienda", cursive;
}

.top-headings-center p {
  width: 70%;
  margin: 0 auto;
}

.call-to-action-1 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
  color: #5c5c5c;
}

.call-to-action-1 .header-num {
  margin-top: 50px;
  justify-content: center;
}
/* Call To Action Section 1 CSS End */

/* Service Basic Section CSS Start */
.service-basic {
  padding: 50px 0;
}

.top-headings-left h2 {
  font-weight: 700;
  font-family: "Merienda", cursive;
}

.service-basic .custom-list li {
  position: relative;
  padding-left: 24px; /* Space for icon */
}

.service-basic .custom-list li::before {
  content: "\f0da"; /* Unicode for fa-caret-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #3bbbc2;
  font-size: 18px;
  position: absolute;
  left: 0;
}

.service-box {
  background: linear-gradient(90deg, #232323 0%, #727272 100%);
  padding: 50px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.service-box h3,
.service-box p,
.service-box a {
  color: #fff;
}
/* Service Basic Section CSS Start */

/* Companies Section CSS Start */
.companies-logo {
  padding: 50px 0;
  background: #3bbbc2;
}

.companies-logo .top-headings-left h2 {
  font-size: 24px;
}
/* Companies Section CSS End */

/* Author Week Section CSS Start */
.author-week {
  padding: 50px 0;
  padding-bottom: 100px;
}

.author-week .header-num {
  justify-content: flex-end;
}

.author-week .header-num .btn.btn-primary {
  padding: 16px 50px;
}

.author-week .row-2 {
  padding-top: 100px;
}

.author-week .common-box {
  position: relative;
  padding: 50px;
  border-radius: 30px;
  background: #d7f1f3;
}

.author-week .common-box i {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3bbbc2;
  font-size: 12px;
}

.author-week .common-box i span {
  font-size: 18px;
  color: #5c5c5c;
  font-weight: 700;
  font-family: "Outfit";
}

.author-week .common-box .top-headings-left {
  margin-top: 50px;
  height: 120px;
}

.author-week .common-box img {
  position: absolute;
  bottom: -30px;
  right: 0;
}

.author-week .common-box.right {
  background: #f9ebf1;
}
/* Author Week Section CSS End */

/* Categories Tabs Section CSS Start */
.categories-tabs-section {
  padding: 50px 0;
}

.nav-pills {
  margin-top: 50px;
}

.nav-justified .nav-item,
.nav-justified > .nav-link {
  display: flex;
  justify-content: space-between;
}

.nav-pills .nav-link {
  color: #000000;
  background-color: transparent;
  border: 3px solid #000000;
  font-weight: 500;
  width: 120px !important;
  padding: 15px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #000000;
  background-color: #3bbbc2;
  border: 3px solid #3bbbc2;
  font-weight: 500;
  width: 120px;
  padding: 15px;
}

.categories-tabs-section .box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.categories-tabs-section .box img {
  width: 50px;
}

.tab-pane {
  margin-top: 50px;
}
/* Categories Tabs Section CSS End */

/* Packages Section CSS Start */
.packages-sec {
  padding: 50px 0;
}

#packages-sec-carousel {
  margin-top: 50px;
}

#packages-sec-carousel .package-box {
  position: relative;
  margin: 10px;
  box-shadow: 0 0 10px #00000026;
  text-align: center;
}

#packages-sec-carousel .package-box .label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: yellow;
  padding: 5px;
  border-radius: 5px;
  font-size: 14px;
}

#packages-sec-carousel .custom-list li {
  position: relative;
  padding-left: 24px; /* Space for icon */
}

#packages-sec-carousel .custom-list li::before {
  content: "\f058"; /* Unicode for fa-caret-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #3bbbc2;
  font-size: 18px;
  position: absolute;
  left: 5px;
}

#packages-sec-carousel .package-box .header {
  background: #3bbbc2;
  padding: 20px 20px 70px 20px;
}

#packages-sec-carousel .package-box .time-period {
  font-size: 16px;
  margin-bottom: 20px;
}

#packages-sec-carousel .package-box .price {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 100%;
  border: 5px solid #fff;
  background: #3bbbc2;
  padding: 35px;
  color: #000000;
  margin-top: -70px;
  box-shadow: 1px 5px 5px #00000061;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#packages-sec-carousel .package-box .content {
  padding: 40px 20px;
  text-align: left;
  border-bottom: 1px solid #dddddd;
}

#packages-sec-carousel .package-box .custom-list {
  height: 180px; /* Adjust height as needed */
  overflow-y: auto;
  padding-right: 10px;
  margin: 0;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: #3bbbc2 #f1f1f1; /* Firefox */
}

#packages-sec-carousel .package-box .custom-list li {
  padding: 5px;
  padding-left: 35px;
}

#packages-sec-carousel .package-box .custom-list .row-primary {
  background: #f5f5f5;
}

#packages-sec-carousel .package-box .footer {
  padding: 30px 20px;
}

#packages-sec-carousel .package-box .footer .transparent-btn {
  width: 100%;
  border-radius: 50px;
}

/* Packages Section CSS End */

/* Process Section CSS Start */
.process-sec {
  padding: 50px 0;
}

.process-sec .row {
  margin-top: 50px;
}

.process-sec .right {
  padding-left: 30px;
}

.process-sec .right h6 {
  font-weight: 700;
}
/* Process Section CSS End */

/* Testimonials Section CSS Start */
.testimonials-sec {
  padding: 50px 0;
}

#testimonials-carousel {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}

#testimonials-carousel .top {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 30px;
}

#testimonials-carousel .top .banner-right-img {
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.4));
  width: 250px;
}

#testimonials-carousel .top .client-img {
  width: 150px;
  position: absolute;
  top: 0;
  left: 33%;
}

#testimonials-carousel .top .rating-img {
  width: 100px;
}

#testimonials-carousel .top .back {
  width: unset;
  box-shadow: 0 0 10px #00000061;
  border-radius: 20px;
  padding: 30px 20px;
  position: absolute;
  right: 300px;
  top: 140px;
  background: #fff;
}

#testimonials-carousel .top .back h4 {
  font-size: 14px;
  font-weight: 800;
}

#testimonials-carousel .top .back h5 {
  color: #5c5c5c;
  font-size: 14px;
}

#testimonials-carousel .back .content p {
  color: #5c5c5c;
}

#testimonials-carousel .top .details {
  text-align: center;
  margin-top: 50px;
}

.owl-theme .owl-dots .owl-dot span {
  background: #3bbbc25c;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #3bbbc2;
}

.owl-theme .owl-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 100px;
}

.owl-theme .owl-nav [class*="owl-"] {
  font-size: 70px !important;
  padding: 0;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  color: #3bbbc25c;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent !important;
  color: #3bbbc2;
}

/* Testimonials Section CSS End */

/* Contact Section Home CSS Start */

.contact-sec {
  padding: 50px 0;
}

.form-control {
  padding: 15px;
  font-size: 14px;
  color: #000;
}

.form-control:focus {
  border-color: #3bbbc2;
  box-shadow: none;
}

/* .form-box {
  box-shadow: 0 0 10px #0000002b;
  padding: 25px;
  border-radius: 5px;
}

.form-box label {
  margin-bottom: 5px;
} */

.contact-sec .right {
  background: #3bbbc2;
  padding: 30px 40px;
}

.contact-sec .top-headings-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.contact-sec .right .top-headings-left p {
  color: #000;
}

.contact-sec .left-col {
  background: url(../images/get-started.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-sec .transparent-btn {
  background-color: #ffffff;
}

.contact-sec .transparent-btn:hover {
  background-color: #3bbbc2;
}

.contact-sec.main-page {
  padding: 100px 0;
}

.contact-sec.main-page .left-col {
  background: unset;
}

.contact-sec.main-page .right {
  background: none;
  padding: 30px 40px;
  box-shadow: 0 0 10px #00000017;
  border-radius: 10px;
}
/* Contact Section Home CSS End */

/* Counter Section CSS Start */
.counter {
  background: #dae3ec;
  padding-bottom: 100px;
}

.counter .container {
  padding: 60px;
  border: 0;
  background: #ebf8ff;
  border-radius: 10px;
}

.counter .container .row .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.counter .container .row .box h4 {
  color: #3bbbc2 !important;
  font-size: 72px;
  font-weight: 800;
}

.counter .plus-sign:after {
  content: "+";
}

.counter .k-sign:after {
  content: "k+";
}
/* Counter Section CSS End */

/* Footer CSS Start */
footer {
  /* background: url(../images/footer-bg.webp); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background: #ffffff;
  padding-top: 50px;
}

footer #footer-logos-carousel img {
  width: 150px;
  margin: 0 auto;
}

.footer-content {
  padding: 50px 0;
}

.logo-widget p {
  font-size: calc(16px + (13 - 12) * (100vw - 320px) / (1920 - 320));
  color: #000000;
  margin: 25px 0 0 0;
}

.link-widget h5 {
  font-size: calc(16px + (23 - 16) * (100vw - 320px) / (1920 - 320));
  color: #000000;
  font-weight: 600;
  margin: 0 0 20px;
  padding-top: 0;
}

.link-widget ul li {
  margin-bottom: 30px;
  line-height: 21px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.link-widget ul li a {
  font-size: calc(14px + (13 - 12) * (100vw - 320px) / (1920 - 320));
  color: #000000;
  letter-spacing: 2px;
  display: inline-block;
  font-weight: 500;
  line-height: normal;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.link-widget ul li a:hover {
  transform: translateX(10px);
}

.link-widget ul i {
  font-size: 14px;
  margin-right: 10px;
  color: #3bbbc2;
}

.sec-copyright {
  background-color: transparent;
}

.sec-copyright .content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid #000000;
}

.sec-copyright .content p {
  text-align: center;
  margin-bottom: 0;
  color: #000000;
  font-size: 14px;
}

.sec-copyright .content ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sec-copyright .content a {
  color: #fff;
  font-size: 14px;
}

section.privacy-terms {
  padding: 100px 0;
}

section.privacy-terms .content {
  border-bottom: 2px solid #3bbbc2;
}

section.privacy-terms .content .top-headings-left {
  padding-bottom: 20px;
}

section.privacy-terms .content a {
  color: #3bbbc2;
  font-weight: bold;
}
/* Footer CSS End */

/* Inner Pages CSS Start */

/* About Page CSS Start */

.about-hero {
  padding-top: 250px;
  padding-bottom: 150px;
  background: #3bbbc2;
}

.about-hero h2 {
  text-shadow: 2px 2px 4px rgb(0 0 0 / 98%);
  color: #ffffff;
  text-align: center;
  font-family: "Merienda", cursive;
  width: 80%;
  margin: 0 auto;
}

.left-right-sec {
  padding: 100px 0;
  background: #f8f9fa;
}

.boxes-sec {
  padding: 100px 0;
}

.boxes-sec .card-body i {
  font-size: 32px;
  margin-bottom: 20px;
}

.boxes-sec .card:hover {
  background: #3bbbc2;
}

.boxes-sec .card:hover .card-title {
  color: #fff;
  text-shadow: 2px 2px 4px rgb(0 0 0 / 98%);
}

.boxes-sec .card:hover .card-text {
  color: #fff;
}

.boxes-sec .top-headings-center {
  margin-bottom: 50px;
}

.card-body {
  padding: 30px;
}

.card-title {
  font-weight: 600;
  color: #1d1d1d;
}

.list-items-sec {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("../images/list-item-sec.webp") center/cover no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background-attachment: fixed;
}

.list-items-sec .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.322);
}

.list-items-sec .top-headings-center {
  margin-bottom: 50px;
  position: relative;
  color: #fff;
}

.process-list {
  list-style: decimal inside;
  padding-left: 0;
  font-size: 1.05rem;
  font-size: 22px;
  line-height: 50px;
  background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent white */
  backdrop-filter: blur(5px); /* Blur effect */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
  padding: 50px;
  border-radius: 10px;
  /* box-shadow: 0 0 10px #00000017; */
  position: relative;
  color: #ffffff; /* Optional: improve text readability */
  text-shadow: 2px 2px 4px rgb(0 0 0 / 98%);
}

.cta-section {
  padding: 100px 0;
  background-color: #2d2d2d;
  background: url(../images/cta-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  backdrop-filter: blur;
}

.cta-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 75%);
}

.cta-section .top-headings-center {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-section .top-headings-center h2 {
  text-shadow: 2px 2px 4px rgb(0 0 0 / 98%);
  font-size: 42px;
}

.cta-section .top-headings-center p {
  color: #fff;
}
/* About Page CSS End */

/* Services Pages CSS Start */
.left-right-sec.service-inner-2 {
  background: #f8f9fa63;
}

.left-right-sec.service-inner-2 img {
  float: right;
}
/* Services Pages CSS Start */

/* Inner Pages CSS End */

/* Popup Form CSS Start */
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 1000px;
  }
}

.popup-left-col {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.popup-right-col {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

#staticBackdrop {
  z-index: 999999999999;
}

#staticBackdrop .modal-body {
  padding: 40px 30px;
  background: #f2f5f866;
  border-radius: 5px;
}

#staticBackdrop ul {
  margin-bottom: 25px;
}

#staticBackdrop .submit-ul {
  margin-bottom: 0;
}

#staticBackdrop .modal-content {
  position: relative;
  border-radius: 5px;
  border: 0;
}

#staticBackdrop .modal-content p {
  font-size: 14px;
}

#staticBackdrop h2,
#staticBackdrop h2 {
  font-size: 26px;
  color: #000;
  font-weight: 600;
  padding-left: 0;
  margin-bottom: 12px;
  line-height: 27px;
  margin-top: 12px;
}

#staticBackdrop h2 span,
#staticBackdrop h2 span {
  color: red;
  display: block;
}

#staticBackdrop b.pp_pr {
  font-size: 40px;
  font-weight: 600;
}

#staticBackdrop h2 + p,
.popup-content h2 + p {
  line-height: 20px;
  font-size: 16px;
  margin-bottom: 12px;
}

#staticBackdrop ul li input[type="text"],
#staticBackdrop ul li input[type="email"],
#staticBackdrop ul li input[type="tel"],
#staticBackdrop ul li textarea {
  background: #fff;
  background: #ededed;
  border: #d7d7d7 1px solid;
  padding: 10px;
  width: 100%;
  border-radius: 3px;
  font-size: 13px;
  color: #000;
  box-shadow: none !important;
  outline: 0 !important;
}

#staticBackdrop ul li textarea {
  height: 155px;
  resize: none;
}

#staticBackdrop input[type="submit"] {
  border: none;
  box-shadow: none;
  padding: 13px 28px;
  margin-top: 0;
  border-radius: 5px;
  margin-bottom: 0;
  outline: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  width: 100%;
  margin: 0 auto !important;
  height: auto;
  color: #fff;
  font-weight: 500;
  background: #3bbbc2;
}

#staticBackdrop input[type="submit"]:hover {
  background: #606c7a;
}

#staticBackdrop .btn-close {
  border-radius: 0;
  border-radius: 50px;
  text-align: center;
  box-shadow: #000 0 0 10px;
  position: absolute;
  right: -14px;
  top: -13px;
  overflow: visible;
  width: 35px;
  height: 35px;
  background: #3bbbc2;
  z-index: 200;
  color: white;
  opacity: 1;
}
/* Popup Form CSS End */

/* Owl Carousel CSS */
.owl-carousel {
  display: block !important;
}

/* Intl CSS */
.hide {
  display: none !important;
}

.iti {
  position: relative;
  display: inline-block;
  width: 100%;
}

.iti .iti__selected-dial-code {
  margin-left: 4px;
  font-size: 12px;
}

.iti__country {
  font-size: 12px;
}

/* Form Error CSS */
#bannerForm .error {
  color: #d6333a;
  font-weight: 500 !important;
  text-align: left;
  width: 100%;
  font-size: 12px;
}

#bannerForm #error-msg {
  text-align: left;
  font-size: 12px;
  display: block;
  font-weight: 500;
  color: #d6333a;
  font-weight: 500 !important;
}

#popupForm .error {
  font-size: 14px;
  text-align: left;
  width: 100%;
  color: #d6333a;
  font-weight: 500 !important;
}

#popupForm #error-msg-popup {
  font-size: 14px;
  text-align: left;
  width: 100%;
  display: block;
  margin-top: 5px;
  color: #d6333a;
  font-weight: 500 !important;
}

#contactForm .error {
  font-size: 14px;
  text-align: left;
  width: 100%;
  color: #d6333a;
  font-weight: 500 !important;
}

#contactForm #error-msg-contact {
  font-size: 14px;
  text-align: left;
  width: 100%;
  display: block;
  margin-top: 5px;
  color: #d6333a;
  font-weight: 500 !important;
}

#contactForm .iti__search-input {
  font-size: 14px;
}

#contactForm .iti .iti__selected-dial-code {
  font-size: 13px;
}

/* Checkout Page CSS */
section.checkout {
  padding: 100px 0;
  text-align: center;
}

.checkout .content {
  padding-bottom: 30px;
}

section.checkout .theme-btn {
  padding: 20px 50px;
  border: 0;
  background: #3bbbc2;
  color: #fff;
  border-radius: 5px;
}

section.checkout .theme-btn:hover {
  background: #606c7a;
}

section.checkout p {
  width: 50%;
  margin: 20px auto;
  font-size: 14px;
}

section.checkout img {
  width: 400px;
  padding: 20px 0;
}

section.checkout .content {
  padding-bottom: 20px;
}

section.checkout .theme-btn {
  padding: 12px 30px;
  border: 0;
  background: #3bbbc2;
  color: #fff;
  border-radius: 5px;
}

/* Contact Main */
.contact-main {
  background: #fff;
}

/* Desktop Responsive CSS  */
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1320px;
  }
}

/* Scroll To Top Button CSS */
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #3bbbc2;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

#scrollToTopBtn:hover {
  background-color: #3bbbc2;
}

#scrollToTopBtn.show {
  display: block;
  opacity: 1;
}

#scrollToTopBtn.hide {
  opacity: 0;
  transform: translateY(20px);
}

/* =============================================== */

/* Custom Animations Start */
h2,
h4 {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* h2 fades up */
h2 {
  transform: translateY(20px);
}

/* h4 fades down */
h4 {
  transform: translateY(-20px);
}

/* Visible class for triggering animation */
.visible {
  opacity: 1;
  transform: translateY(0);
}

.review-box .info h4 {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
/* Custom Animations Start */

#home-packages-carousel h2,
#home-packages-carousel h4 {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Form Submission Alert CSS */
p.th-alert {
  margin-top: 1rem;
  font-weight: 500;
  border-radius: 5px;
  font-size: 20px;
}
