
/* =========================
   Ganga County — style.css
   Revamped: layout, spacing, animations, responsive
   ========================= */

/* ---------- VARIABLES ---------- */
:root {
  --accent: #e6871c;
  --accent-2: #f5650b;
  --muted: #6b7280;
  --bg: #f7faf9;
  --card: #ffffff;
  --glass: rgba(255,255,255,0.65);
  --radius: 12px;
  --max-width: 1200px;
  --shadow-lg: 0 12px 30px rgba(11,22,18,0.08);
  --shadow-sm: 0 6px 18px rgba(0,0,0,0.06);
  --ease: cubic-bezier(.16,.84,.44,1);
  --gap: 20px;
  --pad: 28px;
  --fs-base: 16px;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  font-size: var(--fs-base);

  /* Additional colors for system */
  --primary-green: #0b6e4f;
  --primary-blue: #34a77a; /* changed from #1a73e8 to #34a77a */
  --text-dark: #333;
  --text-light: #555;
  --bg-light: #f9fbff;
  --bg-gradient: linear-gradient(135deg, #fdfcfb, #f0fff4, #e6f7ff);
}
  .brochure{
      margin-top: -50px!important;
      padding-left:3.2rem;
  }
/* ---------- RESET & BASE ---------- */
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  background: linear-gradient(180deg, #f8fbf9 0%, var(--bg) 100%);
  color: #0f1724;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  font-size: var(--fs-base);
  width: 100%;
  overflow-x:  hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---------- LAYOUT WRAPPER ---------- */
.wrap {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--pad);
}



/* =====================
   LOGO STYLING
===================== */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;              /* spacing between logo and text */
  text-decoration: none;
}

.brand-logo {
  height: 48px;           /* default size on desktops */
  width: auto;            /* keep aspect ratio */
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-2, #0b6e4f); /* fallback if var not set */
}

/* =====================
   RESPONSIVE LOGO
===================== */
@media (max-width: 900px) {
  .brand-logo {
    height: 40px;         /* smaller on tablets */
  }
  .brand-title {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    height: 32px;         /* smaller on mobiles */
  }
  .brand-title {
    font-size: 18px;
  }
}




