* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Jost", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header{position: sticky; top: 0;}
.hero-subtitle{font-size: 30px; font-weight: 700; color: #0a89c5;}

img {
  max-width: 100%;
  height: auto;
}

/* Global section spacing */
section {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  section {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  section {
    margin-bottom: 30px;
  }
}

/* Hero Section */
.hero-section {
  background: url("../images/home-img.jpg") center center/cover no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background zoom-in animation */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/home-img.jpg") center center/cover no-repeat;
  animation: zoomBg 40s ease-in-out forwards;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

@keyframes zoomBg {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}

.hero-section .navbar {
  justify-content: space-between;
  padding: 20px 50px;
  z-index: 10;
  background: transparent;
}

/* Hero Content Animations */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-top: 120px;
  color: #fff;
  animation: fadeIn 1s ease forwards;
}

/* Title Animation */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards 0.3s;
}

/* Subtitle Animation */
.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1cb2ff;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards 0.6s;
}

/* Location Animation */
.hero-location {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards 0.9s;
}

/* Know More Button (kept old styles) */
.btn-know-more {
  display: inline-block;
  background: #1cb2ff;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  text-transform: uppercase;
  transition: 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}
.btn-know-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-45deg);
}
.btn-know-more:hover::before {
  left: 200%;
  transition: left 0.7s ease;
}
.btn-know-more:hover {
  background: #fff;
  color: #1cb2ff;
  box-shadow: 0 8px 20px rgba(28, 178, 255, 0.5);
}

/* Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .btn-know-more {
    padding: 10px 28px;
    font-size: 16px;
  }
}

/* Amenities Section */
.amenities-section {
  background: #f9f9f9;
  margin-bottom: 0 !important; /* override global section margin */
  padding-bottom: 0 !important;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
}

.section-description {
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #555;
}

