@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');
/* ==========================
   PAGE LOADER
========================== */

:root {
  --bg: #16253d;
  --card: #24324780;
  --border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, .65);
  --accent: #d8b26a;
}

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

body {
  background: #f5f5f5;
}

#nprogress .bar {
  background: #0f3b87 !important;
  height: 4px !important;
  z-index: 999999 !important;
}

#nprogress .peg {
  box-shadow: 0 0 12px #0f3b87 !important;
}

#nprogress .spinner {
  display: none !important;
}

/* =========================
   PAGE LOADER
========================= */

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 999999;
  background: transparent;
}

.loader-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #0f3b87, #2563eb);
  box-shadow: 0 0 15px rgba(37, 99, 235, .6);
}

/* ===========================
   NAVBAR
=========================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 30px;
  /* Top & Bottom padding remove */
  height: 80px;
  /* Fixed navbar height */

  /* Dark Transparent Background */
  background: rgba(15, 25, 45, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: all .4s ease;
}

/* Scroll ke baad */

.navbar.scrolled {
  background: #f8f3e8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* ===========================
   LOGO
=========================== */

.logo {
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  margin-left: -100px;
  margin: 0;
  padding: 0;

  height: 80px;
  /* Navbar height */
}

.logo-img {
  height: 80px;
  /* Navbar jitni height */
  width: auto;
  display: block;

  margin: 0;
  padding: 0;

  object-fit: cover;
  transition: .3s ease;
}

.logo-img:hover {
  transform: scale(1.03);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #0f4c81;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
}

.logo strong {
  color: #d6b75d;
  font-weight: 600;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: .3s;
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: #1f2937;
}

.nav-links a:hover {
  color: #d6b75d;
}

/* Underline Animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #d6b75d;
  transition: .35s;
}

.nav-links a:hover {
  color: #d6b75d;
}

.nav-links a:hover::after {
  width: 100%;
}

nav ul {
  list-style: none;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s ease;
  z-index: 999;
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #1f2937;
  text-decoration: none;
  transition: .3s;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #0f3b87;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, .12);
  color: #fff;

  transition: .35s;
}

.navbar.scrolled .social-icons a {
  background: #f2ede3;
  color: #1f2937;
}

.social-icons a:hover {
  background: #d6b75d;
  color: #fff;
}

.call-section {
  display: flex;
  align-items: center;
  gap: 8px;

  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .2);

  color: #fff;
  transition: .35s;
}

.navbar.scrolled .call-section {
  color: #1f2937;
  border-left: 1px solid #ddd;
}

.btn-start {
  background: #d6b75d;
  color: #1f2d46;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 600;
  transition: .3s;
}

.btn-start:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: #1f2d46;
  padding: 20px;
  gap: 20px;
}

@media(max-width:1200px) {

  .nav-links,
  .social-icons,
  .call-section,
  .btn-start {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    padding: 15px 20px;
  }
}

/* HERO SECTION */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;

  background: url("images/villa.jpg") center center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}

/* Overlay */

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 28, 45, .45);
  z-index: 1;
}

/* Vertical Lines */

.line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, .15);
  z-index: 2;
}

.line1 {
  left: 25%;
}

.line2 {
  left: 50%;
}

.line3 {
  left: 75%;
}

/* Hero Content */

.hero-content {
  position: relative;
  z-index: 10;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* Top Text */

.top-text {
  color: #fff;
  font-size: 40px;
  letter-spacing: 10px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

/* Main Heading */

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;

  font-size: 1000px;
  font-weight: bolder;
  line-height: 1;

  margin-bottom: 25px;
}

/* Gold Divider */

.gold-divider {
  width: 220px;
  height: 2px;
  background: #b99747;
  margin-bottom: 25px;
}

/* Tagline */

.hero-content h4 {
  color: #fff;

  font-size: 20px;
  letter-spacing: 4px;

  font-family: Arial, sans-serif;
  font-weight: 400;

  margin-bottom: 10px;
}

/* Scroll */

.scroll-text {
  color: #fff;
  letter-spacing: 4px;
  font-size: 13px;
  font-family: Arial, sans-serif;
}

/* Bottom Left Corner */

.corner-left {
  position: absolute;

  left: 30px;
  bottom: 30px;

  width: 60px;
  height: 60px;

  border-left: 2px solid rgba(255, 255, 255, .5);
  border-bottom: 2px solid rgba(255, 255, 255, .5);

  z-index: 5;
}

/* Bottom Right Corner */

.corner-right {
  position: absolute;

  right: 30px;
  bottom: 30px;

  width: 60px;
  height: 60px;

  border-right: 2px solid rgba(255, 255, 255, .5);
  border-bottom: 2px solid rgba(255, 255, 255, .5);

  z-index: 5;
}

/* Gold Decorative Dots */

.hero::before {
  content: "";

  position: absolute;

  top: 30px;
  left: 17%;

  width: 4px;
  height: 4px;

  background: #b99747;
  border-radius: 50%;

  z-index: 5;
}

.hero::after {
  content: "";

  position: absolute;

  top: 75px;
  right: 18%;

  width: 4px;
  height: 4px;

  background: #b99747;
  border-radius: 50%;

  z-index: 5;
}

/* Tablet */

@media(max-width:992px) {

  .hero-content h1 {
    font-size: 80px;
  }

  .top-text {
    font-size: 16px;
    letter-spacing: 5px;
  }

  .hero-content h4 {
    font-size: 14px;
    letter-spacing: 2px;
  }
}

/* Mobile */

@media(max-width:768px) {

  .hero-content h1 {
    font-size: 52px;
  }

  .gold-divider {
    width: 120px;
  }

  .line1,
  .line3 {
    display: none;
  }

  .top-text {
    font-size: 14px;
  }

  .hero-content h4 {
    font-size: 12px;
  }
}

.about-section {
  padding: 80px 80px;
  background: #f5f5f5;
}

/* Container */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT IMAGE */
.about-image {
  width: 45%;
}

.about-image img {
  width: 100%;
  height: 520px;
  /* 👈 FIXED HEIGHT */
  object-fit: cover;
  /* 👈 NO DISTORTION */
  object-position: top;
  /* 👈 FACE SAFE */
  border-radius: 5px;
}

/* RIGHT CONTENT */
.about-content {
  width: 50%;
}

/* Small Heading */
.about-content h5 {
  font-size: 13px;
  letter-spacing: 3px;
  color: #777;
  margin-bottom: 15px;
}

/* Main Heading */
.about-content h2 {
  font-size: 42px;
  color: #caa75e;
  margin-bottom: 25px;
  font-weight: 500;
  line-height: 1.2;
}

/* Paragraph */
.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

/* Button */
.about-content button {
  padding: 12px 30px;
  border: 1px solid #caa75e;
  background: transparent;
  color: #caa75e;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 14px;
  letter-spacing: 1px;
}

.about-content button:hover {
  background: #caa75e;
  color: #fff;
}

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

  .about-image,
  .about-content {
    width: 100%;
  }

  .about-image img {
    height: 400px;
  }

  .about-content h2 {
    font-size: 30px;
  }
}

