/* ===================================================
   CSS VARIABLES & RESET
=================================================== */
:root {
  --navy: #0b2c66;
  --navy-hover: #08214d;
  --navy-dark: #061a40;
  --yellow: #f5b400;
  --yellow-light: #ffc933;
  --green: #1d9e75;
  --green-dark: #0f6e56;
  --green-deep: #085041;
  --bg-soft: #f7f8fb;
  --border: #dfe5ef;
  --text: #1d2b3a;
  --muted: #5f6b7a;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(11,44,102,0.08);
  --shadow-md: 0 4px 20px rgba(11,44,102,0.12);
  --shadow-lg: 0 8px 40px rgba(11,44,102,0.16);
  --font-heading: 'Noto Serif', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --transition: all 0.25s ease;
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--text); line-height: 1.3; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* ===================================================
   ANIMATIONS
=================================================== */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes greenBorderGlow {
  0%   { box-shadow: 0 0 0 0 rgba(29,158,117,0.7), 0 4px 18px rgba(11,44,102,0.22); }
  50%  { box-shadow: 0 0 0 8px rgba(29,158,117,0), 0 6px 28px rgba(11,44,102,0.32); }
  100% { box-shadow: 0 0 0 0 rgba(29,158,117,0.7), 0 4px 18px rgba(11,44,102,0.22); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes marquee-scroll {
  0%   { transform: translateX(10%); }
  100% { transform: translateX(-100%); }
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-4px); }
}

@keyframes counter-dot {
  0%,100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

@keyframes ripple-expand {
  to { transform: scale(3); opacity: 0; }
}

/* ===================================================
   TOP BAR
=================================================== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 2px solid var(--yellow);
}
.top-bar .container-fluid { max-width: 1440px; margin: 0 auto; }
.top-bar a { color: rgba(255,255,255,0.82); font-size: 12px; transition: var(--transition); }
.top-bar a:hover { color: var(--yellow); }
.top-bar .top-left,
.top-bar .top-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-bar .top-right { justify-content: flex-end; }
.top-bar .divider { color: rgba(255,255,255,0.3); }
.top-bar .gov-text { font-weight: 600; color: var(--yellow); font-size: 12px; letter-spacing: 0.3px; }

.social-icons-top { display: flex; gap: 10px; }
.social-icons-top a {
  width: 24px; height: 24px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.social-icons-top a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }

.lang-toggle {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-body);
}
.lang-toggle:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.access-links { display: flex; gap: 6px; align-items: center; }
.access-links a { font-weight: 600; font-size: 12px; }

/* ===================================================
   MAIN HEADER
=================================================== */
.main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.main-header.scrolled { box-shadow: 0 4px 20px rgba(11,44,102,0.15); }
.main-header .container-fluid { max-width: 1440px; margin: 0 auto; }
.header-inner { display: flex; align-items: center; padding: 5px 0; gap: 20px; }

.logo-block { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.gov-emblem {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--yellow);
}
.gov-emblem svg { width: 32px; height: 32px; }
.logo-text { line-height: 1.2; }
.header-logo-img {
  height: 56px;       /* adjust to fit your header height */
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: 0.5px; }
.logo-sub { font-size: 11px; color: var(--muted); font-weight: 500; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.main-nav ul li a {
  font-size: 14px; font-weight: 600; color: var(--text);
  padding: 8px 14px; border-radius: var(--radius);
  position: relative; display: flex; align-items: center; gap: 4px;
}
.main-nav ul li a::after {
  content: ''; position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--navy);
  transform: scaleX(0); transition: transform 0.25s ease;
}
.main-nav ul li a:hover { color: var(--navy); }
.main-nav ul li a:hover::after { transform: scaleX(1); }
.main-nav ul li.active > a { color: var(--navy); }
.main-nav ul li.active > a::after { transform: scaleX(1); }

.main-nav li.dropdown { position: relative; }
.main-nav .dropdown-menu {
  display: none !important;
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 8px 0; min-width: 180px; z-index: 9999;
  list-style: none; margin: 0;
}
.main-nav .dropdown-menu.nav-open { display: block !important; }
.main-nav .dropdown-menu .dropdown-item {
  font-size: 13px; font-weight: 500; color: var(--text);
  padding: 8px 16px; display: block; white-space: nowrap;
}
.main-nav .dropdown-menu .dropdown-item:hover { background: var(--bg-soft); color: var(--navy); }

/* ===================================================
   APPLY NOW BUTTON — Green Gradient Animation
=================================================== */
.btn-apply {
  position: relative;
  background: linear-gradient(
    135deg,
    #0b2c66 0%,
    #0f6e56 20%,
    #1d9e75 40%,
    #0b2c66 60%,
    #0f6e56 80%,
    #1d9e75 100%
  );
  background-size: 300% 300%;
  color: var(--white) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  animation: gradientShift 3s ease infinite, greenBorderGlow 2.5s ease-in-out infinite;
  transition: transform 0.2s ease, filter 0.2s ease;
 z-index: 2;
  text-decoration: none;
}

.btn-apply::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 2.2s ease-in-out infinite;
  pointer-events: none;
    z-index: 1;
}

