* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: var(--second-font);
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Lora";
  font-display: swap;
  src: url("../fonts/Lora/Lora-Regular.ttf");
}

@font-face {
  font-family: "Rubik";
  font-display: swap;
  src: url("../fonts/Rubik/Rubik-Regular.ttf");
}

:root {
  /* --primary-theme: #f7f7f4; */
  /* --primary-theme: #f3e8e2; */
  --primary-theme: #f1ead7;
  --secondary-theme: #101a3e;
  /* --secondary-theme: #01313d; */
  --text-white: #fff;
  --text-black: #000;
  --first-font: "Lora";
  --second-font: "Rubik";
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
}

input:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
}

body {
  background-color: var(--text-white);
}

a {
  text-decoration: none !important;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style-type: none;
}

.button {
  background-color: var(--secondary-theme);
  color: var(--text-white);
  font-size: 20px;
  line-height: 24px;
  padding: 10px 25px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid var(--secondary-theme);
}

.button:hover {
  color: var(--secondary-theme);
  background: var(--text-white);
}

/* .navbar-brand img {
  max-width: 145px;
}

.nav-item .nav-link {
  font-size: 18px;
  line-height: 24px;
  color: rgb(255, 255, 255) !important;
  padding: 0px 15px !important;
  letter-spacing: 1px;
}

.navbar .phone-email img {
  height: 34px;
}

.navbar .phone-email h4 a {
  color: rgb(255, 255, 255);
  margin-left: 5px;
  font-size: 14px;
  font-weight: 600;
}

.navbar .phone-email h4 a i {
  filter: invert(0);
}
.nav-link.scrolled {
  color: #000 !important; 
}

.navbar .phone-email h4 a.scrolled {
  color: #000 !important;
}
.nav-link,
.navbar .phone-email h4 a {
    transition: color 0.3s ease;
} */

.header {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  /* Smooth transition */
}

/* Header when scrolled */
.header.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Menu Button */
.menu-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  transition: color 0.3s ease;
}

/* Menu button when scrolled */
.menu-btn.scrolled {
  color: #333;
}

/* Hamburger Lines */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--text-white);
  transition: background-color 0.3s ease;
}

/* Hamburger lines when scrolled */
.hamburger.scrolled div {
  background-color: #333;
}

/* Logo */
.logo img {
  max-width: 150px;
  transition: all 0.3s ease;
  filter: invert(1) brightness(100);
}

.header.scrolled .logo img {
  filter: unset;
}

.phone-email {
  animation: 1.2s infinite mobile;
}

.phone-email img {
  height: 34px;
}

.phone-email h4 a {
  color: rgb(255, 255, 255);
  margin-left: 5px;
  font-size: 16px;
  font-weight: 600;
}

.phone-email h4 a i {
  filter: invert(0);
}

.phone-email.scrolled h4 a {
  color: #333;
}

.phone-email.scrolled img {
  filter: brightness(0);
  /* Makes the icon black */
}

/* Sidebar Menu */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--primary-theme);
  transition: left 0.3s ease;
  z-index: 999;
}

.sidebar.open {
  left: 0;
}

.sidebar .sidebar_logo {
  max-width: 170px;
  position: relative;
  top: 17px;
}

/* Menu Items */
.menu-items {
  list-style: none;
  padding-top: 80px;
}

.menu-items li {
  border-bottom: 1px solid var(--secondary-theme);
}

.menu-items a {
  display: block;
  color: #000;
  padding: 20px 30px;
  text-decoration: none;
  font-size: 18px;
}

.menu-items a:hover {
  background-color: var(--secondary-theme);
  color: var(--primary-theme) !important;
}

/* .nav-link:focus, .nav-link:hover {
    color: var(--text-white);
} */

.header.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-btn.scrolled {
  color: #000;
}

.hamburger.scrolled div {
  background-color: #000;
}

.nav-link.scrolled {
  color: #000 !important;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 150;
}

.overlay.show {
  display: block;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 7%, rgba(0, 0, 0, 0.75) 50%, rgba(100, 100, 100, 0.3) 75%, rgba(255, 255, 255, 1) 100%); */
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.3) 17%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(255, 255, 255, 0) 100%);
}