.why-choose-us1 {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  background: linear-gradient(180deg,
      #182741 0%,
      #1d2d47 50%,
      #243652 100%);
}

/* glow effects */
.why-choose-us1::before,
.why-choose-us1::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .25;
}

.why-choose-us1::before {
  left: -100px;
  bottom: -120px;
  background: #5c7fb3;
}

.why-choose-us1::after {
  right: -100px;
  bottom: -120px;
  background: #6e87c8;
}

.container1 {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.badges {
  display: block;
  width: max-content;
  margin: 0 auto 20px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: #d9d9d9;
  font-size: 12px;
  background: rgba(255, 255, 255, .03);
}

.section-title1 {
  text-align: center;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
}

.section-title1 span {
  color: var(--accent);
}

.section-subtitle1 {
  text-align: center;
  color: rgba(255, 255, 255, .65);
  margin-top: 12px;
  margin-bottom: 60px;
  font-size: 15px;
}

.features-grid1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card1 {
  position: relative;
  padding: 28px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  min-height: 190px;
  transition: .3s ease;
}

.feature-card1:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .18);
}

.number1 {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 42px;
  font-weight: 700;
  color: rgba(255, 255, 255, .05);
}

.icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 18px;
  font-size: 14px;
}

.green1 {
  background: #14b8a6;
}

.blue1 {
  background: #1d4ed8;
}

.orange1 {
  background: #f59e0b;
}

.purple1 {
  background: #4f6fff;
}

.feature-card1 h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-card1 p {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width:992px) {
  .features-grid1 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title1 {
    font-size: 48px;
  }
}

@media (max-width:576px) {
  .features-grid1 {
    grid-template-columns: 1fr;
  }

  .section-title1 {
    font-size: 38px;
  }
}

/* ===========================
   MAIN SECTION
=========================== */

.premium-projects {
  padding: 50px 20px;
  background: #faf8f4;
}

.premium-projects .container {
  max-width: 1140px;
  margin: 0 auto;
}


/* ===========================
   SECTION HEADER
=========================== */

.section-header {
  text-align: center;
  margin-bottom: 25px;
}

.section-badge {
  display: inline-block;

  padding: 7px 16px;

  border-radius: 50px;

  background: #eef4ff;

  color: #1d4ed8;

  font-size: 30px;

  font-weight: 600;

  margin-bottom: 8px;
}

.section-title {
  font-size: 60px;

  font-family: "Playfair Display", serif;

  font-weight: 500;

  color: #1e293b;

  margin: 0 0 8px;

  line-height: 1.1;
}

.section-title span {
  color: #1e3a8a;
}

.section-subtitle {
  max-width: 540px;

  margin: 0 auto;

  color: #64748b;

  font-size: 15px;

  line-height: 1.5;
}


/* ===========================
   FILTER BAR
=========================== */

.filter-bar {
  margin-top: 20px;

  margin-bottom: 30px;

  background: #f5f0e8;

  border: 1px solid #ebe5d8;

  border-radius: 14px;

  padding: 12px 18px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  flex-wrap: wrap;

  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.03);
}

.filter-left,
.project-count {
  font-size: 13px;

  color: #64748b;

  white-space: nowrap;
}

.filter-left strong {
  color: #334155;
}

.project-count {
  font-weight: 600;
}

.project-count span {
  color: #1e40af;

  font-size: 20px;

  font-weight: 700;
}


/* ===========================
   FILTER CONTROLS
=========================== */

.filter-controls {
  display: flex;

  align-items: center;

  gap: 12px;

  flex: 1;

  flex-wrap: wrap;
}

.filter-controls select {
  min-width: 170px;

  height: 42px;

  padding: 0 14px;

  border: 1px solid #e2e8f0;

  border-radius: 10px;

  background: #fff;

  color: #334155;

  font-size: 14px;

  outline: none;

  cursor: pointer;

  transition: 0.3s;
}

.filter-controls select:hover,
.filter-controls select:focus {
  border-color: #1e40af;

  box-shadow:
    0 0 0 3px rgba(30, 64, 175, 0.08);
}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.projects-slider-wrapper {
  position: relative;

  width: 100%;

  padding: 0 45px;
}


/* =========================================================
   SLIDER VIEWPORT
========================================================= */

.projects-slider-viewport {
  width: 100%;

  overflow: hidden;
}


/* =========================================================
   SLIDER TRACK
========================================================= */

.projects-grid1 {
  display: flex;

  gap: 24px;

  width: 100%;

  transition:
    transform 0.55s cubic-bezier(0.4,
      0,
      0.2,
      1);
}


/* =========================================================
   PROJECT CARD
========================================================= */