.btn-apply:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.15);
  color: var(--white) !important;
  animation: gradientShift 1.5s ease infinite;
}

.btn-apply:hover .btn-arrow { animation: bounce-arrow 0.6s infinite; }
.btn-apply:active { transform: translateY(0) scale(0.98); }
.btn-apply .btn-arrow { font-size: 13px; }

.btn-apply .btn-ring { display: none; }

/* Yellow CTA button */
.btn-yellow {
  background: var(--yellow);
  color: var(--navy) !important;
  font-weight: 700; font-size: 14px;
  padding: 11px 24px; border-radius: var(--radius);
  border: 2px solid var(--yellow);
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap; position: relative; overflow: hidden;
  cursor: pointer;
  animation: gradientShift 3s ease infinite;
  transition: background 0.25s, transform 0.15s;
}
.btn-yellow::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 2.5s infinite;
}
.btn-yellow:hover {
  background: var(--navy); border-color: var(--navy);
  color: var(--white) !important;
  transform: translateY(-1px); animation: none;
  box-shadow: 0 6px 20px rgba(11,44,102,0.35);
}
.btn-yellow:hover .btn-arrow { animation: bounce-arrow 0.6s infinite; }

.btn-outline-nav {
  background: transparent; color: var(--navy) !important;
  font-weight: 600; font-size: 14px;
  padding: 10px 22px; border-radius: var(--radius);
  border: 2px solid var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); cursor: pointer;
}
.btn-outline-nav:hover { background: var(--navy); color: var(--white) !important; }

.hamburger-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--navy); font-size: 22px; }

