@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Outfit:wght@100..900&display=swap');

:root {
  --fontFamily: "Outfit", sans-serif;
  --fontFamily2: "Outfit", sans-serif;
  --mainColor: #ff630e;
  --whiteColor: #ffffff;
  --blackColor: #242424;
  --secondColor: #7a1200;
  --paragraphColor: #666666;
  --fix-whiteColor: #ffffff;
  --fix-blackColor: #242424;
  --backgroundColor: #ebebeb;
  --transparentColor: #fcebe5;
  --card-title-fontSize: 22px;
  --fontSize: 16px;
  --boxShadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  --transition: 0.5s;
}

body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  background-color: var(--whiteColor);
}

h1,
h2,
h3,
h4 {
  font-family: var(--fontFamily);
}

h5,
h6 {
  font-family: var(--fontFamily2);
}

a {
  transition: var(--transition);
  color: var(--blackColor);
  text-decoration: none;
  outline: 0 !important;
}

a:hover {
  color: var(--mainColor);
  text-decoration: none;
}

:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
  margin-bottom: 15px;
  color: var(--paragraphColor);
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-30 {
  padding-top: 0px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.section-content {
  margin-top: 10px;
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--whiteColor) !important;
  z-index: 99999;
  padding: 0px;
  transition: 0.5s ease-in-out;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.bg-f9faff {
  background-color: #f9faff;
}

.bg-mainColor {
  background-color: var(--mainColor);
}

.bg-000000 {
  background-color: #242325;
}

.rs {
  margin-top: -10px;
}

/*================================================
Topbar Area CSS
=================================================*/
.topbar {
  font-family: var(--fontFamily2);
  border-bottom: 1px solid #eeeeee;
  padding: 10px 15px;
  position: relative;
  z-index: 9;
}

.topbar-left-side ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.topbar-left-side ul li {
  font-size: 14px;
  margin-right: 15px;
  display: inline-block;
  color: #ffffff;
}

.topbar-left-side ul li a {
  color: #ffffff;
}

.topbar-left-side ul li i {

  color: #ffffff;

}

.topbar-right-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.topbar-right-side a {
  color: var(--blackColor);
  font-size: 14px;
}

.topbar-right-side i {
  color: var(--mainColor);
}

.topbar-right-side .account {
  margin-right: 15px;
  font-family: var(--fontFamily2);
}

.topbar-right-side .account i {
  margin-right: 3px;
}

/*================================================
Select Area CSS
=================================================*/
.nice-select {
  border: 0px;
  background-color: transparent;
  height: auto;
  width: 100%;
  line-height: unset;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 23px;
  padding-right: 15px;
}

.nice-select .selected {
  color: var(--mainColor);
}

.nice-select .list {
  width: 100%;
  z-index: 9999;
}

.option-select-area {
  position: relative;
  display: inline-block;
  max-width: 100%;
  color: var(--paragraphColor);
}

.option-select-area .fa-globe {
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 99;
  color: var(--mainColor);
}

.option-select-area .nice-select .list {
  width: 85px;
  z-index: 999;
  background-color: var(--whiteColor) !important;
}

.option-select-area .nice-select::after {
  right: 2px;
  width: 7px;
  height: 7px;
  border-color: var(--blackColor);
}

.option-select-area .nice-select .current {
  color: var(--blackColor);
  font-size: 14px;
}

.nice-select .list {
  background-color: var(--whiteColor);
}

/*================================================
Navbar Area CSS
=================================================*/
a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-bar {
  float: left;
  width: 100%;
  position: absolute;
  background: transparent;
  padding: 30px 0 0;
  z-index: 2;
  height: 80px;
  text-transform: capitalize;
  box-sizing: content-box;
}

.mean-container .mean-bar * {
  box-sizing: content-box;
}

.mean-container a.meanmenu-reveal {
  width: 35px;
  height: 30px;
  padding: 12px 15px 0 0;
  position: absolute;
  right: 0;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  color: var(--mainColor);
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  display: block;
  font-weight: 700;
}

.mean-container a.meanmenu-reveal span {
  display: block;
  background: var(--mainColor);
  height: 4px;
  margin-top: 5px;
  border-radius: 3px;
}

.mean-container .mean-nav {
  float: left;
  width: 100%;
  background: var(--whiteColor);
  margin-top: 64px;
}

.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  border: none;
  list-style-type: none;
}

.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}

.mean-container .mean-nav ul li a {
  display: block;
  float: left;
  width: 90%;
  padding: 1em 5%;
  margin: 0;
  text-align: left;
  color: #677294;
  border-top: 1px solid #dbeefd;
  text-decoration: none;
  text-transform: capitalize;
}

.mean-container .mean-nav ul li a:hover {
  background: var(--whiteColor);
}

.mean-container .mean-nav ul li a.active {
  color: var(--whiteColor);
}

.mean-container .mean-nav ul li li a {
  width: 80%;
  padding: 1em 10%;
  color: #677294;
  border-top: 1px solid #dbeefd;
  opacity: 1;
  filter: alpha(opacity=75);
  text-shadow: none !important;
  visibility: visible;
  text-transform: none;
  font-size: 14px;
  text-transform: capitalize;
}

.mean-container .mean-nav ul li li li a {
  width: 70%;
  padding: 1em 15%;
}

.mean-container .mean-nav ul li li li li a {
  width: 60%;
  padding: 1em 20%;
}

.mean-container .mean-nav ul li li li li li a {
  width: 50%;
  padding: 1em 25%;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 3px;
  width: 100%;
  height: 24px;
  padding: 12px !important;
  text-align: right;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  background: transparent !important;
  border: none !important;
}

.mean-container .mean-nav ul li.mean-last a {
  border-bottom: none;
  margin-bottom: 0;
}

.mean-container .mean-nav .navbar-nav {
  overflow-y: scroll;
  height: 290px;
}

.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}

.mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}

.mean-nav .dropdown-toggle::after {
  display: none;
}

.mean-remove {
  display: none !important;
}

.mobile-nav {
  display: none;
  position: relative;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  background-color: var(--whiteColor);
  color: var(--blackColor);
}

.btn-primary,
.btn-primary:active {
  background-color: var(--whiteColor) !important;
  color: var(--blackColor) !important;
  border-color: var(--blackColor) !important;
}

.mobile-nav.mean-container .mean-nav ul li a.active {
  color: var(--mainColor);
}

/* Fix for box sizing on Foundation Framework etc. */
.main-nav {
  background-color: transparent;
  padding: 0px 15px;
}

.main-nav nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.main-nav nav .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.main-nav nav .navbar-nav .nav-item {
  position: relative;
  padding: 15px 0;
}

.main-nav nav .navbar-nav .nav-item a {
  padding: 0;
  transition: 0.5s;
  position: relative;
  color: var(--blackColor);
  font-size: 17px;
  font-weight: 600;
  font-family: var(--fontFamily2);
  margin-left: 14px;
  margin-right: 14px;
}

.main-nav nav .navbar-nav .nav-item a i {
  right: 0;
  top: 8px;
  font-size: 12px;
  position: absolute;
}

.main-nav nav .navbar-nav .nav-item a:hover {
  color: var(--mainColor);
  transition: 0.5s;
}

.main-nav nav .navbar-nav .nav-item a::after {
  display: none;
}

.main-nav nav .navbar-nav .nav-item a.dropdown-toggle {
  padding-right: 13px;
}

.main-nav nav .navbar-nav .nav-item a.active {
  color: var(--mainColor);
  transition: 0.5s;
}

.main-nav nav .navbar-nav .nav-item:hover a {
  color: var(--mainColor);
}

.main-nav nav .navbar-nav .nav-item:hover ul {
  opacity: 1;
  transform: rotateY(0deg);
  visibility: visible;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 60px;
  opacity: 0;
  z-index: 99;
  width: 300px;
  border: none;
  display: block;
  border-radius: 0px;
  visibility: hidden;
  position: absolute;
  transform: rotateX(-20deg);
  transform-origin: top;
  background: var(--whiteColor);
  transition: all 0.5s ease-in-out;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  padding-top: 10px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 10px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
  position: relative;
  padding: 0;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  margin: 0;
  display: block;
  padding: 7px 20px;
  color: var(--blackColor);
  border-bottom: 1px dashed transparent;
  font-size: 15px;
  font-weight: 600;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
  top: 50%;
  position: absolute;
  right: 10px !important;
  transform: translateY(-50%);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a::before {
  content: "+";
  font-size: 0px;
  color: var(--mainColor);
  transition: 0.2s ease;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 99;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--mainColor);
  padding-left: 25px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover::before,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active::before {
  font-size: 15px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  position: absolute;
  left: 101%;
  top: 0;
  opacity: 0 !important;
  visibility: hidden !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 20px;
  left: 100%;
  position: absolute;
  opacity: 0 !important;
  visibility: hidden !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -5px !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu li:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -5px !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
  color: var(--mainColor);
}

.main-nav nav .navbar-nav .nav-item:last-child .dropdown-menu {
  left: auto;
  right: 0;
}

.navbar-light .navbar-brand {
  color: var(--mainColor);
  font-weight: bold;
  text-transform: uppercase;
}

.navbar-light .navbar-brand:hover {
  color: var(--mainColor);
  font-weight: bold;
  text-transform: uppercase;
}

.mean-container .mean-bar {
  position: relative;
}

.mobile-nav .menu-sidebar-small-device {
  display: none;
  margin: 0px;
  padding: 0px;
  list-style: none;
  position: absolute;
  top: 15px;
  right: 47px;
}

.mobile-nav .menu-sidebar-small-device .uni-button {
  padding: 5px 10px;
}

.mobile-nav .call-button {
  top: 7px;
}

.menu-sidebar ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  align-items: center;
}

.menu-sidebar ul li {
  margin-left: 15px;
}

.menu-small-device {
  display: none;
  position: absolute;
  right: 80px;
  top: 14px;
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.menu-small-device li {
  list-style: none;
  display: inline-block;
}

.header-area2 .main-nav nav .navbar-nav .nav-item .dropdown-menu {
  top: 69px;
}

/*================================================
Popup Area CSS
=================================================*/
.popup-button {
  border: 0px;
  border-radius: 5px;
  font-size: 20px;
  transition: 0.5s ease-in-out;
  color: var(--secondColor);
  background-color: transparent;
  margin-right: 15px;
}

.popup-button:hover {
  color: var(--mainColor);
}

.popup {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.831372549);
}

.popup .popup-content {
  width: 0%;
  height: 100%;
  opacity: 0;
  margin-left: 0;
  margin-right: auto;
}

.popup .popup-content .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: var(--mainColor);
  border: 0px;
  font-size: 30px;
}

.popup .popup-content form {
  top: 20%;
  left: 50%;
  width: 80%;
  visibility: hidden;
  position: absolute;
  transform: translate(-50%, -50%);
}

.popup .popup-content form .search-box {
  border-radius: 10px;
  border: 1px solid var(--mainColor);
}

.popup .popup-content form .search-box input {
  padding: 5px 20px;
}

.popup .popup-content form .search-box .form-control {
  color: var(--blackColor);
  border-radius: 10px;
  border: 0px solid transparent !important;
}

.popup .popup-content form .search-box .btn {
  padding: 5px 15px;
  color: var(--whiteColor);
  border-radius: 10px !important;
  background-color: var(--mainColor);
  font-size: 25px;
}