.project-card1 {
  flex: 0 0 calc((100% - 48px) / 3);

  min-width: 0;

  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  border: 1px solid #ececec;

  box-shadow:
    0 8px 24px rgba(15,
      23,
      42,
      0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.project-card1:hover {
  transform: translateY(-6px);

  box-shadow:
    0 14px 35px rgba(15,
      23,
      42,
      0.12);
}


/* =========================================================
   PROJECT IMAGE
========================================================= */

.project-image1 {
  position: relative;

  width: 100%;

  height: 220px;

  overflow: hidden;

  background: #e5e7eb;
}

.project-image1 img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.5s ease;
}

.project-card1:hover .project-image1 img {
  transform: scale(1.05);
}


/* =========================================================
   BADGES
========================================================= */

.status-badge1 {
  position: absolute;

  top: 12px;

  left: 12px;

  z-index: 2;

  background: #1e40af;

  color: #fff;

  font-size: 10px;

  font-weight: 600;

  padding: 6px 12px;

  border-radius: 30px;
}

.type-badge1 {
  position: absolute;

  top: 12px;

  right: 12px;

  z-index: 2;

  background: #fff;

  color: #334155;

  font-size: 10px;

  font-weight: 600;

  padding: 6px 12px;

  border-radius: 30px;
}


/* =========================================================
   PROJECT CONTENT
========================================================= */

.project-content1 {
  padding: 18px;
}

.project-title1 {
  font-size: 22px;

  font-family:
    "Playfair Display",
    serif;

  color: #1e293b;

  margin: 0 0 8px;

  line-height: 1.25;
}

.project-location1 {
  font-size: 13px;

  color: #64748b;

  margin: 0 0 16px;

  line-height: 1.5;

  min-height: 40px;
}


/* =========================================================
   PROJECT INFO
========================================================= */

.project-info1 {
  display: flex;

  flex-direction: column;

  gap: 7px;

  margin-bottom: 18px;

  font-size: 12px;

  color: #475569;
}

.project-info1 span:first-child {
  color: #1e40af;

  font-weight: 600;
}


/* =========================================================
   PROJECT FOOTER
========================================================= */

.project-footer1 {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.project-footer1 a {
  text-decoration: none;

  color: #1e40af;

  font-size: 13px;

  font-weight: 600;

  transition: 0.3s;
}

.project-footer1 a:hover {
  color: #1e3a8a;
}

.arrow-btn1 {
  width: 36px;

  height: 36px;

  border: none;

  border-radius: 10px;

  background: #f1f5f9;

  color: #334155;

  cursor: pointer;

  transition: 0.3s;

  font-size: 16px;
}

.arrow-btn1:hover {
  background: #1e40af;

  color: #fff;
}


/* =========================================================
   SLIDER NAVIGATION
========================================================= */

.project-nav {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

  width: 40px;

  height: 40px;

  border: none;

  border-radius: 50%;

  background: #fff;

  color: #1e40af;

  font-size: 28px;

  line-height: 1;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  box-shadow:
    0 5px 20px rgba(0,
      0,
      0,
      0.15);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.project-nav:hover {
  background: #1e40af;

  color: #fff;

  transform:
    translateY(-50%) scale(1.05);
}

.project-nav:disabled {
  opacity: 0.35;

  cursor: not-allowed;

  background: #f1f5f9;

  color: #94a3b8;
}

.prev-project {
  left: 0;
}

.next-project {
  right: 0;
}


/* =========================================================
   SLIDER DOTS
========================================================= */

.project-slider-dots {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  margin-top: 22px;
}

.project-dot {
  width: 8px;

  height: 8px;

  padding: 0;

  border: none;

  border-radius: 50%;

  background: #cbd5e1;

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.project-dot.active {
  width: 24px;

  border-radius: 10px;

  background: #1e40af;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

  .section-title {
    font-size: 48px;
  }

  .filter-bar {
    justify-content: center;
  }

  .filter-controls {
    justify-content: center;
  }

  .project-card1 {
    flex: 0 0 calc((100% - 24px) / 2);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .premium-projects {
    padding: 45px 15px;
  }

  .section-badge {
    font-size: 22px;
  }

  .section-title {
    font-size: 38px;
  }

  .section-subtitle {
    font-size: 14px;
  }


  .filter-bar {
    flex-direction: column;

    align-items: stretch;

    gap: 15px;
  }

  .filter-left {
    text-align: center;
  }


  .filter-controls {
    flex-direction: column;

    width: 100%;

    gap: 10px;
  }

  .filter-controls select {
    width: 100%;

    min-width: 100%;
  }


  .project-count {
    text-align: center;
  }


  .projects-slider-wrapper {
    padding: 0 38px;
  }


  .project-card1 {
    flex: 0 0 100%;
  }


  .project-image1 {
    height: 230px;
  }


  .project-nav {
    width: 34px;

    height: 34px;

    font-size: 24px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .premium-projects {
    padding: 35px 12px;
  }

  .section-badge {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .projects-slider-wrapper {
    padding: 0 34px;
  }

  .project-image1 {
    height: 210px;
  }

  .project-content1 {
    padding: 16px;
  }

}

/* ===========================
   STATS SECTION
=========================== */

.stats-section {
  padding: 40px 20px 30px;
  background: #faf9f6;
}

.stats-section .container {
  max-width: 1150px;
  margin: auto;
}

/* Header */

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  background: #eef2ff;
  color: #0f3b87;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 58px;
  color: #1f2937;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 10px;
}

.section-title span {
  color: #0f3b87;
}

.section-subtitle {
  color: #6b7280;
  font-size: 16px;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* Grid */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */

.stat-card {

  position: relative;
  overflow: hidden;
  border: 1px solid #ececec;
  background: #f5f2ea;
  border-radius: 22px;
  padding: 28px;

  min-height: 180px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .05);

  transition: .45s;

  cursor: pointer;

}

.stat-card::before {

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 5px;

  height: 0;

  background: #0f3b87;

  transition: .45s;

}

/* Bottom Line */
.stat-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background: #ee1109;
  transition: .45s ease;
}

.stat-card:hover::before {

  height: 100%;

}

.stat-card:hover::after {
  width: 100%;
}

.stat-card:hover {

  transform: translateY(-12px);

  background: #fff;

  box-shadow: 0 22px 45px rgba(0, 0, 0, .12);

}

/* Icons */

.icon-box {

  width: 58px;
  height: 58px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 24px;

  margin-bottom: 22px;

  transition: .4s;

}

.stat-card:hover .icon-box {

  transform: scale(1.18) rotate(10deg);

}

.blue {
  background: #103c88;
}

.orange {
  background: #ff8a08;
}

.pink {
  background: #f04387;
}

/* Numbers */

.counter {

  font-family: "Playfair Display", serif;

  font-size: 50px;

  color: #102a54;

  transition: .3s;

}

.stat-card:hover .counter {

  color: #0f3b87;

  transform: scale(1.08);

}

.stat-card p {

  color: #6b7280;

  font-size: 18px;

  margin-top: 8px;

}

/* Responsive */

@media(max-width:992px) {

  .stats-grid {

    grid-template-columns: 1fr;

  }

  .section-title {

    font-size: 44px;

  }

}

.journey-section {
  padding: 30px 5%;
  margin-top: -30px;
  padding-bottom: 20px;
  margin-bottom: 0;
}

.container {
  max-width: 1400px;
  margin: auto;
}

/* Heading */
.heading {
  text-align: center;
  margin-bottom: 15px;
}

.heading h2 {
  font-size: 54px;
  color: #1f2937;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1.05;
}

.heading h2 span {
  color: #0b3b91;
}

.heading p {
  font-family: Arial, sans-serif;
  color: #6b7280;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Journey */
.journey-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.step-item {
  width: 180px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #0b3b91;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.step-card {
  background: #faf8f1;
  border-radius: 20px;
  padding: 25px 20px;
  min-height: 240px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, .08);
}

.icon-box {
  width: 55px;
  height: 55px;
  background: #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.icon-box i {
  color: #0b3b91;
  font-size: 24px;
}

.step-card h3 {
  font-size: 20px;
  color: #1f2937;
  margin-bottom: 10px;
  font-weight: 500;
}

.step-card p {
  font-family: Arial, sans-serif;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

.arrow {
  color: #94a3b8;
  font-size: 26px;
  margin-top: 15px;
  font-weight: 600;
}

/* Responsive */
@media(max-width:1200px) {

  .journey-wrapper {
    gap: 25px;
  }

  .arrow {
    display: none;
  }

  .step-item {
    width: 280px;
  }

  .heading h2 {
    font-size: 48px;
  }
}

@media(max-width:768px) {

  .journey-section {
    padding: 40px 20px;
  }

  .heading {
    margin-bottom: 25px;
  }

  .heading h2 {
    font-size: 38px;
  }

  .heading p {
    font-size: 16px;
  }

  .step-item {
    width: 100%;
    max-width: 350px;
  }
}

/* ==========================
   BLOG SECTION
========================== */

.blog-section {
  padding: 0 20px 40px;
  margin-top: 0;
  background: #faf8f4;
  padding-bottom: 20px;
  margin-bottom: 0;
}

.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================
   HEADER
========================== */

.blog-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 0 25px;
  padding: 0;
}

.blog-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  background: #eef2ff;
  color: #1e40af;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 8px;
}

.blog-title {
  font-family: "Playfair Display", serif;
  font-size: 58px;
  color: #1e293b;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 10px;
}

.view-all {
  margin: 0;
  text-decoration: none;
  color: #1e40af;
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
}

.view-all:hover {
  color: #0b3b91;
}

/* ==========================
   BLOG GRID
========================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
  transition: .3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .4s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  color: #111827;
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.4;
  color: #1e293b;
  margin-bottom: 12px;
}

.blog-content p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-content a {
  text-decoration: none;
  color: #1e40af;
  font-weight: 600;
  font-size: 13px;
}

.blog-content a:hover {
  color: #0b3b91;
}

/* View All Button */

.blog-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: #0f3b87;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all .3s ease;
  box-shadow: 0 10px 25px rgba(15, 59, 135, .18);
}

.blog-btn span {
  transition: .3s;
}

.blog-btn:hover {
  background: #082b72;
  transform: translateY(-3px);
}

.blog-btn:hover span {
  transform: translateX(5px);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:992px) {

  .blog-section {
    padding: 5px 20px 40px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-title {
    font-size: 46px;
  }

}

@media (max-width:768px) {

  .blog-section {
    padding: 0 15px 35px;
  }

  .blog-header {
    margin-bottom: 20px;
  }

  .blog-title {
    font-size: 36px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .view-all {
    margin-top: 5px;
  }

}

/* ================= CONTACT SECTION ================= */

.custom-contact-section {
  width: 100%;
  background: #faf9f6;
  padding: 15px 0 50px;
}

/* HEADER */

.custom-contact-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 28px;
}

.custom-contact-badge {
  display: inline-block;
  font-size: 30px;
  color: #0b3b82;
  font-weight: 600;
  margin-bottom: 5px;
}

.custom-contact-title {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1.1;
  font-weight: 400;
  color: #202b3d;
}

.custom-contact-title span {
  color: #17458d;
}

.custom-contact-description {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: #55709a;
}

/* MAIN CONTAINER */

.custom-contact-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: start;
}

/* LEFT SIDE */

.custom-contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CALL / EMAIL */

.custom-info-box {
  min-height: 95px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.custom-info-icon,
.custom-visit-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 12px;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.custom-info-details span {
  display: block;
  font-size: 13px;
  color: #6680b5;
  margin-bottom: 7px;
}

.custom-info-details h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: #082f70;
}

/* ================= VISIT BOX ================= */

.custom-visit-box {
  grid-column: 1 / -1;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.custom-visit-content {
  flex: 1;
  min-width: 0;
}

/* VISIT US + ADDRESS SAME ROW */

.custom-visit-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.custom-visit-title {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  color: #6680b5;
  white-space: nowrap;
  line-height: 1.7;
}

.custom-address {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  color: #082f70;
  line-height: 1.7;
}

/* GOOGLE LOCATION */

.custom-google-map {
  width: 100%;
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e1e5ec;
}

.custom-google-map iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
}

/* ================= FORM ================= */

.custom-contact-form-wrapper {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.custom-form-badge {
  position: absolute;
  top: -14px;
  left: 25px;
  background: #0b357d;
  color: #fff;
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.custom-form-group {
  margin-bottom: 20px;
}

.custom-form-group label {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  color: #082f70;
}

.custom-form-group input,
.custom-form-group select {
  width: 100%;
  height: 51px;
  padding: 0 15px;
  border: 1px solid #dce1e9;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  outline: none;
}

.custom-form-group input:focus,
.custom-form-group select:focus {
  border-color: #17458d;
}

.custom-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.custom-submit-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 10px;
  background: #0b357d;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.custom-submit-btn:hover {
  background: #092c69;
}

.custom-privacy-text {
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  color: #7a8799;
  margin: 14px 0 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .custom-contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .custom-contact-title {
    font-size: 45px;
  }
}

@media (max-width: 650px) {
  .custom-contact-info-grid {
    grid-template-columns: 1fr;
  }

  .custom-visit-box {
    grid-column: auto;
  }

  .custom-visit-row {
    flex-direction: column;
    gap: 4px;
  }

  .custom-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .custom-contact-title {
    font-size: 38px;
  }

  .custom-contact-description {
    font-size: 14px;
    padding: 0 15px;
  }

  .custom-contact-form-wrapper {
    padding: 25px 20px;
  }
}

/* ================= FOOTER ================= */

.footer {
  width: 100%;
  background: #172a47;
  color: #ffffff;
  padding: 70px 6% 25px;
}

.footer-container {
  max-width: 1250px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.25fr 1.25fr 1fr;
  gap: 55px;

  align-items: start;
}


/* ================= LOGO SECTION ================= */

.footer-brand img {
  width: 220px;
  height: auto;
  display: block;
  margin-bottom: 22px;
}

.footer-description {
  max-width: 500px;

  font-size: 16px;
  line-height: 1.8;

  color: #f1f3f7;
}


/* ================= CONTACT SECTION ================= */

.footer-contact {
  padding-top: 2px;
}

.contact-item {
  display: flex;
  align-items: flex-start;

  gap: 15px;

  margin-bottom: 18px;
}

.contact-icon {
  min-width: 38px;
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background: rgba(255, 255, 255, 0.06);

  color: #1670ff;

  font-size: 16px;
}

.contact-text {
  font-size: 15px;
  line-height: 1.6;

  color: #ffffff;

  padding-top: 5px;
}

.contact-text a {
  color: #ffffff;
  text-decoration: none;
}

.contact-text a:hover {
  color: #4d8dff;
}


/* ================= STAY UPDATED ================= */

.footer-newsletter {
  padding-top: 0;
}

.footer-newsletter h2 {
  font-size: 29px;
  line-height: 1.2;

  font-weight: 700;

  margin-bottom: 25px;
}

.footer-newsletter p {
  font-size: 15px;
  line-height: 1.7;

  color: #f1f3f7;

  margin-bottom: 22px;

  max-width: 300px;
}

.newsletter-form {
  width: 100%;
}

.newsletter-form input {
  width: 100%;
  height: 50px;

  padding: 0 18px;

  border: 1px solid rgba(255, 255, 255, 0.16);

  border-radius: 14px;

  outline: none;

  background: rgba(255, 255, 255, 0.04);

  color: #ffffff;

  font-size: 14px;

  margin-bottom: 14px;
}

.newsletter-form input::placeholder {
  color: #d8dce5;
}

.newsletter-form input:focus {
  border-color: #2869d9;
}

.newsletter-form button {
  width: 100%;
  height: 50px;

  border: none;
  border-radius: 13px;

  background: #1450bd;

  color: #ffffff;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background: #1c61dc;
  transform: translateY(-1px);
}


/* =====================================================
           FOOTER BOTTOM
        ===================================================== */

.nbn-footer-bottom {
  max-width: 1250px;

  margin: 55px auto 0;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}

.nbn-footer-bottom p {
  margin: 0;

  font-size: 14px;

  color: #d9deea;
}


/* ================= SOCIAL ICONS ================= */

.nbn-social-icons {
  display: flex;

  align-items: center;

  gap: 12px;
}

.nbn-social-icons a {
  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.07);

  color: #ffffff;

  text-decoration: none;

  font-size: 15px;

  transition: all 0.3s ease;
}

.nbn-social-icons a:hover {
  background: #1450bd;

  color: #ffffff;

  transform: translateY(-3px);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

  .footer {
    padding: 55px 5% 25px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;

    gap: 40px;
  }

  .footer-newsletter {
    grid-column: 1 / -1;

    max-width: 450px;
  }
}


@media (max-width: 650px) {

  .footer {
    padding: 45px 25px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .footer-newsletter {
    grid-column: auto;

    max-width: 100%;
  }

  .footer-brand img {
    width: 200px;
  }

  .footer-description {
    font-size: 15px;
  }

  .footer-newsletter h2 {
    font-size: 26px;
  }


  /* Bottom mobile */

  .nbn-footer-bottom {
    margin-top: 40px;

    padding-top: 18px;

    flex-direction: column;

    justify-content: center;

    text-align: center;

    gap: 15px;
  }

}

/* HERO */
.hero {
  height: 100vh;
  background: url('./img/Untitled\ design\ \(91\).png') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.hero h1 {
  font-size: 60px;
}

/*====================================
    ABOUT SECTION
=====================================*/
.about1-heading1 {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.about1-heading1 span {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #b58a3a;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.about1-heading1 span::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #b58a3a;
  margin: 10px auto 0;
}

.about1-section1 {
  padding: 80px 20px;
  background: #faf8f4;
}

.about1-container1 {
  max-width: 1200px;
  margin: 0 auto;
}

.about1-content1 {
  background: #fff;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

/* Badge */

.about1-badge1 {
  display: inline-block;
  padding: 8px 18px;
  background: #eef2ff;
  color: #0f3b87;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Heading */

.about1-title1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  color: #1f2937;
  margin-bottom: 25px;
}

.about1-title1 span {
  color: #0f3b87;
}

/* Paragraph */

.about1-text1 {
  color: #6b7280;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
}

/* Why Choose */

.why-choose1 {
  margin-top: 45px;
}

.why-choose1 h3 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: #1f2937;
  margin-bottom: 25px;
}

/* Grid */

.feature-grid1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-item1 {
  background: #f8f9fb;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  padding: 18px 20px;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  transition: .3s;
}

.feature-item1:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  border-color: #0f3b87;
}

/* Button */

.about-btn1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  padding: 15px 34px;
  background: #0f3b87;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: .3s;
}

.about-btn1:hover {
  background: #082b72;
  transform: translateY(-3px);
}

/* Responsive */

@media(max-width:992px) {

  .about1-content1 {
    padding: 40px;
  }

  .about1-title1 {
    font-size: 46px;
  }

  .feature-grid1 {
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px) {

  .about1-section1 {
    padding: 50px 15px;
  }

  .about1-content1 {
    padding: 30px;
    border-radius: 18px;
  }

  .about1-title1 {
    font-size: 36px;
  }

  .about1-text1 {
    font-size: 15px;
  }

  .why-choose1 h3 {
    font-size: 28px;
  }

}

@media(max-width:480px) {

  .about1-title1 {
    font-size: 30px;
  }

  .about1-badge1 {
    font-size: 11px;
  }

  .feature-item1 {
    font-size: 14px;
    padding: 16px;
  }

  .about-btn1 {
    width: 100%;
  }

}

/* ==========================
   FOUNDER SECTION
========================== */

.bhu-founder-section {
    padding: 25px 20px 60px;
    background: #f8f7f4;
}

.bhu-founder-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
.bhu-founder-heading {
    text-align: center;
    margin: 0 0 8px;
    padding: 0;
}

.bhu-founder-heading h2 {
    margin: 0;
    padding: 0;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 500;
    color: #14233a;
}

/* Founder Card */
.bhu-founder-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin: 0;
}

/* Left Profile */
.bhu-founder-profile {
    background: #f4f6f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 25px;
    text-align: center;
}

/* Oval Photo */
.bhu-founder-image {
    width: 220px;
    height: 280px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 20px;
}

.bhu-founder-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Name */
.bhu-founder-profile h3 {
    margin: 0 0 5px;
    font-size: 30px;
    color: #17263d;
    font-weight: 700;
}

/* Designation */
.bhu-founder-profile span {
    font-size: 16px;
    color: #b18a4a;
    font-weight: 600;
}

/* Right Content */
.bhu-founder-content {
    padding: 38px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bhu-founder-content p {
    margin: 0 0 25px;
    font-size: 17px;
    line-height: 1.9;
    color: #405675;
}

.bhu-founder-content p:last-child {
    margin-bottom: 0;
}

/* Tablet */
@media (max-width: 900px) {
    .bhu-founder-card {
        grid-template-columns: 280px 1fr;
    }

    .bhu-founder-image {
        width: 190px;
        height: 250px;
    }

    .bhu-founder-content {
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .bhu-founder-section {
        padding: 30px 15px 40px;
    }

    .bhu-founder-heading {
        margin-bottom: 10px;
    }

    .bhu-founder-heading h2 {
        font-size: 34px;
    }

    .bhu-founder-card {
        grid-template-columns: 1fr;
    }

    .bhu-founder-profile {
        padding: 30px 20px;
    }

    .bhu-founder-image {
        width: 180px;
        height: 230px;
    }

    .bhu-founder-content {
        padding: 25px 20px;
    }

    .bhu-founder-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
    }
  }
/*====================================
      VISION & MISSION
====================================*/

.bhu-vm-section {
  padding: 25px 20px 60px; /* top gap reduced */
  background: #faf8f4;
}

.bhu-vm-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.bhu-vm-heading {
  text-align: center;
  margin: 0 0 30px;
  padding: 0;
}

/* Remove Our Foundation */
.bhu-vm-badge {
  display: none;
}

.bhu-vm-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  color: #1f2937;
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
}

.bhu-vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.bhu-vm-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: .3s;
}

.bhu-vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
}

.bhu-vm-icon {
  width: 70px;
  height: 70px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 25px;
}

.bhu-vm-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: #0f3b87;
  margin: 0 0 18px;
}

.bhu-vm-card p {
  color: #5b6472;
  font-size: 17px;
  line-height: 1.9;
  margin: 0;
}

/*====================================
      RESPONSIVE
====================================*/

@media(max-width:768px) {

  .bhu-vm-section {
    padding: 20px 15px 40px;
  }

  .bhu-vm-grid {
    grid-template-columns: 1fr;
  }

  .bhu-vm-heading {
    margin-bottom: 20px;
  }

  .bhu-vm-heading h2 {
    font-size: 38px;
  }

  .bhu-vm-card {
    padding: 30px;
  }

}

.about img {
  width: 100%;
}

/* HIGHLIGHTS */
.highlights {
  padding: 60px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* PLOTS */
.plots {
  padding: 60px;
}

.plots table {
  width: 100%;
  border-collapse: collapse;
}

.plots td,
th {
  border: 1px solid #ccc;
  padding: 10px;
}

/* GALLERY */
.gallery {
  padding: 60px;
}

.images {
  display: flex;
  gap: 20px;
}

.images img {
  width: 30%;
}

/* LOCATION */
.location iframe {
  width: 100%;
  height: 300px;
}

/* CONTACT */
.contact-container {
  display: flex;
}

.form {
  width: 50%;
  padding: 30px;
}

.map {
  width: 50%;
}

input,
textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}

button {
  background: #caa75e;
  color: #fff;
  padding: 10px 20px;
  border: none;
}

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

  .about .container,
  .contact-container,
  .images {
    flex-direction: column;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.prime-location {
  background: #f3f3f3;
  padding: 60px 80px;
}

/* CONTAINER */
.prime-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* TEXT */
.prime-text {
  width: 55%;
}

.prime-text h2 {
  font-size: 30px;
  color: #1b4d2b;
  /* dark green like screenshot */
  margin-bottom: 15px;
  line-height: 1.3;
}

.prime-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

/* IMAGE */
.prime-image {
  width: 40%;
}

.prime-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

  .prime-text,
  .prime-image {
    width: 100%;
  }
}

/* SECTION */
.content-section {
  padding: 70px 100px;
  background: #fff;
  text-align: center;
}

/* BLOCK */
.content-block {
  margin-bottom: 50px;
}

/* HEADINGS */
.content-block h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 20px;
}

