@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");
/* font-family: "Cormorant Garamond", serif; */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* font-family: "Montserrat", sans-serif; */

@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
/* font-family: "Pacifico", cursive; */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* for veriable creation */
:root {
  --headingcolor: #1a3c2b;
  --textcolor: #4b5563;
  --whitecolor: #ffffff;
  --yellowcolor: #c5a572;
}

/* commmon part */
.d_flex {
  display: flex;
}

.jc_space_btwn {
  justify-content: space-between;
}

.jc_cntn_cntr {
  justify-content: center;
}

.item_center {
  align-items: center;
}

/* top part */
.top_part {
  text-align: center;
  width: 45%;
}
.top_part h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  color: var(--headingcolor);
  font-family: "Cormorant Garamond", serif;
}
.top_part p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 16px;
  color: var(--textcolor);
}
/* heading font */
.heading_font {
  font-family: "Cormorant Garamond", serif;
}

/* universal button */
.uni_btn_one {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--headingcolor);
  border: 1px solid var(--headingcolor);
  border-radius: 8px;
  padding: 13px 32px;
  text-transform: capitalize;
  background-color: transparent;
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.uni_btn_one:hover {
  background-color: var(--headingcolor);
  color: var(--whitecolor);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Container */
.container {
  max-width: 1502px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/* navbar */
.nav_bar {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #c5b190ff;
  padding: 16px 30px;
  z-index: 9999;
}
.nav_bar .nav_wrapper .nav_left ul li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #1f2937;
  text-transform: capitalize;
}
.nav_bar .nav_wrapper .nav_logo ul li a {
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  color: var(--headingcolor);
  font-family: "Pacifico", cursive;
}
.nav_bar .nav_wrapper .nav_left ul li:nth-child(1) {
  /* margin-left: 67px; */
}
.nav_bar .nav_wrapper .nav_left ul {
  gap: 32px;
}
.nav_bar .nav_wrapper .nav_right ul {
  gap: 30px;
}
.nav_bar .nav_wrapper .nav_right ul li a {
  color: #374151;
}
.nav_bar .nav_wrapper .nav_right ul li:nth-child(3) {
  font-size: 14px;
  font-weight: 500;
  color: #1c1c1c;
}
.nav_content,
.nav_bar .nav_wrapper {
  width: 100%;
}
.nav_logo {
  width: 20%;
}
.nav_left .activee {
  color: var(--headingcolor) !important;
}

/* banner */
.banner {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgb(26, 60, 43, 0.8) 0%,
    rgb(26, 60, 43, 0.4) 50%,
    rgb(26, 60, 43, 0) 100%
  );
  z-index: 1;
}

.banner .container {
  position: relative;
  z-index: 2;
}

.banner_wrapper_main {
  height: 100vh;
}
.banner_wrapper_main .banner_wrapper {
  width: 46%;
  padding-top: 81px;
}
.banner_wrapper_main .banner_wrapper .banner_box h1 {
  font-size: 72px;
  font-weight: 400;
  line-height: 72px;
  color: var(--whitecolor);
}

.banner_wrapper_main .banner_wrapper .banner_box p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgb(255, 255, 255, 0.9);
  margin-top: 24px;
}
.banner_wrapper_main .banner_btn_wrapper {
  padding-top: 40px;
}
.banner_wrapper_main .banner_btn_wrapper a {
  color: var(--whitecolor);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  background-color: var(--yellowcolor);
  padding: 12px 32px;
  border-radius: 8px;
  transition: background-color 0.4s ease-in-out, transform 0.4s ease-in-out,
    box-shadow 0.4s ease-in-out;
}

.banner_wrapper_main .banner_btn_wrapper a:hover {
  background-color: #e9ba2f; /* soft, warm yellow tone */
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: background-color 0.4s ease-in-out, transform 0.4s ease-in-out,
    box-shadow 0.4s ease-in-out;
}

.banner_btn_wrapper .btn_right_part .fa-toggle-on {
  font-size: 23px;
  color: var(--yellowcolor);
}
.banner_btn_wrapper .btn_right_part p {
  color: var(--whitecolor);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.banner_wrapper_main .banner_btn_wrapper {
  gap: 24px;
}
.banner_wrapper_main .banner_btn_wrapper .btn_right_part {
  gap: 12px;
}

/* Section two */
.section_two {
  padding: 80px 0;
  background-color: var(--whitecolor);
}
.section_two .section_two_wrapper .img_wrapper figure img {
  height: 384px;
  width: 475px;
  border-radius: 16px;
  transition: transform 0.6s ease, box-shadow 0.6s ease, filter 0.6s ease;
}

.section_two .section_two_wrapper .img_wrapper figure img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  filter: brightness(1.03);
}

