@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

:root {
  --main-blue-color: #013d71;
  --second-blue-color: #0b5487;
  --light-blue-color: #2772b6;
  --light-pitch-color: #c6a67d;
  --dark-pitch-color: #a78a64;
  --white-color: #fff;
  --dark-color: #000;
  --font-primary: "Ubuntu", sans-serif;
  --heading-font-family: "Playfair Display", serif;
}

/* genral style */
html {
  overflow-x: hidden;
}

body {
  background-color: #fff;
  font-size: 16px;
  font-family: var(--font-primary);
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: var(--main-blue-color);
  font-family: var(--font-primary) !important;
  transition: all 0.3s;
  text-decoration: none;
}
p {
  margin-bottom: 0px;
}
a:hover {
  color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0px;
  color: var(--main-blue-color);
}
.fs_12 {
  font-size: 12px !important;
}
.fs_14 {
  font-size: 14px !important;
}
.fs_16 {
  font-size: 16px !important;
}
.fs_18 {
  font-size: 18px;
}
.fs_20 {
  font-size: 20px;
}
.fs_24 {
  font-size: 24px;
}
.fw_normal {
  font-weight: 500;
}
.bg_main_blue_color {
  background-color: var(--main-blue-color);
}
.bg_second_blue_color {
  background-color: var(--second-blue-color);
}
.bg_light_blue_color {
  background-color: var(--light-blue-color);
}
.bg_pitch_color {
  background-color: var(--light-pitch-color);
}
.bg_light {
  background: #f2f2ec;
}
.text_main_blue_color {
  color: var(--main-blue-color);
}
.text_second_blue_color {
  color: var(--second-blue-color);
}
.text_light_blue_color {
  color: var(--light-blue-color);
}
.text_pitch_color {
  color: var(--light-pitch-color);
}
.text_dark_pitch_color {
  color: var(--dark-pitch-color);
}
.py-8 {
  padding: 80px 0;
}
.btn {
  border-radius: 5px;
  font-size: 14px;
  padding: 4px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.main_blue_btn {
  background-color: var(--main-blue-color);
  color: var(--white-color);
  border: 1px solid var(--main-blue-color);
}
.main_blue_btn:hover {
  background-color: var(--second-blue-color);
  color: var(--white-color);
}
.light_blue_btn {
  background-color: var(--light-blue-color);
  color: var(--white-color);
  border: 1px solid var(--main-blue-color);
}
.light_blue_btn:hover {
  background-color: var(--main-blue-color);
  border: 1px solid var(--light-blue-color);
  color: var(--white-color);
}
.light_pitch_btn {
  background-color: var(--light-pitch-color);
  color: var(--white-color);
  border: 1px solid var(--light-pitch-color);
}
.light_pitch_btn:hover {
  background-color: var(--dark-pitch-color);
  color: var(--white-color);
  border: 1px solid var(--dark-pitch-color);
}
.heading img {
  width: 70px;
  height: 70px;
}
.heading span {
  position: absolute;
  left: 40%;
  top: 30%;
  font-size: 20px;
}
.heading p {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--main-blue-color);
  font-size: 13px;
  font-weight: 500;
}
.main__heading {
  font-size: 30px;
  letter-spacing: 1.8px;
  font-family: var(--heading-font-family);
  font-weight: 600;
  color: var(--main-blue-color);
  margin-bottom: 15px;
}
body,
.custom_bg {
  background-color: #ffffff;
  background-image: url(../image/bg.jpg);
}