.project_box p.location {
  font-size: 30px;
  font-weight: 700;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* Main Content */
.main-content {
  margin-top: 80px;
  padding: 40px 20px;
  transition: margin-left 0.4s ease;
}

.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.section-title {
  color: #2c3e50;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.section-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

/* Close button for mobile */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #000;
  font-size: 42px;
  cursor: pointer;
  /* padding: 5px; */
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.close-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.carousel-item img {
  height: 100vh;
  width: 100%;
}

.slider_section {
  position: relative;
}

.slider_section::after {
  content: "";
  position: absolute;
  width: 100%;
  z-index: 8;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 100%;
  /* background: linear-gradient(rgb(3, 40, 56) 0%, rgba(3, 40, 56, 0) 82%); */
  opacity: 1;
  width: 40%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.project_box {
  position: absolute;
  bottom: 25%;
  left: 10%;
  z-index: 99;
}

.project_box .pro_logo {
  max-width: 300px;
  margin-bottom: 12px;
  filter: invert(1);
}

.project_box h1 {
  font-family: var(--first-font);
  font-size: 65px;
  font-weight: 700;
  color: var(--text-white);
  /* margin-bottom: 10px; */
  letter-spacing: 2px;
}

.project_box p {
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 15px;
}

.project_box p img {
  filter: invert(1);
  margin-right: 5px;
}

.project_box h3 {
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 0px;
}

.project_box h3 span {
  font-size: 28px;
  color: var(--text-white);
}

/*.project_box ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  align-items: center;
}
 .project_box ul li {
  font-size: 16px;
  margin-bottom: 0px;
  color: var(--text-white);
  max-width: 350px;
  width: 270px;
}
.project_box ul li:first-child {
  margin-right: auto;
  text-align: left;
}

.project_box ul li:last-child {
  margin-left: auto;
  text-align: center;
}
.project_box ul li span{
  display: block;
  font-size: 24px;
  font-weight: 600;
} */

/* .form_section {
  background: #212842bd;
  padding: 24px;
  border-radius: 20px;
  position: absolute;
  bottom: 20%;
  right: 15%;
  z-index: 99;
  max-width: 450px;
  width: 350px;
} */

.form_section h6 {
  font-size: 23px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-white);
}

.form_section input {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 8px;
  border-bottom: 1px solid var(--text-white);
  background: transparent;
  border-radius: 0;
  color: var(--text-white);
}

.form_section input::placeholder {
  color: var(--text-white);
}

.form_section .lg_btn {
  background: rgb(255, 255, 255);
  color: var(--secondary-theme);
}

.form-toggle-btn {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: var(--secondary-theme);
  color: var(--text-white);
  padding: 12px 7px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
  writing-mode: vertical-lr;
  letter-spacing: 1px;
  border: 1px solid var(--secondary-theme);
}

.form-toggle-btn:hover {
  background: var(--text-white);
  color: var(--secondary-theme);
}

/* Form Styling */
.slide-form {
  position: fixed;
  right: -400px;
  /* hidden by default */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  /* background: #212842bd; */
  background: var(--secondary-theme);
  padding: 24px;
  border-radius: 20px 0 0 20px;
  max-width: 350px;
  width: 100%;
  transition: right 0.4s ease;
}

/* Active state to show the form */
.slide-form.active {
  right: 0;
}

.form-close-btn {
  position: absolute;
  top: 11px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 34px;
  cursor: pointer;
}

.overview_section {
  padding: 80px 0;
}

.section_title {
  font-family: var(--first-font);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.subheading {
  font-family: var(--second-font);
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
  text-transform: capitalize;
  color: var(--secondary-theme);
  letter-spacing: 1px;
}

.overview_section .para {
  font-size: 16px;
  margin-bottom: 0;
  text-align: justify;
  text-align-last: center;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 2rem;
  place-items: center;
}

.overview-item {
  text-align: center;
  padding: 1.25rem;
}

.icon {
  font-size: 3rem;
  color: var(--text-gray);
  margin-block-end: 1rem;
}

.label {
  color: var(--text-black);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-block-end: 0.5rem;
}

.value {
  color: #333;
  font-weight: 600;
  font-size: 1.125rem;
}

/* overview section css ends here */

/* highlight section css starts here */
.highlight_section {
  padding: 80px 0;
  position: relative;
  background: url("../img/highlight-img.webp");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  /* filter: blur(3px); */
  z-index: 1;
  overflow-x: hidden !important;
}

.highlight_section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0000006b;
  /* z-index: 2; */
}

/* .features-container{
  margin: 25px 0 0; 
} */
.highlight_section .section_title {
  position: relative;
  z-index: 999;
  color: var(--text-white);
}

.highlight_section .subheading {
  position: relative;
  z-index: 999;
  color: var(--text-white);
  margin-bottom: 30px;
}

.highlight_image {
  height: 100%;
  object-fit: cover;
}

.feature-card-wrapper {
  position: relative;
  padding: 3px;
  border-radius: 15px;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 20px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: none;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.feature-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Corner Border Decorations */
.feature-card-wrapper::before,
.feature-card-wrapper::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--secondary-theme);
  z-index: 1;
}

/* Top-left corner */
.feature-card-wrapper::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 15px;
}