.section_two .section_two_wrapper .img_wrapper {
  padding-top: 64px;
  flex-wrap: wrap;
  gap: 23px;
}
.section_two .section_two_btn {
  text-align: center;
  padding-top: 48px;
}

/* Section three */
.section_three {
  padding: 80px 0;
  background-color: #f9fafb;
}
.section_three_wrapper .middle_part .card .card_ctn_wrapper .card_ctn_top h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #111827;
}
.section_three_wrapper .middle_part .card .card_ctn_wrapper .card_ctn_top p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--textcolor);
}
.section_three_wrapper
  .middle_part
  .card
  .card_ctn_wrapper
  .card_ctn_top
  .fa-solid {
  font-size: 12px;
  color: var(--yellowcolor);
}
.section_three_wrapper .middle_part .card .card_ctn_wrapper .card_ctn_mid p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--textcolor);
  margin-top: 16px;
  margin-bottom: 27px;
}
.section_three_wrapper .middle_part .card .card_ctn_wrapper .card_ctn_bottom p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #6b7280;
}
.section_three_wrapper
  .middle_part
  .card
  .card_ctn_wrapper
  .card_ctn_bottom
  .card_btn
  a {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--whitecolor);
  background-color: var(--headingcolor);
  border-radius: 8px;
  padding: 9px 24px;
  display: inline-block;
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.section_three_wrapper
  .middle_part
  .card
  .card_ctn_wrapper
  .card_ctn_bottom
  .card_btn
  a:hover {
  background-color: #082012; /* subtle light green */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.section_three_wrapper .middle_part .card .card_ctn_wrapper {
  padding: 32px;
}
.section_three_wrapper .middle_part .card {
  width: 49%;
  border-radius: 16px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  background-color: var(--whitecolor);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section_three_wrapper .middle_part .card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.12);
}

.section_three_wrapper .middle_part .card figure img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.section_three_wrapper .middle_part .card .card_img_wrapper {
  position: relative;
}
.section_three_wrapper .middle_part .card .card_img_wrapper p {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--whitecolor);
  background-color: var(--yellowcolor);
  border-radius: 16px;
  padding: 5px 16px;
}
.section_three_wrapper .middle_part {
  padding: 64px 0px 64px 0px;
}

.section_three_wrapper .bottom_part h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--headingcolor);
  text-align: center;
}
.section_three_wrapper .bottom_part .box_wrapper {
  padding-top: 32px;
}
.section_three_wrapper .bottom_part .box {
  width: 32%;
  padding: 24px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  background-color: var(--whitecolor);
  border: 1px solid transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.section_three_wrapper .bottom_part .box:hover {
  border-color: var(--yellowcolor);
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.section_three_wrapper .bottom_part .box .box_top h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #111827;
}
.section_three_wrapper .bottom_part .box .box_top p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #6b7280;
}
.section_three_wrapper .bottom_part .box .box_top .fa-bell {
  padding: 12px 13px;
  border-radius: 50%;
  text-align: center;
  color: #6b7280;
  background-color: #f3f4f6;
}
.section_three_wrapper .bottom_part .box .box_ctn p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--textcolor);
}
.section_three_wrapper .bottom_part .box .box_btn a {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #374151;
  display: block;
  text-align: center;
  padding: 9px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
}
.section_three_wrapper .bottom_part .box .box_ctn {
  margin-top: 17px;
  margin-bottom: 17px;
}
.section_three_wrapper .bottom_part .box .box_btn {
  margin-top: 10px;
}

/* Section four */

