/*
Theme Name: CustomAssetsence
Author: Ranjeet Yadav
Description: A custom theme made from scratch.
Version: 1.0
*/

* {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --primary: #1a3a5f;
  --secondary: #c8a97e;
  --accent: #9c6644;
  --light: #f8f5f0;
  --dark: #2c2c2c;
  --transition: all 0.4s ease;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fafafa;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
   font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar Styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

nav.scrolled {
  /* padding: 15px 50px; */
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 45px;
  display: flex;
  align-items: center;
  padding-top: 20px;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-left: 10px;
}

.logo-text img {
  height: 5rem;
  width: 7rem;
  margin-top: -18px !important;
  margin-left: -27px !important;
}
.logo-text span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--secondary);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.nav-links li:hover::after {
  width: 100%;
}

.call-btn {
  background: linear-gradient(135deg, var(--primary), #2a4b7c);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(26, 58, 95, 0.3);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  font-size: 15px;
  margin-left: 20px;
}

.call-btn i,
span {
  margin-right: 8px;
  transition: transform 0.3s;
  color: white;
}

.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 58, 95, 0.4);
  background: linear-gradient(135deg, #2a4b7c, var(--primary));
}

.call-btn:hover i {
  transform: rotate(15deg);
}

.call-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.call-btn:hover::before {
  left: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--primary);
}

/* watsapp button chat  */

/* Floating WhatsApp Button */
/* .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
	color:red;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
}

/* Responsive padding for different screens */
/*@media (max-width: 768px) {
  .whatsapp-float {
    padding: 10px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float img {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    padding: 8px;
    bottom: 10px;
    right: 10px;
  }

  .whatsapp-float img {
    width: 20px;
    height: 20px;
  }
} */

/* Hero Section */

* Slider Wrapper */ .slider-wrapper {
  position: relative;
  width: 100%;
  height: 40rem;
  overflow: hidden;
  margin-top:50px;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 29px !important;
}


.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}
.slide.active {
  display: block;
  z-index: 0;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}
.left-arrow {
  left: 15px;
}
.right-arrow {
  right: 15px;
}