.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1100; }
.mobile-nav {
  position: fixed; top: 0; left: -300px;
  width: 280px; height: 100vh;
  background: var(--white); z-index: 1200;
  padding: 20px; overflow-y: auto;
  transition: left 0.3s ease; box-shadow: var(--shadow-lg);
}
.mobile-nav.open { left: 0; }
.mobile-nav-overlay.open { display: block; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.mobile-nav-close { background: none; border: none; font-size: 20px; color: var(--text); cursor: pointer; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav ul li a { display: block; padding: 11px 0; font-size: 15px; font-weight: 600; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-nav ul li a:hover { color: var(--navy); padding-left: 8px; }

/* ===================================================
   MARQUEE BAR
=================================================== */
.marquee-bar { background: #1a1a1a; color: var(--white); padding: 0; overflow: hidden; position: relative; }
.marquee-label {
  background: var(--yellow); color: var(--navy);
  font-size: 12px; font-weight: 700;
  padding: 9px 16px; white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: 7px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.marquee-track { overflow: hidden; flex: 1; padding: 9px 0; }
.marquee-inner { display: flex; white-space: nowrap; animation: marquee-scroll 15s linear infinite; }
.marquee-bar:hover .marquee-inner { animation-play-state: paused; }
.marquee-text { font-size: 13px; color: rgba(255,255,255,0.88); padding-right: 60px; display: inline-block; }
.marquee-separator { color: var(--yellow); margin: 0 24px; font-size: 12px; }
.marquee-pause { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 14px; cursor: pointer; padding: 9px 14px; flex-shrink: 0; transition: var(--transition); }
.marquee-pause:hover { color: var(--yellow); }

/* ===================================================
   HERO SECTION
=================================================== */
.hero-section { background: var(--bg-soft); position: relative; overflow: hidden; min-height: 520px; }
.swiper-hero { width: 100%; height: 100%; }
.hero-slide { display: flex; align-items: stretch; min-height: 520px; position: relative; }
.hero-content-col {
  flex: 0 0 48%; max-width: 48%;
  padding: 60px 40px 60px 5%;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
  animation: fadeInUp 0.7s ease both;
}
.hero-image-col { flex: 0 0 52%; max-width: 52%; position: relative; overflow: hidden; }
.hero-bg-image { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(20%); }
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg-soft) 0%, rgba(247,248,251,0.5) 35%, transparent 70%);
  z-index: 1;
}

.rera-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1.5px solid var(--border);
  border-left: 3px solid var(--yellow);
  color: var(--navy); font-size: 24px; font-weight: 800;
  padding: 5px 14px; border-radius: var(--radius);
  margin-bottom: 18px; text-transform: uppercase;
  letter-spacing: 0.5px; box-shadow: var(--shadow-sm);
  animation: float-badge 3s ease-in-out infinite;
  align-self: flex-start;
}
.rera-badge i { color: var(--yellow); font-size: 13px; }

.hero-heading { font-family: var(--font-heading); font-size: clamp(32px, 4vw, 50px); font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.40; }
.hero-subheading { font-size: 17px; color: var(--muted); font-weight: 400; margin-bottom: 24px; }

.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--text); }
.trust-item i { color: var(--navy); font-size: 15px; }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.swiper-hero .swiper-button-next,
.swiper-hero .swiper-button-prev {
  color: var(--navy); background: var(--white);
  width: 40px; height: 40px; border-radius: 2px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.swiper-hero .swiper-button-next::after,
.swiper-hero .swiper-button-prev::after { font-size: 14px; font-weight: 700; }
.swiper-hero .swiper-button-next:hover,
.swiper-hero .swiper-button-prev:hover { background: var(--navy); color: var(--white); }
.swiper-hero .swiper-pagination-bullet { background: var(--navy); opacity: 0.3; width: 10px; height: 10px; }
.swiper-hero .swiper-pagination-bullet-active { background: var(--navy); opacity: 1; }
.swiper-hero .swiper-pagination { bottom: 16px; }

/* ===================================================
   ANNOUNCEMENT BAR
=================================================== */
.announcement-bar { background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin: 20px 0 0; }
.announcement-bar .container-fluid { max-width: 1440px; margin: 0 auto; }
.announcement-inner { display: flex; align-items: center; padding: 14px 20px; gap: 20px; }
.ann-label { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 18px; color: var(--navy); white-space: nowrap; flex-shrink: 0; padding-right: 20px; border-right: 1px solid var(--border); }
.ann-label i { color: var(--yellow); font-size: 16px; }
.ann-text { flex: 1; font-size: 18px; color: var(--text); }
.ann-link { flex-shrink: 0; display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--navy); white-space: nowrap; border: 1px solid var(--navy); padding: 6px 14px; border-radius: var(--radius); transition: var(--transition); }
.ann-link:hover { background: var(--navy); color: var(--white) !important; }

/* ===================================================
   PROJECT DATE CARDS
=================================================== */
.date-cards-section { padding: 20px 0; }
.date-card { background: var(--white); border: 1px solid var(--border); padding: 20px 20px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%; }
.date-card:hover { box-shadow: var(--shadow-md); border-color: var(--navy); }
.date-card-icon { width: 48px; height: 48px; flex-shrink: 0; background: var(--bg-soft); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; border-radius: var(--radius); color: var(--navy); font-size: 20px; }
.date-card:hover .date-card-icon { background: var(--navy); color: var(--white); border-color: var(--navy); }
.date-card-body { flex: 1; }
.date-card-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.date-card-value { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--navy); }

