/* General */
/* 🌐 Global Font Setup */
* {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 500 !important; /* Medium weight for all text */
  letter-spacing: 0.3px;
  color: #1c1c1c;
}
/* Load Lato from Google Fonts */

/* Apply Lato to all paragraphs */
p {
  font-family: 'Lato', sans-serif !important;
  font-weight: 300 !important; /* Light by default */
  letter-spacing: 0; /* optional */
  color: #1c1c1c; /* match your global color */
}

/* Optional: if you have bold paragraphs */
p.bold, p strong {
  font-weight: 700 !important; /* Bold version */
}



html, body {
  margin: 0;
  padding: 0;
 
  color: #1c1c1c;
  scroll-behavior: smooth;
  overflow-x: hidden; /* hide horizontal scrollbar */
  overflow-y: auto;   /* allow vertical scroll */
}

/* Hide horizontal scrollbar for all browsers */
html {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: thin;     /* Firefox: keep vertical only */
}
::-webkit-scrollbar:horizontal {
  display: none; /* Chrome, Safari */
}

h1, h2 {

  color: #4B1D63;
}

a {
  text-decoration: none;
}

/* HEADER BASE */
.header {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
}

/* Logo */
.header-logo {
  height: 65px;
  width: auto;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin-left: 25px;
  color: #4B1D63;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.4px;
  transition: color 0.3s, transform 0.3s;
  text-transform: uppercase;
}

.nav a:hover {
  color: #C89B3C;
  transform: translateY(-2px);
}