.popup .hi {
  transition: 0.5s ease-in-out;
  transition-delay: 0.2s;
  opacity: 1;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup .hi form {
  visibility: visible;
  top: 50% !important;
  transition: 1s ease-in-out;
}

/*================================================
Header Responsive Area CSS
=================================================*/
@media only screen and (max-width: 767px) {
  .topbar-right-side {
    justify-content: center;
  }

  .topbar-left-side {
    text-align: center;
  }

  .topbar-left-side ul li {
    margin-right: 7px;
    margin-left: 7px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .topbar-right-side {
    justify-content: center;
  }

  .topbar-left-side {
    text-align: center;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-nav nav .navbar-nav .nav-item a {
    font-size: 17px;
    margin-left: 13px;
    margin-right: 13px;
  }
}

@media only screen and (max-width: 1199px) {
  .main-responsive-nav {
    background-color: var(--whiteColor);
    height: 110px;
  }

  .mobile-nav {
    display: block;
    position: relative;
  }

  .mobile-nav .logo {
    top: 10px;
    left: 0px;
    z-index: 999;
    position: absolute;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
  }

  .mobile-nav nav .navbar-nav .nav-item a i {
    display: none;
  }

  .mean-container .mean-bar {
    background-color: var(--whiteColor);
    /* padding: 0; */
  }

  .mean-container a.meanmenu-reveal {
    padding: 5px 2px 0 0;
  }

  .main-nav {
    display: none !important;
  }

  .menu-sidebar {
    display: none;
  }

  .menu-small-device {
    z-index: 0;
    right: 55px;
    top: 18px;
    display: block !important;
  }

  .menu-small-device .default-button {
    padding: 7px 10px;
    font-size: 14px;
  }

  .topbar-left-area {
    text-align: center;
  }

  .topbar-left-area ul li {
    margin-left: 5px;
    margin-right: 5px;
  }

  .mobile-nav .call-button {
    top: 0;
  }
}

/*=================================
Buy Now Btn
====================================*/
.buy-now-btn {
  right: 10px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: var(--whiteColor);
  background-color: #82b440;
  padding: 10px 15px 10px 37px;
  box-shadow: 0 1px 10px 1px rgba(130, 180, 64, 0.7254901961);
  animation: jello 3s infinite;
  font-size: 12px;
  font-weight: 600;
}

.buy-now-btn img {
  top: 50%;
  left: 15px;
  width: 15px;
  position: absolute;
  transform: translateY(-50%);
}

.buy-now-btn:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.stars ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.stars ul li {
  display: inline-block;
}

.stars ul li i {
  cursor: pointer;
}

/*================================================
Default Button Area CSS
=================================================*/
.default-button {
  overflow: hidden;
  border: 1px solid var(--secondColor);
  padding: 12px 35px;
  border-radius: 25px;
  display: inline-block;
  color: var(--fix-whiteColor);
  background-color: var(--secondColor);
  position: relative;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--fontFamily2);
}

.default-button::before {
  content: "";
  width: 100%;
  height: 0%;
  transition: 0.5s ease;
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.default-button::after {
  content: "";
  width: 100%;
  height: 0%;
  transition: 0.5s ease;
  background-color: var(--mainColor);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.default-button span {
  position: relative;
  z-index: 2;
}

.default-button:hover {
  color: var(--whiteColor);
  border-color: var(--mainColor);
}

.default-button:hover::before,
.default-button:hover::after {
  height: 51%;
}

.default-button-2 {
  background-color: transparent;
  color: var(--blackColor);
}

.default-button-2:hover {
  color: var(--whiteColor);
}

.read-more-btn {
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
  font-weight: 600;
}

.default-button-3 {
  border-radius: 5px;
}

.default-button-4 {
  border-radius: 0px;
}

/*================================================
Default Section Title Area CSS
=================================================*/
.default-section-title h6 {
  position: relative;
  padding-left: 45px;
  display: inline-block;
  color: var(--blackColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
}

.default-section-title h6::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--mainColor);
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.default-section-title h3 {
  line-height: 1.4;
  color: var(--blackColor);
  font-size: 36px;
  font-weight: 700;
}

.default-section-title-middle {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/*================================================
Index 01 About Area CSS
=================================================*/
.banner-text-area {
  max-width: 745px;
  margin-left: auto;
  position: relative;
}

.banner-text-area h6 {
  position: relative;
  padding-left: 45px;
  display: inline-block;
  color: var(--blackColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
}

.banner-text-area h6::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--mainColor);
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.banner-text-area h1 {
  line-height: 1.4;
  color: var(--blackColor);
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 60px;
  font-weight: 700;
  font-family: var(--fontFamily);
}

.banner-text-area p {
  max-width: 650px;
  margin-bottom: 28px;
}

.main-banner-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/banner/banner-bg1.jpg");
  position: relative;
  overflow: hidden;
}

.main-banner-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  left: 0;
  top: 0;
}

.main-banner-img img {
  position: relative;
  right: -20px;
}

/*================================================
Index 01 Partner area CSS
=================================================*/
.partner-slider-area img {
  width: -moz-fit-content;
  width: fit-content;
}

/*================================================
Index 01 About Area CSS
=================================================*/
.about-img-area {
  position: relative;
}

.about-img-area .about-img-1 img {
  position: relative;
  transform: scale(0.8);
  transform-origin: left top;
}

.about-img-area .about-img-2 {
  position: absolute;
  bottom: 0;
  right: 30px;
  transform: scale(0.85);
  transform-origin: right bottom;
}

.about-img-area .about-img-2 img {
  border-radius: 50%;
}

.about-img-area .about-img-2 a {
  width: 100px;
  height: 100px;
  font-size: 60px;
  border-radius: 50%;
  padding-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-text-area .about-list ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.about-text-area .about-list ul li {
  display: flex;
  align-items: baseline;
  color: var(--blackColor);
  margin: 8px;
  font-size: var(--fontFamily2);
  font-weight: 400;
}

.about-text-area .about-list ul li i {
  margin-right: 10px;
  color: var(--mainColor);
}

.about-text-area .default-button {
  margin-top: 20px;
}

.about-1 .about-img-area {
  margin-left: auto;
  max-width: 750px;
}

.about-1 .about-text-area {
  max-width: 630px;
}

.fun-facts-area {
  margin-top: 10px;
}

.fun-facts-card {
  position: relative;
  margin-top: 30px;
}

.fun-facts-card i {
  color: rgba(85, 85, 85, 0.1);
  position: absolute;
  font-size: 100px;
  top: -30px;
}

.fun-facts-card h2 {
  margin-bottom: 0px;
  position: relative;
  color: var(--blackColor);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--fontFamily);
}

.fun-facts-card h2 sup {
  font-weight: 500;
  position: relative;
  top: -12px;
}

.fun-facts-card p {
  color: var(--blackColor);
}

/*================================================
Index 01 Features Area CSS
=================================================*/
.features-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/shape/bg.jpg");
  padding-bottom: 300px;
}

.features-card {
  padding: 30px 30px 25px 160px;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
  border-radius: 15px;
  position: relative;
  margin-top: 30px;
}

.features-card .features-icon-area {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.features-card .features-card-icons {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.features-card .features-card-icons .shape2 {
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1.5, 1.5) rotate(10deg);
  opacity: 0;
  transition: 0.5s ease;
}

.features-card .features-card-icons i {
  font-size: 40px;
  color: var(--fix-whiteColor);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.features-card .features-card-text h4 {
  color: var(--blackColor);
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.features-card:hover .features-icon-area .shape2 {
  transform: scale(1, 1) rotate(0deg);
  opacity: 1;
}

.fmt-0 {
  margin-top: 0px;
}

/*================================================
Index 01 Booking Area CSS
=================================================*/
.booking-content {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/shape/shape-bg-2.png");
  box-shadow: var(--boxShadow);
  text-align: center;
  position: relative;
  margin-top: -200px;
  border-radius: 25px;
  padding: 40px 50px 50px;
}

.booking-content .booking-form-content {
  margin-top: 20px;
  border-radius: 25px;
}

.booking-content .booking-form-content .form-control,
.booking-content .booking-form-content .form-select {
  padding: 15px;
  border-radius: 25px;
  background-color: #f9fafb;
  border: 1px solid #eeeeee;
  color: var(--blackColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.booking-content .booking-form-content .form-control::after,
.booking-content .booking-form-content .form-select::after {
  display: none;
}

.booking-content .booking-form-content .default-button {
  display: block;
  width: 100%;
  padding: 15px;
}

.booking-content .booking-form-content .current {
  color: var(--paragraphColor);
}

/*================================================
Index 01 Service Area CSS
=================================================*/
.service-card {
  box-shadow: var(--boxShadow);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
}

.service-card .service-card-text {
  padding: 0px 30px 25px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/service/text-bg.png");
  filter: brightness(0.98);
  transition: 0.5s ease;
}

.service-card .service-card-text .service-card-icon {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: -50px;
  margin-bottom: 15px;
}

.service-card .service-card-text .service-card-icon .shape1 {
  transition: 0.5s ease-in-out;
}

.service-card .service-card-text .service-card-icon .shape2 {
  position: absolute;
  left: 0%;
  top: 0;
  z-index: 0;
  transform: scale(1.5, 1.5) rotate(10deg);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.service-card .service-card-text .service-card-icon i {
  font-size: 35px;
  color: var(--fix-whiteColor);
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.service-card .service-card-text h4 {
  margin-bottom: 14px;
  font-size: var(--card-title-fontSize);
  font-weight: 600;
}

.service-card:hover .service-card-icon .shape2 {
  transform: scale(1, 1) rotate(0deg);
  opacity: 1;
}

.service-card:hover .service-card-icon .shape1 {
  opacity: 0;
}

.service-card:hover .service-card-text {
  filter: brightness(1);
}

/*================================================
Index 01 Portfolio Area CSS
=================================================*/
.portfolio-card {
  position: relative;
  margin-top: 30px;
  border-radius: 25px;
  overflow: hidden;
}

.portfolio-card::before {
  content: "";
  width: 100%;
  height: 0%;
  transition: 0.5s ease;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.937254902), rgba(0, 0, 0, 0.431372549), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  position: absolute;
  left: 0;
  bottom: 0;
}

.portfolio-card .portfolio-text {
  width: 100%;
  padding: 20px 20px 30px;
  z-index: 9;
  text-align: center;
  position: absolute;
  bottom: 0;
  transition: 0.5s ease;
  transform: translateY(50px) scale(0);
}

.portfolio-card .portfolio-text p {
  color: var(--mainColor);
  font-size: 15px;
  margin-bottom: 5px;
}

.portfolio-card .portfolio-text h4 {
  margin-bottom: 0;
  color: var(--fix-whiteColor);
  font-size: var(--card-title-fontSize);
  font-weight: 600;
}

.portfolio-card .portfolio-text h4 a {
  color: var(--fix-whiteColor);
}

.portfolio-card:hover::before {
  height: 100%;
}

.portfolio-card:hover .portfolio-text {
  transform: translateY(0px) scale(1);
}

.shape-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/shape/bg.jpg");
}

.portfolio-slider-area .owl-nav {
  position: absolute;
  top: -55px;
  right: 0;
}

.portfolio-slider-area .owl-nav button {
  width: 40px;
  height: 40px;
  margin: 0px 5px;
  border-radius: 10px;
  transition: 0.5s ease;
  display: inline-block;
  color: var(--blackColor) !important;
  border: 1px solid #858585 !important;
}

.portfolio-slider-area .owl-nav button:hover {
  border-color: var(--mainColor) !important;
  color: var(--fix-whiteColor) !important;
  background-color: var(--mainColor) !important;
}

/*================================================
Index 01 Testimonials Area CSS
=================================================*/
.stars ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.stars ul li {
  display: inline-flex;
  align-items: center;
}

.stars ul li i {
  color: #FFD31D;
}

.testimonial-card {
  padding: 30px;
  border-radius: 25px;
  margin-top: 30px;
  background-color: #f9fafb;
  box-shadow: var(--boxShadow);
  position: relative;
  transition: 0.5s ease;
}

.testimonial-card .flaticon-right-quote {
  position: absolute;
  right: 25px;
  bottom: 10px;
  font-size: 50px;
  color: #dadada;
  transition: 0.5s ease;
  animation: top-bottom 3s infinite linear;
}

.testimonial-card .stars {
  margin-bottom: 15px;
}

.testimonial-card .stars span {
  margin: 0px 5px;
  color: var(--blackColor);
  font-size: 14px;
  font-weight: 600;
}

.testimonial-card p {
  font-size: var(--fontSize);
  color: var(--blackColor);
}

.testimonial-card .testimonial-footer {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-card .testimonial-footer img {
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-card .testimonial-footer h4 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--blackColor);
}

.testimonial-card .testimonial-footer p {
  color: var(--paragraphColor);
  margin-bottom: 0px;
}

.testimonial-card:hover {
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
}

.testimonial-card:hover .flaticon-right-quote {
  color: #ffd8c2;
}

/*================================================
Index 01 Pricing Plan Area CSS
=================================================*/
.pricing-1 {
  position: relative;
}

.pricing-1::before {
  content: "";
  height: 210px;
  width: 100%;
  background-color: var(--whiteColor);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.pricing-1 .container {
  position: relative;
}

.pricing-card {
  background-color: var(--whiteColor);
  border-radius: 25px;
  margin-top: 30px;
  text-align: center;
  box-shadow: var(--boxShadow);
  transition: 0.5s ease;
}

.pricing-card .pricing-card-header {
  background-color: var(--blackColor);
  border-radius: 25px 25px 0px 0px;
  padding: 30px 30px 0px 30px;
  position: relative;
  margin-bottom: 15px;
  transition: 0.5s ease;
}

.pricing-card .pricing-card-header::before {
  content: "";
  width: 100%;
  height: 30px;
  z-index: 0;
  background-color: var(--whiteColor);
  position: absolute;
  bottom: 0;
  left: 0;
}

.pricing-card .pricing-card-header h3 {
  margin-bottom: 20px;
  color: var(--whiteColor);
}

.pricing-card .pricing-card-header .price {
  padding: 10px 25px;
  border-radius: 30px;
  display: inline-block;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
  position: relative;
  transition: 0.5s ease;
  color: var(--blackColor);
}

.pricing-card .pricing-card-header .price h2 {
  margin: 0px;
  font-size: 36px;
  font-weight: 700;
}

.pricing-card .pricing-card-header .price h2 sup {
  font-size: 18px;
  font-weight: 400;
  position: relative;
  top: -15px;
}

.pricing-card .pricing-card-header .price h2 sub {
  font-size: 14px;
  font-weight: 400;
}

.pricing-card .pricing-text-area {
  padding: 0px 30px 35px;
}

.pricing-card .service-price-list {
  margin-bottom: 15px;
}

.pricing-card .service-price-list ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.pricing-card .service-price-list ul li {
  padding: 15px;
  color: var(--blackColor);
  border-bottom: 1px solid #eeeeee;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.pricing-card .service-price-list ul li i {
  margin-right: 5px;
}

.pricing-card .service-price-list ul li:last-child {
  border-bottom: 0px;
}

.pricing-card .service-price-list .fa-check {
  color: #02960e;
}

.pricing-card .service-price-list .fa-times {
  color: #da0202;
}

.pricing-card:hover .pricing-card-header {
  background-color: var(--mainColor);
}

.pricing-card:hover .pricing-card-header h3 {
  color: var(--fix-whiteColor);
}

.pricing-card:hover .pricing-card-header .price {
  color: var(--mainColor);
}

.pricing-active .pricing-card-header {
  background-color: var(--mainColor);
}

.pricing-active .pricing-card-header h3 {
  color: var(--fix-whiteColor);
}

.pricing-active .pricing-card-header .price {
  color: var(--mainColor);
}

.pricing-active .default-button {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border-color: var(--mainColor);
}

/*================================================
Index 01 Blog Area CSS
=================================================*/
.blog-card {
  margin-top: 30px;
}

.blog-card .blog-card-img {
  position: relative;
  transition: 0.5s ease;
  overflow: hidden;
}

.blog-card .blog-card-img img {
  border-radius: 25px;
  transition: 0.5s ease;
}

.blog-card .blog-card-img .blog-card-category {
  padding: 8px 30px;
  border-radius: 20px;
  transition: 0.5s ease;
  display: inline-block;
  color: var(--whiteColor);
  transition: 0.5s ease;
  background-color: var(--blackColor);
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 15px;
  font-weight: 600;
}

.blog-card .blog-card-text {
  margin-top: 25px;
}

.blog-card .blog-card-text h4 {
  color: var(--blackColor);
  line-height: 1.4;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: var(--card-title-fontSize);
  font-weight: 600;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.1) rotate(-3deg);
}

.blog-card:hover .blog-card-img .blog-card-category {
  background-color: var(--mainColor);
}

.blog-date ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.blog-date ul li {
  display: inline-block;
  margin-right: 14px;
  position: relative;
  color: var(--paragraphColor);
  font-size: 14px;
  font-family: var(--fontFamily2);
}

.blog-date ul li i {
  color: var(--mainColor);
  margin-right: 5px;
}

.blog-date ul li::before {
  content: "/";
  font-size: 16px;
  position: absolute;
  right: -11px;
  top: 0px;
}

.blog-date ul li:last-child::before {
  display: none;
}

/*================================================
Index 01 NewsLetter Area CSS
=================================================*/
.newsletter-content-area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/news-latetr-bg.jpg");
  padding: 50px 50px 40px;
  border-radius: 25px;
  position: relative;
}

.newsletter-content-area .default-section-title h3 {
  margin-bottom: 0px;
}

.news-input-card .form-control,
.news-input-card .form-select {
  width: 100%;
  padding: 15px;
  border-radius: 25px;
  color: var(--blackColor);
  border: 1px solid #eeeeee;
  background-color: var(--whiteColor);
}

.news-input-card .form-control::after,
.news-input-card .form-select::after {
  display: none;
}

.news-input-card .default-button {
  width: 100%;
}

.newsletter-1 {
  position: relative;
}

.newsletter-1::before {
  content: "";
  height: 50%;
  width: 100%;
  background-color: #242325;
  position: absolute;
  bottom: 0;
  left: 0;
}

/*================================================
Index 01 Footer Area CSS
=================================================*/
.footer-logo-area p {
  margin-top: 20px;
  text-align: justify;
  font-size: 16px;
}

.footer-logo-area .footer-social-icons {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.footer-logo-area .footer-social-icons span {
  margin-right: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--fontFamily2);
}

.footer-logo-area .footer-social-icons ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.footer-logo-area .footer-social-icons ul li {
  display: inline-block;
}

.footer-logo-area .footer-social-icons ul li a {
  width: 30px;
  height: 30px;
  font-size: 15px;
  margin-left: 3px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mainColor);
  background-color: var(--whiteColor);
  box-shadow: var(--boxShadow);
}

.footer-logo-area .footer-social-icons ul li a:hover {
  color: var(--fix-whiteColor);
  background-color: var(--mainColor);
}

.footer-links h3 {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-size: var(--card-title-fontSize);
}

.footer-links h3::before {
  content: "";
  height: 2px;
  width: 20%;
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
  bottom: 0;
}

.footer-contact-list {
  padding-left: 20px;
}

.footer-quick-links {
  padding-left: 38px;
}

.footer-content-card {
  position: relative;
  padding-left: 30px;
  margin-top: 15px;
}

.footer-content-card i {
  width: 20px;
  font-size: 18px;
  text-align: center;
  color: var(--mainColor);
  position: absolute;
  left: 0;
  top: 1px;
}

.footer-content-card h5 {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
}

.footer-content-card p {
  font-size: 16px;
}

.footer-content-card p a {
  color: var(--paragraphColor);
}

.footer-quick-links ul {
  margin: 0px;
  padding: 0;
  list-style: none;
}

.footer-quick-links ul li {
  margin-top: 14px;
}

.footer-quick-links ul li a {
  display: inline-block;
  color: var(--paragraphColor);
  font-size: 16px;
  font-family: var(--fontFamily2);
}

.footer-quick-links ul li a i {
  margin-right: 5px;
  color: var(--mainColor);
}

.footer-quick-links ul li a:hover {
  color: var(--mainColor);
}

.footer-quick-links ul li:first-child {
  margin-top: 0px;
}

.footer-newsletter form .form-control {
  padding: 10px 15px;
  border-radius: 25px;
}

.footer-newsletter form .default-button {
  width: 100%;
  margin-top: 15px;
}

.footer-newsletter #validator-newsletter {
  font-size: 14px;
  color: #ff0000;
  margin-top: 8px;
}

.footer-2 .footer-logo-area p {
  color: #eeeeee;
}

.footer-2 .footer-logo-area .footer-social-icons span {
  color: #eeeeee;
}

.footer-2 .footer-links h3 {
  color: var(--fix-whiteColor);
}

.footer-2 .footer-content-card h5 {
  color: #eeeeee;
}

.footer-2 .footer-content-card a {
  color: var(--fix-whiteColor);
  font-size: 16px;
}

.footer-2 .footer-content-card a:hover {
  color: var(--mainColor);
}

.footer-2 .footer-quick-links ul li a {
  color: var(--fix-whiteColor);
}

.footer-2 .footer-quick-links ul li a:hover {
  color: var(--mainColor);
}

.footer-2 .footer-newsletter p {
  color: #eeeeee;
}

.footer-2 .footer-newsletter .input-group {
  border: 1px solid rgba(238, 238, 238, 0.4392156863);
}

.footer-2 .footer-newsletter .input-group .form-control {
  color: var(--whiteColor);
}

.footer-2 .footer-newsletter .input-group .btn {
  border-radius: 25px !important;
  padding: 10px 30px;
}

/*================================================ 
CopyRight Area CSS
=================================================*/
.copyright {
  text-align: center;
  color: var(--whiteColor);
  position: relative;
  padding-top: 0px;
  padding-bottom: 20px;
  background-color: #4a0a00;
}

.copyright .container {
  border-top: 1px solid rgba(255, 255, 255, 0.1176470588);
}

.copyright p {
  color: var(--fix-whiteColor);
  padding-top: 20px;
  font-size: 15px;
}

.copyright p a {
  font-weight: 600;
  text-decoration: none;
  color: var(--mainColor);
}

.copyright p strong {
  color: var(--fix-whiteColor);
}

.copyright-2 {
  border-top: 1px solid rgba(238, 238, 238, 0.3);
}

.copyright-2 p {
  color: #eeeeee;
}

.copyright-2 p a {
  color: var(--thirdColor);
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 100px;
  right: 20px;
  border-radius: 5px;
  background-color: var(--fix-whiteColor);
  color: var(--blackColor);
  z-index: 999;
  width: 50px;
  padding: 0 10px 45px;
  text-align: center;
  height: 40px;
  opacity: 0;
  visibility: hidden;
  font-size: 25px;
  transition: 0.5s;
  box-shadow: var(--boxShadow);
}

.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.go-top:hover {
  color: #ffffff;
  transition: all 0.5s linear;
  border: 1px solid var(--mainColor);
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 25px;
  animation: top-bottom 5s infinite linear;
}

/*================================================
Index 02 Banner Area CSS
=================================================*/
.banner-text-area-2 h6 {
  color: var(--mainColor);
}

.home-banner-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/banner/banner-2-bg.jpg");
  overflow: hidden;
}

.home-banner-img {
  text-align: center;
  padding-top: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/banner/banner-2-circle-bg.png");
}

.home-banner-slider-area .owl-nav {
  width: 88%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
}

.home-banner-slider-area .owl-nav button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--whiteColor) !important;
  background-color: var(--blackColor) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/*================================================
Index 02 Features Area CSS
=================================================*/
.features-card-2 .features-card-icons i {
  left: 55%;
  top: 60%;
}

/*================================================
Index 02 About Area CSS
=================================================*/
.about-img-area-2 {
  position: relative;
  border-radius: 0px 25% 0px 25%;
  background-image: linear-gradient(to top, #ff6613, #fdc9ac);
}

.about-img-area-2 .about-text-2 {
  position: absolute;
  text-align: center;
  border-radius: 0px 25% 0px 25%;
  padding: 15px 30px;
  background-color: var(--whiteColor);
  border: 1px solid #cccccc;
  display: inline-block;
  left: -30px;
  bottom: 20%;
}

.about-img-area-2 .about-text-2 h2 {
  color: var(--blackColor);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0;
}

/*================================================
Index 02 Services Area CSS
=================================================*/
.service-2 {
  justify-content: space-between;
  align-items: center;
}

.service-card-2 {
  position: relative;
  margin-top: 30px;
  box-shadow: var(--boxShadow);
}

.service-card-2::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transform: rotateY(90deg);
  transition: 0.5s ease;
}

.service-card-2 .service-hover-text {
  width: 100%;
  z-index: 9;
  padding: 15px 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s ease;
  opacity: 0;
}

.service-card-2 .service-hover-text i {
  font-size: 40px;
  color: var(--mainColor);
}

.service-card-2 .service-hover-text h4 {
  font-size: var(--card-title-fontSize);
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 10px;
}

.service-card-2 .service-hover-text h4 a {
  color: var(--fix-whiteColor);
}

.service-card-2 .service-hover-text p {
  color: rgba(255, 255, 255, 0.9);
}

.service-card-2 .service-hover-text .read-more-btn {
  color: var(--mainColor);
}

.service-card-2 .service-card-2-footer {
  padding: 15px 25px;
  background-color: var(--whiteColor);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  transition: 0.5s ease;
  transform-origin: bottom;
}

.service-card-2 .service-card-2-footer i {
  font-size: 25px;
  margin-right: 10px;
  color: var(--mainColor);
}

.service-card-2 .service-card-2-footer h4 {
  margin-bottom: 0px;
  font-size: var(--card-title-fontSize);
  font-weight: 600;
}

.service-card-2:hover::before {
  transform: rotateY(0deg);
}

.service-card-2:hover .service-hover-text {
  opacity: 1;
  transition-delay: 0.2s;
}

.service-card-2:hover .service-card-2-footer {
  transform: rotateX(90deg);
}

.view-all-btn {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

/*================================================
Index 02 Team Area CSS
=================================================*/
.team-card {
  background-color: var(--whiteColor);
  transition: 0.5s ease;
  margin-top: 30px;
}

.team-card .team-text-area {
  padding: 30px;
  text-align: center;
}

.team-card .team-text-area h4 {
  margin-bottom: 8px;
  color: var(--blackColor);
  font-size: var(--card-title-fontSize);
  font-weight: 600;
}

.team-card .team-text-area p {
  margin-bottom: 12px;
}

.team-card:hover {
  box-shadow: var(--boxShadow);
  transform: translateY(-10px);
}

.team-social-icons ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.team-social-icons ul li {
  display: inline-block;
}

.team-social-icons ul li a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eeeeee;
  margin: 0px 3px;
}

.team-social-icons ul li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border-color: var(--mainColor);
}

/*================================================
Index 02 testimonial Area CSS
=================================================*/
.testimonial-card-2 .testimonial-footer {
  margin-top: 0px;
  margin-bottom: 20px;
}

.testimonial-card-2 .stars {
  margin-top: 20px;
  margin-bottom: 0px;
}

/*================================================
Index 02 Booking Area CSS
=================================================*/
.play-button {
  position: relative;
}

.play-button a {
  width: 100px;
  height: 100px;
  font-size: 60px;
  border-radius: 50%;
  padding-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  background-color: rgba(255, 99, 14, 0.9);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.booking-form-area {
  background-color: var(--whiteColor);
  padding-left: 50px;
  padding-right: 50px;
}

.booking-form-area .default-section-title h3 {
  line-height: 1;
}

.booking-form-area .booking-form-content {
  margin-top: 20px;
  border-radius: 10px;
}

.booking-form-area .booking-form-content .form-control,
.booking-form-area .booking-form-content .form-select {
  padding: 15px;
  border-radius: 5px;
  background-color: #f9fafb;
  border: 1px solid #eeeeee;
  color: var(--blackColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.booking-form-area .booking-form-content .form-control::after,
.booking-form-area .booking-form-content .form-select::after {
  display: none;
}

.booking-form-area .booking-form-content .default-button {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 5px;
}

.booking-form-area .booking-form-content .current {
  color: var(--paragraphColor);
}

.booking-2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/booking-bg.jpg");
}

/*================================================
Index 02 FAQ Area CSS
=================================================*/
.accordion-item {
  margin-top: 20px;
  border: 0;
}

.accordion-button {
  border: 1px solid rgba(238, 238, 238, 0.1254901961) !important;
  display: block;
  overflow: hidden;
  position: relative;
  padding: 15px 15px 15px 60px;
  background-color: var(--whiteColor) !important;
  color: var(--blackColor) !important;
  box-shadow: var(--boxShadow);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.accordion-button::after {
  display: none;
}

.accordion-button:not(.collapsed) span {
  background-color: var(--mainColor);
}

.accordion-button:not(.collapsed) span::before {
  content: "-";
  transform: rotateZ(180deg);
  transform-origin: center !important;
}

.accordion-button[aria-expanded=false] span {
  background-color: var(--blackColor);
}

.accordion-button[aria-expanded=false] span::before {
  content: "+";
}

.accordion-header {
  position: relative;
}

.accordion-header span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  height: 100%;
  transition: 0.5s ease-in-out;
  background-color: var(--blackColor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.accordion-header span::before {
  content: "+";
  width: 25px;
  height: 25px;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #eeeeee;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50%;
  color: var(--whiteColor);
  transition: 0.5s ease-in-out;
  transform-origin: center !important;
}

.accordion-collapse {
  border: 0px;
}

.accordion-body {
  border: 0px;
  line-height: 1.8;
  box-shadow: var(--boxShadow);
  color: var(--paragraphColor);
  background-color: var(--whiteColor);
}

.faq-img-area {
  position: relative;
  border-radius: 25% 0px 25% 0px;
  background-image: linear-gradient(to top, #ff6613, #fdc9ac);
}

.faq-img-area .about-text-2 {
  position: absolute;
  text-align: center;
  border-radius: 25% 0px 25% 0px;
  padding: 15px 30px;
  background-color: var(--whiteColor);
  border: 1px solid #cccccc;
  display: inline-block;
  right: -30px;
  bottom: 20%;
}

.faq-img-area .about-text-2 h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--blackColor);
}

/*================================================
Index 03 Banner Area CSS
=================================================*/
.banner-text-area-3 h6 {
  color: var(--mainColor);
}

.banner-text-area-3 .default-button {
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}

.banner-text-area-3 .default-button:hover {
  border-color: var(--blackColor);
}

.banner-text-area-3 .default-button:hover::before,
.banner-text-area-3 .default-button:hover::after {
  background-color: var(--blackColor);
}

.banner {
  overflow: hidden;
  position: relative;
}

.banner .black-line {
  position: absolute;
  left: 45%;
  top: 10px;
  animation: top-bottom 2s infinite linear;
}

.banner .orange-line {
  position: absolute;
  right: 0;
  top: 0px;
  animation: top-bottom 2s infinite linear;
}

.banner .half-circle {
  position: absolute;
  bottom: 0;
  left: 30%;
  animation: half-spin 15s infinite linear;
}

.banner-img-area {
  position: relative;
  margin-right: 100px;
}

.banner-img-area .main-img {
  width: 100%;
}

.banner-img-area .shapes .b3-dot {
  position: absolute;
  bottom: 20%;
  left: -75px;
  animation: half-spin 15s infinite linear;
}

.banner-img-area .shapes .dot-circle {
  position: absolute;
  right: 0;
  bottom: 0;
}

/*================================================
Index 03 About Area CSS
=================================================*/
.about-img-area-3 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/about/a3.jpg");
  height: 100%;
  position: relative;
}

.about-img-area-3 img {
  display: none;
}

.about-img-area-3::before {
  content: "";
  width: 100px;
  height: 100%;
  background-color: var(--whiteColor);
  position: absolute;
  right: 0;
}

.about-img-list {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/about/about-3-text-bg.jpg");
  display: inline-block;
  padding: 30px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.about-img-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-img-list ul li {
  padding: 10px;
  border-bottom: 1px solid #ffffff;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-family: var(--fontFamily2);
}

.about-img-list ul li strong {
  color: var(--fix-whiteColor);
  font-size: 30px;
}

.about-img-list ul li:first-child {
  padding-top: 0px;
  margin-top: -15px;
}

/*================================================
Index 03 Features Area CSS
=================================================*/
.features-card-3 {
  position: relative;
  margin-top: 30px;
  padding-left: 90px;
  max-width: 300px;
}

.features-card-3 i {
  width: 70px;
  height: 70px;
  font-size: 35px;
  border-radius: 50%;
  transition: 0.5s ease-in-out;
  color: var(--blackColor);
  border: 3px dashed var(--blackColor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
}

.features-card-3 h4 {
  margin-bottom: 12px;
  color: var(--blackColor);
  font-size: 20px;
  font-weight: 700;
}

.features-card-3:hover i {
  color: var(--mainColor);
  border-color: var(--mainColor);
}

/*================================================
Index 03 Service Area CSS
=================================================*/
.service-card-3 {
  margin-top: 30px;
  overflow: hidden;
  background-color: var(--whiteColor);
}

.service-card-3 .service-card-text-3 {
  padding: 30px 30px 25px 30px;
  position: relative;
}

.service-card-3 .service-card-text-3 i {
  font-size: 100px;
  transition: 0.5s ease-in-out;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -25px;
  right: 10px;
}

.service-card-3 .service-card-text-3 h4 {
  margin-bottom: 15px;
  font-size: var(--card-title-fontSize);
  font-weight: 600;
}

.service-card-3:hover i {
  color: rgba(255, 99, 14, 0.2);
}

/*================================================
Index 03 Why Choose Us Area CSS
=================================================*/
.why-we-card-3 {
  padding: 30px 30px 25px 100px;
  background-color: #f9fafb;
  position: relative;
  margin-top: 30px;
}

.why-we-card-3 i {
  font-size: 50px;
  color: var(--mainColor);
  position: absolute;
  left: 30px;
  top: 28px;
}

.why-we-card-3 h4 {
  color: var(--blackColor);
  font-size: var(--card-title-fontSize);
  font-weight: 600;
}

/*================================================
Index 03 Booking Area CSS
=================================================*/
.booking-3 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/booking-3-bg.jpg");
  position: relative;
}

.booking-3::before {
  content: "";
  width: 32%;
  height: 100%;
  background-color: var(--whiteColor);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.booking-form-area-3 {
  background-color: var(--mainColor);
  padding: 0px;
  position: relative;
}

.booking-form-area-3 .booking-form-content-3 {
  padding: 50px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.booking-form-area-3 .booking-form-content-3 .default-section-title h3 {
  color: var(--fix-whiteColor);
}

.booking-form-area-3 .booking-form-content-3 .booking-form-content .default-button {
  border: 1px solid var(--blackColor) !important;
}

/*================================================
Index 03 Testimonial Area CSS
=================================================*/
.testimonial-card-3 {
  padding-top: 0px;
  padding-bottom: 25px;
  border-radius: 0px;
  position: relative;
}

.testimonial-card-3::before {
  content: "";
  width: 100%;
  height: 35px;
  background-color: var(--whiteColor);
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-card-3 .testimonial-footer {
  display: block;
  position: relative;
}

.testimonial-card-3 .testimonial-footer .testimonial-footer-intro {
  margin-top: 20px;
  margin-bottom: 15px;
}

.testimonial-card-3:hover {
  background-color: #f9fafb;
  box-shadow: none;
}

.blog-card-3 {
  border-radius: 0px;
}

.blog-card-3 .blog-card-img img {
  border-radius: 0px;
}

/*================================================
Index 03 Newsletter Area CSS
=================================================*/
.newsletter-content-area-3 {
  border-radius: 0px;
  background-image: unset;
  background-color: #f9fafb;
}

.newsletter-content-area-3 .news-input-card .form-control,
.newsletter-content-area-3 .news-input-card .form-select {
  border-radius: 0px;
}

.newsletter-content-area-3 .news-input-card .default-button {
  border-radius: 0px;
}

.features-bg-4 {
  padding-bottom: 100px;
}

.about-team .team-card {
  box-shadow: var(--boxShadow);
}

/*================================================
Uni Banner Area CSS
=================================================*/
.uni-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/kerala/bread1.jpg);
  position: relative;
}

.uni-banner::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%);
  position: absolute;
  left: 0;
  top: 0;
}

.uni-banner-text {
  position: relative;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.uni-banner-text h1 {
  color: var(--fix-whiteColor);
  margin-bottom: 15px;
  font-size: 60px;
  font-weight: 900;
}

.uni-banner-text ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.uni-banner-text ul li {
  display: inline-block;
  color: var(--mainColor);
  position: relative;
  margin-right: 20px;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.uni-banner-text ul li a {
  color: var(--fix-whiteColor);
}

.uni-banner-text ul li::after {
  content: "/";
  font-size: 20px;
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.uni-banner-text ul li:last-child::after {
  display: none;
}

.pag-btn {
  display: table;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

/*================================================ 
Log In Page CSS
=================================================*/
.login-form {
  margin-top: 20px;
}

.login-form form label {
  color: var(--paragraphColor);
  font-family: var(--fontFamily);
  font-size: var(--fontSize);
  font-weight: 400;
}

.login-form form .form-control {
  border: 1px solid #eeeeee;
}

.login-form form .form-check label {
  font-weight: 400;
  font-size: 14px;
}

.login-form form .default-button {
  width: 100%;
}

.login-form p {
  font-size: 14px;
  font-style: italic;
}

.form-check-input:checked {
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}

/*================================================
Error Area CSS
=================================================*/
.error {
  border-top: 1px solid #eeeeee;
}

.error-content {
  margin-top: 30px;
}

.error-content p {
  margin-top: 20px;
  margin-bottom: 20px;
}

.error-content h1 {
  margin: 10px 0px;
  line-height: 1;
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #FF2626, #BD1616, #FF2626);
  font-size: 100px;
  font-weight: 700;
}

/*================================================
Terms & Privacy area CSS
=================================================*/
.terms {
  margin-bottom: -15px;
}

.terms strong {
  color: var(--blackColor);
}

.terms a {
  color: var(--mainColor);
}

.terms h1,
.terms h2,
.terms h3,
.terms h4,
.terms h5 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-family: var(--fontFamily);
  font-weight: 600;
  color: var(--blackColor);
}

.terms h6 {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--fontFamily);
  color: var(--blackColor);
}

.terms h1 {
  font-size: 30px;
}

.terms h2 {
  font-size: 28px;
}

.terms h3 {
  font-size: 26px;
}

.terms h4 {
  font-size: 24px;
}

.terms h5 {
  font-size: 22px;
}

.terms ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.terms ul li {
  margin: 10px 0px;
  font-size: var(--fontSize);
  color: var(--paragraphColor);
  font-family: var(--fontFamily2);
}

.terms ul li span {
  font-weight: 700;
  margin-right: 8px;
  color: var(--blackColor);
}

.terms .payment li {
  position: relative;
  padding-left: 20px;
}

.terms .payment li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
  top: 6px;
}

/*================================================
Service 02 PAge area CSS
=================================================*/
.service-4 .service-card-3 {
  box-shadow: var(--boxShadow);
}

/*================================================
Details Text area CSS
=================================================*/
.details-text-area .details-page-img {
  margin-bottom: 30px;
}

.details-text-area .details-page-img img {
  border-radius: 25px;
}

.details-text-area h3 {
  font-size: var(--card-title-fontSize);
  color: var(--blackColor);
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
}

.details-list li {
  color: var(--paragraphColor);
  margin: 15px 0px;
  color: var(--blackColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.details-list li i {
  color: var(--mainColor);
  margin-right: 5px;
}

.sd-img-area img {
  border-radius: 25px;
  margin-top: 10px;
  margin-bottom: 25px;
}

/*================================================
Details page Common Area CSS
=================================================*/
.sidebar-card {
  background-color: var(--whiteColor);
  box-shadow: var(--boxShadow);
  border-radius: 25px;
  padding: 30px;
}

.sidebar-card h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: var(--blackColor);
  border-bottom: 1px dashed var(--mainColor);
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.search-box .input-group {
  border-radius: 25px;
  border: 1px solid #eeeeee;
}

.search-box .form-control {
  background-color: var(--whiteColor);
  border: 0px;
  padding: 10px;
  border-radius: 25px;
}

.search-box .btn {
  border-radius: 25px !important;
  color: var(--whiteColor);
  transition: 0.5s ease-in-out;
  background-color: var(--mainColor);
}

.search-box .btn:hover {
  background-color: var(--blackColor);
}

.categories ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.categories ul li {
  margin-top: 10px;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
  font-weight: 500;
}

.categories ul li i {
  margin-right: 5px;
  color: var(--mainColor);
}

.categories ul li .active {
  color: var(--mainColor);
}

.calculate-area form {
  margin-top: 25px;
}

.calculate-area form .form-control,
.calculate-area form .form-select {
  padding: 15px;
  margin: 10px 0px;
  border-radius: 25px;
  border: 1px solid #eeeeee;
  color: var(--blackColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.calculate-area form .form-control::after,
.calculate-area form .form-select::after {
  display: none;
}

.calculate-area form .default-button {
  display: inline-block;
  width: 100%;
  padding: 15px;
  margin-top: 15px;
}

.calculate-area form .current {
  color: var(--paragraphColor);
}

.opening-card ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.opening-card ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  color: var(--paragraphColor);
}

.opening-card ul li span {
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.recent-news,
.sd-tag {
  margin-top: 30px;
}

.recent-news-card {
  margin-top: 20px;
  min-height: 90px;
  position: relative;
  padding-left: 105px;
}

.recent-news-card img {
  position: absolute;
  border-radius: 50%;
  left: 0;
}

.recent-news-card h5 {
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: var(--fontSize);
}

.recent-news-card p {
  font-size: 14px;
}

.sd-tag ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.sd-tag ul li {
  display: inline-block;
  margin-right: 10px;
  margin-top: 5px;
  font-weight: 500;
}

.sd-tag ul li a {
  font-size: 13px;
  padding: 5px 15px 7px;
  border-radius: 15px;
  border: 1px solid #eeeeee;
  display: inline-block;
  background-color: var(--whiteColor);
}

.sd-tag ul li:last-child {
  margin-right: 0px;
}

.pagination {
  margin-top: 30px;
  text-align: center;
  display: inherit;
}

.pagination ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.pagination ul li {
  display: inline-block;
}

.pagination ul li a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
  border: 1px solid var(--mainColor);
  margin: 0px 3px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--fontFamily);
}

.pagination ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.pagination ul .active a {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

/*================================================
Blog Details area CSS
=================================================*/
.blog-quote {
  background-color: #f9faff;
  margin-top: 20px;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 25px;
}

.blog-quote p {
  color: var(--blackColor);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
}

.blog-quote h5 {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 500;
}

.blog-quote h5 i {
  color: var(--mainColor);
  margin-right: 15px;
}

.blog-quote h5 span {
  color: var(--paragraphColor);
}

.blog-text-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
  border-radius: 25px;
  padding: 3px 15px 15px 15px;
  background-color: #f9fafb;
}

.blog-text-footer ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.blog-text-footer ul li {
  display: inline-block;
}

.blog-text-footer ul li span {
  font-weight: 600;
  margin-right: 10px;
  padding: 0px !important;
  color: var(--blackColor);
  background-color: transparent !important;
}

.blog-text-footer .tag-area {
  margin-top: 12px;
}

.blog-text-footer .tag-area ul li {
  margin-right: 5px;
  cursor: pointer;
  color: var(--blackColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.blog-text-footer .tag-area ul li i {
  color: var(--mainColor);
}

.blog-text-footer .tag-area ul li:hover {
  transition: 0.5s ease-in-out;
  color: var(--mainColor);
}

.blog-text-footer .tag-area ul li:first-child {
  padding: 0px;
}

.blog-text-footer .social-icons {
  margin-top: 12px;
}

.blog-text-footer .social-icons ul li a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px dashed var(--mainColor);
  color: var(--mainColor);
  background-color: var(--whiteColor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blog-text-footer .social-icons ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.bd-comments {
  margin-top: 30px;
}

.bd-comments h3 {
  font-size: var(--card-title-fontSize);
}

.comment-card {
  margin-top: 30px;
  position: relative;
  padding-left: 100px;
}

.comment-card img {
  border-radius: 50%;
  position: absolute;
  left: 0;
}

.comment-card h5 {
  margin-bottom: 0px;
  color: var(--blackColor);
  font-weight: 600;
  font-size: var(--fontSize);
}

.comment-card span {
  color: var(--paragraphColor);
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  font-family: var(--fontFamily);
}

.comment-card p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.comment-card a {
  color: var(--mainColor);
  font-weight: 500;
}

.bd-form {
  margin-top: 30px;
  padding: 30px;
  border-radius: 25px;
}

.bd-form h3 {
  font-size: var(--card-title-fontSize);
}

.bd-form .form-group {
  margin-bottom: 30px;
}

.bd-form .form-control {
  border: 0px;
  padding: 12px 15px;
  border-radius: 25px;
  background-color: var(--whiteColor);
}

.bd-form .list-unstyled {
  font-size: 14px;
  color: #ff0000;
  margin-top: 8px;
}

.bd-form #msgSubmit {
  font-size: 20px;
  margin-top: 10px;
}

.blog-with-sidebar .blog-card {
  margin-top: 0px;
  margin-bottom: 30px;
}

.blog-with-sidebar .blog-card img {
  width: 100%;
}

.blog-details-text-area .blog-card .blog-card-img img {
  transform: rotate(0);
}

/*================================================
Contact page area CSS
=================================================*/
.contact-card {
  position: relative;
  border-radius: 20px;
  padding: 25px 30px 25px 105px;
  margin-top: 30px;
  box-shadow: var(--boxShadow);
}

.contact-card i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: var(--mainColor);
  border: 1px dashed var(--mainColor);
  transition: 0.5s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 30px;
}

.contact-card h4 {
  margin-bottom: 5px;
  color: var(--blackColor);
  font-size: var(--card-title-fontSize);
  font-weight: 600;
}

.contact-card p {
  margin-bottom: 0px;
}

.contact-card p a {
  color: var(--paragraphColor);
}

.contact-card:hover i {
  color: var(--fix-whiteColor);
  background-color: var(--mainColor);
}

.contact-page-form-area {
  box-shadow: var(--boxShadow);
  border-radius: 25px;
}

.contact-page-form-area .bd-form h3 {
  margin-top: 0px;
}

.contact-page-form-area .bd-form .form-control {
  background-color: #f9fafb;
}

.google-map {
  width: 100%;
  height: 400px;
}

.google-map .g-map {
  width: 100%;
  height: 100%;
}

/*================================================
Animation Area CSS
=================================================*/
@keyframes top-bottom {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }
}

@keyframes half-spin {
  0% {
    transform: rotate(0);
    transform-origin: center;
  }

  50% {
    transform: rotate(90deg);
    transform-origin: center;
  }
}

@keyframes video-play {
  0% {
    width: 50%;
    height: 50%;
  }

  100% {
    width: 100%;
    height: 100%;
  }
}

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

/* Container alignment */
.social-wrapper {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

/* Outline Circle Design */
.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /* This creates the thin outline */
  border: 1px solid #ffd700;
  background-color: transparent;
  /* Icon color starts as a neutral dark/grey */
  color: #ffffff;
  transition: all 0.3s ease;
  font-size: 14px;
}

.topbar {
  background: linear-gradient(135deg, #c94a00 0%, #a52800 30%, #7a1200 65%, #4a0a00 100%);
}

/* 1. The Container Hover (Background & Border) */
.social-icon:hover {
  background-color: #ff6600 !important;
  border-color: #ff6600 !important;
  transform: translateY(-2px);
  text-decoration: none;
  /* Removes underline if any */
}

/* 2. The Icon Hover (The Specific Fix) */
.social-icon:hover i {
  color: #ffffff !important;
}

/* Base style for the icon to ensure smooth transition */
.social-icon i {
  transition: color 0.3s ease;
  color: #ffffff !important;
}

/* Optional: Font Awesome specific tweak for centering */
.social-icon i {
  line-height: 0;
}

/* List Styling */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-info-list li a {
  text-decoration: none;
  color: #ffffff;
  /* White text for the topbar */
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

/* Circle Outline Design for Contact Icons */
.contact-icon {
  width: 32px;
  height: 32px;
  border: 1px solid #ffd700;
  /* Gold Outline */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-icon i {
  font-size: 12px;
  color: #ffd700;
  /* Gold Icon */
  transition: all 0.3s ease;
}

/* Hover Effect: Matches the Logo Orange Gradient */
.contact-info-list li:hover .contact-icon {
  background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
  border-color: #ff4500;
  transform: scale(1.1);
}

.contact-info-list li:hover .contact-icon i {
  color: #ffffff !important;
  /* Forces icon to white on hover */
}

.contact-info-list li:hover a {
  color: #ffd700;
  /* Text turns gold on hover */
}

.banner-section {
  width: 100%;
  overflow: hidden;
}

/* Aspect Ratio Box: 16/5 = 31.25% padding-top */
.bannerSwiper {
  width: 100%;
  aspect-ratio: 16 / 5;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures image fills the 16/5 area without stretching */
  display: block;
}

/* Circle Next/Prev Buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  /* Modern glassmorphism look */
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff !important;
  transition: 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  /* Smaller, cleaner arrow size */
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #ff6600;
  /* Matching your orange theme */
  border-color: #ff6600;
}

/* Custom Indicators (Pagination) */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #ff6600 !important;
  opacity: 1;
  width: 25px;
  /* Modern elongated active pill */
  border-radius: 5px;
}

/* Mobile Responsive adjustment */
@media (max-width: 768px) {
  .bannerSwiper {
    aspect-ratio: 16 / 9;
    /* Slightly taller on mobile for better visibility */
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
    /* Hide arrows on small screens for a cleaner look */
  }
}

.kba-about {
  background: #fff8f0;
  padding: 40px 0;
}

.kba-img-wrap {
  position: relative;
}

.kba-mandala-1 {
  position: absolute;
  width: 400px;
  height: 450px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: kbaSpinCW 18s linear infinite;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.kba-mandala-2 {
  position: absolute;
  width: 290px;
  height: 290px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: kbaSpinCCW 12s linear infinite;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

@keyframes kbaSpinCW {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes kbaSpinCCW {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

.kba-img-box {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid #e07800;
  box-shadow: 0 6px 32px rgba(180, 70, 0, 0.18);
}

.kba-img-box img {
  width: 100%;
  /* height: 380px; */
  object-fit: cover;
  display: block;
}

.kba-counter {
  position: absolute;
  bottom: -18px;
  right: -18px;
  z-index: 2;
  background: linear-gradient(135deg, #c94a00, #7a1200);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  border: 3px solid #ffcc44;
  box-shadow: 0 4px 18px rgba(180, 60, 0, 0.3);
}

.kba-counter-num {
  font-size: 38px;
  font-weight: 700;
  color: #ffd766;
  line-height: 1;
  font-family: Georgia, serif;
}

.kba-counter-plus {
  font-size: 26px;
  color: #ffcc44;
  font-weight: 700;
}

.kba-counter-label {
  font-size: 11px;
  color: #ffb07a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  font-weight: 600;
}

.kba-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #c94a00;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-bottom: 2px solid #ffcc44;
  padding-bottom: 5px;
  margin-bottom: 16px;
}

.kba-heading {
  font-size: 32px;
  font-weight: 700;
  color: #3a0e00;
  line-height: 1.25;
  font-family: Georgia, serif;
}

.kba-heading span {
  color: #c94a00;
}

.kba-divider {
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, #c94a00, #ffcc44);
  border-radius: 2px;
  margin: 14px 0 22px;
}

.kba-para {
  font-size: 16px;
  line-height: 1.85;
  color: #4a2500;
  text-align: justify;
}

.kba-feat-grid {
  border: 1px solid #f0d0a0;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
}

.kba-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border-bottom: 1px solid #f0d0a0;
  transition: background 0.2s;
}

.kba-feat-item:hover {
  background: #fff4e8;
}

.kba-feat-item.kba-feat-br {
  border-right: 1px solid #f0d0a0;
}

.kba-feat-item.kba-feat-nb {
  border-bottom: none;
}

.kba-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fbeeda;
  border: 1.5px solid #e07800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.kba-feat-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #c94a00;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kba-feat-title {
  font-size: 13px;
  color: #3a1200;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3px;
}

.kba-feat-sub {
  font-size: 12px;
  color: #7a4020;
  font-weight: 400;
  line-height: 1.4;
}

.kba-btn {
  display: inline-block;
  margin-top: 26px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #c94a00, #7a1200);
  color: #ffd766;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.kba-btn:hover {
  opacity: 0.88;
  color: #ffd766;
}

@media(max-width:767px) {
  .kba-img-box img {
    height: 260px;
  }

  .kba-counter {
    right: 8px;
    bottom: -14px;
    padding: 12px 16px;
  }

  .kba-counter-num {
    font-size: 28px;
  }

  .kba-heading {
    font-size: 24px;
  }

  .kba-img-wrap {
    margin-bottom: 40px;
  }

  .kba-feat-item.kba-feat-br {
    border-right: none;
  }

  .kba-feat-item.kba-feat-nb {
    border-bottom: 1px solid #f0d0a0;
  }

  .kba-feat-item:last-child {
    border-bottom: none;
  }
}


.kba-why-sec .kba-sec-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #c94a00;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: #fff4e8;
  border: 1px solid #f0c080;
  border-radius: 30px;
  padding: 5px 16px;
  margin-bottom: 14px
}

.kba-why-sec .kba-sec-title {
  font-size: 34px;
  font-weight: 700;
  color: #2a0800;
  font-family: Georgia, serif;
  line-height: 1.25;
  margin-bottom: 10px
}

.kba-why-sec .kba-sec-title span {
  color: #c94a00
}

.kba-why-sec .kba-sec-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c94a00, #ffcc44);
  border-radius: 2px;
  margin: 0 auto 14px
}

.kba-why-sec .kba-sec-sub {
  font-size: 16px;
  color: #7a4020;
  line-height: 1.7;
  ;
  margin: 0 auto
}

.kba-wcard {
  background: #fff;
  border: 1px solid #f0d8b8;
  border-radius: 16px;
  padding: 20px 20px 20px;
  height: 100%;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  position: relative;
  overflow: hidden
}

.kba-wcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c94a00, #ffcc44);
  opacity: 0;
  transition: opacity 0.28s
}

.kba-wcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(180, 70, 0, 0.12);
  border-color: #e07800
}

.kba-wcard:hover::before {
  opacity: 1
}

.kba-wcard-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 52px;
  font-weight: 700;
  color: #f5e0cc;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
  transition: color 0.28s
}

.kba-wcard:hover .kba-wcard-num {
  color: #f0cdb0
}

.kba-wcard-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff4e8;
  border: 2px solid #f0c080;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.28s, border-color 0.28s
}

.kba-wcard:hover .kba-wcard-icon-wrap {
  background: linear-gradient(135deg, #c94a00, #7a1200);
  border-color: #c94a00
}

.kba-wcard-icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #c94a00;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.28s
}

.kba-wcard:hover .kba-wcard-icon-wrap svg {
  stroke: #ffd766
}

.kba-wcard-title {
  font-size: 19px;
  font-weight: 700;
  color: #2a0800;
  font-family: Georgia, serif;
  margin-bottom: 10px;
  line-height: 1.3
}

.kba-wcard-text {
  font-size: 16px;
  color: #6a3a18;
  line-height: 1.85;
  text-align: justify
}

@media(max-width:991px) {
  .kba-wcard {
    margin-bottom: 24px
  }
}

@media(max-width:767px) {
  .kba-why-sec .kba-sec-title {
    font-size: 26px
  }
}

.kba-sv3 {
  background: #fff8f0;
  padding: 40px 0
}

.kba-sv3-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #c94a00;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  background: #fff4e8;
  border: 1px solid #f0c080;
  border-radius: 30px;
  padding: 5px 18px;
  margin-bottom: 16px
}

.kba-sv3-title {
  font-size: 36px;
  font-weight: 700;
  color: #2a0800;
  font-family: Georgia, serif;
  line-height: 1.25;
  margin-bottom: 10px
}

.kba-sv3-title span {
  color: #c94a00
}

.kba-sv3-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #c94a00, #ffcc44);
  border-radius: 2px;
  margin: 0 auto 14px
}

.kba-sv3-sub {
  font-size: 16px;
  color: #7a4020;
  line-height: 1.75;
  margin: 0 auto
}

.kba-sv3-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0d8b8;
  transition: box-shadow 0.3s, transform 0.3s
}