/* ============================================================================= HEADER & NAV ===========================================*/
.site-header {
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(15,23,36,0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;   /* ✅ no side padding */
  position: relative;
  flex-wrap: wrap;
  width: 100%;
}

/* Logo */
.brand {
  margin-left: 20px;
}
.brand-logo {
  width: 100px;
  height: auto;
  max-width: 100%;
}

/* ================= Desktop Nav ================= */
.primary-nav ul {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  color: var(--muted, #333);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--accent, #0b6e4f);
  background: rgba(11,110,79,0.05);
  transform: translateY(-1px);
}

/* CTA Button */
.primary-nav .cta {
  background: var(--accent, #0b6e4f);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.2s ease;
}
.primary-nav .cta:hover,
.primary-nav .cta:focus {
  background: var(--accent-2, #09543d);
  transform: translateY(-2px);
}

/* ================= Hamburger Toggle ================= */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  margin: 0;
  z-index: 1001;
  margin-left: auto; /* ✅ forces it flush right */
}

.hamburger {
  width: 22px;
  height: 2px;
  background: var(--muted, #333);
  display: block;
  position: relative;
  border-radius: 2px;
  transition: background .18s ease;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--muted, #333);
  border-radius: 2px;
  transition: transform .25s ease, top .18s ease, opacity .18s ease;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ================= Mobile Menu ================= */
@media (max-width: 768px) {
  .primary-nav ul {
    flex-direction: column;
    gap: 12px;
    background: #fff;
    position: absolute;
    left: 0;          /* ✅ start at left edge */
    right: 0;         /* ✅ stretch to right edge */
    top: 100%;
    padding: 16px;
    border-radius: 0; /* ✅ remove rounded corners for full-width look */
    box-shadow: var(--shadow-lg, 0 4px 12px rgba(0,0,0,0.1));
    width: 100%;      /* ✅ span entire width */
    z-index: 1000;

    /* animation setup */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  }

  .primary-nav ul.open {
    max-height: 500px; 
    opacity: 1;
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }
}

/* ================= Extra small screens ================= */
@media (max-width: 600px) {
  .brand-logo { width: 70px; }
  .primary-nav a { font-size: 14px; padding: 6px 8px; }
}
@media (max-width: 400px) {
  .brand-logo { width: 50px; }
  .brand-text { display: none; }
  .primary-nav ul { min-width: 160px; }
}






/* ==========================================================================   HERO SECTION ===================================================== */



#home{
  position: relative;
  width: 100%;
  min-height: 100vh;
}
.hero-video{
  position: absolute;
  width: 100%;

}
.hero-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  position: relative;
  background: url("../images/ganga-conty-hero.jpeg") center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.5); */
  /* background: linear-gradient(to bottom, rgba(9, 48, 100, 0.5), rgba(23, 100, 9, 0.5)); */
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  max-width: 1320px;
  width: 100%;
  align-items: center;
}
.hero-text {
  max-width: 600px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* box-shadow: 3px 3px 6px rgba(0,0,0,0.3)  ; */
  backdrop-filter: blur(3px); 
  padding: 20px;
  border-radius: 20px;
}
.hero-text h1 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 2px 2px 3px rgba(21, 2, 98, 0.8);
  
}
.hero-text h1 span{
  display: inline-block;
  font-size: 3rem;
  background-position: 0 50%;
  color: #f7ff00;
  -webkit-text-stroke: 1px #e6d904;
  text-shadow: 
   -2px 2px 3px rgba(0, 0, 0, 0.3),   /* soft shadow bottom-left */
    4px 5px 6px rgba(0, 0, 0, 0.5);
 background: linear-gradient(
    90deg,
    #ffdd00,
    #ff0080,
    #00e5ff,
    #e6871c,
    #ffdd00
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  /* Animation */
  animation: gradientFlow 6s ease infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero-text .lead {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}
.hero-text .eyebrow {
  font-weight: 700;
   color:var(--accent); 
  /*color: #f7ff00;*/
  margin-bottom: 12px;
  font-size: 1.2rem;
  transform: translateX(50px);
  animation: zoom 2s ease infinite;
  
}
@keyframes zoom {
  0%, 100% {
    transform: scale(1) translateX(50px);
  }
  50% {
    transform: scale(1.2) translateX(45px);
  }
}

/* Hero Features */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
  /*justify-content: center;*/
}

.hero-features li {
  background: rgba(255,255,255,0.15);
  color: #f7ff00;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 10px;
  display: flex;  
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  white-space: nowrap;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}
.hero-features li:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.25);
}

/* Hero Form */
.hero-form {
  background: rgba(255, 255, 255, 0.2);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  color: #333;
  backdrop-filter: blur(3px);
}
.hero-form h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}
.hero-form p {
  font-size: 14px;
  margin-bottom: 16px;
  color: rgba(0,0,0,0.8);
}
.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-form textarea,
.hero-form input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.hero-form button {
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  transition: transform .2s;
}
.hero-form button:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

/* Quick Cards */
.quick-cards {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: center;*/
  gap: 12px;
}
.small-card {
  background: rgba(255,255,255,0.1);
  padding: 12px;
  border-radius: 10px;
  min-width: 120px;
  text-align: center;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.small-card .meta {
  font-size: 12px;
  color: #ddd;
}
.small-card .value {
  font-weight: 700;
  margin-top: 6px;
  color: var(--accent);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablets */
@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-features {
    justify-content: center;
  }
  .quick-cards {
    justify-content: center;
  }
  .hero-form {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero {
    padding: 40px 15px;
  }
  .hero-text h1 {
    font-size: 26px;
  }
  .hero-text .lead {
    font-size: 14px;
  }
  .hero-form {
    padding: 20px;
  }
  .hero-form h3 {
    font-size: 26px;
    font-weight: 700;
  }
  .hero-form p {
    font-size: 13px;
  }
  .hero-features li {
    font-size: 12px;
    padding: 8px 12px;
  }
  .small-card {
    min-width: 100px;
    padding: 10px;
  }
}


/* ========================================================================================   ABOUT SECTION ============================================================================== */



#about {
  background: #f9faf9;
  padding: 20px 0;
  width: 100%;
}
#about .section-left{
    position: relative;
}
.govt-approve{
    position: absolute;
    right: 20px;
    bottom: -30px;
}
.govt-approve img{
    width: 130px;
}

/* Remove side padding for full-width layout */
.wrap.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