.section_four {
  padding: 80px 0;
  background-color: var(--whitecolor);
}
.sec_four_left_Part {
  width: 46%;
}
.sec_four_right_part {
  width: 50%;
  position: relative;
}
.section_four_wrapper {
  gap: 70px;
}
.sec_four_left_Part h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  color: var(--headingcolor);
}
.sec_four_left_Part p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--textcolor);
  margin-top: 27px;
}
.sec_four_left_Part .options {
  padding: 40px 0;
}
.sec_four_left_Part .options ul li h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #111827;
}
.sec_four_left_Part .options ul li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--textcolor);
  margin-top: 10px;
  margin-bottom: 27px;
  margin-left: 41px;
}
.sec_four_left_Part .options .heading_font .fa-check {
  font-size: 16px;
  margin-right: 16px;
  background-color: rgb(26, 60, 43, 0.1);
  padding: 12px 5px 12px 5px;
  border-radius: 12px;
  color: #1a3c2b;
}
.sec_four_left_Part .left_part_btn a {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--whitecolor);
  background-color: var(--yellowcolor);
  padding: 13px 33px;
  border-radius: 8px;
  display: inline-block;
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sec_four_left_Part .left_part_btn a:hover {
  background-color: #f4c63e; /* subtle, smooth yellow change */
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.sec_four_right_part img {
  width: 100%;
  border-radius: 16px;
}
.sec_four_right_part .review .top_part_review img {
  height: 48px;
  width: 48px;
  width: 100%;
}
.sec_four_right_part .review .top_part_review {
  gap: 12px;
}
.sec_four_right_part .review .top_part_review h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #111827;
}
.sec_four_right_part .review .top_part_review p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #6b7280;
}
.sec_four_right_part .review .bottom_part_review p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--textcolor);
  font-style: italic;
  padding-top: 17px;
}
.sec_four_right_part .review {
  padding: 25px;
  border-radius: 16px;
  background-color: var(--whitecolor);
  box-shadow: 0px 4px 6px -1px rgb(0, 0, 0, 0.1);
  width: 50%;
  position: absolute;
  bottom: 45px;
  right: -6px;
}

/* Section five */
.section_five {
  background-color: #f9fafb;
  padding: 80px 0;
}
.sec_five_bottom_part_wrapper .card_wrapper {
  padding-top: 64px;
  gap: 32px;
}
.sec_five_bottom_part_wrapper .card_wrapper .card {
  width: 33%;
  border-radius: 16px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  background-color: var(--whitecolor);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sec_five_bottom_part_wrapper .card_wrapper .card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  filter: brightness(1.02);
}