.kba-sv3-card:hover {
  box-shadow: 0 20px 50px rgba(180, 70, 0, 0.13);
  transform: translateY(-6px)
}

.kba-sv3-img {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0
}

.kba-sv3-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s
}

.kba-sv3-card:hover .kba-sv3-img img {
  transform: scale(1.07)
}

.kba-sv3-num {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c94a00, #7a1200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #ffd766;
  font-family: sans-serif;
  letter-spacing: 0.5px
}

.kba-sv3-body {
  padding: 0 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative
}

.kba-sv3-icon-float {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #f0c080;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -27px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(180, 70, 0, 0.1);
  transition: background 0.3s, border-color 0.3s
}

.kba-sv3-card:hover .kba-sv3-icon-float {
  background: linear-gradient(135deg, #c94a00, #7a1200);
  border-color: #c94a00
}

.kba-sv3-icon-float svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #c94a00;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s
}

.kba-sv3-card:hover .kba-sv3-icon-float svg {
  stroke: #ffd766
}

.kba-sv3-ctitle {
  font-size: 20px;
  font-weight: 700;
  color: #2a0800;
  font-family: Georgia, serif;
  margin-bottom: 10px;
  line-height: 1.35
}

.kba-sv3-sep {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #c94a00, #ffcc44);
  border-radius: 2px;
  margin-bottom: 12px;
  transition: width 0.3s
}

