* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: #111;
  color: #fff;
  padding: 10px 0;
}
.top-bar .container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.call-btn {
  background: gold;
  padding: 8px 16px;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

/* ================= HERO SECTION ================= */
.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

/* Dark Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

/* ================= NAVBAR ================= */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}

.nav-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 18px 0;
}

/* 🔥 UD + Homflix LOGO (BIGGER) */
.nav-logo img {
  height: 80px;       /* BIG SIZE */
  width: auto;
}

/* Center Menu */
.nav-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 35px;
}

.nav-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.nav-menu ul li a.active {
  color: gold;
}

/* ================= HERO CONTENT ================= */
.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

/* Enquiry Button */
.enquiry-btn {
  padding: 14px 34px;
  background: gold;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.enquiry-btn:hover {
  background: #fff;
}

/* ================= HERO LOGOS ================= */
.hero-logos {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 6%;
  transform: translateY(-50%);
  z-index: 2;
}

/* 🔥 Brookside + RERA (CIRCLE BADGE STYLE) */
.hero-logo img {
  height: 110px;          /* Bigger */
  width: 110px;
  object-fit: contain;

  background: #ffffff;
  padding: 6px;
  border-radius: 50%;     /* 🔥 CIRCLE */

  box-shadow: 0 14px 38px rgba(0,0,0,0.45);
  transition: transform 0.3s ease;
}

.hero-logo img:hover {
  transform: scale(1.1);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav-container {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .nav-menu ul {
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero-logos {
    display: none;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .nav-logo img {
    height: 55px;
  }
}


/* brosher */
.brochure-grid-section{
  padding:90px 6%;
  background:#0b0b0b;
  color:#fff;
  text-align:center;
}

.brochure-title{
  font-size:38px;
  margin-bottom:8px;
}

.brochure-sub{
  color:#bbb;
  margin-bottom:60px;
}

.brochure-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:40px;
  max-width:1200px;
  margin:auto;
}

.brochure-item{
  background:#000;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,0.6);
  transform:translateY(40px) scale(0.95);
  opacity:0;
  animation:fadeUp 0.9s ease forwards;
}

/* stagger animation */
.brochure-item:nth-child(1){animation-delay:.1s}
.brochure-item:nth-child(2){animation-delay:.2s}
.brochure-item:nth-child(3){animation-delay:.3s}
.brochure-item:nth-child(4){animation-delay:.4s}
.brochure-item:nth-child(5){animation-delay:.5s}
.brochure-item:nth-child(6){animation-delay:.6s}
.brochure-item:nth-child(7){animation-delay:.7s}
.brochure-item:nth-child(8){animation-delay:.8s}
.brochure-item:nth-child(9){animation-delay:.9s}
.brochure-item:nth-child(10){animation-delay:1s}
.brochure-item:nth-child(11){animation-delay:1.1s}
.brochure-item:nth-child(12){animation-delay:1.2s}
.brochure-item:nth-child(13){animation-delay:1.3s}
.brochure-item:nth-child(14){animation-delay:1.4s}
.brochure-item:nth-child(15){animation-delay:1.5s}
.brochure-item:nth-child(16){animation-delay:1.6s}

.brochure-item img{
  width:100%;
  height:420px;       /* portrait feel */
  object-fit:cover;
  transition:transform .4s ease;
}

.brochure-item:hover img{
  transform:scale(1.08);
}
/* animation */
@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

/* mobile */
@media(max-width:768px){
  .brochure-title{font-size:28px;}
  .brochure-item img{height:360px;}
}


/* BROCHURE DOWNLOAD BUTTON */
.brochure-download {
  margin: 70px 0 30px;
  text-align: center;
}

.brochure-download a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 52px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  border-radius: 60px;

  background: linear-gradient(135deg, #ffd000, #ffb800);
  box-shadow:
    0 18px 40px rgba(255, 200, 0, 0.45),
    inset 0 -4px 10px rgba(0,0,0,0.15);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* SHINE EFFECT */
.brochure-download a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );
  transition: all 0.6s ease;
}

.brochure-download a:hover::before {
  left: 120%;
}

/* HOVER EFFECT */
.brochure-download a:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 30px 70px rgba(255, 200, 0, 0.65),
    inset 0 -4px 12px rgba(0,0,0,0.2);
}

/* ACTIVE CLICK */
.brochure-download a:active {
  transform: scale(0.96);
}

/* MOBILE */
@media (max-width: 600px) {
  .brochure-download a {
    padding: 15px 38px;
    font-size: 16px;
  }
}








/* footer baar */
/* ===== PREMIUM FOOTER ===== */
.footer {
  margin-top: 20px;
  position: relative;
  background: linear-gradient(135deg, #0a0f1f, #050814);
  color: #cfd6ff;
  padding: 80px 20px 0;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Overlay Glow */
.footer-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(80,120,255,0.15), transparent 40%),
    radial-gradient(circle at bottom right, rgba(0,255,200,0.12), transparent 45%);
  z-index: 0;
}

/* Container */
.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 50px;
}

/* Columns */
.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #4f7cff, #00ffd5);
}

/* Text */
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #b8c0ff;
}

/* Quick Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #b8c0ff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  padding-left: 14px;
  transition: all 0.3s ease;
}

.footer-col ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #00ffd5;
  opacity: 0;
  transform: translateX(-6px);
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 20px;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 rgba(0,255,213,0);
}

.footer-social a:hover {
  background: linear-gradient(135deg, #4f7cff, #00ffd5);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,255,213,0.4);
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 70px;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #9aa3ff;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Responsive */
@media (max-width: 600px) {
  .footer {
    padding-top: 60px;
  }
  .footer-container {
    gap: 35px;
  }
}