.sec_five_bottom_part_wrapper .card_wrapper .card .content_img img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.sec_five_bottom_part_wrapper .card_wrapper .card .content_img {
  position: relative;
}
.sec_five_bottom_part_wrapper .card_wrapper .card .content_img span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #1a3c2b;
  background-color: rgb(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 5px 12px;
  position: absolute;
  right: 16px;
  top: 16px;
}
.sec_five_bottom_part_wrapper .card_wrapper .card_ctn {
  padding: 25px;
}
.sec_five_bottom_part_wrapper .card .card_details {
  padding-top: 14px;
}
.sec_five_bottom_part_wrapper .card .card_details .reviewer img {
  height: 32px;
  width: 32px;
  object-fit: cover;
  border-radius: 50%;
}
.sec_five_bottom_part_wrapper .card .card_details .reviewer {
  gap: 12px;
}
.sec_five_bottom_part_wrapper .card .card_heading h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #111827;
}
.sec_five_bottom_part_wrapper .card .card_heading .circle_wrapper .fa-circle {
  background-color: #f3f4f6;
  color: var(--textcolor);
  font-size: 16px;
}
.sec_five_bottom_part_wrapper .card .card_heading .circle_wrapper .circle {
  background-color: #f3f4f6;
  height: 32px;
  width: 32px;
  border-radius: 50%;
}
.sec_five_bottom_part_wrapper .card .card_heading .circle_wrapper {
  gap: 8px;
}
.sec_five_bottom_part_wrapper .card .card_details .reviewer figcaption {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--textcolor);
}
.sec_five_bottom_part_wrapper .card .card_details p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--textcolor);
  margin-top: 17px;
}
.sec_five_bottom_part_wrapper .card .card_bottom {
  padding-top: 21px;
}
.sec_five_bottom_part_wrapper .card .card_bottom p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: var(--yellowcolor);
}
.sec_five_bottom_part_wrapper .card .card_bottom .card_btn a {
  font-size: 14px;
  line-height: 20px;
  color: var(--whitecolor);
  background-color: var(--headingcolor);
  border-radius: 8px;
  padding: 9px 21px;
  display: inline-block;
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sec_five_bottom_part_wrapper .card .card_bottom .card_btn a:hover {
  background-color: #082012; /* soft light green hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.sec_five_btn_wrapper {
  text-align: center;
  padding-top: 48px;
}

/* Section six */
.section_six {
  padding: 80px;
  background-color: var(--whitecolor);
}
.sec_six_wrapper .card_wrapper {
  padding-top: 64px;
  gap: 32px;
}
.sec_six_wrapper .card_wrapper .card {
  width: 33%;
  border-radius: 16px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  background-color: var(--whitecolor);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sec_six_wrapper .card_wrapper .card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  filter: brightness(1.02);
}

.sec_six_wrapper .card_wrapper .card figure img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.sec_six_wrapper .card .card_content {
  padding: 24px;
}
.sec_six_wrapper .card .card_content .card_heading span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #6b7280;
}
.sec_six_wrapper .card .card_content h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #111827;
  padding-top: 12px;
}
.sec_six_wrapper .card .card_content p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--textcolor);
  padding-top: 12px;
}
.sec_six_wrapper .card .card_content .card_bottom {
  padding-top: 21px;
}
.sec_six_wrapper .card .card_content .card_bottom .author_info figure img {
  height: 32px;
  width: 32px;
  object-fit: cover;
  border-radius: 50%;
  background-position: center;
}
.sec_six_wrapper .card .card_content .author_info span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--textcolor);
  margin-left: 12px;
}
.sec_six_wrapper .card .card_content .card_btn_wrapper a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--headingcolor);
  border-radius: 8px;
  border: 1px solid var(--headingcolor);
  padding: 9px 20px;
  display: inline-block;
  background-color: transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sec_six_wrapper .card .card_content .card_btn_wrapper a:hover {
  background-color: var(--headingcolor);
  color: var(--whitecolor);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.sec_six_btn_wrapper {
  text-align: center;
  padding-top: 48px;
}

/* Section Seven */
.section_seven {
  padding: 80px 0;
  background-color: #f9fafb;
}
.sec_seven_map .map_container .map_wrapper iframe {
  width: 100%;
  height: 600px;
  border-radius: 16px;
  box-shadow: 0px 10px 15px -3px rgb(0, 0, 0, 0.1);
}
.sec_seven_map_wrapper {
  padding-top: 64px;
}

.sec_seven_map {
  position: relative;
}
.sec_seven_map .filter_panel {
  display: flex;
  flex-direction: column;
  width: 15%;
  border-radius: 16px;
  background-color: rgb(255, 255, 255, 0.9);
  box-shadow: 0px 1px 2px 0px rgb(0, 0, 0, 0.05);
  position: absolute;
  top: 24px;
  right: 24px;
}
.sec_seven_map .filter_panel {
  padding: 16px;
  border-bottom: 5px solid #e6e2d6;
}
.sec_seven_map .filter_panel h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 12px;
}
.sec_seven_map .filter_panel label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #374151;
  margin-bottom: 12px;
}
.sec_seven_map .filter_panel label input[type="checkbox"] {
  accent-color: var(--yellowcolor);
  cursor: pointer;
}
.marker {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #1a3c2b;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.rainforest {
  background: #228b22;
  top: 35%;
  left: 20%;
}
.coastal {
  background: #0077b6;
  top: 60%;
  left: 20%;
}
.mountain {
  background: #7b2cbf;
  top: 55%;
  left: 65%;
}
.desert {
  background: #e0a96d;
  top: 70%;
  left: 45%;
}
.private {
  background: #ff6b6b;
  bottom: 20%;
  right: 23%;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}