.kba-sv3-card:hover .kba-sv3-sep {
  width: 52px
}

.kba-sv3-desc {
  font-size: 16px;
  color: #6a3a18;
  line-height: 1.8;
  text-align: justify;
  flex: 1;
  margin-bottom: 18px
}

.kba-sv3-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f5e0c8;
  padding-top: 14px;
  margin-top: auto
}

.kba-sv3-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #c94a00;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: gap 0.25s
}

.kba-sv3-btn:hover {
  color: #7a1200
}

.kba-sv3-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #c94a00;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s
}

.kba-sv3-btn:hover svg {
  transform: translateX(4px);
  stroke: #7a1200
}

.kba-sv3-dot {
  display: flex;
  gap: 5px
}

.kba-sv3-dot span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f0c080
}

.kba-sv3-dot span:first-child {
  background: #c94a00
}

@media(max-width:767px) {
  .kba-sv3-title {
    font-size: 26px
  }

  .kba-sv3-img {
    height: 180px
  }
}


/* CTA Section Background & Overlay */
.kba-cta-section {
  position: relative;
  padding: 50px 0;
  background: url(../images/kerala/cta.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  /* Parallax effect */
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 60%);
  /* Black overlay */
  z-index: 1;
}

.kba-cta-section .container {
  position: relative;
  z-index: 2;
  /* Ensures content stays above overlay */
}