/* PARAGRAPH */
.content-block p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 15px;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .content-section {
    padding: 40px 20px;
  }

  .content-block h2 {
    font-size: 24px;
  }
}

/* SECTION */
.site-plan {
  background: #f5f5f5;
  padding: 60px 40px;
  text-align: center;
}

/* HEADING */
.site-plan h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* IMAGE CONTAINER */
.plan-container {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  border-radius: 6px;
}

/* IMAGE */
.plan-container img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
}

/* HOVER ZOOM */
.plan-container img:hover {
  transform: scale(1.03);
}

/* SECTION */
.project-intro {
  padding: 80px 100px;
  background: #fff;
  text-align: center;
}

/* CONTAINER */
.intro-container {
  max-width: 900px;
  margin: auto;
}

/* HEADING */
.project-intro h1 {
  font-size: 34px;
  color: #1b4d2b;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* TEXT */
.project-intro p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .project-intro {
    padding: 50px 20px;
  }

  .project-intro h1 {
    font-size: 24px;
  }
}

/* SECTION */
.plot-section {
  padding: 60px;
  background: #f5f5f5;
}

/* CONTAINER */
.plot-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT IMAGE */
.plot-image {
  width: 50%;
}

.plot-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* RIGHT CONTENT */
.plot-content {
  width: 50%;
}