.sec_seven_btn {
  text-align: center;
  padding-top: 48px;
}
.sec_seven_btn a {
  color: var(--whitecolor);
  background-color: var(--yellowcolor);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 13px 33px;
  border-radius: 8px;
  display: inline-block;
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sec_seven_btn a:hover {
  background-color: #f4c63e; /* slightly lighter yellow */
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* Section eight */
.section_eight {
  padding: 80px 0;
  background-color: var(--whitecolor);
}
.sec_eight_mid_part {
  padding: 64px 0;
}
.sec_eight_mid_part .sec_eight_box {
  width: 24%;
  text-align: center;
  background-color: var(--whitecolor);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  padding: 32px 0;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sec_eight_mid_part .sec_eight_box:hover {
  border-color: var(--yellowcolor); /* subtle border highlight */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.03); /* gentle zoom */
}

.sec_eight_mid_part .sec_eight_box figure img {
  height: 64px;
  width: 64px;
  object-fit: cover;
}
.sec_eight_mid_part .sec_eight_box h3 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 400;
  color: #1a3c2b;
}
.sec_eight_mid_part .sec_eight_box span {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--textcolor);
}
.section_eight .progress_labels span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #6b7280;
}
.sec_eight_card_wrapper .card figure img {
  height: 48px;
  width: 35px;
  object-fit: cover;
}
.sec_eight_card_wrapper .card {
  width: 49%;
  gap: 16px;
}
.sec_eight_card_wrapper {
  flex-wrap: wrap;
  gap: 27px;
}
.section_eight .progress_section {
  padding-top: 13px;
}
.section_eight .progress_labels {
  margin-top: 4px;
}
.section_eight .progress_bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.section_eight .progress_fill {
  height: 100%;
  background: var(--yellowcolor);
  border-radius: 10px;
  transition: width 1s ease-out;
  width: 0;
}
.sec_eight_card_wrapper .card .card_content h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #111827;
}
.sec_eight_card_wrapper .card .card_content p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.sec_eight_bottom_part h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #1a3c2b;
  text-align: center;
  padding: 32px 0 24px 0;
}
.sec_eight_bottom_part .sec_eight_card_wrapper {
  padding-bottom: 32px;
}
.sec_eight_bottom_part {
  box-shadow: 0px 1px 2px 0px rgb(0, 0, 0, 0.05);
}
.sec_eight_btn a {
  color: var(--whitecolor);
  background-color: var(--headingcolor);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 13px 33px;
  border-radius: 8px;
  display: inline-block;
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sec_eight_btn a:hover {
  background-color: #082012; /* slightly lighter/different tone */
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.sec_eight_btn {
  text-align: center;
  padding-top: 61px;
}

/* section nine */
.section_nine {
  padding: 80px 0;
  background-color: #fbfbf9;
}
.sec_nine_wrapper .sec_nine_box h2 {
  font-size: 48px;
  line-height: 48px;
  font-weight: 400;
  color: #1a3c2b;
}
.sec_nine_wrapper .sec_nine_box p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--textcolor);
  padding-top: 27px;
  padding-bottom: 43px;
}
.sec_nine_box .form_wrapper input::placeholder {
  font-size: 16px;
  color: #9ca3af;
}
.sec_nine_box .form_wrapper input {
  background-color: var(--whitecolor);
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0px 1px 2px 0px rgb(0, 0, 0, 0.05);
}
.sec_nine_btn a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--whitecolor);
  background-color: var(--yellowcolor);
  border-radius: 8px;
  padding: 13px 30px;
  display: inline-block;
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sec_nine_btn a:hover {
  background-color: #f4c63e; /* slightly lighter yellow */
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.sec_nine_box .form_wrapper {
  gap: 16px;
}
.sec_nine_box .form_wrapper form {
  flex: 1;
}
.sec_nine_wrapper .sec_nine_box span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #6b7280;
}
.sec_nine_wrapper .sec_nine_box .policy {
  padding-top: 16px;
}
.sec_nine_wrapper .sec_nine_box {
  width: 50%;
  text-align: center;
}

/* footer */
footer {
  padding-top: 64px;
  padding-bottom: 34px;
  background-color: var(--whitecolor);
}
.footer_wrapper .footer_box {
  width: 23%;
}

.footer_wrapper .footer_box h4 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  color: #1a3c2b;
  font-family: "Pacifico", cursive;
}
.footer_wrapper .footer_box p {
  font-size: 14px;
  line-height: 20px;
  color: var(--textcolor);
  padding-top: 26px;
}
.footer_wrapper .social-icon-inside-first {
  gap: 16px;
  padding-top: 25px;
}
.footer_wrapper .social-icon-inside-first li a {
  padding: 11px 13px;
  border-radius: 50%;
  color: #374151;
  background-color: #f3f4f6;
  display: inline-block;
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer_wrapper .social-icon-inside-first li a:hover {
  background-color: #e5e7eb; /* slightly darker grey */
  color: #1f2937; /* darker icon color */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer_wrapper .footer_box h5 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 26px;
}
.footer_wrapper .footer_box ul li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--textcolor);
  display: inline-block;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer_wrapper .footer_box ul li a:hover {
  color: var(--headingcolor); /* highlight color on hover */
  transform: translateX(4px); /* slight horizontal move for subtle effect */
}

.footer_wrapper .footer_box ul li {
  margin-bottom: 21px;
}
.copy_right p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #6b7280;
}
.copy_right .social_icons .fa-brands {
  font-size: 22px;
  color: #374151;
}
.copy_right .social_icons {
  gap: 32px;
}
.copy_right {
  padding-top: 38px;
  border-top: 1px solid #e5e7eb;
}
.footer_wrapper {
  padding-bottom: 43px;
}