/* Overriding provided classes for Dark BG visibility */
.kba-cta-section .kba-sec-title {
  color: #ffffff;
  /* Change title to white for dark bg */
  margin-bottom: 20px;
}

.cta-desc {
  color: #e0e0e0;
  font-size: 18px;
  line-height: 1.6;
  /* max-width: 800px; */
  /* margin: 0 auto 30px; */
}

/* Call Us & Button Layout */
.cta-contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.call-text {
  color: #ffffff;
  font-size: 16px;
}

.call-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffd700;
  /* Gold color for phone */
  text-decoration: none;
  margin-top: 5px;
}

.btn-consult {
  display: inline-block;
  background: #c94a00;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s all ease;
  border: 2px solid #c94a00;
}

.btn-consult:hover {
  background: transparent;
  color: #c94a00;
  border-color: #c94a00;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .kba-sec-title {
    font-size: 28px;
  }

  .call-number {
    font-size: 22px;
  }

  .kba-cta-section {
    padding: 60px 0;
  }
}

.kba-testimonial-sec {
  padding: 80px 0;
  background-color: #fdfaf7;
  /* Soft light background */
}

.testimonial-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s;
  margin: 15px 5px;
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(201, 74, 0, 0.1);
  border-color: #f0c080;
}

/* Circle Avatar */
.avatar-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #c94a00;
}

.avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-content {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  height: 72px;
  /* Force exactly 3 lines roughly */
  overflow: hidden;
  margin-bottom: 15px;
}

.star-rating {
  color: #ffb400;
  font-size: 14px;
  margin-bottom: 15px;
}

.client-name {
  font-size: 18px;
  font-weight: 700;
  color: #2a0800;
  margin-bottom: 5px;
}

.client-role {
  font-size: 13px;
  color: #c94a00;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Circle Navigation Design */
.custom-nav {
  width: 45px !important;
  height: 45px !important;
  background: #fff !important;
  border: 1px solid #c94a00 !important;
  border-radius: 50% !important;
  color: #c94a00 !important;
}

.custom-nav:after {
  font-size: 18px !important;
  font-weight: bold;
}

.custom-nav:hover {
  background: #c94a00 !important;
  color: #fff !important;
}

/* Dot Indicators */
.swiper-pagination-bullet-active {
  background: #c94a00 !important;
  width: 20px !important;
  border-radius: 5px !important;
}

.kba-cnt-sec {
  background: linear-gradient(135deg, #c94a00 0%, #a52800 35%, #7a1200 70%, #4a0a00 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden
  
}

.kba-cnt-sec::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255, 204, 68, 0.1);
  pointer-events: none
}

.kba-cnt-sec::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(255, 204, 68, 0.08);
  pointer-events: none
}

.kba-cnt-card {
  text-align: center;
  padding: 36px 24px;
  position: relative
}

.kba-cnt-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 204, 68, 0.2)
}

.col-lg-3:last-child .kba-cnt-card::after {
  display: none
}

.kba-cnt-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 204, 68, 0.4);
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px
}

.kba-cnt-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #ffcc44;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.kba-cnt-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px
}

.kba-cnt-num {
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  /* font-family: Georgia, serif; */
  line-height: 1
}

.kba-cnt-plus {
  font-size: 28px;
  font-weight: 700;
  color: #ffcc44;
  line-height: 1
}

.kba-cnt-label {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 220, 170, 0.9);
  letter-spacing: 0.8px;
  /* font-family: sans-serif; */
  margin-bottom: 6px
}

.kba-cnt-sub {
  font-size: 16px;
  color: rgba(255, 180, 120, 0.65);
  font-weight: 600;
  /* font-family: sans-serif; */
  line-height: 1.5
}

@media(max-width:991px) {
  .kba-cnt-card::after {
    display: none
  }

  .kba-cnt-card {
    padding: 28px 16px;
    border-bottom: 1px solid rgba(255, 204, 68, 0.12)
  }

  .col-lg-3:last-child .kba-cnt-card {
    border-bottom: none
  }
}

