html {
  scroll-behavior: auto;
}
:root {
  --yellow: #f9a825;
  --brown: #5d4037;
  --light: #fffdf4;
  --dark: #3e2723;
  --text: #212121;
  --alt-1: #fffde7;
  --alt-2: #fffaf0;
  --border-radius: 12px;
}
.alt-bg-1 { background: var(--alt-1); }
.alt-bg-2 { background: var(--alt-2); }
html, body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--light);
  color: var(--text);
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* === Header === */
.topbar {
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  align-items: center;
  border-bottom: 3px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  flex-wrap: wrap;
}

.topbar.scrolled {
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.95);
}

.branding {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.branding img {
  height: 65px;
  max-width: 100px;
  object-fit: contain;
  transition: height 0.3s ease;
}

.topbar.scrolled .branding img {
  height: 45px;
}

.brand-text h1 {
  margin: 0;
  color: var(--brown);
  font-size: 2.0rem;
  font-style: italic;
}

.brand-text h3 {
  margin: 0.1rem 0 0;
  color: var(--yellow);
  font-size: 1.2rem;
  font-weight: 600;
}

.brand-text h4 {
  margin: 0.1rem 0;
  color: #8d6e63;
  font-size: 1.2rem;
  font-weight: 500;
}

.nav-actions button {
  margin-left: 1rem;
  padding: 0.6rem 1.2rem;
  border-radius: 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

button.primary {
  background: var(--yellow);
  color: var(--brown);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

button.primary:hover {
  background: var(--brown);
  color: white;
}

button.outline {
  background: white;
  color: var(--brown);
  border: 2px solid var(--brown);
}

button.outline:hover {
  background: var(--brown);
  color: white;
  border-color: var(--brown);
}

/* === Modern Hero === */
.modern-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: transparent;
}

.hero-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
    position: absolute;
    left: 5%;
    top: 80%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    max-width: 620px;
    text-align: left;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.hero-overlay h2 {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.5rem;
  font-style: normal;
}

.hero-subtext {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.5rem;
  font-style: normal;
}

.hero-subtext-s {
  color: #fffde7;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  opacity: 0.95;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-gallery {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-out;
}

.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Vertical Dots */
.hero-dots {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  background: white;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.3s ease;
  cursor: pointer;
}

.hero-dots .dot.active {
  background: var(--yellow);
  opacity: 1;
  transform: scale(1.3);
}



.cta-button {
  background: linear-gradient(to right, #fbc02d, #8d6e63);
  color: white;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  background: linear-gradient(to right, #f9a825, #6d4c41);
}

/* === Scrolling News (Replaces marquee) === */
.flash-news {
  background-color: var(--brown);
  color: white;
  padding: 0.6rem 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.flash-news:hover {
  background-color: #4e342e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.flash-news .tag {
  background: white;
  color: var(--brown);
  border-radius: 5px;
  padding: 0.2rem 0.6rem;
  margin-right: 0.8rem;
  font-size: 1rem;
}

.scrolling-news {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  position: relative;
}

.news-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.news-content:hover {
  color: var(--yellow);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}


.scrolling-news:hover .news-content {
    animation-play-state: paused;
}


/* === About Us Section (Modified for Vertical Layout) === */

.about-wrapper {
    padding: 2rem 1rem;
}

.about-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.about-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 900px;
}

    .about-card img {
        width: 100%;
        height: 25rem;
        display: block;
        border-radius: 20px;
        object-fit: cover;
    }

.about-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 10rem 19rem 0;
    width: 100%;
  
    color: white;
    border-radius: 0 0 20px 20px;
}
    .about-overlay p {
        color: var( --brown);
        font-size: 1.2rem;
    }
.about-label {
    background: linear-gradient(to right, var(--yellow), var(--brown));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    display: inline-block;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    margin-right: 393px;
}

.label-text {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.about-text {
    max-width: 900px;
}

    .about-text p {
        font-size: 1.25rem; /* 20px */
        line-height: 1.7;
        margin-bottom: 1.5rem;
        color: var(--text);
        text-align: justify;
    }

/* Remove or simplify media query if no longer needed */
@media (max-width: 768px) {
    .about-container {
        width: 90%;
    }

    .about-text {
        max-width: 100%;
    }
}


@media (max-width: 995px) {
    .about-overlay {
        position: absolute;
        width: 100%;
        color: white;
        border-radius: 0 0 20px 20px;
    }

        .about-overlay p {
            color: var( --brown);
            font-size: 1.2rem;
        }

    .about-label {
        background: linear-gradient(to right, var(--yellow), var(--brown));
        color: white;
        border-radius: 6px;
        display: inline-block;
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 0rem;
        margin-right: 233px;
    }
}



/* === Who Can Apply === */
.who-apply-container {
  
  padding: 2rem 1rem;
  text-align: center;
}

.who-apply-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.who-card {
  background: linear-gradient(to right, var(--yellow), #a1887f);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  flex: 1 1 45%;
  max-width: 500px;
  min-width: 300px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-card h3 {
  text-align: center;
  margin: 1.2rem 0 0.8rem;
  font-size: 1.4rem;
}

.who-card img {
  display: block;
  margin: 0 auto 1rem;
  width: 6rem;
  height: 6rem;
}

.who-card ul {
  padding-left: 1.2rem;
  font-size: 1.1rem;
}

.who-card li {
  margin-bottom: 0.75rem;
  list-style-type: "✔ ";
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
/* === Why Choose Us Section === */
.why-choose-wrapper {
  
  padding: 2rem 1rem;
}

.why-choose-wrapper .container {
  width: 80%;
  margin: 0 auto;
}

.why-choose-wrapper .section-heading {
  text-align: center;
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 3rem;
  position: relative;
}

.why-choose-wrapper .section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--yellow);
  margin: 0.5rem auto 0;
  border-radius: 10px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.choose-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.choose-image {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.choose-image img {
  width: 100%;
  height: 30vh;
  transition: transform 0.3s ease;
}

.choose-card:hover .choose-image img {
  transform: scale(1.05);
}

.choose-card h3 {
  color: var(--brown);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.choose-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

/* Responsive spacing fix */
@media (max-width: 600px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }
}

/* === Selection Process - Modern Step Summary === */
.how-to-apply-wrapper {
   /* Light Yellow */
  padding: 2rem 1rem;
}

.step-grid {
  display: flex;
  justify-content: center;
}

.step-box.full.modern-steps {
  background: #fff8dc; /* Restored soft yellow */
  border-left: none;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  max-width: 1080px; /* Increased from 960px */
  margin: 0 auto;
  
}
.step-box.full.modern-steps:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box.full.modern-steps h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--brown);
  text-align: center;
}

.step-list {
  list-style: none;
  padding-left: 0;
  counter-reset: step;
}

.step-list li {
  margin-bottom: 1.8rem;
  padding-left: 3rem;
  position: relative;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
}

.step-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 2rem;
  height: 2rem;
  background: white;               /* Restored older style */
  color: var(--brown);             /* Text color */
  border: 2px solid var(--brown);  /* Restored older border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.step-list code {
  background: #fceabb;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
}
/* Scroll fade animation */
.step-list li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-list li.visible {
  opacity: 1;
  transform: translateY(0);
  font-size:21px;
}

/* amenities section */

.amenities-bubble-wrapper {
  padding: 2rem 1rem;
}
.amenities-bubble-wrapper .container {
  max-width: 1080px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 2.5rem;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--yellow);
  margin: 0.5rem auto 0;
  border-radius: 10px;
}

/* === Two-column grid for bubbles === */
.bubble-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  max-width: 1080px;
  margin: 0 auto;
  justify-content: center;
}

/* Ensure icon + text are in same parent container */
.amenity-bubble {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

/* Bubble styles */
.icon-circle {
    width: 120px;
    height: 120px;
    background: #e9ae30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* ICON image inside the bubble */
.icon-circle img {
  width: 65%;
  height: 65%;
  object-fit: contain;
}

/* Text block */
.bubble-text {
  max-width: 300px;
  transition: color 0.3s ease;
}

/* Title */
.bubble-text h4 {
  color: var(--brown);
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Paragraph */
.bubble-text p {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* ✅ Highlight BOTH text elements on bubble hover */
.amenity-bubble:hover .bubble-text h4,
.amenity-bubble:hover .bubble-text p {
  color: var(--brown);
  transform: translateX(4px);
}

/* === Responsive: stack on mobile === */
@media (max-width: 768px) {
  .bubble-grid {
    grid-template-columns: 1fr;
    transform: none;
  }

  .amenity-bubble {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bubble-line {
    display: none;
  }

  .bubble-text {
    margin-top: 1rem;
    margin-left: 0;
    opacity: 1;
    text-align: center;
  }
}



/* === Explore Opportunities Section === */
.dual-card-wrapper {
   /* Light Cream */
  padding: 2rem 1rem;
}

.dual-card-wrapper .section-heading {
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.dual-card-wrapper .section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--yellow);
  margin: 0.5rem auto 0;
  border-radius: 10px;
}

.dual-card {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  padding: 2rem;
  font-size: 1.2rem;
  max-width: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card h3 {
  color: var(--brown);
  margin-bottom: 0.5rem;
  font-size: 1.7rem;
}
/* === Explore Opportunities Section (Scoped) === */
.explore-wrapper {
  
  display: flex;
  justify-content: center;
}

.explore-wrapper .container {
  width: 80%;
}

.explore-wrapper .dual-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.explore-wrapper .card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1;
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.explore-wrapper .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
/* === FAQ Section === */
.faq-wrapper {
   /* Alternating light color */
  padding: 2rem 1rem;
}

.faq-wrapper .container {
  width: 80%;
  margin: 0 auto;
}

.faq-list {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  position: relative;
  padding-right: 1.5rem;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  font-size: 1rem;
  margin-top: 0.5rem;
  color: var(--text);
  line-height: 1.5;
}
.faq-question::after {
  content: "▼";
  font-size: 0.8rem;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.3s;
}
.faq-item:hover .faq-question::after {
  transform: rotate(180deg);
}
.faq-item:hover .faq-answer {
  max-height: 200px; /* Enough to show full text */
  opacity: 1;
}

/* === Contact Us Section (Updated Scoped) === */
/* === Contact Us Section (Scoped) === */
.contact-wrapper {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}

.contact-wrapper .container {
  width: 90%;
}

.contact-wrapper .dual-card {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.contact-wrapper .card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1;
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.contact-wrapper .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Modern Contact Card Styling */
.modern-contact-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.modern-contact-card h3 {
  color: var(--brown);
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  text-align: left;
}

.modern-contact-card hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 1.5rem 0;
}

/* Contact Grid Layout */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Contact Person - Two Row Horizontal Layout */
.contact-person {
  background: #fffefb;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-person:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-person .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-person .left-info {
  flex: 1;
}

.contact-person .right-info {
  flex: 1;
  text-align: right;
}

.contact-person h4 {
  margin: 0;
  color: var(--brown);
  font-size: 1.1rem;
}

.contact-person p {
  margin: 0.2rem 0;
  font-size: 1.1rem;
  color: var(--text);
}

.contact-person a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 500;
}

.contact-person a:hover {
  color: var(--yellow);
  text-decoration: underline;
}
.location-address {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  padding-left: 1rem;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}


.location-address p {
  margin-top: 0.7rem; /* Adds slight vertical rhythm */
}
.landline-modern-box {
  margin-top: 0rem;
  

}

.landline-modern-box h4 {
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 1rem;
 
  align-items: center;
}

.landline-flex {
  display: flex;

}

    .landline-flex p {
        font-size: 19px;
        margin-left: 33px;
    }

.landline-pill {
  padding: 0.5rem 1rem;
  background-color: #f8f8f8;
  color: var(--brown);
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s ease;
}

.landline-pill:hover {
  background-color: var(--yellow);
  color: #fff;
  cursor: default;
}

/* Responsive fix */
@media (max-width: 768px) {
  .contact-person .row {
    flex-direction: column;
  }

  .contact-person .right-info {
    text-align: left;
    margin-top: 0.4rem;
  }
}



/* === Location Table === */

.badge {
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  color: white;
  display: inline-block;
}

.badge.open {
  background: green;
}

.badge.closed {
  background: #b71c1c;
}
/* === Location Table === */
.location-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 1.2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Table Head Styling */
.location-table thead {
  background: var(--yellow);
  color: var(--dark);
  font-weight: bold;
}

.location-table th,
.location-table td {
  padding: 0.8rem 1rem;
  text-align: left;
}

/* Alternating row background using nth-child */
.location-table tbody tr:nth-child(odd) {
  background-color: white;
}

.location-table tbody tr:nth-child(even) {
  background-color: #fff9e6; /* light yellow shade */
}

/* Hover Effect */
.location-table tbody tr:hover {
  background-color: #fff3cd; /* slightly darker yellow for hover */
  transform: translateX(6px);
  transition: all 0.2s ease;
  box-shadow: inset 4px 0 0 var(--yellow); /* replaces border-left */
}

/* Badge Styling */
.badge {
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  color: white;
  display: inline-block;
}

.badge.open {
  background: green;
}

.badge.closed {
  background: #b71c1c;
}

/* Table Link Styling */
.table-link {
  font-weight: bold;
  color: var(--brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

.table-link:hover {
  color: var(--yellow);
}

/* === Updates List === */
.updates {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.updates li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
  border-radius: 6px;
  padding-left: 0.6rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.updates li:hover {
  background: #fff8e1;
  transform: translateX(4px);
}

.tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--brown);
  margin-right: 0.4rem;
}

.tag.red {
  background: crimson;
  color: white;
}

/* === Footer === */
footer {
  background: var(--dark);
  color: white;
  padding: 2rem 1rem;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 1rem;
}

footer h4 {
  margin-bottom: 0.5rem;
  color: var(--yellow);
}

footer a {
  display: block;
  margin: 0.3rem 0;
  color: #fff8e1;
  font-size: 0.9rem;
}

/* === Section Headings === */
.section-heading {
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--yellow);
  margin: 0.5rem auto 0;
  border-radius: 10px;
}

/* === Map === */
.map-iframe {
  width: 100%;
  height: 24vh;
  border: none;
  border-radius: 12px;
  margin-top: 1rem;
}

/* === Responsive Fixes === */
@media (max-width: 992px) {
  .dual-card {
    flex-direction: column;
  }

  .hero-overlay {
    max-width: 90%;
    padding: 1.5rem;
  }

  .nav-actions button {
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
  }

  .branding img {
    height: 50px;
  }

  .brand-text h1 {
    font-size: 2rem;
  }

  .brand-text h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
    gap: 0.5rem;
  }

  .hero-overlay {
    padding: 1rem;
    left: 4%;
  }

  .hero-overlay h2 {
    font-size: 1.8rem;
  }

  .hero-overlay p {
    font-size: 1.2rem;
  }

  .brand-text h1 {
    font-size: 1.6rem;
  }

  .brand-text h3 {
    font-size: 1rem;
  }

  .who-apply-grid,
  .step-grid,
  .dual-card {
    flex-direction: column;
    align-items: center;
  }

  .who-card,
  .card,
  .step-box {
    width: 100%;
    padding: 1rem;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-columns div {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .step-grid {
    justify-content: center;
  }

  .step-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.btn-success {
    color: #fff;
    background-color: #5d4037;
    border-color: #5d4037;
    box-shadow: none;
}

    .btn-success:hover {
        color: #fff;
        background-color: #5d4037;
        border-color: #5d4037;
        box-shadow: none;
    }

    .btn-success:active {
        color: #fff;
        background-color: #5d4037;
        border-color: #5d4037;
        box-shadow: none;
    }

    .btn-success:focus {
        color: #fff;
        background-color: #5d4037;
        border-color: #5d4037;
        box-shadow: none;
    }

    .btn-success:target {
        color: #fff;
        background-color: #5d4037;
        border-color: #5d4037;
        box-shadow: none;
    }


    .btn-success.disabled {
        color: #fff;
        background-color: #5d4037;
        border-color: #5d4037;
        box-shadow: none;
    }

.btn:focus-visible {
    color: #fff;
    background-color: #5d4037;
    border-color: #5d4037;
    box-shadow: none;
}

.btn-primary {
    color: #fff;
    background-color: #5d4037;
    border-color: #5d4037;
    box-shadow: none;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #5d4037;
        border-color: #5d4037;
        box-shadow: none;
    }

    .btn-primary:active {
        color: #fff;
        background-color: #5d4037;
        border-color: #5d4037;
        box-shadow: none;
    }




.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    color: #fff;
    background-color: #5d4037;
    border-color: #5d4037;
    box-shadow: none;
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: #f9a825;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: rgb(33, 42, 79);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }


@media(max-width:768px) {
    div#dvInduvidual input {
        width: 100%;
    }

    input#MobileNumber {
        margin-bottom: 10px;
    }

    input#EmailId {
        margin-bottom: 10px;
    }
    div#dvNonInduvidual input {
        width: 100%;
    }

    input#MobileNumber {
        margin-bottom: 10px;
    }

    input#EmailId {
        margin-bottom: 10px;
    }

    body .about-overlay {
        padding: 0px;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        text-align: center;
        height: 100%;
    }

    .about-label {
        margin: auto;
        padding: 10px;
    }

    .explore-wrapper .container {
        width: 100%;
    }

    .explore-wrapper .card {
        padding: 12px;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    .location-table {
        font-size: 1rem;
    }

        .location-table th {
            position: sticky !important;
        }

    .table-wrapper {
        position: relative;
        z-index: 1;
    }

    .faq-wrapper .container {
        width: 100%;
    }

    .faq-list {
        max-width: 100%;
    }

    body .faq-item:hover .faq-answer {
        opacity: 1 !important;
    }

    .contact-wrapper .container {
        width: 100%;
    }

    html body .container {
        max-width: 100%;
        width: 100%;
    }

    .contact-person .left-info {
        margin: 0 !important;
    }

    .right-info {
        margin: 0 !important;
    }

    .branding {
        justify-content: center;
        gap: 3px;
    }

    .nav-actions {
        flex-wrap: wrap;
        position: relative;
        max-width: 100%;
        transform: translateX(-50%);
        left: 50%;
        justify-content: center;
        gap: 5px;
    }

    .branding img {
        height: 72px;
    }

    .nav-actions button {
        font-size: 1rem;
        padding: 0.2rem 1rem;
    }

    .brand-text h1 {
        font-size: 1.2rem;
    }

    .brand-text h3 {
        font-size: 0.9rem;
    }

    .step-box.full.modern-steps {
        padding: 2rem 1em;
    }
}