/* Left Side */
.section-left h2 {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--accent);
  line-height: 1.2;
}

.section-left p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #374151;
}

.extra-text {
  display: none;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more-btn {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.read-more-btn:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-2px);
}

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.about-list li {
  font-size: 15px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 26px;
  color: #4b5563;
}

.about-list li::before {
  content: "✔";
  
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-row .btn {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-row .btn:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

/* Right side — stats + image */
.section-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.stat-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat {
  background: linear-gradient(180deg, #fff, #f7f7f7);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  min-width: 100px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.stat-ico {
  font-size: 26px;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-2);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
}

.about-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
  margin-top: 10px;
}

.about-image:hover {
  transform: scale(1.03);
}

/* Animate reveal */
.animate-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.52s var(--ease), transform 0.52s var(--ease);
}

.animate-up.visible {
  opacity: 1;
  transform: none;
}

.delay-sm {
  transition-delay: 0.12s;
}

.delay-md {
  transition-delay: 0.24s;
}

.delay-lg {
  transition-delay: 0.36s;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablets */
@media (max-width: 991px) {
  .wrap.section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .section-left h2 {
    font-size: 28px;
  }

  .section-left p,
  .about-list li {
    font-size: 15px;
  }

  .cta-row {
    justify-content: center;
  }

  .section-right {
    align-items: center;
  }

  .stat-grid {
    justify-content: center;
  }

  .about-image {
    max-width: 500px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #about {
    padding: 40px 0;
  }

  .section-left h2 {
    font-size: 20px;
  }

  .section-left p {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-list li {
    font-size: 13px;
  }

  .stat {
    min-width: 90px;
    padding: 14px;
  }

  .stat-value {
    font-size: 18px;
  }

  .stat-label {
    font-size: 12px;
  }

  .cta-row .btn {
    flex: 1 1 100%;
    text-align: center;
  }

  .about-image {
    max-width: 100%;
  }
}


/* ====================================================================   SECTION BASE & GRID LAYOUT= ======================================================================================= */
.section {
  padding: 20px 20px;
}
.section-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 28px;
  align-items: center;
}
.section-left h2 {
  margin-top: 0;
}
.muted {
  color: var(--muted);
}
.center {
  text-align: center;
}

/* =========================
   STAT GRID (Alternate)
========================= */
.stat-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.stat {
  background: var(--card);
  padding: 12px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  min-width: 110px;
  text-align: center;
}
.stat-value {
  font-weight: 800;
  font-size: 20px;
}
.about-image {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
}




/* ==============================================================================   OVERVIEW SECTION =========================================================================== */




.overview-bg {
  background: #fff7ec;
  background-size: 300% 300%;
  animation: overviewBg 16s ease infinite;
  padding: 10px 20px 20px; /* tighter top padding */
  margin-top: 0; /* ensure no extra top gap */
}

@keyframes overviewBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.overview-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-yellow);
  margin: 0 0 12px; /* remove top margin */
  text-align: center;
  letter-spacing: -0.5px;
}
.overview-title span {
  color: var(--accent);
}
.overview-subtitle {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 1180px;
  margin: 0 auto 40px;
  text-align: center;
}

/* Layout: List Left | Features Right */
.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .overview-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .overview-content-wrappper{
    flex-direction: column;
  }
}

.overview-content-wrappper{
  display: flex;
  padding: 0 4rem;
  gap: 50px;
  align-items: center;
}

/* Key Highlights List */
.overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.overview-list li {
  font-size: 1rem;
  color: var(--text-light);
  padding: 16px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
  /* text-align: center; */
  transition: color 0.3s ease;
  /* margin-right: 15rem; */
}
.overview-list li:hover {
  color: var(--accent-2);
}
.overview-list li:last-child {
  border-bottom: none;
}
/* Feature Boxes */
.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: stretch; /* all cards same height */
}

.feature-box {
  background: #fff;
  padding: 24px 18px;
  border-radius: 16px;
  color: #000;
  text-align: center;
  font-weight: 600;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;              /* NEW: flex inside */
  flex-direction: column;     /* stack content */
  justify-content: center;    /* center content */
}

.feature-box h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.feature-box p {
  font-size: 0.95rem;
  line-height: 1.5;
}
.feature-box:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px rgba(110, 87, 11, 0.35);
}