@media(max-width:575px) {
  .kba-cnt-num {
    font-size: 38px
  }
}
.kba-con-sec{background:#fff8f0;}
.kba-con-sec .kba-sec-tag{display:inline-block;font-size:11px;font-weight:700;color:#c94a00;letter-spacing:3.5px;text-transform:uppercase;background:#fff4e8;border:1px solid #f0c080;border-radius:30px;padding:5px 18px;margin-bottom:14px}
.kba-con-sec .kba-sec-title{font-size:34px;font-weight:700;color:#2a0800;line-height:1.25;margin-bottom:10px}
.kba-con-sec .kba-sec-title span{color:#c94a00}
.kba-con-sec .kba-sec-line{width:52px;height:3px;background:linear-gradient(90deg,#c94a00,#ffcc44);border-radius:2px;margin:0 0 14px}
.kba-con-sec .kba-sec-sub{font-size:15px;color:#6a3a18;line-height:1.8;margin-bottom:32px;max-width:420px}

.kba-con-info-list{display:flex;flex-direction:column;gap:20px;margin-bottom:36px}
.kba-con-info-item{display:flex;align-items:flex-start;gap:16px}
.kba-con-info-icon{width:50px;height:50px;border-radius:50%;background:linear-gradient(135deg,#c94a00,#7a1200);display:flex;align-items:center;justify-content:center;flex-shrink:0;border:2px solid #ffcc44}
.kba-con-info-icon svg{width:20px;height:20px;fill:none;stroke:#ffd766;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.kba-con-info-body{}
.kba-con-info-label{font-size:11px;font-weight:700;color:#c94a00;letter-spacing:2px;text-transform:uppercase;margin-bottom:3px;}
.kba-con-info-val{font-size:14.5px;color:#2a0800;font-weight:600;line-height:1.5}

.kba-con-social{display:flex;gap:12px;align-items:center}
.kba-con-social a{width:40px;height:40px;border-radius:50%;border:1.5px solid #f0c080;background:#fff;display:flex;align-items:center;justify-content:center;transition:background 0.25s,border-color 0.25s;text-decoration:none}
.kba-con-social a:hover{background:linear-gradient(135deg,#c94a00,#7a1200);border-color:#c94a00}
.kba-con-social a svg{width:16px;height:16px;fill:none;stroke:#c94a00;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;transition:stroke 0.25s}
.kba-con-social a:hover svg{stroke:#ffd766}

.kba-con-form-card{background:#fff;border-radius:20px;padding:36px 32px;border:1px solid #f0d8b8;box-shadow:0 8px 32px rgba(180,70,0,0.07)}
.kba-con-form-head{display:flex;align-items:center;gap:12px;margin-bottom:28px;padding-bottom:18px;border-bottom:1px solid #f5e0c8}
.kba-con-form-head-icon{width:46px;height:46px;border-radius:12px;background:linear-gradient(135deg,#c94a00,#7a1200);display:flex;align-items:center;justify-content:center}
.kba-con-form-head-icon svg{width:20px;height:20px;fill:none;stroke:#ffd766;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.kba-con-form-head-title{font-size:18px;font-weight:700;color:#2a0800;margin:0}
.kba-con-form-head-sub{font-size:12px;color:#7a4020;font-family:sans-serif;margin:0}

.kba-con-field{margin-bottom:18px}
.kba-con-label{display:flex;align-items:center;gap:7px;font-size:12px;font-weight:700;color:#5a2800;letter-spacing:0.5px;text-transform:uppercase;margin-bottom:7px;}
.kba-con-label svg{width:13px;height:13px;fill:none;stroke:#c94a00;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.kba-con-input{width:100%;padding:11px 16px;border:1.5px solid #f0d0a8;border-radius:10px;font-size:14px;color:#2a0800;background:#fff9f4;outline:none;transition:border-color 0.25s,box-shadow 0.25s;box-sizing:border-box}
.kba-con-input:focus{border-color:#c94a00;box-shadow:0 0 0 3px rgba(201,74,0,0.08)}
.kba-con-input::placeholder{color:#c0a080}
textarea.kba-con-input{resize:vertical;min-height:110px}

.kba-con-submit{display:block;width:fit-content;margin:24px auto 0;padding:13px 44px;background:linear-gradient(135deg,#c94a00,#7a1200);color:#ffd766;font-size:14px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;border-radius:30px;border:none;cursor:pointer;font-family:sans-serif;transition:opacity 0.25s,transform 0.2s}
.kba-con-submit:hover{opacity:0.88;transform:translateY(-2px)}

.kba-con-map{border-radius:20px;overflow:hidden;border:1px solid #f0d8b8;box-shadow:0 8px 32px rgba(180,70,0,0.07)}
.kba-con-map iframe{width:100%;height:420px;display:block;border:none}

@media(max-width:991px){
  .kba-con-form-card{margin-top:40px;padding:28px 22px}
}
@media(max-width:767px){
  .kba-con-sec .kba-sec-title{font-size:26px}
  .kba-con-map iframe{height:300px}
}

.kba-vbanner {
  width: 100%;
  aspect-ratio: 16 / 5;
  height: 500px;
  overflow: hidden;
}

.kba-vbanner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) { .kba-vbanner { height: 420px; } }
@media (max-width: 767px) { .kba-vbanner { height: 320px; } }
@media (max-width: 480px) { .kba-vbanner { height: 220px; } }


.kba-ap-hero{background:#fff8f0;padding:40px 0}
.kba-ap-img-wrap{position:relative;border-radius:20px;overflow:hidden ; border: 2px solid #c94a00;}
.kba-ap-img-wrap img{width:100%;height:480px;object-fit:cover;display:block;border-radius:20px}
.kba-ap-img-badge{position:absolute;bottom:24px;left:24px;background:linear-gradient(135deg,#c94a00,#7a1200);border:2px solid #ffcc44;border-radius:14px;padding:16px 22px;text-align:center}
.kba-ap-img-badge-num{font-size:34px;font-weight:700;color:#ffd766;line-height:1}
.kba-ap-img-badge-lbl{font-size:10px;color:#ffb07a;text-transform:uppercase;letter-spacing:1.5px;margin-top:3px}
.kba-ap-img-ring{position:absolute;top:-20px;right:-20px;width:120px;height:120px;border-radius:50%;border:1.5px dashed rgba(201,74,0,0.3);pointer-events:none}
.kba-ap-img-ring2{position:absolute;top:10px;right:10px;width:60px;height:60px;border-radius:50%;border:1.5px dashed rgba(255,204,68,0.35);pointer-events:none}

.kba-ap-tag{display:inline-block;font-size:11px;font-weight:700;color:#c94a00;letter-spacing:3px;text-transform:uppercase;background:#fff4e8;border:1px solid #f0c080;border-radius:30px;padding:5px 18px;margin-bottom:16px}
.kba-ap-title{font-size:36px;font-weight:700;color:#2a0800;line-height:1.25;margin-bottom:10px}
.kba-ap-title span{color:#c94a00}
.kba-ap-divider{width:52px;height:3px;background:linear-gradient(90deg,#c94a00,#ffcc44);border-radius:2px;margin:14px 0 22px}
.kba-ap-para{font-size:15px;color:#4a2500;line-height:1.9;text-align:justify;margin-bottom:20px}

.kba-ap-quote{background:linear-gradient(135deg,#fff4e8,#fff8f0);border-left:4px solid #c94a00;border-radius:0 14px 14px 0;padding:22px 26px;margin-top:10px;position:relative}
.kba-ap-quote::before{content:'\201C';font-size:72px;color:rgba(201,74,0,0.12);line-height:1;position:absolute;top:-8px;left:16px}
.kba-ap-quote-text{font-size:15px;color:#5a2800;font-style:italic;line-height:1.8;position:relative;z-index:1}
.kba-ap-quote-author{font-size:12px;color:#c94a00;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;margin-top:10px}


.kba-mvv-card{border-radius:20px;padding:36px 32px;height:100%;position:relative;overflow:hidden;border:1px solid rgba(255,204,68,0.12);transition:transform 0.3s,box-shadow 0.3s}
.kba-mvv-card:hover{transform:translateY(-6px);box-shadow:0 20px 48px rgba(0,0,0,0.3)}
.kba-mvv-card.mission{background:linear-gradient(145deg,#3a0c00,#2a0800)}
.kba-mvv-card.vision{background:linear-gradient(145deg,#1a0a00,#2a1000)}
.kba-mvv-card.values{background:linear-gradient(145deg,#0a0500,#1a0800)}
.kba-mvv-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;border-radius:20px 20px 0 0}
.kba-mvv-card.mission::before{background:linear-gradient(90deg,#c94a00,#ffcc44)}
.kba-mvv-card.vision::before{background:linear-gradient(90deg,#ffcc44,#e07800)}
.kba-mvv-card.values::before{background:linear-gradient(90deg,#e07800,#c94a00)}

.kba-mvv-icon{width:58px;height:58px;border-radius:16px;display:flex;align-items:center;justify-content:center;margin-bottom:20px;border:1.5px solid rgba(255,204,68,0.25)}
.kba-mvv-card.mission .kba-mvv-icon{background:rgba(201,74,0,0.15)}
.kba-mvv-card.vision .kba-mvv-icon{background:rgba(255,204,68,0.1)}
.kba-mvv-card.values .kba-mvv-icon{background:rgba(224,120,0,0.12)}
.kba-mvv-icon svg{width:26px;height:26px;fill:none;stroke:#ffcc44;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}

.kba-mvv-label{font-size:11px;font-weight:700;color:#ffcc44;letter-spacing:3px;text-transform:uppercase;margin-bottom:10px}
.kba-mvv-heading{font-size:22px;font-weight:700;color:#fff;margin-bottom:14px;line-height:1.25}
.kba-mvv-sep{width:32px;height:2px;background:linear-gradient(90deg,#c94a00,#ffcc44);border-radius:2px;margin-bottom:16px}
.kba-mvv-text{font-size:14px;color:rgba(255,200,150,0.8);line-height:1.85;text-align:justify}

.kba-mvv-values-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
.kba-mvv-values-list li{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:rgba(255,200,150,0.8);line-height:1.6}
.kba-mvv-values-list li::before{content:'';width:7px;height:7px;border-radius:50%;background:#ffcc44;flex-shrink:0;margin-top:6px}

@media(max-width:991px){
  .kba-ap-img-wrap img{height:360px}
  .kba-ap-title{font-size:28px}
  
}
@media(max-width:767px){
  .kba-ap-hero{padding:60px 0}
  .kba-ap-img-wrap{margin-bottom:40px}
  .kba-ap-img-wrap img{height:280px}
  .kba-ap-title{font-size:24px}
 
}

.kba-services-zigzag {
    padding: 40px 0;
    background: #fdfaf7;
}

.swiper-container-wrapper {
    position: relative;
    /* padding: 0 45px; */
}

/* Card Container */
.service-card {
    background: transparent;
    border-radius: 20px;
    height: 100%;
    margin-bottom: 40px;
    transition: all 0.4s ease;
    overflow: visible; /* Crucial for negative margin overlap */
}

/* Image Box */
.service-img-box {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlapping Content Box */
.service-content-overlay {
    background: #ffffff;
    margin: -50px 20px 0; /* -50px Negative Margin */
    padding: 25px 20px;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-content-overlay h4 {
    font-size: 22px;
    color: #2a0800;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-content-overlay p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}


/* .button-reveal {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
} */

.btn-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #c94a00;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover States */
.service-card:hover .service-img-box img {
    transform: scale(1.1);
}

.service-card:hover .service-content-overlay {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 74, 0, 0.15);
    border: 1px solid #f0c080;
}

.service-card:hover .button-reveal {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
}

/* Swiper Navigation */
.swiper-button-next, .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #c94a00 !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .swiper-container-wrapper { padding: 0 10px; }
    .swiper-button-next, .swiper-button-prev { display: none; }
    .service-img-box { height: 200px; }
}
@media (min-width: 1350px) {
    /* Prevent the entire section from pushing the page width */
    .kba-services-zigzag {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Force the container to stay within the viewport */
    .kba-services-zigzag .container {
        max-width: 1240px; /* Standard Bootstrap large desktop container */
        margin-right: auto;
        margin-left: auto;
    }

    /* Ensure swiper doesn't bleed out due to padding or negative margins */
    .swiper-container-wrapper {
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    /* Prevent the card hover transformation from triggering a scrollbar */
    .service-card {
        will-change: transform;
    }
}

@media (min-width: 1350px) {
    /* Prevent the entire section from pushing the page width */
    .kba-services-zigzag {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Force the container to stay within the viewport */
    .kba-services-zigzag .container {
        max-width: 1240px; /* Standard Bootstrap large desktop container */
        margin-right: auto;
        margin-left: auto;
    }

    /* Ensure swiper doesn't bleed out due to padding or negative margins */
    .swiper-container-wrapper {
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    /* Prevent the card hover transformation from triggering a scrollbar */
    .service-card {
        will-change: transform;
    }
}

/* Global fix for any width to prevent horizontal "jumping" */
html, body {
    overflow-x: hidden;
    width: 100%;
}
/* Navigation Buttons - Force to Top Layer */
.rtl-next, .rtl-prev, .ltr-next, .ltr-prev {
    width: 35px !important;
    height: 35px !important;
    background: #ffffff;
    border: 1px solid #c94a00;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow for visibility */
    transition: all 0.3s ease;
    
    /* THE FIX: Higher Z-Index and absolute positioning check */
    z-index: 10 !important; 
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important; /* Vertically centers the button */
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Ensure the wrapper allows the buttons to be seen */
.swiper-container-wrapper {
    position: relative;
    /* padding: 0 45px; */
    z-index: 5; /* Lower than buttons, higher than background */
    overflow: visible !important; /* Prevents arrows from being clipped */
}

/* Arrow Hover Effect */
.rtl-next:hover, .rtl-prev:hover, 
.ltr-next:hover, .ltr-prev:hover {
    background: #c94a00 !important;
    transform: translateY(-50%) scale(1.1) !important; /* Center + Scale */
    box-shadow: 0 6px 15px rgba(201, 74, 0, 0.3);
}

/* Designing the Arrow Icon */
.rtl-next:after, .rtl-prev:after, 
.ltr-next:after, .ltr-prev:after {
    font-size: 14px !important;
    font-weight: bold;
    color: #c94a00;
}

.rtl-next:hover:after, .rtl-prev:hover:after, 
.ltr-next:hover:after, .ltr-prev:hover:after {
    color: #ffffff !important;
}

/* Specific Positions to stay outside the cards */
.rtl-prev, .ltr-prev { left: 0px !important; }
.rtl-next, .ltr-next { right: 0px !important; }

.kba-mvv-sec{background:#fff;padding:40px 0;overflow:hidden;position:relative}
.kba-mvv-sec::before{content:'';position:absolute;top:-120px;right:-120px;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(201,74,0,0.06) 0%,transparent 70%);pointer-events:none}
.kba-mvv-sec::after{content:'';position:absolute;bottom:-100px;left:-80px;width:340px;height:340px;border-radius:50%;background:radial-gradient(circle,rgba(255,204,68,0.07) 0%,transparent 70%);pointer-events:none}

.kba-mvv-tag{display:inline-block;font-size:11px;font-weight:700;color:#c94a00;letter-spacing:3px;text-transform:uppercase;background:#fff4e8;border:1px solid #f0c080;border-radius:30px;padding:5px 18px;margin-bottom:14px}
.kba-mvv-main-title{font-size:36px;font-weight:700;color:#1a0800;line-height:1.25;margin-bottom:10px}
.kba-mvv-main-title span{color:#c94a00}
.kba-mvv-main-line{width:56px;height:3px;background:linear-gradient(90deg,#c94a00,#ffcc44);border-radius:2px;margin:0 auto 14px}
.kba-mvv-main-sub{font-size:16px;color:#7a4020;line-height:1.75;margin:0 auto}

.kba-mvv-card{border-radius:24px;padding:0;height:100%;overflow:hidden;position:relative;transition:transform 0.32s,box-shadow 0.32s}
.kba-mvv-card:hover{transform:translateY(-8px);box-shadow:0 24px 56px rgba(180,70,0,0.12)}

.kba-mvv-card-top{padding:36px 32px 28px;position:relative}
.kba-mvv-card.mission .kba-mvv-card-top{background:linear-gradient(135deg,#fff4e8 0%,#ffecd6 100%);border:1.5px solid #f5d5a0}
.kba-mvv-card.vision .kba-mvv-card-top{background:linear-gradient(135deg,#fef9ec 0%,#fff3cc 100%);border:1.5px solid #f5e090}
.kba-mvv-card.values .kba-mvv-card-top{background:linear-gradient(135deg,#fff0f0 0%,#ffe8e0 100%);border:1.5px solid #f5c0a8}

.kba-mvv-card-num{position:absolute;top:18px;right:24px;font-size:64px;font-weight:700;line-height:1;opacity:0.07;color:#2a0800}

.kba-mvv-icon-box{width:62px;height:62px;border-radius:18px;display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.kba-mvv-card.mission .kba-mvv-icon-box{background:linear-gradient(135deg,#c94a00,#a03000)}
.kba-mvv-card.vision .kba-mvv-icon-box{background:linear-gradient(135deg,#e07800,#c05000)}
.kba-mvv-card.values .kba-mvv-icon-box{background:linear-gradient(135deg,#d05020,#9a2800)}
.kba-mvv-icon-box svg{width:26px;height:26px;fill:none;stroke:#fff;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}

.kba-mvv-card-label{font-size:10px;font-weight:700;letter-spacing:3px;text-transform:uppercase;margin-bottom:8px}
.kba-mvv-card.mission .kba-mvv-card-label{color:#c94a00}
.kba-mvv-card.vision .kba-mvv-card-label{color:#c07000}
.kba-mvv-card.values .kba-mvv-card-label{color:#a03000}

.kba-mvv-card-title{font-size:18px;font-weight:700;color:#1a0800;margin-bottom:12px;line-height:1.3}

.kba-mvv-sep{width:36px;height:2.5px;border-radius:2px;margin-bottom:0}
.kba-mvv-card.mission .kba-mvv-sep{background:linear-gradient(90deg,#c94a00,#ffcc44)}
.kba-mvv-card.vision .kba-mvv-sep{background:linear-gradient(90deg,#e07800,#ffdd44)}
.kba-mvv-card.values .kba-mvv-sep{background:linear-gradient(90deg,#c94a00,#e07800)}

.kba-mvv-card-body{padding:24px 32px 32px;height:300px;background:#fff;border:1.5px solid;border-top:none;border-radius:0 0 24px 24px}
.kba-mvv-card.mission .kba-mvv-card-body{border-color:#f5d5a0}
.kba-mvv-card.vision .kba-mvv-card-body{border-color:#f5e090}
.kba-mvv-card.values .kba-mvv-card-body{border-color:#f5c0a8}

.kba-mvv-card-text{font-size:16px;color:#5a2a00;line-height:1.85;text-align:justify}

.kba-mvv-val-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:11px}
.kba-mvv-val-item{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:#5a2a00;line-height:1.55}
.kba-mvv-val-dot{width:22px;height:22px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px}
.kba-mvv-card.values .kba-mvv-val-dot{background:linear-gradient(135deg,#c94a00,#a03000)}
.kba-mvv-val-dot svg{width:10px;height:10px;fill:none;stroke:#fff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.kba-mvv-val-name{font-weight:700;color:#2a0800;margin-right:3px}

.kba-mvv-footer-strip{height:5px;border-radius:0 0 24px 24px}


@media(max-width:991px){.kba-mvv-card{margin-bottom:28px}}
@media(max-width:767px){.kba-mvv-main-title{font-size:26px}.kba-mvv-card-top{padding:28px 24px 22px}.kba-mvv-card-body{padding:20px 24px 26px}}

.kba-sd-hero{background:linear-gradient(135deg,#fff4e8 0%,#fff8f0 60%,#fff 100%);padding:80px 0;border-bottom:1px solid #f0d8b8}
.kba-sd-breadcrumb{display:flex;align-items:center;gap:8px;margin-bottom:24px;flex-wrap:wrap}
.kba-sd-breadcrumb span{font-size:12px;color:#7a4020;font-weight:500}
.kba-sd-breadcrumb span.active{color:#c94a00;font-weight:700}
.kba-sd-breadcrumb svg{width:12px;height:12px;fill:none;stroke:#c0a080;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.kba-sd-tag{display:inline-block;font-size:11px;font-weight:700;color:#c94a00;letter-spacing:3px;text-transform:uppercase;background:#fff4e8;border:1px solid #f0c080;border-radius:30px;padding:5px 18px;margin-bottom:16px}
.kba-sd-title{font-size:40px;font-weight:700;color:#1a0800;line-height:1.2;margin-bottom:14px}
.kba-sd-title span{color:#c94a00}
.kba-sd-divider{width:56px;height:3px;background:linear-gradient(90deg,#c94a00,#ffcc44);border-radius:2px;margin:0 0 20px}
.kba-sd-intro{font-size:16px;color:#4a2500;line-height:1.9;text-align:justify;margin-bottom:16px}
.kba-sd-intro strong{color:#c94a00;font-weight:700}
.kba-sd-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px}
.kba-sd-chip{font-size:15px;font-weight:600;color:#7a1200;background:#fff4e8;border:1px solid #f0c080;border-radius:20px;padding:5px 14px}

.kba-sd-img-wrap{position:relative;border-radius:20px;overflow:hidden;height:100%}
.kba-sd-img-wrap img{width:100%;height:440px;object-fit:cover;display:block;border-radius:20px}
.kba-sd-img-badge{position:absolute;bottom:20px;left:20px;background:linear-gradient(135deg,#c94a00,#7a1200);border:2px solid #ffcc44;border-radius:14px;padding:14px 20px;text-align:center}
.kba-sd-img-badge-num{font-size:30px;font-weight:700;color:#ffd766;line-height:1}
.kba-sd-img-badge-lbl{font-size:10px;color:#ffb07a;text-transform:uppercase;letter-spacing:1.5px;margin-top:3px}
.kba-sd-img-tag{position:absolute;top:18px;left:18px;background:linear-gradient(135deg,#c94a00,#7a1200);color:#ffd766;font-size:11px;font-weight:700;letter-spacing:1px;text-transform:uppercase;padding:5px 14px;border-radius:20px}

.kba-sd-sec{padding: 40px 0}
.kba-sd-sec.alt{background:#fff8f0}
.kba-sd-sec-tag{display:inline-block;font-size:11px;font-weight:700;color:#c94a00;letter-spacing:3px;text-transform:uppercase;margin-bottom:12px}
.kba-sd-sec-title{font-size:28px;font-weight:700;color:#1a0800;line-height:1.3;margin-bottom:10px}
.kba-sd-sec-title span{color:#c94a00}
.kba-sd-sec-div{width:44px;height:3px;background:linear-gradient(90deg,#c94a00,#ffcc44);border-radius:2px;margin:0 0 18px}
.kba-sd-para{font-size:16px;color:#4a2500;line-height:1.9;text-align:justify;margin-bottom:16px}
.kba-sd-para strong{color:#c94a00;font-weight:700}
.kba-sd-para:last-of-type{margin-bottom:0}

.kba-sd-list{list-style:none;padding:0;margin:20px 0 0;display:flex;flex-direction:column;gap:12px}
.kba-sd-list li{display:flex;align-items:flex-start;gap:12px;font-size:16px;color:#4a2500;line-height:1.7}
.kba-sd-list-icon{width:26px;height:26px;border-radius:50%;background:linear-gradient(135deg,#c94a00,#7a1200);display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px}
.kba-sd-list-icon svg{width:12px;height:12px;fill:none;stroke:#ffd766;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.kba-sd-list li strong{color:#2a0800;font-weight:700}

.kba-sd-highlight{background:linear-gradient(135deg,#fff4e8,#fff8f0);border-left:4px solid #c94a00;border-radius:0 12px 12px 0;padding:18px 22px;margin:20px 0}
.kba-sd-highlight p{font-size:14.5px;color:#5a2800;line-height:1.8;font-style:italic;font-family:Georgia,serif}
.kba-sd-highlight p strong{color:#c94a00;font-style:normal}

.kba-sd-img-side{border-radius:20px;overflow:hidden}
.kba-sd-img-side img{width:100%;height:400px;object-fit:cover;display:block;border-radius:20px;border:2px solid #f0d0b0}

.kba-sd-steps{display:flex;flex-direction:column;gap:16px;margin-top:8px}
.kba-sd-step{display:flex;align-items:flex-start;gap:16px;padding:16px 20px;background:#fff;border:1px solid #f0d8b8;border-radius:14px;transition:border-color 0.2s,box-shadow 0.2s}
.kba-sd-step:hover{border-color:#e07800;box-shadow:0 6px 20px rgba(180,70,0,0.08)}
.kba-sd-step-num{width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,#c94a00,#7a1200);color:#ffd766;font-size:14px;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-family:Georgia,serif}
.kba-sd-step-body{}
.kba-sd-step-title{font-size:18px;font-weight:700;color:#1a0800;margin-bottom:4px}
.kba-sd-step-desc{font-size:16px;color:#7a4020;line-height:1.65}

.kba-sd-cta{background:linear-gradient(135deg,#c94a00 0%,#a52800 35%,#7a1200 70%,#4a0a00 100%);padding:40px 0;position:relative;overflow:hidden}
.kba-sd-cta::before{content:'';position:absolute;top:-80px;right:-80px;width:320px;height:320px;border-radius:50%;border:1px solid rgba(255,204,68,0.12);pointer-events:none}
.kba-sd-cta::after{content:'';position:absolute;bottom:-60px;left:-60px;width:240px;height:240px;border-radius:50%;border:1px solid rgba(255,204,68,0.08);pointer-events:none}
.kba-sd-cta-tag{display:inline-block;font-size:11px;font-weight:700;color:#ffcc44;letter-spacing:3px;text-transform:uppercase;border:1px solid rgba(255,204,68,0.4);border-radius:30px;padding:5px 18px;margin-bottom:16px}
.kba-sd-cta-title{font-size:36px;font-weight:700;color:#fff;line-height:1.25;margin-bottom:12px}
.kba-sd-cta-title span{color:#ffcc44}
.kba-sd-cta-line{width:56px;height:3px;background:linear-gradient(90deg,#ffcc44,rgba(255,204,68,0.3));border-radius:2px;margin:0 auto 18px}
.kba-sd-cta-desc{font-size:16px;color:rgba(255,210,160,0.9);line-height:1.8;margin:0 auto 32px}
.kba-sd-cta-btns{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.kba-sd-cta-btn1{display:inline-flex;align-items:center;gap:8px;padding:14px 34px;background:#ffd766;color:#7a1200;font-size:14px;font-weight:700;letter-spacing:1px;border-radius:30px;text-decoration:none;transition:opacity 0.25s,transform 0.2s}
.kba-sd-cta-btn1:hover{opacity:0.9;transform:translateY(-2px);color:#7a1200}
.kba-sd-cta-btn2{display:inline-flex;align-items:center;gap:8px;padding:13px 32px;background:transparent;color:#fff;font-size:14px;font-weight:700;letter-spacing:1px;border-radius:30px;border:2px solid rgba(255,255,255,0.5);text-decoration:none;transition:background 0.25s,border-color 0.25s}
.kba-sd-cta-btn2:hover{background:rgba(255,255,255,0.1);border-color:#fff;color:#fff}
.kba-sd-cta-btn1 svg,.kba-sd-cta-btn2 svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.kba-sd-cta-stats{display:flex;gap:40px;justify-content:center;margin-top:44px;flex-wrap:wrap}
.kba-sd-cta-stat{text-align:center}
.kba-sd-cta-stat-num{font-size:28px;font-weight:700;color:#ffcc44;line-height:1}
.kba-sd-cta-stat-lbl{font-size:11px;color:rgba(255,190,120,0.75);letter-spacing:1.5px;text-transform:uppercase;margin-top:4px}

@media(max-width:991px){
  .kba-sd-img-wrap img,.kba-sd-img-side img{height:320px}
  .kba-sd-title{font-size:30px}
  .kba-sd-cta-title{font-size:28px}
}
@media(max-width:767px){
  .kba-sd-hero,.kba-sd-sec,.kba-sd-cta{padding:30px 0}
  .kba-sd-img-wrap img,.kba-sd-img-side img{height:260px;margin-bottom:32px}
  .kba-sd-title{font-size:26px}
  .kba-sd-sec-title{font-size:22px}
  .kba-sd-cta-title{font-size:24px}
  .kba-sd-cta-stats{gap:24px}
}
/* Footer Background Wrapper */
.kba-footer-bg {
    position: relative;
    background-image: url(../images/kerala/footer.jpg); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden; /* Ensures pseudo-element doesn't bleed out */
}

/* Dark Overlay using Pseudo-element */
.kba-footer-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 71%); /* Adjust the 0.85 for more or less transparency */
    z-index: 1; /* Sits above the image */
}

/* Ensure footer content stays on top of the overlay */
.kba-footer-bg .container {
    position: relative;
    z-index: 2; /* Sits above the pseudo-element overlay */
}

/* Gallery Grid Styling */
.kba-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.kba-gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.kba-gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
    backdrop-filter: blur(3px);
}

.kba-gallery-item:hover img { transform: scale(1.1); }
.kba-gallery-item:hover .kba-gallery-overlay { opacity: 1; }

/* Lightbox Fullscreen Styling */
.kba-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.kba-lightbox-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.kba-lightbox-content img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

/* Controls */
.kba-close {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: 200;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
}

.kba-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    padding: 20px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

.kba-prev { left: 20px; }
.kba-next { right: 20px; }
.kba-nav:hover { color: #ffcc00; }

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .kba-nav { font-size: 30px; padding: 10px; }
    .kba-close { top: 15px; right: 20px; font-size: 40px; }
    .topbar{
      display: none;
    }
    .kba-mandala-1{
      width: 260px;
    }
}

/* Hide default ugly Google UI */
.goog-te-gadget {
  font-family: inherit !important;
  color: transparent !important;
}

.goog-te-gadget .goog-te-combo {
  padding: 8px 14px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  color: #333;
  outline: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.goog-te-gadget-simple{
  display: flex !important;
}

/* Hover Effect */
.goog-te-gadget .goog-te-combo:hover {
  border-color: #FC6701;
}

/* Remove Google Branding Top Bar */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}

/* Optional: Align inside navbar */
.translate-item {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.kba-about-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f1f1;
}

.kba-sd-para.text-justify {
    text-align: justify;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
    font-size: 17px;
}

.kba-service-sub-title {
    font-weight: 700;
    color: #333;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Custom spacing for chips to look clean */
.kba-sd-chips .kba-sd-chip {
    margin: 8px;
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.kba-sd-chips .kba-sd-chip:hover {
    background: #ffcc00; /* Use your theme color here */
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .kba-about-card {
        padding: 30px 20px;
    }
}

.kba-service-quick-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 5px solid #ffcc00; /* Subtle accent line */
}

.kba-quick-para {
    text-align: justify;
    line-height: 1.8;
    color: #444;
    font-size: 16.5px;
    max-width: 850px;
    margin: 0 auto;
}

.kba-q-item {
    background: #f9f9f9;
    padding: 8px 18px;
    margin: 5px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    border: 1px solid #eee;
}

.kba-q-item i {
    color: #e74c3c; /* Heart/Icon color */
}

@media (max-width: 768px) {
    .kba-quick-para {
        text-align: left; /* Better for small screens */
    }
}

.ph {
    width: 50px;
    height: auto;
    display: table;
    float: right;
    position: fixed;
    z-index: 2147483647;
    top: 70%;
    left: 10px;
}

.whatsapp {
    width: 50px;
    height: auto;
    display: table;
    float: right;
    position: fixed;
    z-index: 2147483647;
    top: 80%;
    left: 10px;
}