.toggler {
  display: none;
}

.upper-up-btn-wrapper a {
  color: #fff;
  background: linear-gradient(77deg, #00b894, #6c5ce7) border-box,
    linear-gradient(#00b894, #6c5ce7) padding-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 12px 15px;
  border-radius: 50%;
  display: inline-block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.upper-up-btn-wrapper a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.upper-up-btn-wrapper {
  position: fixed;
  bottom: 120px;
  right: 30px;
  color: #fff;
  cursor: pointer;
  display: none;
  z-index: 999;
  transition: opacity 0.3s ease-in-out;
}

.sticky {
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
}
#emailMsg {
  display: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
  opacity: 0;
}

/* responsive */
/* responsive */
/* responsive */

@media screen and (max-width: 1800px) {
}

@media screen and (max-width: 1700px) {
}

@media screen and (max-width: 1600px) {
}

@media screen and (max-width: 1530px) {
}

@media screen and (max-width: 1399px) {
  /* navbar */
  .nav_logo {
    width: 24%;
  }
  /* banner */
  .banner_wrapper_main .banner_wrapper {
    width: 65%;
  }
  /* section four */
  .section_four_wrapper {
    gap: 50px;
  }
  .sec_four_left_Part .options ul li p {
    margin-top: 0;
    margin-bottom: 13px;
  }
  .sec_four_left_Part .options {
    padding: 20px 0;
  }
  /* section seven */
  .sec_seven_map .filter_panel {
    width: 30%;
  }
  /* section eight */
  .sec_eight_card_wrapper {
    flex-wrap: wrap;
    gap: 15px;
  }
  .sec_eight_bottom_part .sec_eight_card_wrapper {
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 1199px) {
  /* navbar */
  .nav_logo {
    width: 24%;
  }
  .nav_bar {
    padding: 15px 19px;
  }
  .nav_bar .nav_wrapper .nav_left ul li a {
    font-size: 13px;
  }
  .nav_bar .nav_wrapper .nav_logo ul li a {
    font-size: 28px;
  }
  /* section two */
  .top_part {
    width: 65%;
  }
  /* section four */
  .sec_four_left_Part {
    width: 58%;
  }
  .section_four_wrapper {
    gap: 30px;
  }
  .sec_four_left_Part p {
    margin-top: 20px;
  }
  /* section five */
  .sec_five_bottom_part_wrapper .card_wrapper {
    padding-top: 64px;
    gap: 20px;
  }
  .sec_five_bottom_part_wrapper .card_wrapper .card_ctn {
    padding: 20px;
  }
  /* section six  */
  .sec_six_bottom_part_wrapper .card_wrapper {
    padding-top: 64px;
    gap: 20px;
  }
  .sec_six_wrapper .card .card_content {
    padding: 20px;
  }
  /* section seven */
  .sec_seven_map .filter_panel {
    width: 30%;
  }
  /* section nine */
  .sec_nine_wrapper .sec_nine_box {
    width: 75%;
  }
}
@media screen and (max-width: 1005px) {
  /* section two */
  .section_two .section_two_wrapper .img_wrapper figure img {
    height: 384px;
    width: 460px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 991px) {
  /* navbar */
  .nav_wrapper,
  .nav_content,
  .nav_left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .toggler {
    display: block;
    color: var(--headingcolor);
    font-size: 23px;
  }
  .nav_left.d_menu {
    display: flex !important; /* Use flex instead of block to maintain layout */
  }
  .nav_left {
    display: none;
  }
  .nav_logo {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .nav_left ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav_right {
    position: absolute;
    top: 27px;
    right: 64px;
  }
  .nav_bar .nav_wrapper .nav_left ul {
    gap: 16px;
  }
  .nav_content {
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .nav_bar {
    padding: 17px 19px 8px 19px;
    background-color: #c5b190ff;
  }
  /* banner */
  .banner_wrapper_main .banner_wrapper {
    width: 80%;
  }

  /* section two */
  .section_two .section_two_wrapper .img_wrapper figure img {
    height: 333px;
    width: 361px;
  }
  .section_two .section_two_wrapper .img_wrapper {
    gap: 15px;
    padding-top: 45px;
  }
  .section_two {
    padding: 60px 0;
  }
  .top_part {
    width: 75%;
  }
  /* section three */
  .section_three {
    padding: 60px 0;
  }
  .section_three_wrapper .middle_part .card .card_ctn_wrapper {
    padding: 15px;
  }
  .section_three_wrapper
    .middle_part
    .card
    .card_ctn_wrapper
    .card_ctn_bottom
    .card_btn
    a {
    padding: 9px 13px;
  }
  .section_three_wrapper .middle_part .card .card_ctn_wrapper .card_ctn_top h3 {
    font-size: 20px;
  }
  .section_three_wrapper .middle_part {
    padding: 45px 0px;
  }
  .section_three_wrapper .bottom_part .box_wrapper {
    padding-top: 20px;
  }
  .section_three_wrapper .bottom_part .box {
    padding: 20px;
  }
  /* section four */
  .section_four_wrapper .sec_four_left_Part,
  .sec_four_right_part {
    width: 100%;
  }
  .section_four_wrapper {
    flex-wrap: wrap;
  }
  .sec_four_right_part .review {
    bottom: 9px;
    right: -6px;
  }
  .section_four {
    padding: 60px 0;
  }
  /* section five */
  .sec_five_bottom_part_wrapper .card_wrapper .card {
    width: 48%;
  }

  .sec_five_bottom_part_wrapper .card_wrapper {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding-top: 45px;
  }
  .section_five {
    padding: 60px 0;
  }
  /* section six */
  .sec_six_bottom_part_wrapper .card_wrapper .card {
    width: 48%;
  }
  .sec_six_bottom_part_wrapper .card_wrapper {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding-top: 45px;
  }
  .section_six {
    padding: 60px 0;
  }
  /* section seven */
  .sec_seven_map_wrapper {
    padding-top: 45px;
  }
  .section_seven {
    padding: 60px 0;
  }
  /* section eight */
  .sec_eight_bottom_part .sec_eight_card_wrapper .card {
    width: 100%;
  }
  .sec_eight_bottom_part .sec_eight_card_wrapper {
    flex-wrap: wrap;
  }
  .section_eight {
    padding: 60px 0;
  }
  .sec_eight_mid_part {
    padding: 45px 0;
  }
  .sec_eight_bottom_part h3 {
    padding: 5px 0 24px 0;
  }
  .sec_eight_bottom_part .sec_eight_card_wrapper {
    padding-bottom: 15px;
  }
  /* section nine */
  .sec_nine_wrapper .sec_nine_box p {
    padding-top: 25px;
    padding-bottom: 30px;
  }
  .section_nine {
    padding: 60px 0;
  }
  /* footer */
  footer {
    padding-top: 45px;
    padding-bottom: 30px;
  }
  .footer_wrapper {
    padding-bottom: 25px;
  }
  .footer_wrapper .footer_box ul li {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 768px) {
  /* banner */
  .banner_wrapper_main .banner_wrapper {
    width: 100%;
  }
  /* .banner{
  background-position: right;
} */
  .banner_wrapper_main .banner_wrapper .banner_box h1 {
    font-size: 68px;
  }
  /* section two */
  .section_two .section_two_wrapper .img_wrapper figure img {
    height: 252px;
    width: 261px;
  }
  /* section three */
  .section_three .middle_part .card_wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
  .section_three .middle_part .card_wrapper .card {
    width: 100%;
  }
  .section_three_wrapper .middle_part .card .card_ctn_wrapper {
    padding: 25px;
  }
  .section_three_wrapper .bottom_part .box {
    width: 100%;
  }

  .section_three_wrapper .bottom_part .box_wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
  .section_three_wrapper .bottom_part .box_wrapper {
    padding-top: 30px;
  }
  /* section five */
  .sec_five_bottom_part_wrapper .card_wrapper .card {
    width: 100%;
  }
  /* section six */
  .sec_six_bottom_part_wrapper .card_wrapper .card {
    width: 100%;
  }
  /* section seven */
  .sec_seven_map .filter_panel {
    width: 35%;
  }
  /* section eight */
  .sec_eight_box_wrapper .sec_eight_box {
    width: 48%;
  }
  .sec_eight_box_wrapper {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 17px;
  }
  /* footer */
  .footer_wrapper .footer_box {
    width: 48%;
  }
  .footer_wrapper {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .upper-up-btn-wrapper {
    bottom: 110px;
  }
}
@media screen and (max-width: 575px) {
  /* banner */
  .banner_wrapper_main .banner_wrapper .banner_box h1 {
    font-size: 58px;
    line-height: 62px;
  }
  .banner_wrapper_main .banner_wrapper .banner_box p {
    margin-top: 20px;
  }
  /* navbar */
  .nav_bar {
    padding: 10px 19px 0px 19px;
  }
  .nav_right {
    top: 20px;
    right: 64px;
  }
  .nav_content {
    margin-top: 5px;
    margin-bottom: 9px;
  }
  /* section two */
  .section_two .section_two_wrapper .img_wrapper figure img {
    height: 340px;
    width: 420px;
  }
  .top_part {
    width: 100%;
  }
  .section_two {
    padding: 50px 0;
  }
  .section_two .section_two_wrapper .img_wrapper {
    gap: 15px;
    padding-top: 30px;
  }
  .top_part h2 {
    font-size: 45px;
  }
  /* section three */
  .section_three {
    padding: 50px 0;
  }
  .section_three_wrapper .middle_part {
    padding: 30px 0px;
  }
  /* section four */
  .sec_four_left_Part .left_part_btn a {
    padding: 13px 17px;
  }
  .sec_four_left_Part h2 {
    font-size: 45px;
  }
  .sec_four_right_part .review {
    width: 62%;
    bottom: -12px;
    right: -6px;
  }
  .section_four {
    padding: 50px 0;
  }
  /* section five */
  .section_five {
    padding: 50px 0;
  }
  .sec_five_bottom_part_wrapper .card_wrapper {
    padding-top: 30px;
  }
  /* section six */
  .section_six {
    padding: 50px 0;
  }
  .sec_six_bottom_part_wrapper .card_wrapper {
    padding-top: 30px;
  }
  /* section seven */
  .section_seven {
    padding: 50px 0;
  }
  .sec_seven_map_wrapper {
    padding-top: 30px;
  }
  .sec_seven_map .filter_panel {
    width: 50%;
  }
  .sec_seven_map .filter_panel label {
    margin-bottom: 8px;
  }
  .sec_seven_map .filter_panel h3 {
    margin-bottom: 9px;
  }
  .sec_seven_map .filter_panel {
    padding: 15px;
  }
  /* section eight */
  .section_eight {
    padding: 50px 0;
  }
  .sec_eight_mid_part {
    padding: 30px 0;
  }
  /* section nine */
  .sec_nine_wrapper .sec_nine_box {
    width: 100%;
  }
  .sec_nine_wrapper .sec_nine_box h2 {
    font-size: 45px;
  }
  .sec_nine_wrapper .sec_nine_box p {
    padding-top: 18px;
  }
  .section_nine {
    padding: 50px 0;
  }
  /* footer */
  .footer_wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 18px;
  }
  .footer_wrapper .footer_box h5 {
    margin-bottom: 20px;
  }
  .copy_right p {
    width: 45%;
  }

  .upper-up-btn-wrapper {
    bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  /* navbar */
  .nav_right {
    right: 59px;
  }
  .nav_bar .nav_wrapper .nav_logo ul li a {
    font-size: 24px;
  }
  .toggler {
    font-size: 22px;
  }
  .nav_bar .nav_wrapper .nav_right ul {
    gap: 15px;
  }
  /* banner */
  .banner_wrapper_main .banner_btn_wrapper a {
    padding: 12px 16px;
  }
  /* section two */
  .section_two .section_two_wrapper .img_wrapper figure img {
    height: 294px;
    width: 330px;
  }
  .uni_btn_one {
    padding: 13px 20px;
  }
  /* section three */

  .section_three_wrapper .middle_part .card .card_ctn_wrapper .card_ctn_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  /* section four */
  .sec_four_right_part .review {
    width: 80%;
    bottom: -60px;
    right: -6px;
    padding: 15px;
  }
  /* section seven */
  .sec_seven_btn a {
    padding: 13px 20px;
  }
  /* section eight */
  .sec_eight_box_wrapper {
    gap: 15px;
  }
  .sec_eight_btn a {
    padding: 13px 20px;
  }
  /* footer */
  .footer_wrapper .footer_box ul li {
    margin-bottom: 14px;
  }
  .copy_right .social_icons {
    gap: 24px;
  }
  .footer_wrapper {
    padding-bottom: 15px;
  }
  .copy_right {
    padding-top: 30px;
  }
}
@media screen and (max-width: 380px) {
  /* bannner */
  .banner_wrapper_main .banner_btn_wrapper {
    gap: 18px;
  }
  .banner_wrapper_main .banner_btn_wrapper a {
    padding: 12px 10px;
  }
}
