@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  color: var(--text-color);
  font-family: var(--font1);
}
html,
body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}
img {
  object-fit: cover;
}
ul {
  list-style: none;
}
:root {
  --bg-color1: #173c2a;
  --bg-color2: #674c28;
  --bg-color3: #9b7b44;
  --bg-color4: #f9f3ef;
  --bg-color5: #f9f3ef7e;
  --light: #ffffff;
  --dark: #000000;
  --text-color: #535252;

  --radius10: 10px;
  --radius20: 20px;
  --radius30: 30px;
  --radius40: 40px;

  --font1: "Inter", sans-serif;
  --font2: "Montserrat", sans-serif;
  --heading-font: "Newsreader", serif;
}

/* Button Section Start */
.dark_btn {
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #173c2a, #3e5c2b);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.dark_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.6s;
}
.dark_btn:hover::before {
  left: 120%;
}
.dark_btn:hover {
  background: linear-gradient(135deg, #173c2a, #3e5c2b);
  color: var(--light);
}
/* Button Section End */

/* Navbar Section Start */

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

header.scrolled {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

header.scrolled .nav-link,
header.scrolled .navbar-brand {
  color: #000 !important;
}

.navbar {
  background: transparent;
  padding: 0px 0;
}
.navbar .navbar-brand img {
  height: 70px;
  transition: 0.3s;
}
.navbar .navbar-nav .nav-item .nav-link {
  margin: 0 10px;
  color: var(--bg-color1);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}
.navbar .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 2px;
  background: var(--bg-color2);
  transition: 0.3s;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--bg-color2);
}
.navbar .navbar-nav .nav-item .nav-link:hover::after {
  width: 100%;
}

/* Navbar Section End */

/* Slider Section Start */

.slider_section {
  background-image: url("../images/bg.png");
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider_section .details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider_section .slider_details .heading {
  font-size: 20px;
  color: var(--dark);
  font-weight: 600;
}
.slider_section .slider_details .title {
  font-size: 80px;
  font-family: var(--heading-font);
  font-weight: 600;
  margin-bottom: 0px;
  color: var(--bg-color1);
}
.slider_section .slider_details .subtitle i {
  color: var(--bg-color2);
}
.slider_section .slider_details .subtitle {
  font-size: 24px;
  margin-top: -15px;
  color: var(--bg-color2);
  font-weight: 600;
}
.slider_section .slider_details .content {
  font-size: 18px;
  line-height: 1.2;
  font-family: var(--font1);
  margin: 20px 0px;
  color: var(--bg-color2);
}
.slider_section .slider_details .price {
  background: linear-gradient(to left, var(--bg-color1), var(--bg-color2));
  width: fit-content;
  padding: 10px 40px;
  border-radius: 15px;
  font-size: 24px;
  color: var(--light);
  font-weight: 800;
  margin-bottom: 10px;
}
.slider_section .slider_details .price del {
  color: red;
  font-weight: 500;
}
.slider_section .details .box {
  text-align: center;
  margin: 20px 0px;
}
.slider_section .details .box h3 {
  line-height: 1;
  font-weight: 800;
  color: var(--bg-color1);
  font-family: var(--heading-font);
  margin-bottom: 0px;
}
.slider_section .details .box p {
  color: var(--bg-color1);
  font-weight: 600;
}

/* Slider Section End */

/* About Us Section Start */

.aboutus {
  padding: 40px 0px;
}
.aboutus .header_section {
  margin-bottom: 20px;
}
.aboutus .header_section .head {
  color: var(--bg-color2);
  font-size: 20px;
  font-weight: 600;
}
.aboutus .header_section .title {
  font-size: 38px;
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--bg-color1);
}
.aboutus .header_section .line {
  height: 3px;
  width: 160px;
  background: linear-gradient(to left, #674c280c, #674c28cf, #674c28);
  border-radius: 10px;
}
.aboutus .content {
  font-size: 17px;
  text-align: justify;
  font-family: var(--font2);
}
.aboutus .points .box {
  margin: 10px 0px;
  display: flex;
  align-items: center;
  height: 75px;
  border: 1px dashed var(--bg-color1);
  padding: 15px;
  gap: 20px;
  border-radius: 15px;
}
.aboutus .points .box .icon {
  height: 45px;
  width: 45px;
  display: flex;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color2);
}
.aboutus .points .box .icon i {
  font-size: 20px;
  color: var(--light);
}
.aboutus .points .box span {
  font-size: 16px;
  line-height: 1.2;
  color: var(--bg-color1);
  font-weight: 600;
}
.aboutus .about_img {
  margin: 0px auto;
}
.aboutus .about_img img {
  height: 550px;
  width: 550px;
}