/* ===================================================
   SECTION HEADING
=================================================== */
.section-heading { text-align: center; margin-bottom: 36px; }
.section-heading h2 { font-family: var(--font-heading); font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--text); margin-bottom: 10px; }
.section-heading .heading-line { width: 60px; height: 3px; background: var(--yellow); margin: 0 auto 10px; position: relative; }
.section-heading .heading-line::before { content: ''; position: absolute; left: 65px; top: 0; width: 15px; height: 3px; background: var(--navy); }

.section-title-left { font-family: var(--font-heading); font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; color: var(--text); margin-bottom: 4px; padding-bottom: 12px; position: relative; }
.section-title-left::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--yellow); }

/* ===================================================
   ABOUT + DOCUMENTS SECTION
=================================================== */
.about-section { padding: 52px 0; background: var(--bg-soft); }
.about-content p { font-size: 14.5px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }

.feature-list { list-style: none; padding: 0; margin: 0 0 24px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text); padding: 7px 0; border-bottom: 1px solid var(--border); }
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--navy); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

.about-image-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; min-height: 160px; position: relative; }
.about-image-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--muted); font-size: 13px; gap: 10px; padding: 20px; width: 100%; }
.about-image-placeholder i { font-size: 40px; color: var(--border); }

.docs-panel { background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.docs-panel-header { background: var(--navy); color: var(--white); padding: 16px 20px; font-family: var(--font-heading); font-size: 17px; font-weight: 700; }
.doc-item { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1px solid var(--border); transition: var(--transition); cursor: pointer; }
.doc-item:last-of-type { border-bottom: none; }
.doc-item:hover { background: var(--bg-soft); }
.doc-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 16px; }
.doc-name { flex: 1; font-size: 14px; font-weight: 600; color: var(--text); }
.doc-download { width: 30px; height: 30px; border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13px; transition: var(--transition); }
.doc-item:hover .doc-download { background: var(--navy); color: var(--white); border-color: var(--navy); }
.docs-view-all { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 20px; font-size: 13.5px; font-weight: 700; color: var(--navy); border-top: 1px solid var(--border); cursor: pointer; transition: var(--transition); background: var(--white); }
.docs-view-all:hover { background: var(--navy); color: var(--white) !important; }

/* ===================================================
   BANK LOAN SECTION
=================================================== */
.bank-section { padding: 32px 0; background: var(--white); }
.bank-card { background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); padding: 24px 28px; display: flex; align-items: center; gap: 24px; }
.bank-icon-block { width: 64px; height: 64px; flex-shrink: 0; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 26px; }
.bank-text-block { flex: 1; }
.bank-text-block h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.bank-text-block p { font-size: 13.5px; color: var(--muted); margin: 0; }
.bank-logos-block { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.bank-logo-card { background: var(--white); border: 1px solid var(--border); padding: 10px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 7px; box-shadow: var(--shadow-sm); transition: var(--transition); cursor: pointer; }
.bank-logo-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); }
.bank-logo-card i { font-size: 16px; color: var(--navy); }
.more-banks { font-size: 13px; font-weight: 600; color: var(--muted); padding: 10px 14px; border: 1px dashed var(--border); border-radius: var(--radius); }

/* ===================================================
   AMENITIES SECTION
=================================================== */
.amenities-section { padding: 52px 0; background: var(--bg-soft); }
.swiper-amenities { padding: 0 40px; }
.amenity-card { background: var(--white); border: 1px solid var(--border); padding: 24px 16px; text-align: center; transition: var(--transition); cursor: default; height: 100%; }
.amenity-card:hover { box-shadow: var(--shadow-md); border-color: var(--navy); transform: translateY(-4px); }
.amenity-icon { width: 60px; height: 60px; background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 22px; color: var(--navy); transition: var(--transition); }
.amenity-card:hover .amenity-icon { background: var(--navy); color: var(--white); border-color: var(--navy); }
.amenity-label { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.swiper-amenities .swiper-button-next,
.swiper-amenities .swiper-button-prev { color: var(--navy); background: var(--white); width: 34px; height: 34px; border-radius: 2px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); top: 50%; }
.swiper-amenities .swiper-button-next::after,
.swiper-amenities .swiper-button-prev::after { font-size: 12px; font-weight: 700; }
.swiper-amenities .swiper-button-prev { left: 0; }
.swiper-amenities .swiper-button-next { right: 0; }