.amenity-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Videos Section */
.videos-section {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.amenities-section .videos-section {
  margin-bottom: 0 !important; /* no extra space below videos */
}

.landscape-video {
  margin-bottom: 40px;
}

.landscape-video video {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.portrait-videos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.portrait-video {
  width: 330px;
  height: 420px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
  .portrait-video {
    width: 200px;
    height: 360px;
  }
  .portrait-videos {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .portrait-videos {
    flex-direction: column;
    align-items: center;
    gap: 25px; /* vertical spacing between videos */
  }
  .portrait-video {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}

/* dtcp-rera content section */

.dtcp-rera-section {
  background: #f9f9f9;
}

.info-card {
  background: #fff;
  border: 2px solid #1cb2ff;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1cb2ff;
  margin-bottom: 1rem;
}

.section-text {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.7;
}

/* Highlighted Section */
.highlighted-section {
  background: #1cb2ff;
  color: #fff;
  padding: 3rem 1rem;
  border-radius: 14px;
}

.highlighted-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.highlighted-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: #e9f7ff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.6rem;
  }
  .section-text {
    font-size: 1.05rem;
  }
  .highlighted-title {
    font-size: 2rem;
  }
  .highlighted-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .info-card {
    padding: 1.5rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .section-text {
    font-size: 1rem;
  }
  .highlighted-title {
    font-size: 1.7rem;
  }
  .highlighted-subtitle {
    font-size: 1rem;
  }
}

/* Breadcrumb Section */
.breadcrumb-section {
  background: url("../images/home-img.jpg") center center/cover no-repeat;
  position: relative;
  min-height: 320px; /* slightly taller */
  display: flex;
}

.breadcrumb-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.breadcrumb-section .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.breadcrumb-section .breadcrumb-path a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-section .breadcrumb-path a:hover {
  color: #1cb2ff;
}

.breadcrumb-nav .nav-link {
  color: #fff;
  font-weight: 500;
  margin-left: 20px;
  transition: color 0.3s ease;
}
.breadcrumb-nav .nav-link:hover,
.breadcrumb-nav .nav-link.active {
  color: #1cb2ff;
}

/* Responsive height tweaks */
@media (max-width: 768px) {
  .breadcrumb-section {
    min-height: 240px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .breadcrumb-section {
    min-height: 200px;
    padding: 30px 0;
  }
}

/* Logo */
.breadcrumb-logo img {
  height: auto;
  max-height: 90px; /* bigger for desktop */
  width: auto;
  transition: all 0.3s ease-in-out;
}

/* Tablet */
@media (max-width: 992px) {
  .breadcrumb-logo img {
    max-height: 75px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .breadcrumb-logo img {
    max-height: 60px;
  }
}

/* About Section */
.about-section {
  background-color: #fff;
}

.about-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1cb2ff;
}

.about-section p.lead {
  font-size: 1.2rem;
  color: #333;
}

.about-section .card-box {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  height: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.about-section .card-box i {
  font-size: 2.5rem;
  color: #1cb2ff;
  margin-bottom: 15px;
  display: block;
}

.about-section .card-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.about-section .card-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Hover Effect */
.about-section .card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.about-section .card-box:hover i {
  color: #0a89c5; /* darker blue glow effect */
}

/* Responsive */
@media (max-width: 768px) {
  .about-section .section-title {
    font-size: 2rem;
  }
  .about-section p.lead {
    font-size: 1rem;
  }
  .about-section .card-box {
    padding: 25px 15px;
  }
  .about-section .card-box h4 {
    font-size: 1.2rem;
  }
  .about-section .card-box p {
    font-size: 0.9rem;
  }
}

/* Projects (All Page) */
.projects-section .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ✅ Fixed image height */
.projects-section .card-img-top {
  height: 220px; /* set same height for all images */
  width: 100%;
  object-fit: cover; /* crops and fits nicely */
}

.projects-section .card-body {
  padding: 1.5rem;
}

.projects-section .card-body h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1cb2ff;
  margin-bottom: 12px;
}

.projects-section .card-body p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Learn More Button */
.projects-section .card-body a {
  display: inline-block;
  background: #1cb2ff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 30px;
  text-transform: uppercase;
  transition: 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

.projects-section .card-body a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-45deg);
}

.projects-section .card-body a:hover::before {
  left: 200%;
  transition: left 0.7s ease;
}

.projects-section .card-body a:hover {
  background: #fff;
  color: #1cb2ff;
  box-shadow: 0 6px 15px rgba(28, 178, 255, 0.5);
}

/* Contact Section */
.contact-section {
  background: #fff;
  color: #1cb2ff;
  padding: 80px 0; /* more breathing room than py-5 */
}

.contact-section h2 {
  font-weight: 700;
  color: #000;
}

.contact-input {
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  background: transparent;
  padding: 10px 0;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-input:focus {
  border-bottom: 2px solid #1cb2ff;
  outline: none;
  box-shadow: none;
}

/* Button animation like Know More */
.contact-btn {
  background-color: transparent;
  color: #1cb2ff;
  border: 2px solid #1cb2ff;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #1cb2ff;
  color: #fff;
  transform: scale(1.05);
}

iframe {
  width: 100%;
  height: 300px;
  border: 5px solid #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0; /* slightly reduced for tablets/mobiles */
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 50px 0; /* compact but still spaced nicely */
  }
}

/* footer section */
.footer-section {
  background: #fff;
  color: #000;
}

.footer-link {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #1cb2ff;
}

.footer-social {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #000;
  transition: color 0.3s ease;
}

.footer-social:hover {
  color: #1cb2ff;
}

.footer-logo {
  max-height: 80px;
  width: auto;
}

#toast { visibility: hidden; min-width: 250px; background-color: #c0392b; color: #fff; text-align: center; border-radius: 8px; padding: 14px; position: fixed; top: 20px; right: 20px; z-index: 9999; font-size: 15px; box-shadow: 0px 4px 8px rgba(0,0,0,0.2); opacity: 0; transition: opacity 0.5s, top 0.5s;}
#toast.show { visibility: visible; opacity: 1; top: 40px;}