* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0b0d17;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 16px 8%;
  background: #fcbf49;
  backdrop-filter: blur(12px);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo {
  position: absolute;
  left: 0;
}

.logo img {
  height: 42px;
}

nav {
  display: flex;
  gap: 36px;
  margin-right: 0;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: #0b0d17;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #0b0d17;
  transition: .3s;
}

nav a:hover {
  color: #0b0d17;
}

nav a:hover::after {
  width: 100%;
}

/* HERO CONTENT TEXT */
.hero-content h2 {
  font-size: 58px;
  /* 🔥 Heading size bada */
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #ffffff;
}

.hero-content h2 span {
  color: #d4af37;
  /* Gold premium touch */
}

/* Paragraph text */
.hero-content p {
  font-size: 18.5px;
  /* 🔥 Readable & premium */
  line-height: 1.9;
  /* Spacious & clean */
  color: #f1f1f1;
  max-width: 620px;
  /* Line length controlled */
}

/* HERO section (thoda aur breathing space) */
.hero {
  min-height: 100vh;
  background: url('images/city-sunset.jpg') center/cover no-repeat;
  padding: 160px 8% 100px;
  /* 🔥 Top padding increase */
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  /* Content & image gap bada */
}

.hero-text {
  font-weight: 600;
  /* bold but readable */
}

.highlight-text {
  color: #fcbf49;
  /* golden highlight */
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}



/* BUTTONS */
.btn {
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
}

.btn-main {
  background: #fcbf49;
  color: #000;
}

.btn-main:hover {
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 1px solid #fcbf49;
  color: #fcbf49;
}

.btn-outline:hover {
  background: #fcbf49;
  color: #000;
}

/* HERO IMAGE */
.hero-image {
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, #fcbf49, #ff8c00);
  filter: blur(60px);
  opacity: .4;
  z-index: -1;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}

/* //background image change */

/* clean code */

.section-divider {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

html,body {
  overflow-x: hidden;
}

/* RESPONSIVE TEXT SIMPLIFIED */
.section-points .point-text {
  font-size: clamp(14px, 2.5vw, 18px);
}

/* VIDEO RESPONSIVE FIX */
.video-box {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 56.25%;
  height: 0;
}


.section-divider img {
  width: 70%;
  border-radius: 24px;
  opacity: 0.95;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 12px;
}

/* Arrows */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  color: #fff;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.35s ease;
}