/* ===================================================
   LAYOUT / LOCATION / GALLERY
=================================================== */
/* ===================================================
   LAYOUT / LOCATION
=================================================== */
.llg-section { padding: 52px 0; background: var(--white); }
.layout-card { background: var(--bg-soft); border: 1px solid var(--border); overflow: hidden; }
.layout-img-placeholder { min-height: 260px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: var(--muted); font-size: 13px; border-bottom: 1px solid var(--border); background: var(--white); }
.layout-img-placeholder i { font-size: 48px; color: var(--border); }

.location-advantages { list-style: none; padding: 0; margin: 0; }
.location-advantages li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 500; color: var(--text); }
.location-advantages li:last-child { border-bottom: none; }
.location-advantages .adv-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 14px; }

.map-placeholder { background: var(--bg-soft); border: 1px solid var(--border); min-height: 200px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.map-placeholder i { font-size: 40px; color: #c0c9d8; }

.btn-sm-gov { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--navy); border: 1.5px solid var(--navy); padding: 8px 18px; border-radius: var(--radius); background: var(--white); transition: var(--transition); cursor: pointer; }
.btn-sm-gov:hover { background: var(--navy); color: var(--white) !important; }

/* Gallery */
.gallery-section { padding: 52px 0; background: var(--bg-soft); }
.gallery-filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; justify-content: center; }
.gallery-filter-btn { font-size: 13px; font-weight: 600; padding: 7px 18px; border-radius: var(--radius); border: 1.5px solid var(--border); background: var(--white); color: var(--text); cursor: pointer; transition: var(--transition); }
.gallery-filter-btn.active,
.gallery-filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 20px; }
.customgallery .gallery-item { background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; cursor: pointer; position: relative; transition: var(--transition); }
.gallery-section .gallery-item { background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; cursor: pointer; position: relative; transition: var(--transition); }
.gallery-item:hover { box-shadow: var(--shadow-md); }
.gallery-item i { font-size: 32px; color: var(--border); transition: var(--transition); }
.gallery-item:hover i { color: #c0c9d8; }

/* ===================================================
   WHY CHOOSE HARIDWAR
=================================================== */
.why-section { padding: 52px 0; background: var(--white); }
.why-card { background: var(--bg-soft); border: 1px solid var(--border); padding: 28px 20px; text-align: center; transition: var(--transition); height: 100%; }
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--navy); transform: translateY(-4px); }
.why-icon { width: 64px; height: 64px; background: var(--white); border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; color: var(--navy); transition: var(--transition); }
.why-card:hover .why-icon { background: var(--navy); color: var(--white); border-color: var(--navy); }
.why-card h5 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--muted); margin: 0; }

/* ===================================================
   BOTTOM CTA
=================================================== */
.cta-section { padding: 52px 0; background: var(--bg-soft); }
.cta-card { background: var(--navy); padding: 52px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 220px; height: 220px; border-radius: 50%; background: rgba(245,180,0,0.07); }
.cta-card::after { content: ''; position: absolute; bottom: -60px; left: 30%; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-text h2 { font-family: var(--font-heading); font-size: clamp(24px, 3vw, 34px); font-weight: 700; color: var(--white); margin-bottom: 10px; }
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.78); margin: 0; }

