/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo h2 {
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #e74c3c;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e74c3c;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: black;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("IMG/main-banner.jpg") center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text {
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: #e74c3c;
  color: white;
}

.btn-primary:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2c3e50;
  transform: translateY(-2px);
}

.hero-form {
  animation: fadeInRight 1s ease 0.6s both;
}

.form-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  padding: 1rem;
  border: 2px solid #ecf0f1;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: #e74c3c;
}

.btn-submit {
  background: #e74c3c;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: #7f8c8d;
  font-weight: 300;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 2rem;
  color: #e74c3c;
  width: 50px;
  text-align: center;
}

.feature h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature p {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin: 0;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Projects Section */
.projects {
  padding: 6rem 0;
  background: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.project-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #e74c3c;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

.project-content {
  padding: 2rem;
}

.project-content h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.project-location {
  color: #e74c3c;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.project-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #7f8c8d;
  font-size: 0.9rem;
}

.detail i {
  color: #e74c3c;
}

.btn-project {
  width: 100%;
  background: #2c3e50;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-project:hover {
  background: #34495e;
  transform: translateY(-2px);
}

/* Amenities Section */
.amenities {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.amenities .section-header h2,
.amenities .section-header p {
  color: white;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.amenity-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.amenity-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #f39c12;
}

.amenity-card h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.amenity-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Location Section */
.location {
  padding: 6rem 0;
  background: white;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.location-item:hover {
  transform: translateX(10px);
  background: #e8f4fd;
}

.location-icon {
  font-size: 2.5rem;
  color: #3498db;
  width: 60px;
  text-align: center;
}

.location-text h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.location-text p {
  color: #7f8c8d;
  margin: 0;
}

.location-map {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  border: 2px dashed #bdc3c7;
}

.map-placeholder i {
  font-size: 4rem;
  color: #7f8c8d;
  margin-bottom: 1rem;
}

.map-placeholder h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.map-placeholder p {
  color: #7f8c8d;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: #f8f9fa;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2rem;
  color: #e74c3c;
  width: 50px;
  text-align: center;
}

.contact-text h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-text p {
  color: #7f8c8d;
  margin: 0;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-fields input,
.contact-form-fields select,
.contact-form-fields textarea {
  padding: 1rem;
  border: 2px solid #ecf0f1;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form-fields input:focus,
.contact-form-fields select:focus,
.contact-form-fields textarea:focus {
  outline: none;
  border-color: #e74c3c;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #ecf0f1;
}

.footer-section p {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #e74c3c;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #34495e;
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #e74c3c;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  animation: slideInRight 0.5s ease;
}

.floating-button {
  background: white;
  color: #2c3e50;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  min-width: 140px;
  justify-content: center;
}

.floating-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.floating-button i {
  font-size: 1.2rem;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background: #128c7e;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Phone Button */
.phone-btn {
  background: #e74c3c;
  color: white;
}

.phone-btn:hover {
  background: #c0392b;
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
}

/* Site Visit Button */
.site-visit-btn {
  background: #3498db;
  color: white;
}

.site-visit-btn:hover {
  background: #2980b9;
  box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
}

/* Enquire Button */
.enquire-btn {
  background: #2c3e50;
  color: white;
}

.enquire-btn:hover {
  background: #34495e;
  box-shadow: 0 15px 35px rgba(44, 62, 80, 0.4);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.close:hover {
  color: #e74c3c;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
  }

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

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .about-content,
  .location-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }

  .floating-button {
    padding: 0.8rem 1rem;
    min-width: 120px;
  }

  .floating-button span {
    display: none;
  }
}

/* form css  */
.btn-info,
.btn-info:hover {
  background-color: rgb(131 12 111) !important;
  color: white;
  border: none;
}

.container-box {
  display: inline-block;
  padding: 0px;
  /* background: rgba(255, 255, 255, .8); */
  /* border: 1px solid #fff; */
  position: fixed;
  top: 81%;
  left: 0;
  z-index: 99;
}

body {
  list-style: none;
}

.visit {
  display: inline-block;
  padding: 0px;
  /* background: rgba(255, 255, 255, .8);
border: 1px solid #fff; */
  position: fixed;
  top: 45%;
  left: 0;
  z-index: 99;
}

.container-box .btn-lg {
  padding: 5px 14px;
}

.modal-content {
  background-color: #dcb981;
  top: 100px;
}

.modal-header {
  display: flex;
  flex-direction: row-reverse;
}

.button-flex {
  display: flex;
  flex-direction: column;
}

.rotated {
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform-origin: top left;
}

.color-fill .modal-title {
  color: rgb(0, 0, 0);
}

@media (max-width: 767px) {
  .container-box .btn-lg {
    padding: 1px 14px;
  }

  .visit {
    top: 31%;
  }
}

.project-table table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
  border: 1px solid #e9e9e9;
  line-height: 1.4;
  padding: 4px;
  vertical-align: middle;
  text-align: center;
}

.project-table > tr > span {
  color: #737373;
  font-size: 18px;
}

#social p,
.twitter {
  font: normal normal 10px Arial;
  text-align: center;
  color: #998578;
  text-transform: uppercase;
  letter-spacing: 3px;
}

#social .twitter {
  color: #000000;
  text-decoration: none;
  display: block;
  padding: 14px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#social .twitter:hover {
  color: #ff7d6d;
  text-decoration: none;
}

.twit {
  background: rgb(131 12 111) !important;
}

#social span {
  font-style: italic;
  display: block;
}

#social img {
  max-width: 100%;
}

/* Floating Social Media Bar Style Starts Here */

#social .fl-fl {
  background: rgb(131 12 111);
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 4px;
  width: 190px;
  position: fixed;
  right: -145px;
  z-index: 1000;
  font: normal normal 10px Arial;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#social .fl-tw {
  background: #23a1f4;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 4px;
  width: 190px;
  position: fixed;
  right: -160px;
  z-index: 1000;
  font: normal normal 10px Arial;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#social .fa {
  font-size: 20px;
  color: #fff;
  padding: 10px 0;
  width: 40px;
  margin-left: 8px;
}

#social .fl-fl:hover {
  right: -52px;
}

#social .fl-fl a {
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  line-height: 43px !important;
  vertical-align: top !important;
}

.width100 {
  width: 100%;
  font-size: 13px;
  padding: 4px 2px;
}

/*#social .float-fb {*/
/* top: 160px;*/
/*}*/

@media (min-width: 577px) {
  #social .float-fb {
    top: 160px;
  }

  #social .float-tw {
    top: 215px;
  }
}

@media (max-width: 576px) {
  #social .float-fb {
    top: none;
    bottom: 0px !important;
    left: 0px !important;
    width: 50% !important;
  }

  #social .float-tw {
    top: none;
    bottom: 0px !important;
    right: 0px !important;
    width: 50% !important;
  }
}

@media (min-width: 768px) {
  .fill {
    float: right;
  }
}

@media (max-width: 767px) {
  #form .col-sm-6 {
    text-align: center;
    padding: 3px;
  }
}

/* thankyou page  */

section#subscribe-section3 {
  padding: 92px;
}

#border-button {
  border: 2px white solid;
  border-radius: 20px;
}

.hide {
  display: none;
}