/* Hover Effect */
.prev:hover,
.next:hover {
  background: linear-gradient(135deg, #c59d5f, #b08a4b);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 25px rgba(197, 157, 95, 0.5);
}

/* Positioning */
.prev {
  left: 18px;
}

.next {
  right: 18px;
}

/* Mobile Friendly */
@media (max-width: 768px) {

  .prev,
  .next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}




/* SECTIONS */
.section {
  padding: 100px 8%;
  text-align: center;
}

.section h3 {
  font-size: 36px;
  margin-bottom: 18px;
}

.section p {
  max-width: 700px;
  margin: auto;
  color: #cfcfcf;
  line-height: 1.7;
}

.section.dark {
  background: #111327;
}

/* ============================= */
/* POINTS LIST */
/* ============================= */

.section-points {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.section-points li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
  line-height: 1.7;
}

.section-points .bullet {
  width: 14px;
  height: 14px;
  background-color: #facc15;
  /* golden bullet */
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.section-points .point-text {
  color: #f8fafc;
  font-size: 18px;
  display: block;
}

.section-points strong {
  color: #fde68a;
  font-weight: 600;
}

/* ============================= */
/* RESPONSIVE TEXT SIZES */
/* ============================= */

@media (max-width: 1024px) {
  .section-points .point-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .section-points {
    margin: 30px 0;
  }

  .section-points li {
    margin-bottom: 18px;
  }

  .section-points .point-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .section-points .point-text {
    font-size: 14px;
  }

  .section-points .bullet {
    width: 12px;
    height: 12px;
    margin-top: 6px;
  }
}

/* Youtube VIDEO BOX */
.video-box {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 56.25%;
  height: 0;
}


.video-box iframe,
.video-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-box img {
  cursor: pointer;
  object-fit: cover;
  z-index: 2;
}

.contact-section {
  padding: 60px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* LEFT */
.contact-info {
  flex: 1;
  padding: 40px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 30px;
  font-size: 15px;
  opacity: 0.9;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
}

.info-item i {
  margin-right: 15px;
  font-size: 18px;
  color: #fde68a;
}

.content-box {
  background: #2c5364;
  padding: 25px 30px;
  border-radius: 14px;
  text-align: center;
  max-width: 700px;
  /* optional */
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* optional premium look */
}

/* contact form */

.social-box {
  display: flex;
  gap: 15px;
}

.social {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social i {
  font-size: 20px;
  color: #333;
}

/* Hover */
.social.facebook:hover {
  background: #1877f2;
}

.social.instagram:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social.linkedin:hover {
  background: #0a66c2;
}

.social:hover i {
  color: #fff;
}


/* RIGHT */
.contact-form {
  flex: 1;
  padding: 40px;
}

.contact-form h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2c5364;
}

.contact-form button {
  background: #2c5364;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #203a43;
}

/* ================= POPUP FIX ================= */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== POPUP BOX ===== */
.popup-box {
  width: 95%;
  max-width: 1200px;
  max-height: 90vh;
  background: transparent;
  /* design same */
  position: relative;

  overflow-y: auto;
  overflow-x: hidden;

  -webkit-overflow-scrolling: touch;
  /* 🔥 smooth mobile scroll */
}

/* ===== CLOSE BUTTON ===== */
.popup-close {
  position: fixed;
  top: 16px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

/* ===== BODY SCROLL LOCK ===== */
body.popup-open {
  overflow: hidden;
  height: 100vh;
}

/* ===== SCROLLBAR HIDE ===== */
.popup-box::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.popup-box {
  scrollbar-width: none;
  /* Firefox */
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  .popup-box {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
    padding-bottom: 40px;
  }

  .popup-close {
    top: 12px;
    right: 14px;
    font-size: 28px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .popup-close {
    font-size: 26px;
  }
}

/* FOOTER */
.property-footer {
  background: #f8f9fb;
  color: #333;
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-box h3 {
  font-size: 26px;
  color: #1e3c72;
  margin-bottom: 15px;
}

.footer-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #222;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

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

.footer-box ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

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

.footer-box ul li a:hover {
  color: #1e3c72;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  background: #1e3c72;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #162c54;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #777;
}


/* RESPONSIVE */
@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  nav {
    gap: 20px;
  }
}

/* =====================================================
   ✅ SAFE RESPONSIVE OVERRIDES (NO DESIGN BREAK)
   ===================================================== */

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

/* ================= HEADER ================= */
@media (max-width: 768px) {
  header {
    padding: 12px 20px;
  }

  .header-inner {
    justify-content: space-between;
  }

  nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    font-size: 13px;
  }

  .logo img {
    height: 34px;
  }
}

/* ================= HERO SECTION ================= */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 130px 20px 80px;
    text-align: center;
  }

  .hero-content h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-image {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ================= SLIDER ================= */
@media (max-width: 768px) {
  .slider {
    max-width: 100%;
  }

  .prev,
  .next {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }
}

/* ================= VIDEO FIX (MOST IMPORTANT) ================= */
@media (max-width: 1024px) {
  .video-box {
    width: 100%;
    max-width: 100%;
  }
}

/* ================= SECTIONS ================= */
@media (max-width: 768px) {
  .section {
    padding: 70px 20px;
  }

  .section h3 {
    font-size: 26px;
  }

  .section p {
    font-size: 15px;
  }
}

/* ================= POINT LIST ================= */
@media (max-width: 768px) {
  .section-points .point-text {
    font-size: 15px;
  }
}

/* ================= CONTACT ================= */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 22px;
  }

  .social-box {
    justify-content: center;
  }
}

/* ================= CONTENT BOX ================= */
@media (max-width: 768px) {
  .content-box {
    margin: 40px 20px;
    padding: 22px;
  }

  .content-box h2 {
    font-size: 22px;
  }

  .content-box p {
    font-size: 14px;
  }
}

/* ================= FOOTER ================= */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
    gap: 25px;
  }
}