.btn-cta-yellow {
  background: var(--yellow); color: var(--navy) !important;
  font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: var(--radius);
  border: 2px solid var(--yellow);
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap; position: relative; overflow: hidden;
  cursor: pointer; text-decoration: none;
  transition: background 0.25s, transform 0.15s;
}
.btn-cta-yellow::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 2.5s infinite;
}
.btn-cta-yellow:hover { background: var(--white); border-color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.btn-cta-yellow:hover .btn-arrow { animation: bounce-arrow 0.6s infinite; }

/* ===================================================
   FOOTER — IMPROVED DESIGN
=================================================== */
.main-footer {
  background: linear-gradient(180deg, #071830 0%, var(--navy-dark) 100%);
  color: rgba(255,255,255,0.82);
  padding: 52px 0 0;
  border-top: 3px solid var(--yellow);
}

.footer-brand p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin-bottom: 16px;
}

.footer-counter {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.counter-digit {
  background: var(--navy);
  color: var(--white);
  width: 20px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  border-radius: 2px; margin: 0 1px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(245,180,0,0.3);
  display: block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 7px;
  transition: var(--transition);
  padding: 3px 0;
}
.footer-links li a::before { content: '>'; color: var(--yellow); font-size: 16px; line-height: 1; }
.footer-links li a:hover { color: var(--yellow); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 9px 12px;
  margin-bottom: 8px;
  transition: var(--transition);
}
.footer-contact-item:hover {
  background: rgba(245,180,0,0.08);
  border-color: rgba(245,180,0,0.25);
}
.footer-contact-item i { color: var(--yellow); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

/* Disclaimer */
.footer-disclaimer p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 10px;
}
.disclaimer-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: var(--yellow);
  border: 1px solid rgba(245,180,0,0.4);
  padding: 5px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.disclaimer-link:hover {
  background: rgba(245,180,0,0.12);
  color: var(--yellow);
}

.footer-bottom {
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  margin-top: 36px;
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.5); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ===================================================
   FIXED CONTACT DOCK
=================================================== */
.contact-dock {
  position: fixed; right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 990;
  display: flex; flex-direction: column; gap: 0;
}

.dock-item {
  display: flex; align-items: center;
  overflow: hidden; cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  position: relative;
}

/* Apply Now — untouched */
.dock-apply { background: var(--navy); color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.1); }
.dock-apply:hover { background: var(--green); color: var(--white) !important; }
.dock-apply .dock-icon { width: 44px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--yellow); transition: var(--transition); }
.dock-apply:hover .dock-icon { color: var(--white); }
.dock-apply .dock-label { font-size: 12px; font-weight: 700; white-space: nowrap; max-width: 0; overflow: hidden; opacity: 0; transition: all 0.3s ease; padding-right: 0; letter-spacing: 0.3px; }
.contact-dock:hover .dock-apply .dock-label,
.dock-apply:hover .dock-label { max-width: 110px; opacity: 1; padding-right: 14px; }
.dock-apply::before { content: ''; position: absolute; top: 8px; right: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); animation: counter-dot 1.5s infinite; }