/* About Us Section End */

/* Overview Section Start */

.overview {
  padding: 40px 0px;
}
.overview .overview_img img {
  height: 520px;
  width: 100%;
  border-radius: 20px;
  border: 2px solid var(--bg-color1);
}
.overview .header_section {
  text-align: center;
  margin: 30px 0px;
}
.overview .header_section .head {
  font-size: 36px;
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--bg-color1);
  line-height: 1;
}
.overview .header_section .line {
  margin: 10px auto;
  height: 3px;
  width: 200px;
  background: linear-gradient(to left, #674c28, #9b7b44cf, #674c28);
  border-radius: 10px;
}
.overview .header_section .title {
  font-size: 22px;
  color: var(--bg-color2);
}
.overview .o_content {
  font-family: var(--font2);
  font-size: 17px;
}
.overview .o_content b {
  color: var(--dark);
}
.overview .o_content h6 {
  font-size: 22px;
  font-weight: 600;
  color: var(--bg-color2);
}
.overview .o_content h5 {
  font-weight: 600;
  color: var(--bg-color2);
  margin: 30px 0px 10px 0px;
}

/* Overview Section End */

/* Highlights Section Start */

.highlights {
  padding: 40px 0px;
  background-color: #faf9f7;
}
.highlights .header_section {
  text-align: center;
  margin-bottom: 30px;
}
.highlights .header_section .lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--bg-color1);
}
.highlights .header_section .lines i {
  font-size: 22px;
}
.highlights .header_section .lines .line {
  height: 2px;
  width: 80px;
  background-color: var(--bg-color1);
}
.highlights .header_section .title {
  font-size: 36px;
  font-family: var(--heading-font);
  color: var(--bg-color1);
  font-weight: 600;
}
.highlights .header_section .subtitle {
  font-size: 18px;
  color: var(--dark);
}
.highlights .card {
  width: 95%;
  border: none;
  margin: 0px auto;
  margin-bottom: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0px 0px 10px #0000002e;
  padding: 15px;
  transition: all 0.4s ease;
}
.highlights .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-bottom: 3px solid #c89b3c;
}
.highlights .card .icon {
  transition: all 0.4s ease;
}