/* Fixed Form */
.fixed-form {
  position: absolute;
  bottom: 20px;
  right: 45px;
  background: white;
  padding: 20px;
  width: 300px;
  max-width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 3;
  border-radius: 10px;
}
.fixed-form h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.fixed-form form textarea {
  width: 100%;
  height: 40px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  resize: none;
	font-family: sans-serif;
}
.fixed-form form input,
.fixed-form form button {
  width: 100%;
  margin: 5px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.fixed-form form button {
  background: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.fixed-form form button:hover {
  background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
	
      .slider-images {
        margin-top: 29px !important;
    }

  .arrow {
    font-size: 1.5rem;
    padding: 8px;
  }

  .fixed-form {
    position: static;
    margin: 20px auto;
    width: 90%;
    max-width: 100%;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.95);
  }
}

/* ------------------------Pop up Form Section ------------------------------------- */

/* Trigger Button */
.popup-btn {
  padding: 12px 25px;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.popup-btn:hover {
  background: #a6825e;
}

/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* Modal Box */
.modal-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  margin: 10% auto;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 26px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* Form Styles */
.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.modal-content textarea {
  resize: vertical;
  min-height: 100px;
}

.modal-content button[type="submit"] {
  background: var(--primary);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-content button:hover {
  background: #27476d;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Modal */
@media (max-width: 480px) {
  .modal-content {
    margin-top: 30%;
    padding: 20px;
    width: 90%;
  }

  .modal-content h2 {
    font-size: 1.3rem;
  }

  .close-btn {
    font-size: 22px;
  }

  .popup-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* overview section  ---- */

.outer-div {
  display: flex;
  width: 100%;
  gap: 20px; /* space between columns */
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.left-div,
.right-div {
  flex: 1 1 50%; /* each takes 50% width on larger screens */
  box-sizing: border-box;
}

.left-div img {
  width: 10rem;
  height: 10rem;
}

.right-div h2 {
  margin-top: 0;
}

.right-div p {
  line-height: 1.5;
  color: #555;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 767px) {
  .left-div,
  .right-div {
    flex: 1 1 100%; /* full width */
  }
}

/* hero section old----------------- */

.hero {
  height: 100vh;
  /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80")
      center/cover no-repeat; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 0px;
  position: absolute;
  /* margin-left: 12rem; */
}

.hero-content {
  max-width: 900px;

  margin-top: -220px;
}
.hero-content {
  overlay: rgba(1, 1, 1, 0.5);
}

.overlay {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 1, 0.7); /* semi-transparent black */
  color: rgb(243, 242, 242);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 2px solid var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
}

.hero-btn:hover {
  background: transparent;
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* reponsivenes in mobile ------------ */
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
  p {
    font-size: 1rem;
  }
}

/* Overview Section */
.overview {
  padding: 100px 0;
  background-color: var(--light);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--secondary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: #777;
  max-width: 700px;
  margin: 20px auto 0;
}

.overview-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.overview-text {
  flex: 1;
}

.overview-text h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.overview-text p {
  margin-bottom: 20px;
  color: #555;
}

.overview-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  height: 500px;
}

.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.overview-image:hover img {
  transform: scale(1.05);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--light), white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.features li {
  text-align: justify;
}

.feature-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-align: center;
  justify-content: flex-start;
  padding: 40px 30px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(200, 169, 126, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--secondary);
  font-size: 30px;
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.feature-card p {
  color: #666;
}

/* CTA Section */
.cta {
  background: linear-gradient(rgba(26, 58, 95, 0.9), rgba(26, 58, 95, 0.9)),
    url("https://images.unsplash.com/photo-1560448204-603b3fc33ddc?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1770&q=80")
      center/cover no-repeat;
  padding: 3rem 0rem;
  color: white;
  text-align: center;
  border-radius: 1rem;
  margin: 1rem 6rem;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  opacity: 0.9;
}
.cta a {
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 70px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: var(--secondary);
  bottom: 0;
  left: 0;
}

.footer-column p {
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--secondary);
  opacity: 1;
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
  nav {
    padding: 15px 30px;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    /* background: white; */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: left 0.5s;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .hamburger {
    display: block;
  }

  .overview-content {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 770px) {
  .hero h1 {
    font-size: 1.5rem !important ;
    padding: 0px 0px;
    /* margin-top: 15px; *
    /* padding-top: -20px; */
    /* margin-left: 30px; */
  }
  .hero-content {
    align-items: center;
    text-align: center;
    /* margin-top: -160px; */
    margin-right: 70px !important;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 5px 17px;
    font-size: 0.7rem;
    /* margin-top: -35px; */
  }

  .call-btn span {
    display: none;
  }

  .call-btn {
    padding: 12px 15px;
    border-radius: 50%;
  }

  .logo .call-btn {
    padding: 12px 20px;
    font-size: 14px;
    margin-left: 390px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 0.9rem !important;
    margin-left: 50px !important;
    margin-top: 10px !important;
  }
  .hero-content p {
    font-size: 0.6rem !important;
    margin-left: 50px !important;
    margin-top: 3px !important;
  }
  .hero-btn {
    margin-left: 40px !important;
    margin-top: -8px !important;
  }
}

/* Pricing section-------- */

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: linear-gradient(
      135deg,
      rgba(248, 245, 240, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 100%
    ),
    url("https://www.transparenttextures.com/patterns/light-wool.png");
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-title h2 {
  font-size: 2.3rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--secondary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: #777;
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.2rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.pricing-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(200, 169, 126, 0.2);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary);
}

.pricing-card.featured {
  border: 2px solid var(--secondary);
  transform: scale(1.03);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-10px);
}

.card-header {
  padding-bottom: 35px;
  margin-bottom: -153px;
  position: relative;
}

.card-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 80px;
  background: var(--secondary);
  opacity: 0.3;
}

.pricing-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.price {
  font-size: 2rem !important;
  color: var(--secondary);
  font-weight: 700;
  margin: 20px 0;
  position: relative;
  display: inline-block;
  margin-top: -10px;
}

.price::before {
  content: "₹";
  font-size: 1.2rem;
  position: absolute;
  left: -20px;
  top: 10px;
}

.price::after {
  content: "*";
  position: absolute;
  right: -15px;
  top: 10px;
  font-size: 1.2rem;
}

.size {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.features {
  flex-grow: 1;
  margin-bottom: 30px;
}

.features li {
  list-style: none;
  padding: 10px 0;
  color: #555;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.features li:last-child {
  border-bottom: none;
}

.features li i {
  color: var(--secondary);
  margin-right: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary);
  margin-top: auto;
}

.btn:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 58, 95, 0.2);
}

.btn i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.btn:hover i {
  transform: translateX(5px);
}

.disclaimer {
  text-align: center;
  margin-top: 40px;
  color: #777;
  font-size: 0.9rem;
}

/* Decorative Elements */
/* .decor {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
}

.decor-1 {
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  border: 20px solid var(--secondary);
  border-radius: 50%;
}

.decor-2 {
  bottom: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  border: 15px solid var(--primary);
  border-radius: 50%;
} */

/* Responsive Styles */
@media (max-width: 992px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    order: -1;
    grid-column: 1 / span 2;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    grid-column: 1;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }
}