/* Call — improved */
.dock-call {
  background: linear-gradient(135deg, #1a7a4a 0%, #0f5c38 100%);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  min-height: 58px;
}
.dock-call:hover { background: linear-gradient(135deg, #1e8f56 0%, #136944 100%); }

.dock-call .dock-icon {
  width: 44px; height: 58px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #7dffb4;
  background: rgba(0,0,0,0.15);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

/* WhatsApp — improved */
.dock-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1aad55 100%);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  min-height: 58px;
}
.dock-whatsapp:hover { background: linear-gradient(135deg, #2be070 0%, #1dc45f 100%); }

.dock-whatsapp .dock-icon {
  width: 44px; height: 58px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--white);
  background: rgba(0,0,0,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

/* Shared meta block for call & whatsapp */
.dock-meta {
  display: flex; flex-direction: column;
  max-width: 0; overflow: hidden; opacity: 0;
  transition: all 0.3s ease;
  padding-right: 0; white-space: nowrap;
}
.contact-dock:hover .dock-meta,
.dock-item:hover .dock-meta {
  max-width: 130px; opacity: 1; padding-right: 14px;
}
.dock-call .dock-label,
.dock-whatsapp .dock-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.3px; line-height: 1.2;
  max-width: unset; opacity: unset; padding-right: unset;
}
.dock-sublabel {
  font-size: 10px; font-weight: 500;
  opacity: 0.75; margin-top: 1px;
}

/* ===================================================
   MOBILE STICKY BAR
=================================================== */
.mobile-sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1080; background: var(--navy);
  box-shadow: 0 -4px 20px rgba(11,44,102,0.2);
}
.mobile-sticky-inner { display: flex; align-items: center; }
.mob-stick-btn {
  flex: 1; padding: 14px 8px; text-align: center;
  font-size: 13px; font-weight: 700;
  cursor: pointer; border: none;
  display: flex;  align-items: center; justify-content: center; gap: 3px;
  transition: var(--transition); font-family: var(--font-body);
}
.mob-stick-btn i { font-size: 16px; }
.mob-stick-btn span { font-size: 11px; }
.mob-apply {
  background: linear-gradient(135deg, #0b2c66 0%, #0f6e56 25%, #1d9e75 45%, #0b2c66 60%, #0f6e56 80%, #1d9e75 100%);
  background-size: 300% 300%;
  color: var(--white); flex: 2;
  animation: gradientShift 3s ease infinite;
}
.mob-apply:hover { filter: brightness(1.15); }
.mob-call { background: #1a7a4a; color: var(--white); }
.mob-wa { background: #25d366; color: var(--white); }

/* ===================================================
   UTILITY
=================================================== */
.section-pad { padding: 52px 0; }
.container-gov { max-width: 1440px; margin: 0 auto; padding: 0 20px; }
.gov-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ===================================================
   RESPONSIVE — 1024px
=================================================== */
@media (max-width: 1024px) {
  .main-nav ul li a { padding: 8px 10px; font-size: 13px; }
  .hero-content-col { padding: 50px 30px 50px 4%; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .top-bar .top-left .gov-text { display: none; }
}

/* ===================================================
   RESPONSIVE — 991px (Tablet)
=================================================== */
@media (max-width: 991px) {
  .main-nav, .btn-apply { display: none; }
  .hamburger-btn { display: block; }
  .hero-slide { flex-direction: column; min-height: auto; }
  .hero-content-col { flex: 0 0 100%; max-width: 100%; padding: 44px 24px 0; }
  .hero-image-col { flex: 0 0 100%; max-width: 100%; height: 280px; }
  .hero-image-overlay { background: linear-gradient(to bottom, rgba(247,248,251,0.2) 0%, transparent 50%); }
  .hero-heading { font-size: 32px; }
  .bank-card { flex-direction: column; align-items: flex-start; }
  .cta-card { padding: 36px 28px; flex-direction: column; text-align: center; }
  .cta-card::before, .cta-card::after { display: none; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .contact-dock { display: none; }
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 58px; }
  .top-bar .top-right .social-icons-top { display: none; }
  .top-bar .top-right .access-links { display: none; }
}

/* Mobile nav Apply Now — show it again */
.mobile-nav .btn-apply { display: inline-flex !important; }

/* ===================================================
   RESPONSIVE — 576px
=================================================== */
@media (max-width: 576px) {
  .hero-image-col { height: 220px; }
  .hero-heading { font-size: 26px; }
  .trust-row { gap: 12px; }
  .trust-item { font-size: 12px; }
  .announcement-inner { flex-wrap: wrap; gap: 10px; }
  .ann-label { border-right: none; padding-right: 0; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .date-card { padding: 14px; }
  .date-card-value { font-size: 14px; }
  .cta-card { padding: 28px 20px; }
  .bank-logos-block { gap: 8px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .top-bar .top-left .gov-text { display: none; }
  .top-bar .top-left .divider { display: none; }
  .hero-content-col { padding: 32px 16px 0; }
  .announcement-inner { display: flex; align-items: flex-start; flex-direction: column; }

  .header-inner {
    justify-content: space-between;
}

.marquee-label{
  display: none !important;

}

.marquee-inner { animation: marquee-scroll 15s linear infinite !important; }


}

@media (max-width: 380px) {
  .logo-title { font-size: 15px; }
  .logo-sub { font-size: 10px; }
  .gov-emblem { width: 42px; height: 42px; }
  .hero-heading { font-size: 22px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .why-card { padding: 20px 14px; }
}