.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    padding-top: 20px; /* keep default padding on desktop */
  }
  
  .hero-section {
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  }
  
  /* Text Area */
  .hero-text {
    flex: 1;
    min-width: 280px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-top: 0; /* added to remove top margin */
    margin-bottom: 20px;
    color: #fff;
  }
  
  .hero-text h1 strong {
    color: #e8aa56;
  }
  
  .hero-text p {
    font-size: 1rem;
    color: #ababab;
    margin-bottom: 24px;
  }
  
  /* Buttons */
  .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .hero-buttons a {
    text-decoration: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
  }
  
  .hero-buttons .register {
    background: #e8aa56;
    color: white;
  }
  
  .hero-buttons .register:hover {
    background: #e8aa56;
  }
  
  .hero-buttons .watch {
    background: transparent;
    border: 2px solid #e8aa56;
    color: #e8aa56;
  }
  
  .hero-buttons .watch:hover {
    background: #e8aa56;
    color: white;
  }
  
  /* Image Area */
  .hero-images {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 280px;
  }
  
  .image-card {
    position: relative;
    width: 400px;
    max-width: 100%;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .image-card:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  }
  
  .image-card img {
    width: 100%;
    border-radius: 12px;
    display: block;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .hero-section {
      max-width: 80%;
      padding: 30px 20px;
    }
  
    .hero-text h1 {
      font-size: 2.2rem;
    }
  }
  
  @media (max-width: 768px) {
    .container {
      padding-top: 0;  /* remove container top padding */
      margin-top: 0;   /* remove container top margin */
    }
  
    .hero-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 80%;
      padding-top: 0; /* remove hero-section top padding */
      margin-top: 0;  /* remove hero-section top margin */
    }
  
    .hero-text h1 {
      font-size: 2rem;
      margin-top: 0; /* ensure no top margin */
    }
  
    .hero-buttons {
      justify-content: center;
    }
  
    .image-card {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .hero-text h1 {
      font-size: 1.6rem;
    }
  
    .hero-text p {
      font-size: 0.95rem;
    }
  
    .hero-buttons a {
      padding: 10px 18px;
      font-size: 0.95rem;
    }
  
    .image-card {
      padding: 12px;
    }
  }
  
  .countdown-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1080px;
    margin: 50px auto;
    gap: 40px;
    padding: 0 20px;
    padding-top: 20px; /* keep default padding on desktop */
  }
  
  /* ========== Text Section ========== */
  .text-content {
    flex: 1;
    min-width: 280px;
  }
  
  .text-content h3 {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    margin-top: 0; /* reset top margin */
  }
  
  .text-content h3 span {
    color: #e8aa56;
    font-weight: 700;
  }
  
  /* ========== Countdown Section ========== */
  .countdown-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(70, 70, 70, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px 40px;
    flex: 1;
    min-width: 280px;
    justify-content: center;
  }
  
  /* Individual count items */
  .count-item {
    text-align: center;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* content aligned top */
    padding: 0;
    margin: 0;
  }
  
  .count-item h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #e8aa56;
    margin: 0;
    padding: 0;
    line-height: 1;
    height: 3rem; /* prevent vertical wiggle */
    font-variant-numeric: tabular-nums;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .count-item p {
    font-size: 0.8rem;
    color: #aaa;
    font-weight: 500;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .colon {
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    padding: 0 5px;
  }
  
  /* ========== Media Queries ========== */
  
  /* Medium Devices (≤ 768px) */
  @media (max-width: 768px) {
    .countdown-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 30px;
      padding-top: 0;  /* remove top padding */
      margin-top: 0;   /* remove top margin */
    }
  
    .text-content h3 {
      font-size: 1.75rem;
      margin-top: 0; /* ensure no top margin */
    }
  
    .countdown-section {
      padding: 25px 30px;
      gap: 15px;
    }
  
    .count-item h2 {
      font-size: 2.5rem;
    }
  
    .colon {
      font-size: 2rem;
    }
  }
  
  /* Small Devices (≤ 480px) */
  @media (max-width: 480px) {
    .text-content h3 {
      font-size: 1.5rem;
    }
  
    .countdown-section {
      padding: 20px;
      gap: 10px;
    }
  
    .count-item h2 {
      font-size: 2.2rem;
    }
  
    .count-item p {
      font-size: 0.75rem;
    }
  
    .colon {
      font-size: 1.8rem;
    }
  }
  .committee_page {
    margin: 0;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    padding: 0px 20px;
  }
  
  .committee_container {
    max-width: 1100px;
    width: 100%;
    text-align: center;
  }
  
  .committee_header_small {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  
  .committee_header_large {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .committee_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    justify-items: center;
  }
  
  .committee_card {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .committee_circle {
    position: relative;
    width: 100%;
    max-width: 250px;
    aspect-ratio: 1 / 1;
    border-radius: 10%;
    overflow: hidden;
    background: rgb(43, 43, 43);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .committee_image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10%;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .committee_circle:hover .committee_image {
    transform: scale(1.05);
    filter: brightness(0.4);
  }
  
  .committee_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    border-radius: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
  }
  
  .committee_circle:hover .committee_overlay {
    opacity: 1;
  }
  
  .committee_text .committee_title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .committee_text .committee_desc {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  
  /* Responsive: ≤ 1080px */
  @media (max-width: 1080px) {
    .committee_grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Responsive: ≤ 768px */
  @media (max-width: 768px) {
    .committee_grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
  
    .committee_circle {
        width: 80%;
        max-width: 300px;
    }
  
    .committee_text .committee_title {
      font-size: 0.95rem;
    }
  
    .committee_text .committee_desc {
      font-size: 0.8rem;
    }
  }
  
  /* Responsive: ≤ 480px */
  @media (max-width: 480px) {
    .committee_grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .committee_circle {
      width: 80%;
      max-width: 300px;
    }
  
    .committee_text .committee_title {
      font-size: 0.9rem;
    }
  
    .committee_text .committee_desc {
      font-size: 0.75rem;
    }
  }
    
  .stats_body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .stats_section {
    color: white;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
  }
  
  .stats_container {
    max-width: 1080px;
    width: 100%;
    text-align: center;
  }
  
  .stats_title {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  .stats_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
  }
  
  /* Single stat block */
  .stats_item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  
  .stats_item:hover {
    transform: translateY(-5px);
  }
  
  .stats_number {
    color: #e8aa56;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0 0 10px;
  }
  
  .stats_label {
    font-size: 1rem;
    margin: 0;
  }
  
  
  /* 1080px: 2 columns */
  @media (max-width: 1080px) {
    .stats_grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      width: 80%;
      margin: 0 auto;
    }
  
    .stats_title {
        font-size: 1.6rem;
        max-width: 80%;
        margin: auto;
        margin-bottom: 40px;
      }
    }
  
  /* 768px: 2 columns tighter */
  @media (max-width: 768px) {
    .stats_grid {
      gap: 25px;
      width: 80%;
    }
  
    .stats_number {
      font-size: 2rem;
    }
  
    .stats_label {
      font-size: 0.95rem;
    }
    .stats_title {
        font-size: 1.6rem;
        max-width: 80%;
        margin: auto;
        margin-bottom: 40px;
      }
  }
  
  /* 480px: 1 column */
  @media (max-width: 480px) {

    .stats_grid {
      grid-template-columns: 1fr;
      width: 80%;
    }
  
    .stats_item {
      padding: 18px;
    }
  
    .stats_number {
      font-size: 1.8rem;
    }
  
    .stats_label {
      font-size: 0.9rem;
    }
  
    .stats_title {
      font-size: 1.6rem;
      max-width: 80%;
      margin: auto;
      margin-bottom: 40px;
    }
  }
/* Container */
.register_name-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
}

/* Card Styling */
.register_name-card {
  background: #222;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
  flex: 1 1 320px;
  max-width: 350px;
  height: 400px;
  margin: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-sizing: border-box;
}

.register_name-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(255, 180, 0, 0.3);
}

/* Image Styling */
.register_name-card img {
  width: 110px;
  height: 110px;
  border: 2px solid #ffb400;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 0;
  box-sizing: border-box;
}

/* Title Styling */
.register_name-card h3 {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  min-height: 55px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Price Styling - UPDATED margin */
.register_name-price {
  font-size: 22px;
  color: #ffb400;
  font-weight: bold;
  margin: 0;
}

/* Button Styling */
.register_name-btn {
  margin-top: 20px;
  background: linear-gradient(90deg, #f3e3c3, #eec063);
  color: #000;
  font-size: 0.9rem;
  padding: 12px 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
  max-width: 100%;
  word-wrap: break-word;
  display: inline-block;
  text-decoration: none;
}

.register_name-btn:hover {
  background: linear-gradient(90deg, #eec063, #f3e3c3);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 180, 0, 0.5);
}

/* Responsive Adjustments */

/* Large Tablets & Small Laptops (900px - 1024px) */
@media (max-width: 1024px) and (min-width: 900px) {
  .register_name-card {
    flex: 1 1 45%;
    height: 570px;
    margin: 20px;
    padding: 30px;
    border-radius: 15px;
    background: linear-gradient(135deg, #292929, #1f1f1f);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }

  .register_name-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(255, 180, 0, 0.4);
  }

  .register_name-card img {
    width: 125px;
    height: 125px;
    border-radius: 10px;
    margin-bottom: 18px;
    border: 2px solid #ffb400;
    padding: 5px;
  }

  .register_name-price {
    font-size: 24px;
    text-transform: uppercase;
  }

  .register_name-feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 8px;
  }
}

/* Medium Tablets (768px - 899px) */
@media (max-width: 899px) and (min-width: 768px) {
  .register_name-container {
    width: 80%;
  }

  .register_name-card {
    flex: 1 1 40%;
    height: auto;
    margin: 20px auto;
    padding: 25px;
    border-radius: 12px;
    background: #2a2a2a;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }

  .register_name-card img {
    width: 110px;
    height: 110px;
    padding: 5px;
    margin-bottom: 16px;
  }

  .register_name-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .register_name-price {
    font-size: 22px;
    margin: 0;
  }

  .register_name-feature {
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 12px;
    font-size: 15px;
    width: 85%;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .register_name-container {
    width: 80%;
    padding: 0 10px;
    margin: 0 auto;
  }

  .register_name-card {
    flex: 1 1 100%;
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    padding: 20px;
  }

  .register_name-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* Section Titles */
.section_tagline {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  padding: 10 20px;
}

.section_subtitle {
  color: #e8aa56;
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.section_title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* Section Title Responsive */
@media (max-width: 1080px) {
  .section_tagline {
    padding: 50px 15px;
  }

  .section_title {
    font-size: 1.8rem;
  }

  .section_subtitle {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .section_tagline {
    padding: 40px 15px;
  }

  .section_title {
    font-size: 1.6rem;
  }

  .section_subtitle {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .section_tagline {
    padding: 30px 10px;
  }

  .section_title {
    font-size: 1.4rem;
  }

  .section_subtitle {
    font-size: 0.75rem;
  }
}
/* VISION SECTION */
.aboutinfo_vision {
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  gap: 8rem;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.aboutinfo_vision_image {
  flex: 1;
  min-width: 280px;
}

.aboutinfo_vision_text {
  flex: 1;
  min-width: 280px;
}

.aboutinfo_vision_text h2 {
  color: #e8aa56;
}

.aboutinfo_vision_image img {
  width: 500px;
  height: 300px;
  object-fit: cover; /* Ensures the image fills the space without distortion */
  display: block;
  margin: 0 auto;
}

/* HEADINGS AND TEXT */
.aboutinfo_mission_text h2,
.aboutinfo_vision_text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.aboutinfo_mission_text p,
.aboutinfo_vision_text p {
  font-size: 1rem;
  line-height: 1.6;
}

/* TABLETS */
@media (max-width: 1024px) {
  .aboutinfo_mission,
  .aboutinfo_vision {
    flex-direction: column;
    width: 90%;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }

  .aboutinfo_mission_image,
  .aboutinfo_vision_image {
    order: -1; /* Bring images on top */
    text-align: center;
  }

  .aboutinfo_mission_text,
  .aboutinfo_vision_text {
    text-align: center;
    width: 100%;
  }

  .aboutinfo_mission_image img,
  .aboutinfo_vision_image img {
    max-width: 400px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .aboutinfo_mission,
  .aboutinfo_vision {
    padding: 2rem 1rem;
    gap: 1.25rem;
  }

  .aboutinfo_mission_text h2,
  .aboutinfo_vision_text h2 {
    font-size: 1.6rem;
  }

  .aboutinfo_mission_text p,
  .aboutinfo_vision_text p {
    font-size: 0.95rem;
  }

  .aboutinfo_mission_image img,
  .aboutinfo_vision_image img {
    max-width: 100%;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .aboutinfo_mission,
  .aboutinfo_vision {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .aboutinfo_mission_text h2,
  .aboutinfo_vision_text h2 {
    font-size: 1.4rem;
  }

  .aboutinfo_mission_text p,
  .aboutinfo_vision_text p {
    font-size: 0.9rem;
  }

  .aboutinfo_mission_image img,
  .aboutinfo_vision_image img {
    max-width: 100%;
    height: auto;
  }
}
.register_name-note {
  font-size: 0.8rem;
  color: #555;
  margin-top: 5px;
  margin-bottom: 0px;
}
.map-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.map-info {
  text-align: center;
  margin-bottom: 20px;
}

.map-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.map-icon {
  font-size: 1.5rem;
  color: #16a34a;
}

.map-subtext {
  font-size: 1rem;
  color: #a2a2a2;
  margin: 0;
}

.map-container {
  width: 100%;
  max-width: 1080px;
  height: 450px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive Styles */

/* Below 1024px */
@media (max-width: 1024px) {
  .map-section{
    max-width: 80%;
    margin: 0 auto;
  }
  .map-container {
    height: 400px;
    max-width: 85%;
  }

  .map-heading {
    font-size: 1.6rem;
  }
}

/* Below 768px */
@media (max-width: 768px) {
  .map-section {
    padding: 30px 15px;
  }

  .map-container {
    height: 350px;
    max-width: 80%;
  }

  .map-heading {
    font-size: 1.4rem;
  }

  .map-subtext {
    font-size: 0.95rem;
  }
}

/* Below 480px */
@media (max-width: 480px) {
  .map-section {
    padding: 20px 10px;
  }

  .map-container {
    height: 300px;
    max-width: 80%;
    border-radius: 10px;
  }

  .map-heading {
    font-size: 1.2rem;
    flex-direction: column;
    gap: 4px;
  }

  .map-subtext {
    font-size: 0.9rem;
  }
}