/* floor plan section -------------------------------------------- */

.floor-plans {
  max-width: 1200px;
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 20px;
  margin-left: 80px;
}

/* Header Section */
.section-header {
  background: linear-gradient(135deg, var(--primary) 0%, #2a4b7c 100%);
  color: white;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.section-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(30deg);
}

.section-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.section-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

/* Plans Section */
.plans-container {
  padding: 70px 40px;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--secondary);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 50px;
  margin-top: 40px;
}

.plan-card {
  background: white;
  border-radius: 15px;
	margin-right: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(200, 169, 126, 0.2);
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary);
}

.plan-image {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.plan-card:hover .plan-image img {
  transform: scale(1.05);
}

.plan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(26, 58, 95, 0.8) 0%,
    transparent 70%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: white;
}

.plan-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.plan-overlay .size {
  font-size: 1.2rem;
  opacity: 0.9;
}

.plan-details {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* text-align: center; */
  flex-direction: column;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  width: 30px;
  height: 30px;
  background: rgba(200, 169, 126, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.feature-text {
  font-size: 0.95rem;
  color: #555;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-top: -90px;
}

.btn:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 58, 95, 0.2);
}

.btn i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.btn:hover i {
  transform: translateX(5px);
}

/* Decorative Elements */
.decor {
  position: absolute;
  z-index: 0;
  opacity: 0.05;
}

.decor-1 {
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  border: 20px solid var(--secondary);
  border-radius: 50%;
}

.decor-2 {
  bottom: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  border: 15px solid var(--primary);
  border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 40px auto 0;
  }
}

@media (max-width: 768px) {
  .section-header {
    padding: 40px 20px;
  }

  .section-header h1 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1.2rem;
  }

  .plans-container {
    padding: 50px 20px;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }

  .plan-image {
    height: 300px;
  }

  .features-list {
    grid-template-columns: 1fr;
    justify-content: flex-start;
    text-align: center;
  }

  /* .plan-details {
    display: flex;
    justify-content: flex-start;
  } */

  .features-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
  }

  /* .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
  } */

  /* .feature-icon i {
    font-size: 20px;
    color: #333;
  } */

  /* .feature-text {
    font-size: 16px;
    color: #555;
  } */
}

@media (max-width: 550px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .section-header h1 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .plan-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* --------------------------------------Gallery Section -------------------------------------------------- */
.gallery-container {
  max-width: 1400px;
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 20px 0rem;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-bottom: 3.5rem;
}

/* Header Section */
.gallery-header {
  background: linear-gradient(135deg, var(--primary) 0%, #2a4b7c 100%);
  color: white;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;

  border-radius: 0.5rem;
}

.gallery-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  padding: 0 px 60px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(30deg);
}

.gallery-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  letter-spacing: 2px;
}

.gallery-header h1 span {
  color: var(--secondary);
  font-weight: 700;
}

.gallery-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
  padding: 0px 10px;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  gap: 25px;
  margin-top: 30px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(26, 58, 95, 0.7) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-info {
  position: absolute;
  bottom: -50px;
  left: 0;
  padding: 25px;
  color: white;
  z-index: 2;
  transition: var(--transition);
  opacity: 0;
}

.gallery-item:hover .gallery-info {
  bottom: 0;
  opacity: 1;
}

.gallery-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.gallery-info p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.gallery-item:nth-child(3n + 1) {
  grid-row: span 2;
}

.gallery-item:nth-child(4n + 2) {
  grid-column: span 2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--secondary);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.lightbox-nav button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav button:hover {
  background: var(--secondary);
  transform: scale(1.1);
}