/* Image Box */
.img-box {
  padding: 0;
}

.img-box img {
  width: 100%;
  height: 100%;
  max-height: 400px;   /* ✅ keep image proportional to other cards */
  max-width: 300px;
  border-radius: 16px;
  object-fit: cover;   /* ✅ cover without distortion */
}
  



/* =========================================================================   AMENITIES SECTION ======================================================================================= */




#amenities {
  padding: 10px 20px;
  background: #f9fafb;
}

.amenities-content {
  padding: 40px 20px;
  border-radius: 18px;
}

#amenities h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--accent-2);
  text-align: center;
}

/* Grid */
/* .amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center; centers every row 
}*/

/*.amenity-card {
  flex: 0 1 160px;  min width per card 
}*/

 .amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
  gap: 28px;
  justify-content: center; /* centers the last row*/
   }





/* Card */
.amenity-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  height: 150px;
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* lift on hover */
.amenity-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* image (behind content) */
.card-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1; /* visible initially */
  transition: opacity 0.35s ease;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* content on top */
.card-content {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  z-index: 3; /* above image */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* align items at the top */
  text-align: center;
  padding: 20px 12px; /* adjust padding as needed */
  /*background: rgba(0, 0, 0, 0.75);*/
  border-radius: 18px;
  transition: all 0.35s ease;
}

/* icon circle */
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #000; /* changed to black */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
  margin-top: 10px;
  transition: opacity 0.22s ease, transform 0.22s ease;
  opacity: 1;
  visibility: visible;
  position: relative;
  top: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* title */
.card-title {
    position: absolute;
    bottom: 5px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  color: #ffffff;
  transition: color 0.25s ease, transform 0.35s ease;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
  background: #000;
}

/* hover: show image (no change needed since image is visible) */
.amenity-card:hover .card-image {
  opacity: 1;
  z-index: 1;
}

/* hover: make bottom caption and hide icon */
/* fix: make overlay transparent on hover */
.amenity-card:hover .card-content {
  background: rgba(0, 0, 0, 0); /* fully transparent */
  padding: 1px 1px;
  justify-content: center;
  border-radius: 18px;
}


.amenity-card:hover .card-title {
  color: #fff;
  text-shadow: none;
  background: #000;
}

/* hide icon smoothly on hover */
.amenity-card:hover .icon-circle {
  opacity: 0;
  transform: scale(0.6);
  visibility: hidden;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .amenity-card {
    height: 130px;
  }
}

@media (max-width: 768px) {
  .amenities-content {
    padding: 30px 10px;
  }

  .amenity-card {
    height: 120px;
  }

  .amenities-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  #amenities {
    padding: 40px 8px;
  }

  #amenities h2 {
    font-size: 1.8rem;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    
  }

  .amenity-card {
    height: 100px;
  }
}



/* ======================================================================================   BROCHURE SECTION ============================================================================================ */



#brochure-section {
  padding: 60px 20px;
  background: #0f0f0f;
  color: #fff;
  text-align: center;
}

#brochure-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  justify-items: center;
}

.brochure-card {
  background: #fff;
  color: #111;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brochure-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.25);
}