.plot-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.plot-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}

.plot-content h4 {
  margin-top: 10px;
}

/* HIGHLIGHT TEXT */
.highlight {
  color: green;
  font-weight: bold;
}

/* GALLERY */
.plot-gallery {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.plot-gallery img {
  width: 24%;
  height: 120px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
}

.plot-gallery img:hover {
  transform: scale(1.05);
}

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

  .plot-image,
  .plot-content {
    width: 100%;
  }

  .plot-gallery {
    flex-wrap: wrap;
  }

  .plot-gallery img {
    width: 48%;
  }
}

/* SECTION */
.amenities-section {
  padding: 60px;
  background: #f5f5f5;
}

/* CONTAINER */
.amenities-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.amenities-content {
  width: 55%;
}

.amenities-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.amenities-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* LIST */
.amenities-content ol {
  padding-left: 18px;
}

.amenities-content li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* HIGHLIGHT */
.highlight {
  color: green;
  font-weight: bold;
}

/* RIGHT IMAGE */
.amenities-image {
  width: 45%;
}

.amenities-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

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

  .amenities-content,
  .amenities-image {
    width: 100%;
  }
}

/* SECTION */
.invest-section {
  padding: 70px 80px;
  background: #fff;
}

/* CONTAINER */
.invest-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT */
.invest-left {
  width: 50%;
}