.highlights .card:hover .icon {
  transform: scale(1.1) rotate(20deg);
}
.highlights .card .icon {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  background-color: var(--bg-color1);
  border-radius: 50%;
  border: 2px solid var(--bg-color3);
}
.highlights .card .icon i {
  font-size: 30px;
  color: #c89b3c;
}
.highlights .card .card-title {
  font-size: 24px;
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--bg-color1);
  margin: 10px 0px 0px 0px;
}
.highlights .card .line {
  height: 2px;
  width: 60px;
  background-color: var(--bg-color3);
  margin: 10px auto;
}
.highlights .card .card-text {
  font-size: 15px;
}
.highlights .details {
  background-color: var(--bg-color1);
}
.highlights .details .boxex {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.highlights .details .box {
  color: var(--light);
  font-size: 18px;
}
.highlights .details .box i {
  font-size: 20px;
  color: var(--light);
}
.highlights .details .line {
  height: 40px;
  width: 2px;
  background-color: var(--light);
}

/* Highlights Section End */

/* Amenities Section Start */

.amenities {
  padding: 50px 0px;
}
.amenities .header_section {
  margin-bottom: 40px;
  text-align: center;
}
.amenities .header_section .title {
  font-size: 36px;
  font-weight: 600;
  color: var(--bg-color1);
  font-family: var(--heading-font);
}
.amenities .header_section .subtitle {
  font-size: 18px;
  color: var(--dark);
}
.amenities .card {
  border-radius: 15px;
  width: 95%;
  border: none;
  margin: 0px auto;
  padding: 10px;
  box-shadow: 0px 0px 10px #0000002e;
  margin-bottom: 40px;
}
.amenities .card .icon {
  height: 80px;
  width: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-color1), var(--bg-color2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 4px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
}

.amenities .card .icon i {
  font-size: 32px;
  transition: all 0.4s ease;
}

.amenities .card:hover .icon {
  transform: translateY(-8px) rotate(8deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.amenities .card:hover .icon i {
  transform: scale(1.15);
}
.amenities .card .main_img {
  height: 150px;
  border-radius: 10px;
}
.amenities .card .card-title {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  color: var(--bg-color1);
  font-family: var(--heading-font);
  margin-bottom: 0px;
}

/* Amenities Section End */

/* Layout Section Start */

.layout {
  padding: 60px 0px;
  background-color: #674c280c;
}
.layout .header_section {
  text-align: center;
  margin-bottom: 30px;
}
.layout .header_section .title {
  font-size: 36px;
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--bg-color1);
}
.layout .header_section .subtitle {
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  font-family: var(--font2);
}
.layout .card {
  padding: 25px;
  border: none;
  text-align: center;
  background: #fff;
  width: 95%;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px #0000002e;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.layout .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c8a45d, #e5c98b);
  transition: all 0.4s ease;
}
.layout .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}
.layout .card:hover::before {
  left: 0;
}
.layout .card .dark_btn {
  margin-top: 10px;
}
.layout .card .card-title {
  font-size: 30px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--bg-color1);
}
.layout .card .card-text {
  font-size: 15px;
}

/* Layout Section End */

/* Pricelist Section Start */

.price-list {
  padding: 40px 0px;
}
.plot-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: var(--bg-color1);
  position: relative;
  transition: 0.4s;
}

.plot-card:hover {
  transform: translateY(-8px);
}

/* Tedha Golden Top */
.card-top {
  background: #bc9a4d;
  color: #fff;
  text-align: center;
  padding: 25px 15px 70px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
}

.card-top span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}

.card-top h3 {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 700;
}

