:root {
  --primary: #1a3a6c;
  --accent: #0d56a3;
  --dark: #1e1e1e;
  --light: #f8f9fa;
  --gray: #6c757d;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  background-color: rgb(10 10 10 / 95%);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgb(0 0 0 / 98%);
}

.navbar-brand img {
  max-height: 55px;
}

.nav-link {
  font-weight: 500;
  color: #ffffff !important;
  margin: 0 8px;
  position: relative;
  transition: color 0.3s;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #58be06;
  border-color: #57bd06;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(194, 154, 92, 0.3);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%), url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 180px 0 120px;
  position: relative;
}


.hero-content {
  max-width: 700px;
}

.hero-section h1 {
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: 45px;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 35px;
  opacity: 0.9;
}

.btn-outline-light {
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  margin-left: 15px;
  transition: all 0.3s;
}

.btn-outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Section Styling */
.section-padding {
  padding: 60px 0 0px;
  background: #f7f8f9;
}

.section-title {
  position: relative;
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--primary);
  font-size: 24px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #58bd06;
}

.section-title.center {
  text-align: center;
}

.section-title.center:after {
  left: 50%;
  transform: translateX(-50%);
}

/* About Section */
.about-section {
  background-color: var(--light);
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  text-align: center;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(194, 154, 92, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--accent);
}

/* Highlights Section */
.highlight-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: transform 0.3s;
  background: white;
}

.highlight-card:hover {
  transform: translateY(-10px);
}

.highlight-img {
  height: 250px;
  overflow: hidden;
}

.highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.highlight-content {
  padding: 25px;
}

/* Amenities Section */
.amenities-section {
  background: linear-gradient(135deg, rgba(26, 58, 108, 0.03) 0%, rgba(194, 154, 92, 0.03) 100%);
}

.amenity-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: all 0.3s;
  margin-bottom: 20px;
  background: white;
}