.invest-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #1b4d2b;
}

.invest-left p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* RIGHT */
.invest-right {
  width: 50%;
}

.invest-right h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

/* LIST */
.invest-right ul {
  list-style: none;
  padding: 0;
}

.invest-right li {
  margin-bottom: 10px;
  font-size: 15px;
  position: relative;
  padding-left: 20px;
}

/* ICON */
.invest-right li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #caa75e;
}

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

  .invest-left,
  .invest-right {
    width: 100%;
  }
}

.about-section {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
}

/* INNER CONTAINER */
.about-inner {
  max-width: 700px;
  margin: auto;
}

/* ICON */
.about-icon {
  font-size: 18px;
  color: #caa75e;
  margin-bottom: 10px;
}

/* SMALL HEADING */
.about-inner h5 {
  font-size: 12px;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 15px;
}

/* TEXT */
.about-inner p {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ABOUT BANNER CSS */
.about-banner {
  position: relative;
  height: 350px;
  background: url('./img/Capture.PNG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* dark overlay */
}

.banner-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.banner-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: bold;
}

.banner-content p {
  font-size: 18px;
  letter-spacing: 1px;
}

/* SECTION */
.mission-vision {
  padding: 80px 60px;
  background: #fff;
}

/* CONTAINER */
.mv-container {
  display: flex;
  gap: 40px;
}

/* BOX */
.mv-box {
  width: 50%;
  background: #f5f5f5;
  padding: 40px;
  border-radius: 6px;
  transition: 0.3s;
}

/* SMALL HEADING */
.mv-box h5 {
  font-size: 13px;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 10px;
}

/* MAIN HEADING */
.mv-box h2 {
  font-size: 26px;
  color: #caa75e;
  margin-bottom: 15px;
}

/* TEXT */
.mv-box p {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}

/* HOVER EFFECT */
.mv-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

  .mv-box {
    width: 100%;
  }
}