/* Dark Bottom */
.card-body-custom {
  background: linear-gradient(90deg, #102f27, #0f3a2f, #102f27);
  margin-top: -45px;
  padding: 70px 25px 30px;
  text-align: center;
  color: #fff;
}

.sub-title {
  font-size: 13px;
  letter-spacing: 2px;
  color: #d5d5d5;
}

.card-body-custom h2 {
  font-size: 42px;
  font-family: var(--heading-font);
  margin: 15px 0;
}

.card-body-custom p {
  margin-bottom: 8px;
  font-size: 16px;
}

.card-body-custom small {
  letter-spacing: 2px;
  color: #cfcfcf;
}

.card-body-custom h4 {
  margin: 15px 0 25px;
}

.btn-call {
  background: #bc9a4d;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
}

.btn-call:hover {
  background: #d4b36a;
  color: #fff;
}
.price-list .text-uppercase {
  font-size: 20px;
  color: var(--bg-color1);
}

.section-title {
  color: #0f3a2f;
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.test {
  padding: 50px 0px;
  background-color: var(--bg-color1);
}

.test .header_section {
  text-align: center;
  margin-bottom: 40px;
}
.test .header_section .title {
  font-size: 38px;
  color: var(--light);
  font-family: var(--heading-font);
}
.test .card {
  border: none;
  border-radius: 15px;
  padding: 10px;
}

.test .card-title {
  color: var(--bg-color1);
  margin-bottom: 0px;
}

/* Pricelist Section End */

/* Contact Us Section Start */

.contactus {
  padding: 50px 0px;
}
.contactus .header_section {
  margin-bottom: 40px;
}
.contactus .header_section .title {
  font-size: 34px;
  color: var(--bg-color1);
  font-weight: 600;
  font-family: var(--heading-font);
}
.contactus .header_section .subtitle {
  font-size: 20px;
  color: var(--dark);
  line-height: 1;
}
.contactus .contact_img {
  border: 2px solid var(--bg-color1);
  padding: 10px;
  border-radius: 20px;
}
input,
select {
  height: 50px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--bg-color1);
}
.contactus .contact_img img {
  height: 450px;
  width: 100%;
  border-radius: 20px;
}

/* Contact Us Section End */

/* footer Section Start */
.footer {
  background: linear-gradient(90deg, #021b14, #073124, #021b14);
  padding: 80px 0 25px;
  color: #fff;
}

.footer h2 {
  color: #caa85a;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer p {
  color: #cfcfcf;
  line-height: 1.8;
}

.footer h4 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 22px;
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 15px;
}

.footer ul li a {
  text-decoration: none;
  color: #cfcfcf;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #caa85a;
  padding-left: 5px;
}

.footer ul li i {
  color: #caa85a;
  margin-right: 10px;
}

.social_icons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social_icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.social_icons a:hover {
  background: #caa85a;
  transform: translateY(-4px);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 50px 0 20px;
}

.copyright {
  text-align: center;
  color: #bdbdbd;
  font-size: 14px;
}
/* footer Section End */

.modal .modal_img img {
  height: 350px;
  width: 100%;
}
.modal .main_form_section .modal-header {
  background-color: var(--bg-color1);
  margin-bottom: 20px;
  color: var(--light);
}
/* Contact Info */
.contact-info{
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #e5e5e5;
    font-size: 15px;
}

.contact-info li i{
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.contact-info li:hover i{
    background: #d4af37;
    color: #111;
    transform: rotate(8deg) scale(1.08);
}

.contact-info li a{
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.contact-info li a:hover{
    color: #d4af37;
}


/* Social Section */
.social-links{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.social-links a{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,.25);
    color: #d4af37;
    font-size: 20px;
    text-decoration: none;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,#d4af37,#f6e27a);
    transform: scale(0);
    transition: .35s ease;
    border-radius: 50%;
}

.social-links a i{
    position: relative;
    z-index: 2;
}

.social-links a:hover::before{
    transform: scale(1);
}

.social-links a:hover{
    color: #111;
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(212,175,55,.35);
}
/* ThankYou Page  Start*/

.thanks_bg {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../images/thanks3.png");
}
.thanks_bg .t_title {
  font-weight: 800;
  color: var(--bg-color1);
  font-size: 100px;
  font-family: var(--font3);
  line-height: 1.2;
}
.thanks_bg .t_subtitle {
  color: var(--bg-color1);
  font-size: 30px;
  letter-spacing: 6px;
  text-transform: capitalize;
}
.thanks_bg .t_content {
  font-size: 20px;
}

/* ThankYou Page End */



/* NEWSPAPER sECTION sTART */

.newspaper {
  background-color: #faf9f7;
  padding: 60px 0px;
}
.newspaper .header_section {
  text-align: center;
  margin-bottom: 30px;
}
.newspaper .header_section .title {
  font-size: 38px;
  color: var(--bg-color1);
  font-weight: 600;
  font-family: var(--heading-font);
}
.newspaper .header_section .subtitle {
  font-size: 20px;
  color: var(--dark);
  line-height: 1;
}
.newspaper .col-lg-4 {
  margin-bottom: 30px;
}
.newspaper img {
  padding: 10px;
  height: 100%;
  width: 100%;
  /* border: 2px solid var(--bg-color1); */
  box-shadow: 0px 0px 10px #0000002e;
}

/* NEWSPAPER sECTION seND */