/* Decorative Elements */
.decor {
  position: absolute;
  z-index: 0;
  opacity: 0.05;
}

.decor-1 {
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  border: 20px solid var(--secondary);
  border-radius: 50%;
}

.decor-2 {
  bottom: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  border: 15px solid var(--primary);
  border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .gallery-item:nth-child(4n + 2) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .gallery-header {
    padding: 6px 4px;
  }

  .gallery-header h1 {
    font-size: 2.3rem;
  }
  .galleryu-header h2 {
    font-size: 154rem;
  }

  .gallery-header p {
    font-size: 1.3rem;
  }

  .gallery-section {
    padding: 60px 20px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }
}

@media (max-width: 550px) {
  .gallery-header h1 {
    font-size: 2.2rem;
  }

  .gallery-header p {
    font-size: 1.1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(3n + 1) {
    grid-row: span 1;
  }
}

/*--------------------------------- Location sections----------------------------------------------------------------- */
.location-container {
  max-width: 1400px;
  width: 100%;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Header Section */
.location-header {
  background: linear-gradient(135deg, var(--primary) 0%, #2a4b7c 100%);
  color: white;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.location-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(30deg);
}

.location-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  letter-spacing: 2px;
}

.location-header p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

/* Content Section */
.location-content {
  padding: 70px 40px;
  display: flex;
  gap: 50px;
}

/* Left Column - Office Address & Map */
.office-info {
  flex: 1;
}

.section-title {
  margin-bottom: 35px;
  position: relative;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--secondary);
  bottom: -10px;
  left: 0;
}

.office-details {
  margin-bottom: 40px;
}

.office-details p {
  color: #555;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(200, 169, 126, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-text {
  color: #555;
}

.contact-text strong {
  color: var(--primary);
  display: block;
  margin-bottom: 5px;
}

.map-container {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(26, 58, 95, 0.3), transparent 70%);
  pointer-events: none;
}

/* Right Column - Nearby Locations */
.nearby-locations {
  flex: 1;
}

.locations-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-left: 4px solid var(--secondary);
}

.location-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.location-icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 169, 126, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 24px;
  flex-shrink: 0;
}

.location-details {
  flex: 1;
}