.brochure-card .card-header {
  background: linear-gradient(90deg, #f97316, #f59e0b);
  padding: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

.brochure-card .card-header h3 {
  margin-top: 6px;
  font-size: 18px;
}

.brochure-card .card-body {
  padding: 20px;
  text-align: center;
}

.brochure-card .size {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;
  color: #f97316;
}

.request-btn {
  background: linear-gradient(90deg, #f97316, #f59e0b);
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
  margin-top: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.request-btn:hover {
  background: linear-gradient(90deg, #fb923c, #facc15);
  box-shadow: 0 4px 15px rgba(249,115,22,0.4);
  transform: translateY(-2px);
}

/* =========================
   POPUP FORM
========================= */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  color: #111;
  position: relative;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease;
}

.popup-overlay.show .popup-content {
  transform: scale(1);
  opacity: 1;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #f97316;
  font-weight: bold;
}

.popup-content h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  color: #f97316;
}

/* Floating Label Form */
.form-group {
  position: relative;
  margin-bottom: 18px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: #f9fafb;
  transition: border 0.3s ease;
}
.form-group input:focus,
.form-group select:focus {
  border-color: #f97316;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 14px;
  color: #6b7280;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  color: #f97316;
  background: #fff;
  padding: 0 4px;
}

.submit-btn {
  background: linear-gradient(90deg, #f97316, #f59e0b);
  border: none;
  padding: 14px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
}
.submit-btn:hover {
  background: linear-gradient(90deg, #fb923c, #facc15);
  box-shadow: 0 4px 15px rgba(249,115,22,0.4);
}

/* ========================= 
   RESPONSIVE MEDIA QUERIES - BROCHURE
========================= */

/* Small devices (phones) */
@media (max-width: 480px) {
  #brochure-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .brochure-grid {
    grid-template-columns: 1fr; /* one card per row */
    max-width: 100%;
  }

  .brochure-card {
    max-width: 100%;
    margin: 0 auto 15px;
  }

  .brochure-card .card-header h3 {
    font-size: 16px;
  }

  .brochure-card .size {
    font-size: 14px;
  }

  .popup-content {
    padding: 15px;
  }

  .popup-content h3 {
    font-size: 18px;
  }
}

/* Medium devices (tablets) */
@media (min-width: 481px) and (max-width: 991px) {
  #brochure-section {
    padding: 40px 20px;
  }

  #brochure-section h2 {
    font-size: 28px;
  }

  .brochure-grid {
    grid-template-columns: repeat(2, 1fr); /* two cards per row */
    max-width: 640px; /* max width to keep cards from growing too large */
    margin: 0 auto;
  }

  .brochure-card {
    max-width: 300px;
    margin: 0;
  }

  .brochure-card .card-header h3 {
    font-size: 17px;
  }
}

/* Large devices / Laptops (single row) */
@media (min-width: 992px) {
  #brochure-section {
    padding: 80px 60px;
  }

  #brochure-section h2 {
    font-size: 36px;
  }

  .brochure-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    justify-content: center; /* keep all cards in one row */
    gap: 24px;
  }

  .brochure-card {
    max-width: 280px;
    margin: 0;
  }

  .brochure-card .card-header h3 {
    font-size: 18px;
  }
}




/* ===========================================================================   GALLERY SECTION ================================================================================== */



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
  --gallery-gap: 25px; /* consistent gap across all devices */
  --gallery-speed: 20s;
}

body {
  font-family: 'Poppins', sans-serif;
}

.section {
  padding: 3rem 1rem;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.gallery-carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: var(--gallery-gap) !important;
  flex-wrap: nowrap;
  will-change: transform;
  animation: scrollBackForth var(--gallery-speed) linear infinite alternate;
}

.gallery-item {
  flex: 0 0 auto;
  width: 240px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin: 0;
  padding: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Ping-pong scroll animation */
@keyframes scrollBackForth {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   RESPONSIVE GALLERY
========================= */

/* Large tablets and small laptops */
@media (max-width: 900px) {
  .carousel-track {
    gap: var(--gallery-gap) !important;
  }
  .gallery-item {
    width: 200px;
  }
  .gallery-item img {
    height: 140px;
  }
}

/* Tablets / larger phones */
@media (max-width: 768px) {
  .carousel-track {
    gap: var(--gallery-gap) !important;
  }
  .gallery-item {
    width: 160px;
  }
  .gallery-item img {
    height: 130px;
  }
}

/* Small devices / mobile phones */
@media (max-width: 560px) {
  .carousel-track {
    gap: var(--gallery-gap) !important;
  }
  .gallery-item {
    width: 140px;
  }
  .gallery-item img {
    height: 120px;
  }
}

/* Extra small devices / very small phones */
@media (max-width: 380px) {
  .carousel-track {
    gap: var(--gallery-gap) !important;
  }
  .gallery-item {
    width: 120px;
  }
  .gallery-item img {
    height: 100px;
  }
}

/* ====================================================================================================   LOCATION SECTION (FINAL RESPONSIVE FIX)  =================================================================== */


#location-section {
  background: linear-gradient(180deg, #f0f7f6, #ffffff);
  margin: 0;
  padding: 60px 20px;
  box-sizing: border-box;
}

#location-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-align: center;
}

#location-section p.center {
  max-width: 700px;
  margin: 0 auto 36px;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  text-align: center;
}

/* Container wrap */
#location-section .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Grid layout */
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr); /* avoids overflow */
  gap: 32px;
  align-items: stretch;
}

