:root {
  --primary-color: #0b2a4a;
  --secondary-color: #1e5091;
  --accent-color: #c89b3c;
  --light-bg: #f8f9fa;
  --text-color: #333;
  --light-text: #fff;
  --section-padding: 80px 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.contact-info {
  display: flex;
  align-items: center;
}

.contact-info a {
  color: var(--primary-color);
  margin-left: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-info a:hover {
  color: var(--accent-color);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(11, 42, 74, 0.7), rgba(11, 42, 74, 0.7)),
    url("../images/hero-bg.jpg") no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  padding-top: 80px;
}

.hero-content {
  max-width: 650px;
  padding: 50px 0;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  margin-right: 30px;
  margin-bottom: 15px;
}

.hero-contact-item i {
  margin-right: 10px;
  font-size: 20px;
  color: var(--accent-color);
}

/* Section Styles */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  font-size: 36px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

/* About Section */
.about {
  padding: var(--section-padding);
  background-color: white;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-features {
  margin-top: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.about-feature i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px;
  margin-top: 5px;
}

.about-feature-text h4 {
  margin-bottom: 5px;
}

/* Introduction Section */
.introduction {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.feature-item {
  display: flex;
  align-items: center;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(200, 155, 60, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--accent-color);
  font-size: 20px;
}

/* Nature Section */
.nature {
  padding: var(--section-padding);
  background: linear-gradient(rgba(11, 42, 74, 0.6), rgba(11, 42, 74, 0.6)),
    url("../images/nature-bg.jpg") no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
}

.nature .section-title h2 {
  color: white;
}

.nature h4 {
  color: white;
}

.nature-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

.nature-feature {
  width: 160px;
  margin: 15px;
  text-align: center;
  color: white;
}

.nature-feature-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: white;
  transition: all 0.3s;
}

.nature-feature:hover .nature-feature-icon {
  background-color: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

/* Masterplan Section */
.masterplan {
  padding: var(--section-padding);
  background-color: white;
}

.masterplan-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.masterplan-image {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.masterplan-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.masterplan-text {
  flex: 1;
  min-width: 300px;
}

/* Connectivity Section */
.connectivity {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

.connectivity-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.connectivity-item {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.connectivity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.connectivity-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(200, 155, 60, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s;
}

.connectivity-item:hover .connectivity-icon {
  background-color: var(--accent-color);
  color: white;
}

.connectivity-text h4 {
  margin-bottom: 5px;
  font-size: 16px;
  transition: all 0.3s;
}

.connectivity-item:hover .connectivity-text h4 {
  color: var(--accent-color);
}

/* Amenities Section */
.amenities {
  padding: var(--section-padding);
  background-color: white;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.amenity-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 250px;
}

.amenity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.amenity-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.amenity-item:hover img {
  transform: scale(1.1);
}

.amenity-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
}

.amenity-content h3 {
  color: white;
  margin-bottom: 5px;
  font-size: 18px;
}

.amenity-content p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Infrastructure Section */
.infrastructure {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.infrastructure-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.infrastructure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.infrastructure-icon {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.infrastructure-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Benefits Section */
.benefits {
  padding: var(--section-padding);
  background-color: white;
}

.benefits-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-top: 50px;
}

.benefit-col {
  flex: 1;
  min-width: 300px;
  padding: 0 15px;
  margin-bottom: 30px;
}

.benefit-item {
  margin-bottom: 30px;
}

.benefit-item h3 {
  display: flex;
  align-items: center;
  font-size: 20px;
  margin-bottom: 15px;
}

.benefit-item h3 i {
  margin-right: 15px;
  color: var(--accent-color);
}

/* Awards Section */
.awards {
  padding: var(--section-padding);
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.awards .section-title h2 {
  color: white;
}

.awards-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

.award-item {
  width: 250px;
  margin: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}

.award-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.award-image {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.award-image img {
  max-width: 100%;
  max-height: 100%;
}

.award-title {
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.award-title h3 {
  color: white;
  font-size: 16px;
  margin-bottom: 0;
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
  background-color: var(--light-bg);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.contact-info-section {
  flex: 1;
  min-width: 300px;
  margin-bottom: 30px;
  padding-right: 40px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 20px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(200, 155, 60, 0.2);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-col h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-col p {
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.footer-links a i {
  margin-right: 10px;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-link:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

/* Popup Styles */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  width: 100%;
  max-width: 500px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: all 0.4s;
}

.popup.active .popup-content {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
  transition: all 0.3s;
  z-index: 10;
}

.popup-close:hover {
  color: var(--accent-color);
}

.popup-header {
  padding: 20px;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.popup-header h2 {
  color: white;
  margin-bottom: 0;
  font-size: 24px;
}

.popup-body {
  padding: 30px;
  text-align: center;
}

.popup-body p {
  margin-bottom: 20px;
}

.popup-image {
  margin: 20px 0;
}

.popup-image img {
  max-width: 100%;
  border-radius: 10px;
}

.popup-form {
  margin-top: 20px;
}

.popup-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 16px;
}

.popup-form input:focus {
  border-color: var(--accent-color);
  outline: none;
}

/* Media Queries */
@media screen and (max-width: 991px) {
  .container {
    padding: 0 30px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .contact-info a {
    margin-left: 0;
  }

  .about-text,
  .about-image {
    flex: 100%;
    padding-right: 0;
  }

  .about-image {
    margin-top: 30px;
  }

  .masterplan-image,
  .masterplan-text {
    flex: 100%;
    padding-right: 0;
  }

  .masterplan-text {
    margin-top: 30px;
  }

  .infrastructure-grid,
  .amenities-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media screen and (max-width: 767px) {
  :root {
    --section-padding: 60px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .infrastructure-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .amenities-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .hero-contact-item {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-info-section {
    margin-bottom: 40px;
    padding-right: 0;
  }
}

@media screen and (max-width: 576px) {
  .header-container {
    padding: 10px 0;
  }

  .logo img {
    height: 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .btn {
    padding: 10px 25px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .nature-feature {
    width: 140px;
    margin: 10px;
  }

  .nature-feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .footer-col {
    flex: 100%;
  }

  .popup-content {
    max-width: 90%;
  }
}

swiper-container {
  width: 100%;
  height: auto;
}

swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: auto !important; */
}

.award-item {
  width: 280px; /* adjust */
  text-align: center;
}

.slide-item h3 {
  position: relative;
  font-size: 16px;
  color: #253d4a;
  font-weight: 700;
  margin-bottom: 0px;
  text-transform: uppercase;
  padding-top: 10px;
}

.slide-item .designation {
  position: relative;
  font-size: 13px;
  color: #777;
  font-style: italic;
  font-family: "Bitter", serif;
  margin-bottom: 0px;
  padding-bottom: 20px;
  padding-top: 10px;
}

.image-box img {
  position: relative;
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.info-box {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  height: 80px;
  display: block;
  cursor: default;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid #000;
}

swiper-container::part(button-prev),
swiper-container::part(button-next),
.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}