/* SECTION */
.project-section {
  padding: 80px 60px;
  background: #f5f5f5;
}

/* CONTAINER */
.project-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* CONTENT */
.project-content {
  width: 50%;
}

.project-content h5 {
  letter-spacing: 3px;
  color: #777;
  font-size: 13px;
}

.project-content h2 {
  font-size: 36px;
  color: #caa75e;
  margin: 15px 0;
}

.project-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

/* HIGHLIGHTS */
.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.highlights span {
  background: #eee;
  padding: 8px 12px;
  font-size: 13px;
}

/* BUTTON */
.btn {
  padding: 10px 25px;
  background: #caa75e;
  color: #fff;
  text-decoration: none;
}

/* IMAGE */
.project-image {
  width: 50%;
}

.project-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.project-section {
  background: linear-gradient(to right, #f5f5f5, #ffffff);
}

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

  .project-content,
  .project-image {
    width: 100%;
  }
}

/* BANNER */
.page-banner {
  position: relative;
  height: 400px;
  background: url('./img/kisa_milta_jhulta_202604251133.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY */
.banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* CONTENT */
.banner-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.banner-content h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 16px;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .page-banner {
    height: 200px;
  }

  .banner-content h1 {
    font-size: 28px;
  }
}

.read-btn {
  display: inline-block;
  position: relative;
  z-index: 999;
  padding: 10px 25px;
  border: 1px solid #caa75e;
  pointer-events: auto;
  background: transparent;
  color: #caa75e;
  text-decoration: none;
  transition: 0.3s;
}

.read-btn:hover {
  background: #caa75e;
  color: #fff;
}

/* OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  /* CENTER HORIZONTAL */
  align-items: center;
  /* CENTER VERTICAL */
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

/* BOX */
.popup-box {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 320px;
  margin: auto;
  text-align: center;
  border-radius: 8px;
  position: relative;
  animation: popupFade 0.5s ease;
}

/* LOGO */
.popup-logo {
  width: 120px;
  margin-bottom: 15px;
}

/* INPUTS */
.popup-box input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
}

/* BUTTON */
.popup-box button {
  width: 100%;
  padding: 10px;
  background: #caa75e;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* ANIMATION */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

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

/* ============================= */
/* 🔥 GLOBAL MOBILE FIX */
/* ============================= */
@media(max-width:768px) {

  body {
    overflow-x: hidden;
  }

  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

}


/* ============================= */
/* 🔥 NAVBAR MOBILE FIX */
/* ============================= */
@media(max-width:768px) {

  .navbar {
    padding: 12px 20px;
  }

  .logo img {
    height: 35px;
  }

  nav {
    top: 60px;
    padding: 15px;
  }

  nav a {
    font-size: 16px;
    padding: 10px 0;
  }

}


/* ============================= */
/* 🔥 HERO MOBILE FIX */
/* ============================= */
@media(max-width:768px) {

  .overlay h1 {
    font-size: 28px;
  }

  .overlay p {
    font-size: 14px;
  }

  .overlay button {
    padding: 10px 20px;
  }

}


/* ============================= */
/* 🔥 ABOUT MOBILE FIX */
/* ============================= */
@media(max-width:768px) {

  .about-section {
    padding: 40px 20px;
  }

  .about-content h2 {
    font-size: 24px;
  }

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

}


/* ============================= */
/* 🔥 PROJECTS MOBILE FIX (IMPORTANT) */
/* ============================= */
@media(max-width:768px) {

  .projects-section {
    padding: 50px 20px;
  }

  .projects-container {
    grid-template-columns: 1fr !important;
    /* single column */
    gap: 25px;
  }

  .project-card {
    width: 100%;
  }

  .project-card img {
    height: 180px;
  }

  .project-info {
    margin-top: -40px;
    padding: 20px;
  }

  .project-info h3 {
    left: 20px;
    font-size: 12px;
    padding: 8px 15px;
  }

  .details {
    flex-direction: column;
    gap: 10px;
  }

  .details div {
    width: 100%;
  }

}


/* ============================= */
/* 🔥 CONTACT MOBILE FIX */
/* ============================= */
@media(max-width:768px) {

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

  .contact-form {
    padding: 20px;
  }

}


/* ============================= */
/* 🔥 FOOTER MOBILE FIX */
/* ============================= */
@media(max-width:768px) {

  .footer {
    padding: 40px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 25px;
  }

  .footer-col {
    width: 100%;
  }

}


/* ============================= */
/* 🔥 BANNER FIX */
/* ============================= */
@media(max-width:768px) {

  .banner-content h1 {
    font-size: 26px;
  }

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

}

/* ============================= */
/* 🔥start from there
/* ============================= */


/* HERO SECTION */
.hero-section2 {
  position: relative;
  height: 100vh;
  background: url('./img/Untitled\ design\ \(91\).png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* DARK OVERLAY */
.hero-overlay2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
}

/* CONTENT */
.hero-content2 {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 60px;
  color: white;
}

/* LEFT */
.hero-left1 {
  max-width: 600px;
}

.hero-left1 h1 {
  font-size: 48px;
}

.hero-left1 h2 {
  font-size: 40px;
  color: #caa75e;
  margin-bottom: 20px;
}

.location1 {
  margin: 15px 0;
}

.hero-left1 ul {
  list-style: none;
  padding: 0;
}

.hero-left1 ul li {
  margin: 8px 0;
}

/* BUTTONS */
.hero-buttons1 {
  margin-top: 20px;
}

.btn {
  padding: 10px 20px;
  margin-right: 10px;
  text-decoration: none;
}

.btn.gold1 {
  background: #caa75e;
  color: #000;
}

.btn.outline1 {
  border: 1px solid #caa75e;
  color: white;
}

/* FORM */
.hero-form1 {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  width: 300px;
  height: fit-content;
  border-radius: 8px;
}

.hero-form1 h3 {
  color: #caa75e;
  margin-bottom: 15px;
}

.hero-form1 input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background: #222;
  border: none;
  color: white;
}

.hero-form1 button {
  width: 100%;
  padding: 12px;
  background: #caa75e;
  border: none;
  cursor: pointer;
}

@media(max-width:768px) {

  .hero-content2 {
    flex-direction: column;
    padding: 20px;
  }

  .hero-left1 h1 {
    font-size: 28px;
  }

  .hero-left1 h2 {
    font-size: 24px;
  }

  .hero-form1 {
    width: 100%;
    margin-top: 20px;
  }

}

.blog-section {
  padding: 100px 20px;
  background: #faf8f4;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  background: #eef2ff;
  color: #1e40af;
  font-size: 12px;
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  margin: 15px 0;
  color: #1e293b;
}

.section-title span {
  color: #1e40af;
}

.section-subtitle {
  color: #64748b;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.blog-image {
  position: relative;
  height: 180px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0f3b87;
  color: #fff;
  padding: 5px 10px;
  font-size: 10px;
  border-radius: 20px;
}

.blog-content {
  padding: 18px;
}

.blog-content h3 {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  gap: 10px;
  margin: 12px 0;
  color: #94a3b8;
  font-size: 12px;
}

.blog-content a {
  color: #0f3b87;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

@media(max-width:992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 42px;
  }
}

/* SECTION */
.amenities-section {
  background: #111;
  padding: 60px;
}

/* GRID */
.amenities-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* CARD */
.amenity-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(202, 167, 94, 0.3);
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  transition: 0.3s;
  color: white;
}