/* Bottom-right corner */
.feature-card-wrapper::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 15px;
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-theme);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-icon span {
  color: var(--secondary-theme);
  font-size: 24px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 7px;
}

.feature-description {
  color: #2c3e50;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0;
}

/* highlight section css ends here */

/* price list section css starts here */
.price_list_section {
  padding: 80px 0;
  overflow-x: hidden !important;
}

.price_list_section .calling {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.price_box {
  background: var(--text-white);
  padding: 30px 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.price_box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.price_box h5 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--secondary-theme);
}

.price_box h6 {
  /* text-align: end; */
  font-size: 22px;
  margin-bottom: 12px;
}

.price_box p {
  font-size: 22px;
  margin-bottom: 15px;
}

.price_box p span {
  font-size: 30px;
  color: var(--secondary-theme);
}

.price_box .button {
  font-size: 18px;
  line-height: 21px;
  padding: 7px 25px;
}

/* price list section css ends here */

/* amenities section starts here */

.amenities_section {
  padding: 80px 0;
  background: var(--primary-theme);
  overflow: hidden;
}

.amenities_section ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.amenities_section .amenity_list {
  display: flex;
  flex-direction: column;
}

.amenities_section ul .amenity-box {
  /* background: #f9f9f9; */
  background: var(--secondary-theme);
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  margin: 10px;
  /* min-width: 190px; */
  min-width: 180px;
  position: relative;
  overflow: hidden;
}

.amenities_section ul .amenity-box.ameinity_width {
  width: 100%;
}

.amenities_section ul .amenity-box img {
  filter: invert(1);
}

.amenity-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000c0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}

.amenity-box:hover .overlay {
  opacity: 1;
}

.amenities_section ul .amenity-box .overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: unset;
}

.amenities_section ul .amenity-box span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  padding-top: 10px;
  color: var(--text-white);
}

/* amenities section css ends here */

/* floor plan section css starts here */

.floor_section {
  padding: 80px 0;
}

.floor_section .nav.nav-tabs {
  justify-content: center;
  border-bottom: 0px;
  gap: 20px;
  margin-top: 20px;
}

.floor_section .nav-tabs .nav-link {
  background-color: var(--primary-theme);
  border-radius: 4px;
  width: 220px;
  color: rgb(0, 0, 0) !important;
  padding: 10px 40px !important;
  border: none !important;
}

.floor_section .nav-tabs .nav-link.active {
  background-color: var(--secondary-theme);
  border: none;
  color: rgb(255, 255, 255) !important;
}

.floor_section .tab-content {
  margin-top: 30px;
}

.floor_section .tab-content h5 {
  font-size: 20px;
  margin-bottom: 0px;
  text-align: center;
  background: var(--secondary-theme);
  padding: 14px 0px;
  color: var(--text-white);
  border-radius: 4px;
}

.floor_section .floor_image {
  background: var(--text-white);
  padding: 20px;
  border-radius: 20px;
  position: relative;
  box-shadow: 4px 4px 10px 4px rgb(0 0 0 / 13%);
}

.floor_section .floor_image span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 400;
  cursor: pointer;
  background: var(--secondary-theme);
  padding: 10px 12px;
  color: var(--text-white);
  border-radius: 4px;
  font-size: 13px;
}

/* floor section css ends here */

/* location advantage section css starts here */

.location_section {
  padding: 80px 0 40px;
  background: var(--primary-theme);
  position: relative;
  overflow: hidden;
  /* min-height: 100vh; */
}

.location-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 550px;
}

