.top-bar {
  display: flex;
  flex-direction: column;   /* stack items */
  align-items: center;      /* center horizontally */
  justify-content: center;
  text-align: center;
  padding: 15px 10px;
}

/* Logo */
.logo img {
  width: 70px;
  margin-bottom: 8px;
}

/* Company name */
.company-name {
  font-size: 26px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

/* Button */
.visit-btn {
  background: #2ecc71;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* MENU – CENTER BELOW TITLE */
.nav-menu {
  display: flex;
  justify-content: center;   /* center menu */
  gap: 28px;
  margin-top: 10px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: #222;
}


/* HAMBURGER – HIDDEN ON DESKTOP */
/* Hide hamburger in desktop */
.hamburger {
  display: none;
}

/* Mobile view */
@media (max-width: 768px) {

  .top-bar {
    position: relative;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
  }
}

.hero-video {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* Video */
.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

/* Dark overlay (optional but recommended) */
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

/* Content above video */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}

.hero-badges {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  gap: 40px;

  color: #111;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.hero-badge {
  white-space: nowrap;
}

/* ===== HERO RIBBON BADGES ===== */
.hero-ribbon-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 500px;   /* controls how many fit in one row */
  margin: auto;
}

.ribbon-badge {
  width: 130px;
  height: 130px;
}


.hero-ribbon-badges {
  margin-top: 30px;
}

.ribbon-badge {
  width: 110px;
  height: 110px;
  background: #ffffff;
  border: 6px solid #f4c400; /* gold */
  border-radius: 50%;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

/* RED RIBBON */
.ribbon-badge::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 30px;
  background: #c62828;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 50% 70%, 20% 100%);
}

.ribbon-badge span {
  line-height: 1.2;
}

.about-section {
  background: #ffffff;
  padding: 80px 20px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.about-divider {
  width: 80px;
  height: 4px;
  background: #f4c400; /* gold theme */
  margin: 15px auto 30px;
}

.about-text {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-section {
  background: #f9f9f9;
  padding: 70px 20px;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: auto;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
}

.contact-divider {
  width: 80px;
  height: 4px;
  background: #f4c400;
  margin: 15px auto 30px;
}

.contact-info p {
  font-size: 18px;
  margin-bottom: 12px;
}

.contact-info a {
  color: #c62828;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.site-footer {
  background: #222;
  color: #ccc;
  padding: 25px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
}

.footer-company {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-links a {
  color: #f4c400; /* gold accent */
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin: 0 5px;
}

.footer-links span {
  color: #777;
}

.footer-links a:hover {
  text-decoration: underline;
}

.book-visit-btn {
  position: absolute;
  top: 20px;
  right: 20px;

  background: #3f3f3f;
  color: #ffffff;

  padding: 8px 16px;        /* ⬅️ makes it small */
  font-size: 13px;          /* ⬅️ smaller text */
  font-weight: 600;

  text-decoration: none;
  border-radius: 2px;

  width: auto;              /* ⬅️ VERY IMPORTANT */
  height: auto;             /* ⬅️ VERY IMPORTANT */
  line-height: normal;

  display: inline-block;    /* ⬅️ prevents full height */
  z-index: 20;
}

.book-visit-btn:hover {
  background: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f6f8;
}

/* ===== PAGE ===== */
.project-page {
  padding: 60px 40px;
  background: #f7f8fa;
}

/* ===============================
   COMMON DETAIL SECTIONS
   =============================== */

.detail-section {
  padding: 80px 20px;
  background: #ffffff;
}
.detail-content h2 { 
  font-size: 30px; 
  font-weight: 800; 
  margin-bottom: 15px; 
  color: #0b1c2d; 
}

.detail-section.alt-bg {
  background: #fff7e6; /* soft premium alternate background */
}

.detail-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.detail-content p {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 15px;
}

.detail-content ul {
  padding-left: 20px;
  line-height: 1.9;
}

/* Highlight ONLY project details */
.highlight-details .detail-content ul li {
  font-weight: 600;
  color: #1f2937;
}

/* Keep other sections normal */
.detail-section:not(.highlight-details) ul li {
  font-weight: 400;
  color: #4b5563;
}

.highlight-details h2 {
  color: #0b1c2d;
  font-weight: 800;
}

.detail-section:not(.highlight-details) h2 {
  color: #111827;
  font-weight: 700;
}


/* STATUS ROW */
.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

/* ONGOING BADGE */
.badge.ongoing {
  background: #22c55e;
  color: #064e3b;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1;
}

/* =====================
   PROJECT LIST VIEW
   ===================== */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* STATUS ABOVE IMAGE */
.card-status {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

/* SMALL PROJECT IMAGE */
.project-cover {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}

/* CARD TEXT */
.project-card-info {
  margin-top: 12px;
}

.project-card-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.project-card-info p {
  font-size: 14px;
  color: #6b7280;
}

/* VIEW PROJECT BUTTON */
.view-project-btn {
  margin-top: 10px;
  background: none;
  border: none;
  color: #2563eb;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
/* =====================
   PROJECT DETAILS VIEW
   ===================== */

.project-details.hidden {
  display: none;
}
/* =====================
   PROJECT DETAILS VIEW
   ===================== */

.project-details.hidden {
  display: none;
}

/* PROJECT DETAILS IMAGE – SLIGHTLY BIGGER */
.project-details img {
  width: 100%;
  max-width: 520px;   /* 👈 increase from small size */
  height: auto;
  border-radius: 12px;
}

.project-details {
  display: block;       /* 👈 stack sections vertically */
  max-width: 1100px;
  margin: 40px auto;
}

.project-overview {
  display: flex;
  gap: 40px;
}

.project-overview img {
  max-width: 480px;
  width: 100%;
}
/* INTRO SECTION – BOLD & PROMINENT */
.project-intro h2 {
  font-weight: 700;
}

.project-intro ul li {
  font-weight: 600;
  color: #111827; /* darker for emphasis */
}

/* Other sections stay normal */
.project-section ul li {
  font-weight: 400;
}

/* DETAILS IMAGE – CONTROLLED SIZE */
.detail-image img {
  width: 100%;
  max-width: 280px;       /* IMPORTANT */
  max-height: 280px;      /* IMPORTANT */
  height: auto;
  object-fit: contain;    /* logo-safe */
  display: block;
  margin: auto;
}

.project-section {
  margin-bottom: 50px;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
}

.detail-section h2 {
  font-weight: 800;
}

.detail-section li,
.detail-section span {
  font-weight: 600;
}

/* ===== CONTACT US SECTION ===== */

.contact-us-section {
  padding: 80px 20px;
  background: #ffffff;
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* OFFICE DETAILS */
.office-details h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.office-name {
  font-weight: 700;
  margin-bottom: 20px;
}

.office-details p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.office-details a {
  color: #c62828;
  text-decoration: none;
  font-weight: 600;
}

/* CONTACT FORM */
.contact-form-box {
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-form-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.contact-form button {
  background: #c62828;
  color: #ffffff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #a61f1f;
}

/* ===== GALLERY PAGE ===== */

.gallery-section {
  padding: 80px 20px;
  background: #ffffff;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
}

.gallery-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

.badge.upcoming {
  background: #facc15;   /* golden */
  color: #78350f;
  font-weight: 700;
}

/* ===== MEMBER LOGIN ===== */

.login-section {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #f4f6f8;
}

.login-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  text-align: center;
}

.login-box h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.login-subtext {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 25px;
}

.login-form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.login-form button {
  width: 100%;
  padding: 12px;
  background: #c62828;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.login-form button:hover {
  background: #a61f1f;
}

.login-divider {
  margin: 22px 0;
  position: relative;
  font-size: 13px;
  color: #6b7280;
}

.login-divider span {
  background: #fff;
  padding: 0 10px;
}

.login-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  z-index: -1;
}

.register-btn {
  display: block;
  padding: 12px;
  border: 2px solid #c62828;
  color: #c62828;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.register-btn:hover {
  background: #c62828;
  color: #ffffff;
}

.login-help {
  margin-top: 15px;
  font-size: 13px;
  color: #6b7280;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #0f172a;
  color: #fff;
}

.dashboard-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 24px;
}

.dashboard-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.status.active {
  background: #dcfce7;
  color: #166534;
}

.status.pending {
  background: #fff7ed;
  color: #9a3412;
}

.logout-btn {
  background: #dc2626;
  border: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.member-result {
  margin-top: 20px;
}

.success-box {
  background: #e8fff0;
  border: 1px solid #22c55e;
  padding: 16px;
  border-radius: 10px;
  text-align: center;
}

.success-box h3 {
  color: #15803d;
  margin-bottom: 8px;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  width: 100%;
  padding-right: 42px;
}

.toggle-eye {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6b7280; /* subtle grey */
  font-size: 16px;
}

.toggle-eye:hover {
  color: #111827; /* darker on hover */
}

.hero-get-touch-form {
  position: absolute;
  top: 140px;
  right: 40px;
  width: 360px;

  /* transparent / glass background */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
  z-index: 6;
}
.hero-get-touch-form {
  position: absolute;
  top: 140px;
  right: 40px;
  width: 360px;

  /* transparent / glass background */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
  z-index: 6;
}


.hero-get-touch-form h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  background: #2f6f3e; /* SBI green style */
  padding: 10px;
  border-radius: 4px;
}

.hero-get-touch-form label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-top: 10px;
  color: #111827;
}

.hero-get-touch-form input {
  width: 100%;
  padding: 9px;
  margin-top: 4px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
}

.hero-get-touch-form button {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  background: #22c55e;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.hero-enquiry-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hero-enquiry-left a {
  background: rgba(34,197,94,0.9);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  margin-left: 8px;
  text-decoration: none;
  font-weight: 600;
}

.hero-enquiry-btn {
  background: #16a34a;
  color: #fff;
  padding: 10px 22px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
}

.hero-enquiry-phone {
  position: absolute;
  top: 460px;        /* aligns neatly under the form */
  right: 40px;
  width: 360px;
  text-align: center;
  margin-top: 18px;
  z-index: 6;
}

.hero-enquiry-phone span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.hero-enquiry-phone a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;

  padding: 12px 26px;
  border-radius: 40px;

  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 
    0 10px 25px rgba(34, 197, 94, 0.35),
    inset 0 0 0 1px rgba(255,255,255,0.25);
}

.home-projects {
  padding: 70px 40px;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Project Card */
.project-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 18px;
  text-align: left;
}

.project-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.project-info p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 15px;
}

/* Status */
.project-status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.project-status.ongoing {
  background: #22c55e;
  color: #fff;
}

.project-status.upcoming {
  background: #f59e0b;
  color: #fff;
}

/* Button */
.project-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #0b1c2d;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.project-btn.disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

/* ===============================
   MOBILE & TABLET VIEW
   =============================== */

@media (max-width: 900px) {

  .detail-section {
    padding: 50px 16px;
  }

 .detail-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .detail-content h2 {
    font-size: 24px;
  }


  .detail-image img {
    max-width:220px;
    max-height:220px;
  }
}

/* ===============================
   SMALL PHONES
   =============================== */

@media (max-width: 480px) {

  .detail-section {
    padding: 40px 14px;
  }

  .detail-content h2 {
    font-size: 22px;
  }

  .detail-content ul {
    padding-left: 18px;
  }

  .badge.ongoing,
  .year-pill {
    font-size: 11px;
    padding: 5px 10px;
  }
}

.why-us-section {
  margin-top: 50px;
}

.why-us-section h3 {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 30px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.why-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0b1c2d;
}

.why-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

.how-it-works {
  padding: 70px 40px;
  background: #ffffff;
  text-align: center;
}

.how-it-works h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0b1c2d;
  letter-spacing: 1px;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.work-card {
  background: #083c6b;   /* govt-style blue */
  color: #ffffff;
  padding: 30px 22px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===== CONTACT BUTTON ===== */

.contact-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #000000;
}

.important-bar {
  position: relative;        /* attached to header */
  display: flex;
  align-items: center;
  width: 100%;
  height: 38px;
  background: #eaf4fb;
  border-top: 1px solid #c8f4d5;
  border-bottom: 1px solid #cbdde1;
  font-size: 14px;
}

.important-label {
  background: #1e8a2b;
  color: #fff;
  padding: 6px 14px;
  font-weight: 700;
  min-width: 90px;
  text-align: center;
}

.important-text {
  padding-left: 12px;
  color: #111827;
  font-weight: 500;
}


.header-enquiry-wrapper {
  position: absolute;
  top: 100%;              /* sticks just below header */
  right: 40px;
  z-index: 999;
}

.project-phone {
  margin-top: 14px;
}

.project-phone span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.project-phone a {
  display: inline-block;
  background: #22c55e;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(34,197,94,0.35);
}

.combined-left {
  padding-right: 20px;
}

/* Accordion item */
.combined-left .accordion-item {
  background: #ffffff;
  border: 1px solid #d6e4f0;
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
}

/* Accordion header */
.combined-left .accordion-header {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: #1f2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Active accordion */
.combined-left .accordion-item.active .accordion-header {
  background: #8fc990;
  font-weight: 600;
}

/* Accordion content */
.combined-left .accordion-content {
  display:none;
  padding: 14px 16px;
  background: #ffffff;
}

/* Button inside accordion */
.combined-left .form-btn {
  width: 100%;
  padding: 10px 14px;
  background: #2f6f47;
  color: #ffffff;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.combined-left .form-btn:hover {
  background: #4ea181;
}

/* Remove ugly default focus outlines */
.combined-left button:focus {
  outline: none;
}

/* ONE SINGLE BOX */
.combined-section {
  background: #eef6ff;
  padding: 50px 0;
}

.combined-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #eaf4ff;
  border-radius: 12px;
  border: 1px solid #dbf0db;
  padding: 30px;

  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 40px;
}

/* LEFT */
.combined-left h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* RIGHT */
.combined-right h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.about-line {
  display: block;
  width: 50px;
  height: 4px;
  background: #facc15;
  margin-bottom: 18px;
}

.combined-right p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 14px;
}

body {
  font-family: Arial, sans-serif;
  background: #eef6ff;
  margin: 0;
}

.page-wrapper {
  max-width: 1200px;
  margin: 20px auto;
  background: #eaf6ff;
  padding: 25px;
  border-radius: 8px;
}

.form-header {
  text-align: center;
}

.form-header img {
  height: 70px;
}

.form-header h1 {
  font-size: 22px;
  margin: 10px 0;
}

.reg-no {
  font-size: 14px;
}

.main-title {
  text-align: center;
  margin: 20px 0;
}

.label {
  font-weight: bold;
  font-size: 14px;
}

.input, select {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.section-title {
  margin: 25px 0 10px;
}

.family-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.terms-title {
  text-align: center;
  margin-top: 30px;
}

.terms-btn {
  width: 100%;
  padding: 10px;
  background: #f1f6ff;
  border: 1px solid #bcd;
  cursor: pointer;
  font-weight: bold;
}

.terms-box {
  display: none;
  background: #eaf6ff;
  padding: 15px;
  border: 1px solid #bcd;
  margin-top: 5px;
  font-size: 14px;
}

.terms-box p {
  margin-bottom: 10px;
}

.terms-check {
  margin-top: 15px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.submit-wrap {
  text-align: center;
  margin-top: 25px;
}

.submit-wrap button {
  padding: 10px 30px;
  background: #2b66f6;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f7f6;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-form-section {
    padding: 25px;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .combined-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  /* Hide menu in mobile */
  .nav-menu {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    display: none;  /* 🔴 hidden by default */
    border-top: 1px solid #ddd;
  }

  .nav-menu a {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }

  .navbar {
    padding: 15px 20px;
  }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 18px;
}

.company-name {
    font-size: 18px;      /* slightly smaller on mobile */
  }

.logo img {
    height: 55px;
  }

  .hero-video {
    height: 65vh;
  }

  .badge {
    width: 95px;
    height: 95px;
    font-size: 12px;
  }

  .badge::before,
  .badge::after {
    bottom: -28px;
    width: 20px;
    height: 28px;
  }
  .about-title {
    font-size: 26px;
  }

  .about-text {
    font-size: 15px;
  }

  .contact-title {
    font-size: 26px;
  }

  .contact-info p {
    font-size: 16px;
  }

  .book-visit-btn {
    position: static;
    margin: 15px auto 0;
    display: inline-block;
  }
.details-container {
    grid-template-columns: 1fr;
  }

  .project-page {
    padding: 40px 20px;
  }

  .details-wrapper {
    grid-template-columns: 1fr;
 
  }
}

.body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f9ff;
  color: #333;
}


@media (max-width: 900px) {

  .detail-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .detail-section {
    padding: 50px 16px;
  }

  .detail-content h2 {
    font-size: 24px;
  }

  .project-cover {
    height: 160px;
  }
}

@media (max-width: 768px) {

  .hero-ribbon-badges {
    position: static;      /* important – removes floating */
    margin-top: -15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  .ribbon-badge {
    width: 85px;
    height: 85px;
    font-size: 11px;
  }

  .ribbon-badge::after {
    width: 28px;
    height: 26px;
    bottom: -26px;
  }

}


@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .hero-get-touch-form {
    position: static;
    width: 100%;
    margin: 20px;
  }
}

@media (max-width: 900px) {
  .hero-enquiry-phone {
    position: static;
    width: 100%;
    margin: 10px 20px 20px;
  }
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown hidden box */
.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
  top: 30px;
  z-index: 999;
}

/* Dropdown links */
.dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #f1f1f1;
  color: #1e7f43;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* MOBILE MENU FIX */
@media (max-width: 768px) {

  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    z-index: 9999;   /* VERY IMPORTANT */
    padding: 15px;
  }

  .navbar {
    position: relative;
    z-index: 10000;
  }

}