.location-details h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.location-details .distance {
  font-size: 1.1rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.distance i {
  color: var(--secondary);
}

/* Decorative Elements */
.decor {
  position: absolute;
  z-index: 0;
  opacity: 0.05;
}

.decor-1 {
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  border: 20px solid var(--secondary);
  border-radius: 50%;
}

.decor-2 {
  bottom: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  border: 15px solid var(--primary);
  border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .location-content {
    flex-direction: column;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .location-header {
    padding: 5px 4px;
  }

  .location-header h1 {
    font-size: 2.3rem;
  }
  .location-header h2 {
    font-size: 1.5rem;
  }

  .location-header p {
    font-size: 1.3rem;
  }

  .location-content {
    padding: 50px 20px;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 550px) {
  .location-header h1 {
    font-size: 2.2rem;
  }

  .location-header p {
    font-size: 1.1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .location-item {
    padding: 20px;
  }

  .location-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/*------------------------------------------ Contact Us Section---------------------------------------- */
.contact-container {
  max-width: 1400px;
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /* margin: 20px; */
}

/* Header Section */
.contact-header {
  background: linear-gradient(135deg, var(--primary) 0%, #2a4b7c 100%);
  color: white;
  padding: 20px 20px;
  /* margin-right: 70px; */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(30deg);
}

.contact-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  letter-spacing: 2px;
}

/* Content Section */
.contact-content {
  padding: 70px 40px;
  display: flex;
  gap: 50px;
}

/* Left Column - About Developer */
.about-developer {
  flex: 1;
  padding-right: 30px;
}

.section-title {
  margin-bottom: 35px;
  position: relative;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--secondary);
  bottom: -10px;
  left: 0;
}

.developer-info p {
  color: #555;
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.stat-card {
  background: var(--light);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border-left: 4px solid var(--secondary);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stat-value {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.stat-label {
  color: var(--primary);
  font-weight: 600;
}

/* Right Column - Contact Form */
.contact-form {
  flex: 1;
  background: var(--light);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  text-align: center;
  color: var(--primary);
  margin-bottom: 35px;
  position: relative;
}

.form-title::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--secondary);
  bottom: -15px;
  left: 0;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.2);
}

textarea.form-control {
  height: 100px;
  resize: vertical;
	font-family: sans-serif !important;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary), #2a4b7c);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(26, 58, 95, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 58, 95, 0.4);
  background: linear-gradient(135deg, #2a4b7c, var(--primary));
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.note {
  margin-top: 25px;
  padding: 15px;
  background: rgba(200, 169, 126, 0.1);
  border-left: 3px solid var(--secondary);
  border-radius: 0 8px 8px 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Decorative Elements */
.decor {
  position: absolute;
  z-index: 0;
  opacity: 0.05;
}

.decor-1 {
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  border: 20px solid var(--secondary);
  border-radius: 50%;
}

.decor-2 {
  bottom: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  border: 15px solid var(--primary);
  border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .contact-content {
    flex-direction: column;
  }

  .about-developer {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .contact-header {
    padding: 5px 4px;
  }

  .contact-header h1 {
    font-size: 2rem;
  }

  location-header h1 {
    font-size: 2.3rem;
  }
  .location-header h2 {
    font-size: 1.5rem;
  }
  .contact-content {
    padding: 50px 20px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 550px) {
  .contact-header h1 {
    font-size: 2.2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .form-title {
    font-size: 1.7rem;
  }
}

/* screen size -1024 responsiveness ---------------------------------------*/

@media (max-width: 1024px) {
  nav {
    /* padding: 15px 30px; */
  }
.slider-images {
    margin-top: 53px;
	}
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: left 0.5s;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .hamburger {
    display: block;
  }

  .overview-content {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2rem !important;
    margin-left: 43px;
  }
  .hero p {
    margin-left: 1.2rem;
  }
  .logo a button {
    margin-left: 300px;
  }
  .call-button .call-btn {
    margin-left: 380px;
  }
  .hero-content {
    margin-right: 337px;
    margin-top: -98px;
  }
  .overview-text h3 {
    text-align: center;
  }
  .hero-btn {
    align-items: center;
    font-size: 18px;
    margin-left: 33px;
  }
  .cta {
    margin: 1rem 0.5rem;
  }
  .cta a {
    font-size: 15px;
    padding: 17px;
  }

  .floor-plans {
    margin-left: 15px;
  }
  .plan-details .btn {
    margin-top: 15px;
    padding: 7px 13px;
  }
  .plans-container {
    padding: 0px 0px;
  }
  .gallery-container {
    padding: 0px 5px;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 2rem !important;
  }
  .hero p {
    margin-left: 10px;
    font-size: 15px !important;
  }
  .logo a button {
    margin-left: 200px;
  }
  .call-button .call-btn {
    margin-left: 40px;
  }
  .hero-content {
    margin-right: 36px !important;
  }
  .overview-text h3 {
    text-align: center;
    font-size: 1.2rem;
  }
  .hero-btn {
    align-items: center;
    font-size: 12px;
    margin-left: 20px;
    padding: 10px 20px;
  }
}
@media (max-width: 375px) {
  .hero h1 {
    font-size: 1.8rem !important;
  }
  .hero-content p {
    font-size: 1rem !important;
    padding-top: -5px;
  }

  .hero-content {
    margin-right: 0;
  }
  .hero-btn {
    padding: 7px 13px;
    margin-bottom: 3px;
  }

  .cta a {
    font-size: 14px;
    padding: 12px;
  }

  .overview-text h3 {
    font-size: 1rem;
    text-align: center;
  }

  .overview-content {
    flex-direction: column;
    align-items: center;
  }

  .features li {
    padding: 15px;
    font-size: 0.9rem;
  }
}
@media (max-width: 320px) {
  .hero h1 {
    font-size: 1.7rem !important;

    padding: 0px -70px !important;
  }
  .hero-content p {
    font-size: 1rem !important;
    /* display: none; */
    padding: 0px -70px !important;
  }

  .hero-btn {
    padding: 7px 11px;
    margin-bottom: 2px;
    font-size: 10px;
  }

  .cta a {
    font-size: 12px;
    padding: 10px;
  }

  .overview-text h3 {
    font-size: 0.9rem;
  }

  .features li {
    padding: 10px;
    font-size: 0.8rem;
  }
}


/* Set custom height for the textarea */