.central-logo {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  /* background: linear-gradient(45deg, #ff6b35, #f7931e); */
  /* border-radius: 50%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* color: white; */
  /* font-weight: bold; */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.central-logo .brand-name {
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.central-logo .sub-text {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.location-point {
  position: absolute;
  /* background: white; */
  /* padding: 12px 20px; */
  padding: 12px 0px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  z-index: 5;
}

.location-point img {
  max-width: 16px;
}

.location-point.left {
  text-align: right;
}

.location-point.right {
  text-align: left;
}

.location-name {
  display: block;
  margin-bottom: 2px;
}

.location-time {
  font-size: 16px;
  font-weight: bold;
}

.connecting-line {
  position: absolute;
  border-top: 2px dotted #666;
  z-index: 1;
}

.vertical-line {
  position: absolute;
  border-left: 2px dotted #666;
  z-index: 1;
}

/* Left side locations */
.location-1 {
  top: 60px;
  left: 20px;
}

.location-2 {
  top: 180px;
  left: 135px;
}

.location-3 {
  top: 320px;
  left: 150px;
}

.location-4 {
  top: 450px;
  left: 122px;
}

/* Right side locations */
.location-5 {
  top: 70px;
  right: 90px;
}

.location-6 {
  top: 180px;
  right: 35px;
}

.location-7 {
  top: 340px;
  right: 65px;
}

.location-8 {
  top: 440px;
  right: 72px;
}

/* Connecting lines */
.line-1 {
  top: 92px;
  left: 260px;
  width: 238px;
}

.line-2 {
  top: 220px;
  left: 275px;
  width: 200px;
}

.line-3 {
  top: 362px;
  left: 290px;
  width: 210px;
}

.line-4 {
  top: 492px;
  left: 310px;
  width: 190px;
}

.line-5 {
  top: 92px;
  left: 702px;
  width: 238px;
}

.line-6 {
  top: 220px;
  left: 727px;
  width: 200px;
}

.line-7 {
  top: 362px;
  left: 703px;
  width: 210px;
}

.line-8 {
  top: 492px;
  left: 700px;
  width: 190px;
}

/* Vertical connecting lines */
.v-line-left {
  left: 500px;
  top: 92px;
  height: 400px;
}

.v-line-right {
  right: 500px;
  top: 92px;
  height: 400px;
}

/* loaction section css ends here */

/* decision corner css starts here */

.decision_corner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.decision_corner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/banner/banner-1.jpg") center center / cover no-repeat;
  filter: blur(1px);
  z-index: 1;
  /* transform: scale(1.1); */
}

/* Content layer */
.decision_corner>.container {
  position: relative;
  z-index: 2;
}

/* Optional: Add overlay to increase text contrast */
.decision_corner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.decision_corner .section_title {
  color: var(--text-white);
}

.decision_corner .subheading {
  color: var(--text-white);
}

.flex_div {
  display: flex;
  justify-content: center;
}

.boxes {
  padding: 15px;
  text-align: center;
}

.boxes:first-child {
  border-right: 1px solid var(--text-white);
}

.title {
  font-size: 17px;
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
  color: var(--text-white);
}

/* gallery section css starts here */

.gallery_section {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Default slide */
.center-slider .gallery-card {
  background-color: var(--secondary-theme);
  border-radius: 10px;
  padding: 3px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}

.center-slider .gallery-card img {
  width: 100%;
  border-radius: 10px;
  /* height: 500px; */
  object-fit: cover;
}

.center-slider .slick-slide {
  margin: 0 10px;
}

.slide-arrow6.prev-arrow6,
.slide-arrow6.next-arrow6 {
  position: absolute;
  bottom: -50px;
  z-index: 10;
  background: var(--secondary-theme);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
  height: 44px;
  width: 44px;
  text-align: center;
}

.slide-arrow6.prev-arrow6 {
  right: 70px;
}

.slide-arrow6.next-arrow6 {
  right: 10px;
}

.slide-arrow6:hover {
  background: #000a2b;
}

.slide-arrow6 img {
  filter: brightness(0) invert(1);
}

/* gallery section css ends here */

/* about builder section css starts here */
.about_builder {
  padding: 80px 0px;
  /* background: var(--primary-theme); */
  background-image: url("../img/about_builder.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  /* filter: blur(3px); */
  z-index: 1;
  overflow-x: hidden !important;
  position: relative;
}

.about_builder::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000a1;
  z-index: -1;
}

.about_builder h5 {
  font-size: 35px;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text-white);
}

.about_builder p {
  font-size: 17px;
  margin-bottom: 0px;
  text-align: justify;
  color: var(--text-white);
}

.about_builder .footer_form {
  background: var(--primary-theme);
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
  max-width: 450px;
  border-radius: 10px;
  margin-left: auto;
}

.about_builder .footer_form h6 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}

.about_builder .footer_form input {
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--secondary-theme);
  background: var(--primary-theme);
}

/* about builder section css ends here */

/* footer section css starts here */

footer {
  /* background: var(--text-black); */
  /* background: #fffcf1; */
  padding: 70px 0px;
}