.amenity-item:hover {
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.amenity-icon {
  width: 70px;
  height: 70px;
  background: rgba(194, 154, 92, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.amenity-icon i {
  font-size: 1.8rem;
  color: var(--accent);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--light);
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  height: 300px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
 
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 58, 108, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

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

/* Location Section */
.location-section {
  position: relative;
}

.location-map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.location-info {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0f2547 100%);
  color: white;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-control {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(194, 154, 92, 0.25);
}

/* Footer */
footer {
  background-color: #0f172a;
  color: white;
  padding: 60px 0 10px;
}

.footer-logo {
  max-height: 50px;
  margin-bottom: 20px;
}

.footer-links h5 {
  color: var(--accent);
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links ul li a {
  color: #b0b7c3;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--accent);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: var(--accent);
  transform: translateY(-5px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  margin-top: 10px;
  text-align: center;
  color: #8a94a6;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: 1000;
}

.back-to-top.active {
  opacity: 1;
}

.back-to-top:hover {
  background: #a8824d;
  transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-section {
    padding: 150px 0 100px;
  }

  .section-padding {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

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

  .btn-primary,
  .btn-outline-light {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  .section-padding {
    padding: 60px 0 0;
  }
}

.about-img img {
  width: 100%;
  border-radius: 20px;
}

.container-fluid {
  padding-left: 25px;
  padding-right: 25px;
}

.text-colo {
  color: #0d56a3;
  font-size: 35px;
}

.card-title.new {
  color: #58be06;
  font-size: 24px;
}

.list-unstyled li {
  display: flex;
  align-items: center;
  /* icon aur text ek line me aa jayenge */
  gap: 8px;
  /* thoda space icon aur text ke beech */
  line-height: 1.6;
}

.list-unstyled i {
  color: #007bff;
  /* text-primary color jaisa */
  font-size: 16px;
  flex-shrink: 0;
  /* icon compress nahi hoga */
  margin-top: 2px;
  /* optional - thoda vertical adjust karne ke liye */
}

.hero-form {
  background: rgb(0 0 0 / 99%);
  padding: 30px;
  border-radius: 10px;
  flex: 1 1 40%;
  backdrop-filter: blur(10px);
}

.hero-form h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #fff;
  text-align: center;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-form input {
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  outline: none;
}

.hero-form button {
  padding: 12px;
  border: none;
  border-radius: 5px;
  background-color: #0d56a3;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.hero-form button:hover {
  background-color: #58bd06;
}

.from-btn {
  display: flex;
  justify-content: center;
}

/* Button Style */
.open-modal-btn {
  background: #1a3a6c;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.open-modal-btn:hover {
  background: #0f2b4d;
}

/* Modal Background */
.modal {
  display: none;
  /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal Box */
.modal-content {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  width: 800px;
  max-width: 95%;
  animation: fadeIn 0.3s ease;
}

/* Left side (Image) */
.modal-left {
  flex: 1;
}

.modal-left img {
  width: 100%;
  height: 360px;
  object-fit: fill;
}

/* Right side (Form) */
.modal-right {
  flex: 1;
  padding: 30px;
  position: relative;
}

.modal-right h2 {
  margin-bottom: 20px;
  color: #1a3a6c;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 40px;
  cursor: pointer;
  color: #fff;
  background: #1a3a6c;
  width: 40px;
  display: flex;
  justify-content: center;
  border-radius: 30px;
  height: 40px;
  line-height: 40px;
}

.close-btn:hover {
  color: #fff;
}

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

.modal-right input,
.modal-right textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 15px;
}

.modal-right button {
  background: #1a3a6c;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.modal-right button:hover {
  background: #0f2b4d;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  .modal-left img {
    height: 200px;
  }
}

.foter-cten {
  text-align: center;
}

.floating-icons {
  position: fixed;
  top: 75%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-icons a {
  background: #25d366;
  color: #fff;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.floating-icons a {
  background: #25d366;
  color: #fff;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.floating-icons a.phone {
  background: #007bff;
}

.hi-img img {
  height: 417px;
  width: 100%;
}
  table {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid #d4b068;
    }

    th, td {
      text-align: center;
      padding: 10px;
      border: 1px solid #0d56a3;
      font-size: 15px;
    }

    th {
      background-color: #fff;
      font-weight: 600;
    }

    td {
      color: #333;
    }

    /* Download Button */
    .download-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #0d56a3;
      color: #fff;
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

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

    .download-btn:hover {
      background-color: #25d366;
    }

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

    @media (max-width: 768px) {
      table, th, td {
        font-size: 13px;
      }
      .download-btn {
        padding: 8px 15px;
        font-size: 13px;
      }
      .desktop-baneer {
    display: none !important;
     }
     .phone-baneer {
    display: block !important;
     }
     .phone-form{
       display: none !important;
       padding-top: 20px;
        padding-bottom: 20px;
     }
    }
    .phone-form{
       display: none;
     }
.phone-baneer {
    display: none;
     }
    .desktop-baneer {
    display: block;
}
    .hero-bnner img {
    width: 100%;
    height: 100%;
    padding-top: 75px;
}
p.text-p {
    font-size: 20px;
}
.gallery-item.new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    -webkit-filter: blur(6px);
}
.navbar-toggler {
  
    color: rgb(255 255 255);
    background-color: #ffffff;
    
}

@media only screen and (max-width: 991px) {
    .mob-action {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #46a53d;
        color: var(--colorBtn);
        box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.4);
        z-index: 1030;
    }
}
@media only screen and (max-width: 991px) {
    .mob-action .nav-item:not(:last-child) {
        border-right: 1px solid #fff;
        color: white;
        font-size: 15px;
    }
}
@media only screen and (max-width: 991px) {
    .mob-action .nav-item {
        padding: 2px 0;
        text-align: center;
        font-size: 14px;
        width: 16%;
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
}
@media only screen and (max-width: 991px) {
    .mi.action-icon {
        font-size: 18px;
        color: #fff;
    }
}
a.whats {
    color: white;
    font-size: 15px;
    text-decoration: none;
}
i.fab.fa-whatsapp.new {
    color: white;
    font-size: 18px;
}
.open-modal-section{
    position: fixed;
  top: 34%;
  right: 0px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right bottom 0px;
  background-color: #5171de;
  color: #fbfbfb;
  padding: 12px 25px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px 8px 0px 0px;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px;
  transition: 0.3s;
  letter-spacing: 1px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    width: 100%;
    min-width: 600px; /* Scroll force for mobile */
}