/* Map */
.location-map iframe {
  width: 100%;
  height: 360px;       /* fixed safe height instead of 100% */
  border: 0;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-map iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* Panel */
.location-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
}

.location-panel h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
  letter-spacing: 0.5px;
}

.location-panel p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

/* Nearby places */
.nearby-places {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.nearby-places li {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nearby-places li:hover {
  transform: translateX(4px);
  color: var(--accent);
}

/* CTA buttons */
.location-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-cta .btn {
  flex: 1; /* makes buttons share space on small screens */
  padding: 12px 20px;
  font-weight: 700;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.location-cta .btn:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 110, 79, 0.25);
}

/* Animate reveal */
.animate-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease);
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE FIXES
========================= */

/* Tablets */
@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr; /* stack vertically */
    gap: 24px;
  }

  .location-map iframe {
    height: 300px;
  }

  .nearby-places {
    grid-template-columns: 1fr;
  }

  .location-cta {
    justify-content: center;
  }

  .location-cta .btn {
    flex: unset;
  }
}

/* Phones */
@media (max-width: 560px) {
  #location-section {
    padding: 40px 15px;
  }

  #location-section h2 {
    font-size: 26px;
  }

  .location-map iframe {
    height: 240px;
  }

  .location-panel {
    padding: 20px;
  }

  .location-panel h3 {
    font-size: 18px;
  }

  .location-panel p {
    font-size: 14px;
  }

  .nearby-places li {
    font-size: 13px;
  }

  .location-cta {
    flex-direction: column; /* stack buttons vertically */
  }

  .location-cta .btn {
    width: 100%;
    font-size: 14px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  #location-section {
    padding: 30px 12px;
  }

  #location-section p.center {
    font-size: 14px;
  }

  .location-map iframe {
    height: 200px;
  }

  .location-panel {
    padding: 16px;
  }
}
/*=================================== news gallery ================*/
#newspper h2{
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-align: center;
    
}
  .gallery-news {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
  }

  .gallery-news img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
    border: 2px solid #eee;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }

  .gallery-news img:hover {
    transform: scale(1.05);
  }

  /* Lightbox Overlay */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
  }

  /* Close Button */
  .lightbox:after {
    content: "✕";
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: white;
    cursor: pointer;
  }



/* ========================= 
   CONTACT SECTION (Responsive + Edge to Edge)
========================= */
/* ========================= Contact Section ========================= */
:root {
  --accent: #f97316;
  --accent-2: #f5650b;
}

.contact-section {
  background: var(--accent);
  padding: 40px 20px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* Left Side */
.contact-info {
  color: #fff;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 8px;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Contact Cards */
.contact-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  transition: background 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.25);
}

.icon-circle {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  display: none;
}

.contact-card:hover .icon-circle {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}


.contact-card h3 {
  font-size: 18px;
  margin-bottom: 3px;
}

.contact-card p {
  font-size: 15px;
  opacity: 0.9;
}

/* Right Side Form */
.contact-form-box {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  resize: none;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  outline: none;
  border-color: var(--accent-2);
}