footer .disclaimer p {
  color: var(--text-black);
  font-size: 13px;
  margin-bottom: 10px;
}

footer .disclaimer .moreless-button {
  color: var(--text-black);
  font-size: 13px;
}

footer .rera_details p {
  color: var(--text-black);
  font-size: 13px;
  margin: 10px 0px;
}

footer .rera_details a {
  color: var(--text-black);
}

footer .rera_details a:hover {
  text-decoration: underline !important;
}

/* modal css starts here */

.modal .modal-header {
  border-bottom: 1px solid var(--secondary-theme);
}

.modal .btn-close {
  opacity: 1;
}

.modal .modal-header h6 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}

.modal input {
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--secondary-theme);
  height: 40px;
}

.modal .form-control:focus {
  color: #212529;
  background-color: var(--text-white);
  border-color: var(--secondary-theme);
  outline: 0;
  box-shadow: none;
}

.modal input::placeholder {
  color: #000;
}

.modal .inp-box {
  margin-bottom: 12px;
}

/* footer section css ends here */

.fixedIcons {
  position: fixed;
  z-index: 99;
  bottom: 15px;
  padding: 5px;
  background: #fffcf1;
  border-radius: 50%;
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  box-shadow: 0 0 0 0 #29a71a;
}

.fixedIcons {
  &.whatsapp {
    left: 15px;
  }
}

.fixedIcons {
  &.phone {
    right: 15px;
    background: var(--primary-theme);
  }
}

.fixedIcons {
  img {
    width: 40px;
    padding: 5px;
  }
}

.mobile-section-footer {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--primary-theme);
  color: var(--primary-theme);
  padding: 5px 0;
}

.typ-bg {
  display: none;
}

.d_view {
  display: block;
}

.m_view {
  display: none;
}

.modal .modal-dialog {
  /* background-color: white; */
  max-width: 900px;
}

.modal .modal-content {
  border: none;
}

.modal .modal-header {
  border: unset;
  /* padding-bottom: 0; */
}

.modal .modal-header .modal-title {
  margin-bottom: 0;
}

.modal .col-md-6 {
  background-color: white;
}

@media (max-width: 1480px) {
  .form_section {
    /* bottom: 6%; */
    /* right: 0%; */
  }

  .project_box {
    bottom: 20%;
    left: 5%;
  }

  .value {
    font-size: 14px;
  }
}