/* ICON */
.amenity-card span {
  font-size: 24px;
  color: #caa75e;
  display: block;
  margin-bottom: 10px;
}

/* TEXT */
.amenity-card p {
  font-size: 14px;
}

/* HOVER */
.amenity-card:hover {
  background: rgba(202, 167, 94, 0.1);
  transform: translateY(-5px);
  border-color: #caa75e;
}

@media(max-width:992px) {
  .amenities-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:600px) {
  .amenities-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-section {
    padding: 30px 15px;
  }
}

/* SECTION */
.video-section {
  background: #0d0d0d;
  padding: 70px 20px;
  text-align: center;
  color: white;
}

/* HEADING */
.video-section h2 {
  font-size: 32px;
}

.video-section h2 span {
  color: #caa75e;
}

.video-section p {
  margin: 10px 0 30px;
  color: #aaa;
}

/* VIDEO BOX */
.video-box {
  position: relative;
  max-width: 800px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.video-box video {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #caa75e;
  color: black;
  font-size: 30px;
  padding: 15px 20px;
  border-radius: 50%;
  transition: 0.3s;
}

.video-box:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

/* TEXT */
.video-text {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  font-size: 13px;
  color: white;
  text-align: center;
}

@media(max-width:768px) {
  .video-section h2 {
    font-size: 24px;
  }
}

/* SECTION */
.layout-section {
  background: #0d0d0d;
  padding: 70px 20px;
  text-align: center;
  color: white;
}

/* HEADING */
.layout-section h2 {
  font-size: 32px;
}

.layout-section h2 span {
  color: #caa75e;
}

.layout-section p {
  color: #aaa;
  margin-bottom: 30px;
}

/* BOX */
.layout-box {
  position: relative;
  max-width: 500px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}

/* IMAGE */
.layout-box img {
  width: 100%;
  filter: blur(5px);
  /* 🔥 BLUR EFFECT */
}

/* OVERLAY */
.layout-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BUTTON */
.layout-overlay button {
  background: #caa75e;
  color: black;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.layout-overlay button:hover {
  background: #b8924c;
}

/* SECTION */
.features-section {
  background: #0d0d0d;
  padding: 70px 20px;
  text-align: center;
  color: white;
}

/* HEADING */
.features-section h2 {
  font-size: 28px;
}

.features-section h2 span {
  color: #caa75e;
}

.features-section p {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 13px;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 800px;
  margin: auto;
}

/* CARD */
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(202, 167, 94, 0.3);
  padding: 15px;
  border-radius: 6px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}

/* ICON */
.feature-card {
  font-size: 18px;
}

.feature-card span {
  font-size: 12px;
}

/* HOVER */
.feature-card:hover {
  background: rgba(202, 167, 94, 0.1);
  border-color: #caa75e;
  transform: translateY(-3px);
}

/* BUTTON */
.feature-btn {
  margin-top: 25px;
}

.feature-btn button {
  background: #caa75e;
  border: none;
  padding: 10px 20px;
  color: black;
  cursor: pointer;
  border-radius: 5px;
  font-size: 13px;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SECTION */
.pricing-section {
  background: #0d0d0d;
  padding: 70px 20px;
  text-align: center;
  color: white;
}

/* HEADING */
.pricing-section h2 {
  font-size: 28px;
}

.pricing-section h2 span {
  color: #caa75e;
}

.pricing-section p {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 13px;
}

/* TABLE WRAPPER */
.pricing-table {
  max-width: 700px;
  margin: auto;
  overflow-x: auto;
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  background: #111;
}

/* HEADER */
thead {
  background: #caa75e;
}

thead th {
  padding: 12px;
  color: black;
  font-size: 14px;
}

/* BODY */
tbody td {
  padding: 12px;
  border-bottom: 1px solid #222;
  font-size: 13px;
}

/* TAG */
.tag {
  background: rgba(202, 167, 94, 0.2);
  color: #caa75e;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
}

/* BUTTON */
tbody button {
  background: #caa75e;
  border: none;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 4px;
}

/* HOVER */
tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

@media(max-width:600px) {

  table {
    font-size: 12px;
  }

  thead th,
  tbody td {
    padding: 8px;
  }

}

/* SECTION */
.gallery-section {
  background: #0d0d0d;
  padding: 70px 20px;
  text-align: center;
  color: white;
}

/* HEADING */
.gallery-section h2 {
  font-size: 28px;
}

.gallery-section h2 span {
  color: #caa75e;
}

.gallery-section p {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 13px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 900px;
  margin: auto;
}

/* IMAGE */
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.4s;
}

/* HOVER EFFECT */
.gallery-grid img:hover {
  transform: scale(1.05);
}