.swiper-button-next:after, .swiper-button-prev:after {
  width: 25px;
  font-size: 15px !important;
  color: #fff;
  background: var(--main-blue-color);
  text-align: center;
  padding: 5px;
  height: 25px;
  font-weight: bold;
  border-radius: 15px;
}
/* --header---- */
.topbar_item svg {
  width: 45px;
  border: 1px solid var(--dark-pitch-color);
  color: var(--dark-pitch-color);
  height: 45px;
  padding: 8px;
  border-radius: 50px;
}
.logo {
  width: 125px;
}
.header-fix {
  position: fixed !important;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  background-color: #fff !important;
  width: 100%;
  top: 0;
  z-index: 999;
}
.whatsapp-topheader img {
  width: 35px;
  height: 35px;
}
.whatsapp-icon {
  width: 40px;
  height: 40px;
  right: 5px;
  bottom: 20%;
  position: fixed;
  background-color: var(--main-blue-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.whatsapp-icon img {
  width: 35px;
  height: 35px;
}
/* -----------Hero section--- */
.hero_section img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero_content {
  top: 30%;
  left: 80px;
  width: 600px;
}
.hero_content svg {
  width: 20px;
}
.swiper-wrapper {
  transition-timing-function: ease-in-out !important;
}
/* -------------about section */
.about_img_container {
  position: relative;
  background: #fff;
  width: 70%;
  margin-left: auto;
  padding-bottom: 28px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about_img_container .about_img {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  object-fit: cover;
}
.about_img_container .about_img2 {
  width: 80px;
  position: absolute;
  bottom: 71px;
  /* right: 39%; */
  border-radius: 50%;
  background: #fff;
  padding-top: 10px;
  padding: 6px;
}
.about_img_container .about_img3 {
  position: absolute;
  width: auto;
  height: 60px;
  bottom: 88px;
  /* right: 89px; */
}
.about_img_container p {
  margin-left: 15px;
  text-align: center;
  margin-top: 31px;
  font-size: 13px;
  color: gray;
  margin-right: 15px;
}
/* ----------Room Category------ */
.rooms_bg {
  position: relative;
}
.rooms_bg::after {
  background-color: var(--main-blue-color);
  height: 600px;
  content: "";
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
}
.rooms_bg .container {
  position: relative;
  z-index: 6;
}
.Room_category_container {
  overflow: hidden;
  height: 350px;
  position: relative;
}
.Room_category_container img{
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  transition: transform 0.5s ease-in-out;
}
.Room_category_content {
  background: linear-gradient(to top, #100f0fbf, rgba(0, 0, 0, 0));
  position: absolute;
  bottom: 1px;
  width: 100%;
  padding: 15px 35px;
  color: #fff;
  font-size: 12px;
  font-family: var(--heading-font-family);
}
.Room_category_container:hover .Room_container_overlay {
  background: linear-gradient(to top, #100f0fbf, rgba(0, 0, 0, 0));
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  transition: all 0.5s ease-in-out;
}

/* --------Amenities------ */
.amenity_icon_div {
  position: relative;
  width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  border-radius: 50px;
  margin: auto;
  margin-bottom: 10px;
}

.img-default,
.img-hover {
  position: absolute;
  inset: 0;
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: opacity 0.3s ease;
  margin: auto;
}

.img-hover {
  opacity: 0;
}

.amenities_card:hover .img-default {
  opacity: 0;
}
.amenities_card:hover .img-hover {
  opacity: 1;
}
.amenities_card:hover .amenity_icon_div {
  background-color: var(--light-pitch-color);
}
.amenities_card:hover .amenities_card h3 {
  color: var(--dark-pitch-color) !important;
}

/* cta section */

/* CTA Form */

.cta__section ul li {
  font-size: 13px;
  display: flex;
  background-color: #fff;
  gap: 5px;
  color: #424242;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  flex-direction: column;
}

.cta__section ul li strong {
  color: var(--main-red-color);
  display: block;
  margin-bottom: 8px;
}

.cta__section ul li img {
  width: 40px;
  height: 40px;
}

.form_cta {
  position: relative;
}

.form_cta:before {
  position: absolute;
  left: 30px;
  right: -20px;
  top: -20px;
  height: 100%;
  background-image: url(../image/lines.png);
  content: "";
  z-index: 0;
  background-size: contain;
  background-position: top center;
}

.form_cta .home-booking {
  background-color: var(--light-pitch-color);
  padding: 20px;
  border-radius: 16px;
  position: relative;
  z-index: 5;
}
.google-map {
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
}
.form_cta h2 {
  font-size: 22px;
  color: #fff;
}
.form_cta p {
  font-size: 13px;
}
.form_cta .form-label {
  font-size: 14px;
}

.form_cta form input,
.form_cta form select,
.form_cta form textarea {
  border-color: var(--main-blue-color);
  font-size: 13px;
  min-height: 30px;
  color: #424242;
}

.form-control::placeholder {
  color: #ddd !important;
}

.form_cta form h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--main-blue-color);
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .hero_section img {
    height: 100%;
  }
  .hero_content {
    display: none;
  }
  .logo {
    width: 70px;
  }
  .about_img_container {
    width: 85%;
    margin: 0 auto;
    margin-top: 20px;
  }
  .statics .main__heading {
    text-align: center;
  }
  .Room_category_container {
    height: 290px;
  }
  .location_card {
    margin-bottom: 15px;
  }
  .booking_platform_card,.statics_card {
    border: 1px solid var(--dark-pitch-color) !important;
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 10px;
    width: 70%;
    padding: 8px;
    margin: 0 auto;
  }
  .action__wrapper {
    position: fixed;
    bottom: 10px;
    padding: 4px;
    left: 0;
    width: 100%;
  }
  .header-mob-fix {
    position: fixed !important;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
    background-color: #fff !important;
    width: 100%;
    top: 0;
    z-index: 999;
  }
}