@media (max-width: 1366px) {
  .slick-slide img {
    max-width: 350px;
  }

  .next-arrow6 {
    right: 2%;
  }

  .line-5 {
    left: 617px;
  }

  .line-6 {
    left: 640px;
  }

  .line-7 {
    left: 613px;
  }

  .line-8 {
    left: 610px;
  }

  .fixedIcons {
    &.phone {
      right: 10px;
    }
  }

  .fixedIcons {
    img {
      width: 40px;
    }
  }

  .amenities_section ul .amenity-box {
    padding: 25px;
    margin: 10px 5px;
    min-width: 160px;
  }

  .project_box h1 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .d_view {
    display: none;
  }

  .m_view {
    display: block;
  }

  .menu-items {
    padding-top: 40px;
  }

  .logo img {
    max-width: 130px;
    /* width: 100%; */
  }

  .header .menu-btn span {
    display: none;
  }

  .navbar-brand {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-right: 0px;
  }

  .nav-item .nav-link {
    margin-bottom: 0px;
    text-align: center;
  }

  .phone-email {
    display: none !important;
  }

  .navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.55);
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .carousel-inner img {
    min-height: 400px;
  }

  .carousel-item img {
    height: auto;
    width: 100%;
    object-fit: cover;
  }

  .slider_section .project_box {
    position: unset;
    padding: 20px 0px;
    background: var(--primary-theme);
    text-align: center;
  }

  .slider_section .form_section {
    position: unset;
    width: 100%;
    border-radius: 0;
    transform: unset;
    max-width: 100%;
  }

  .slider_section::after {
    background: none;
    width: unset;
    position: unset;
  }

  .project_box h1 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-black);
  }

  .project_box p {
    margin-bottom: 8px;
    color: var(--text-black);
  }

  .project_box h3 {
    color: var(--text-black);
  }

  .project_box h3 span {
    color: var(--text-black);
  }

  .project_box p img {
    filter: unset;
  }

  .project_box ul li {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 3px;
  }

  .project_box ul li img {
    width: 18px;
  }

  .form-close-btn {
    display: none;
  }

  .form-toggle-btn {
    display: none;
  }

  .section_title {
    font-size: 26px;
  }

  .subheading {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .overview_section {
    padding: 50px 0;
  }

  .overview-grid {
    grid-template-columns: unset;
    gap: 0rem;
    place-items: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .overview-item {
    text-align: center;
    padding: 8px 4px;
    width: 50%;
  }

  /* .overview-item:nth-child(4),
  .overview-item:nth-child(5) {
    width: 50%;
  } */
  .label {
    color: var(--text-black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0;
    margin-block-end: 0.5rem;
  }

  .highlight_section {
    padding: 50px 0;
  }

  .feature-card {
    padding: 18px 18px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .feature-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .price_box {
    margin-bottom: 20px;
    max-width: 350px;
    margin: 0 auto 20px;
  }

  .price_list_section {
    padding: 50px 0;
  }

  .price_list {
    margin-top: 10px;
  }

  .amenities_section {
    padding: 50px 0;
  }

  .amenities_section ul {
    min-height: 330px;
    overflow-y: scroll;
    height: 330px;
  }

  .amenities_section ul .amenity-box {
    padding: 7px;
    margin: 7px;
    min-width: unset;
    width: 150px;
  }

  .amenities_section ul .amenity-box img {
    max-width: 50px;
  }

  .amenities_section ul .amenity-box .overlay img {
    max-width: 100%;
  }

  .amenities_section ul .amenity-box span {
    font-size: 16px;
  }

  .floor_section {
    padding: 50px 0;
  }

  .floor_section .nav.nav-tabs {
    margin-top: 10px;
    gap: 15px;
  }

  .floor_section .nav-tabs .nav-link {
    width: 140px;
    padding: 10px 10px !important;
  }

  .floor_section .floor_image {
    margin-bottom: 15px;
  }

  .floor_section .tab-content h5 {
    padding: 8px 0px;
  }

  .decision_corner {
    padding: 50px 0;
  }

  .decision_corner .subheading {
    font-size: 13px;
  }

  .title {
    font-size: 12px;
  }

  .gallery_section {
    padding: 50px 0 80px;
  }

  .slide-arrow6.next-arrow6 {
    right: 36%;
  }

  .slide-arrow6.prev-arrow6 {
    right: 51%;
  }

  .slick-slide img {
    /* max-width: 350px; */
  }

  .about_builder {
    padding: 50px 0px;
  }

  .about_builder h5 {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .about_builder p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .form_section.slide-form .button {
    padding: 10px 40px;
  }

  footer {
    padding: 50px 0px 70px;
  }

  .footer_form .button {
    padding: 10px 40px;
  }

  .price_list {
    background: transparent;
    border-radius: 0;
  }

  .location_section {
    padding: 50px 0;
  }

  .location-container {
    height: auto;
  }

  .central-logo {
    position: unset;
    transform: unset;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }

  .central-logo img {
    border-radius: 0 !important;
  }

  .location-point {
    position: unset;
    text-align: left;
    z-index: 999;
    padding: 0px 0px 10px;
  }

  .location-point.left {
    text-align: left;
    display: flex;
    justify-content: space-between;
  }

  .location-point.right {
    text-align: left;
    display: flex;
    justify-content: space-between;
  }

  .location-name {
    margin-bottom: 0px;
  }

  .connecting-line {
    display: none;
  }

  .fixedIcons {
    bottom: 45px;
  }

  .fixedIcons {
    bottom: 45px;
  }

  .fixedIcons {
    img {
      width: 35px;
    }
  }

  .mobile-section-footer {
    display: flex;
    gap: 0 5px;
    justify-content: space-around;
    z-index: 9;
  }

  .mobile-section-footer a {
    display: block;
    font-size: 14px;
    padding: 6px 8px;
    color: var(--secondary-theme);
    border-radius: 5px 0;
  }

  .decision_corner .button {
    background-color: var(--secondary-theme);
    color: var(--text-white);
    font-size: 16px;
    line-height: unset;
    padding: 10px 10px;
  }

  .icon {
    font-size: 2rem;
  }

  .modal .modal-dialog {
    /* background-color: white; */
    /* max-width: 330px; */
    margin-left: 15px;
    margin-right: 15px;
  }

  .modal .modal-header {
    border: unset;
    padding-bottom: 0;
  }

  .modal img{
    margin-top: 16px;
  }
}

@media (max-width: 390px) {
  .slick-slide img {
    /* max-width: 310px; */
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 20px rgba(255, 232, 160, 0);
  }
}

@keyframes mobile {

  0%,
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
}