/* Brochure Button */
.btn-brochure {
  background: linear-gradient(90deg, #6a1b9a, #b67a00);
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-brochure:hover {
  background: linear-gradient(90deg, #b67a00, #6a1b9a);
  box-shadow: 0 4px 10px rgba(182, 122, 0, 0.4);
}

/* HAMBURGER ICON */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #4B1D63;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.menu-toggle .close-icon {
  display: none;
}

/* 🔹 MOBILE VIEW */
@media (max-width: 768px) {
  .container {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 12px 20px;
  }

  .menu-toggle {
    display: block;
  }

  /* Hide nav initially */
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 15px 0;
  }

  .nav a {
    padding: 12px 0;
    margin: 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    display: block;
  }

  /* When active */
  .nav.active {
    display: flex;
  }

  /* Toggle icons */
  .menu-toggle.active .open-icon {
    display: none;
  }
  .menu-toggle.active .close-icon {
    display: block;
    font-size: 30px;
  }
}


/* Hero Section */

/* Animation for hero content */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  .hero-content {
    margin-left: 30px;
    max-width: 90%;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
}
/* Full-width Image Banner */
.fifteen-lakh-banner {
  position: relative;
  width: 95%;
  height: 60vh;
  background: url('img/img/14.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

/* Content Section */
.fifteen-lakh-banner .banner-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding-right: 6%;
  color: #222;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

/* Heading (Moving Text) */
.moving-text span {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.3;
}
/* 🌟 Full-Height Community Section */
.community-section {
  position: relative;
  width: 100%;
  height: 100vh; /* 👈 Full height of window */
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

/* Background Image */
.community-section .community-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* fills screen */
  object-position: center;
  z-index: 1;
}

.community-section .community-content {
  position: absolute;
  bottom: 20%; /* previously 10%, now lower on the page */
  right: 2%;
  z-index: 2;
  max-width: 500px;
  text-align: right;
  color: #111;
  padding: 60px 50px;
  border-radius: 10px;
  backdrop-filter: blur(3px);
}


.community-section h2 {
  font-size: 37px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.community-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
}

.btn-enquire {
  display: inline-block;
  background: linear-gradient(135deg, #4B1D63);
 
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-enquire:hover {
  background: linear-gradient(135deg,  #4B1D63);
  transform: translateY(-2px);
}

/* 🌟 Responsive (Mobile View) */
@media (max-width: 991px) {
  .community-section {
    height: auto; /* auto height for mobile */
  }

  .community-section .community-image {
    position: relative;
    height: auto;
    object-fit: contain; /* ✅ show full image (no crop) */
  }

  .community-section .community-content {
    position: relative;
    text-align: center;
   
    margin: 0 auto;
    padding: 30px 20px 50px;
  }

  .community-section h2 {
    font-size: 24px;
  }

  .community-section p {
    font-size: 16px;
  }

  .btn-enquire {
    font-size: 14px;
    padding: 10px 25px;
  }
}


/* 🌟 About Section */
.about {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.about img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about .about-text {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 50px 5%;
  margin-left: auto;
  text-align: right;
  color: #111;
}

.about .about-text h2 {
  font-size: 27px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.about .about-text p {
  font-size: 22px;
  line-height: 1.8;
  color: #1c1c1c;
}

/* ✅ Responsive Design */
@media (max-width: 991px) {
  /* Banner */
  .fifteen-lakh-banner {
    justify-content: center;
    height: auto;
    padding: 80px 15px;
  }

  .fifteen-lakh-banner .banner-content {
    max-width: 90%;
    text-align: center;
    padding: 0;
  }

  .moving-text span {
    font-size: 28px;
    line-height: 1.4;
  }

  .fifteen-lakh-banner p {
    font-size: 15px;
    line-height: 1.6;
    margin: 15px 0 25px;
  }

  .btn-enquire {
    padding: 10px 28px;
    font-size: 15px;
  }

  /* About Section */
  .about {
    display: flex;
    flex-direction: column;
    height: auto !important;
  }

  .about img {
    width: 100%;
    height: auto !important;
    position: relative !important;
  }

  .about .about-text {
    position: relative !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    padding: 30px 20px !important;
  }

  .about .about-text h2 {
    font-size: 22px !important;
    margin-bottom: 15px !important;
  }

  .about .about-text p {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
}

/* Sections */
section {
  padding: 100px 60px;
  text-align: center;
}

section p {
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.amenity {
  background: #f1ecf5;
  padding: 15px;
  border-left: 5px solid #4B1D63;
  border-radius: 6px;
  text-align: left;
}


/* Specifications */
.specs ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 30px auto 0;
  text-align: left;
}

.specs li {
  background: #fff;
  padding: 10px 20px;
  border-left: 4px solid #4B1D63;
  margin-bottom: 10px;
  border-radius: 6px;
}

/* CTA Section */
.cta {
  background: linear-gradient(90deg, #4B1D63, #4B1D63);
  color: #fff;
}

.cta .btn {
  background: #fff;
  color: #4B1D63;
  margin-top: 15px;
}

/* Contact */
.contact {
  background: #fff;
}

.contact form {
  max-width: 600px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input, .contact textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
}

.contact button {
  background: linear-gradient(90deg, #4B1D63, #4B1D63);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
}

.contact button:hover {
  opacity: 0.9;
}
/* Contact Section */
.contact-section {
  background: #ffffff;
  padding: 80px 10%;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
}

.contact-container {
  background: #fdfdfd;
  width: 100%;
  max-width: 600px;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.contact-container h2 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-group input {
  flex: 1;
  min-width: 48%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: border 0.3s ease;
}

.form-group input:focus,
textarea:focus {
  border-color:  #fff;
}

textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  resize: none;
  outline: none;
  transition: border 0.3s ease;
}

button {
  background:  #fff;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background:  #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .form-group {
    flex-direction: column;
  }
}
/* 🌟 Make all buttons and accordion hover color #4B1D63 */



/* Accordion headings (Connectivity section) */
.accordion-btn:hover {
  color: #4B1D63 !important;
  background: #f3eaff !important; /* light purple background effect */
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Optional: if you also want nav links to match */
.nav a:hover {
  color: #4B1D63 !important;
  transform: translateY(-2px);
}


/* Footer */


footer {
  color: #ffffff !important;
  text-align: center;
  padding: 25px;
}

footer a {
  color: #ffffff !important;
}


/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .nav a {
    display: block;
    margin: 10px 0;
  }

  .about {
    padding: 60px 30px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .logo {
    height: 90px;
  }
}