.important-bar {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {

  .status-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .badge.ongoing,
  .badge.upcoming {
    width: auto;
    height: auto;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
  }

  .year-pill {
    font-size: 12px;
  }

}

/* FULL PAGE CENTER */
.career-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;     /* center horizontally */
  justify-content: center; /* center vertically */
  padding: 60px 20px;
  background: #f3f4f6;
}

/* CENTER HEADING */
.career-section h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

/* CENTER TEXT */
.career-section p {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 30px auto;
  color: #555;
}

/* FORM BOX IN CENTER */
.career-form {
  width: 500px;
  max-width: 95%;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* INPUTS */
.career-form label {
  font-weight: 600;
  margin-top: 14px;
  display: block;
}

.career-form input,
.career-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* BUTTON */
.career-form button {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: #2ea44f;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.faq-section {
  padding: 60px 20px;
  text-align: center;
  background: #f5f7f6;
}

.faq-section h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.faq-section p {
  color: #555;
  margin-bottom: 30px;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  text-align: left;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-answer {
  display: none;
  padding: 15px 18px;
  text-align: left;
  color: #444;
  border-top: 1px solid #eee;
}

/* ============================= */
@media (max-width:768px){

  /* Make video taller */
  .hero-video{
    height:780px;
  }

  /* Move badges to TOP */
  .hero-ribbon-badges{
    position:absolute;
    top:70px;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    z-index:2;
  }

  /* Place form BELOW badges */
  .hero-get-touch-form{
    position:absolute;
    top:240px;   /* below badge */
    left:50%;
    transform:translateX(-50%);
    width:85%;
    max-width:260px;
    z-index:3;
  }

  .hero-enquiry-phone{
    position:absolute;
    top:650px;   /* move below form */
    left:50%;
    transform:translateX(-50%);
    z-index:3;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 180px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content.show {
  display: block;
}

/* Container box */
.accordion-item {
  background: #f7f9fc;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #e3e6ea;
  overflow: hidden;
}

/* Header button */
.accordion-header {
  width: 100%;
  background: #8fbc8f;   /* soft green */
  color: #0a2e2a;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.accordion-header:hover {
  background: #7cab7c;
}

/* Dropdown content */
.accordion-content {
  display: none;
  padding: 15px 18px;
  background: #ffffff;
  border-top: 1px solid #eee;
}

.apply-btn {
  display: inline-block;
  background: #2f6f44;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #245c37;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


.popup-box{
  background:white;
  padding:25px;
  border-radius:10px;
  width:300px;
  text-align:center;
}

.popup-box input,
.popup-box select{
  width:100%;
  margin:8px 0;
  padding:8px;
}

.visit-btn{
  background:#25D366;
  color:white;
  padding:12px 18px;
  border:none;
  border-radius:6px;
  font-size:16px;
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile view */
@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background: white;
    width: 230px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu a {
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
}

.bank-details strong,
.bank-details b {
  font-weight: 700;
  color: #000;
}



body {
  font-family: Arial, sans-serif;
  background: #f5f7f6;
  margin: 0;
}

/* Title */
.testimonial-title {
  text-align: center;
  padding: 50px 20px 20px;
  font-size: 32px;
  color: #1e7f43;
}

/* Layout */
.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 30px 8% 60px;
}

/* Card */
.testimonial-card {
  background: white;
  width: 320px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.member-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid #1e7f43;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 12px;
}

.testimonial-card h4 {
  margin: 5px 0 2px;
  color: #1e7f43;
}

.testimonial-card span {
  font-size: 12px;
  color: gray;
}



/* Show only on mobile */
@media (max-width: 768px) {

  .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
    z-index: 10001;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    display: none;
    flex-direction: column;
    padding: 15px 20px;
    z-index: 10000;
  }

/* Hide checkbox */
#more-toggle {
  display: none;
}

/* Hide dropdown by default */
.dropdown-content {
  display: none;
}

/* When clicked → show */
#more-toggle:checked + .more-btn + .dropdown-content {
  display: block;
}
@media (min-width:769px){
  .dropdown:hover .dropdown-content {
    display: block;
  }
}
@media (max-width:768px){
  .dropdown-content {
    display: none;
    position: static;
    width: 100%;
    background: #f7f7f7;
    box-shadow: none;
  }
}