/* Checkbox */
.checkbox-label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form-box button {
  background: linear-gradient(to right, var(--accent), var(--accent-2));
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.contact-form-box button:hover {
  filter: brightness(0.9);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}


/* =========================
   FOOTER SECTION (Responsive with Scalable Text)
========================= */

/* Responsive font size variables */
:root {
  --fs-small: clamp(0.8rem, 0.85rem + 0.2vw, 0.9rem);   /* small text */
  --fs-normal: clamp(0.9rem, 0.95rem + 0.2vw, 1rem);   /* normal body text */
  --fs-medium: clamp(1rem, 1.05rem + 0.3vw, 1.125rem); /* section titles */
  --fs-large: clamp(1.25rem, 1.3rem + 0.4vw, 1.5rem);  /* brand title */
  --fs-tiny: clamp(0.7rem, 0.72rem + 0.15vw, 0.75rem); /* tiny text */
}

.site-footer {
  background: linear-gradient(180deg, #f1f4f3, #e8f0ec);
  padding: 48px 16px 24px;
  color: var(--muted, #555);
  font-family: 'Inter', sans-serif;
  border-top: 2px solid rgba(11, 110, 79, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Group Quick Links and Follow Us */
.footer-links-social {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

/* Each column inside this group */
.footer-links, .footer-social {
  flex: 1 1 200px; /* grow, shrink, basis */
}

/* Brand */
.footer-brand .brand-title {
  font-size: var(--fs-large);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.footer-brand .brand-sub {
  font-size: var(--fs-small);
  color: #666;
  margin-bottom: 12px;
  text-align: left;
}
.footer-brand .brand-contact div {
  font-size: var(--fs-small);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.footer-brand .brand-contact div:hover {
  color: var(--accent);
}

/* Footer links */
.footer-links h4,
.footer-social h4,
.footer-newsletter h4 {
  font-size: var(--fs-medium);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--accent);
}
.footer-links a {
  display: block;
  font-size: var(--fs-normal);
  color: #555;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

/* Social icons */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: clamp(1rem, 1rem + 0.2vw, 1.125rem);
  transition: transform 0.3s, color 0.3s;
  color: #555;
}
.social-icons a:hover {
  color: var(--accent);
  transform: scale(1.2);
}

/* Newsletter */
.footer-newsletter p {
  font-size: var(--fs-small);
  margin-bottom: 8px;
  color: #555;
}
.footer-newsletter form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-newsletter input[type="email"] {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: var(--fs-small);
  transition: all 0.3s ease;
}
.footer-newsletter input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(11, 110, 79, 0.12);
}
.footer-newsletter button {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: var(--fs-small);
  transition: all 0.3s ease;
}
.footer-newsletter button:hover {
  background: var(--accent-2);
  transform: translateY(-2px) scale(1.03);
}

/* Newsletter message */
.newsletter-msg {
  margin-top: 6px;
  font-size: var(--fs-small);
  color: var(--accent);
}

/* Tiny copyright */
.tiny {
  font-size: var(--fs-tiny);
  color: #777;
  text-align: center;
  margin-top: 16px;
}


/* Tablets (medium devices) */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr; /* two columns layout */
    gap: 24px;
  }
  .footer-links-social {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-links, .footer-social {
    flex: 1 1 45%;
    text-align: left;
  }
  .social-icons {
    justify-content: flex-end;
  }
  .footer-newsletter form {
    flex-direction: column;
  }
  .footer-newsletter input[type="email"], 
  .footer-newsletter button {
    width: 100%;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-links-social {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-links, .footer-social {
    flex: 1 1 45%;
    text-align: left;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .footer-links-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-links, .footer-social {
    flex: 1 1 100%;
    text-align: left;
  }
}




/* ====================== new code ===================== */
.spacer{
  width: 100%;
  height: 50px;
}
  .hosted-video{
  width: 100%;
  max-width: 600px;
  margin: 0 auto; 
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 5px 5px 8px rgba(0,0,0,0.4);
}
.hosted-video video{
  width: 100%;
  height: 100%;
  object-fit: contain; /* or 'cover' to fill and crop */
  display: block;
}


@media screen and (max-width:768px){
  .hero-video{
    display: none;
  }
  /*#home{*/
  /*  background: #374151;*/
  /*}*/
  .hero-text h1 span{
    font-size: 2.7rem;
  }
  .small-card .value{
    font-size: 0.8rem;  
  }
  .spacer{
    display: none;
  }
  .about-list li::before{
    display: none;
  }
  .overview-content-wrappper{
    padding: 0 1rem;
  }
  .brochure{
      margin-top: 10px!important;
      padding-left:0;
  }
  .wrap {
    width: 100%;
      
  }
  .newspper{
      padding-top: 0;
  }
  .hero-text {
     background: rgba(255,255,255,0.2); 
  }
  .hero-text .eyebrow {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.2rem;
  transform: translateX(10px);
  animation: zoom 2s ease infinite;
}
@keyframes zoom {
  0%, 100% {
    transform: scale(1) translateX(10px);
  }
  50% {
    transform: scale(1.2) translateX(15px);
  }
}
.overview-subtitle{
    font-size:.9rem;
}
.about-list li {
        font-size: 16px;
        padding-left: 0;
    }
    .govt-approve {
    position: absolute;
    right: unset;
    bottom: unset;
    top: -90px;
    left: -20px;
}
.govt-approve img{
    width: 100px;
}
.small-card .value {
    text-shadow: none;
    color:#000;
    font-weight: 700;
}
    
}









