* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #111;
  color: white;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}


/*
HERO EDITING
*/
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 3rem;
  color: white;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-btn.red {
  background-color: #cf2e36;
  color: white;
}

.hero-btn.red:hover {
  background-color: rgb(222, 51, 51);
}

.hero-btn.glass {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.hero-btn.glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Mobile */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2.9rem;
  }

  .hero-overlay p {
    font-size: 1.3rem;
    padding: 0 1rem;
  }

}

@media (max-width: 426px) {
  .hero-overlay h1 {
    font-size: 2.1rem;
  }

    .hero-overlay p {
    font-size: 1.3rem;
    padding: 0 1rem;
  }
}

@media (max-width: 321px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }

    .hero-overlay p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}




/*
Commitment Sect
*/
.commitment-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #222;
}

.commitment-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  padding: 2rem;
  border-radius: 16px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}

.card-yellow {
  background-color: #fcf9e9;
}

.card-pink {
  background-color: #fbf1f1;
}

.card-green {
  background-color: #e7faed;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.card-yellow .card-icon i,
.card-yellow h3 {
  color: #f1c236 !important;
}

.card-pink .card-icon i,
.card-pink h3 {
  color: #ea5949 !important;
}

.card-green .card-icon i,
.card-green h3 {
  color: #32be39 !important;
}

.card-yellow:hover .card-icon i,
.card-yellow:hover h3 {
  transform: scale(1.1);
  color: #d4a017;
}

.card-pink:hover .card-icon i,
.card-pink:hover h3 {
  transform: scale(1.1);
  color: #c0392b; 
}

.card-green:hover .card-icon i,
.card-green:hover h3 {
  transform: scale(1.1);
  color: #2e7d32; 
}

.card-icon i,
.card h3 {
  transition: all 0.3s ease;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.hms-link {
  color: #2b68d9;
  text-decoration: underline;
  font-weight: 600;
}

.hms-link:hover {
  color: #194bbf;
}

/* Responsive Commitment Sect */
@media (max-width: 768px) {
  .card {
    max-width: 100%;
  }
}



/* =======================
   HMS & Experience Section
========================== */

.hms-section {
  display: flex;
  justify-content: flex-end;
  padding: 4rem 2rem;
  background: #f9fafb;
}

.image-card-wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hms-card {
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.hms-logo {
  width: 80px;
  margin-bottom: 1rem;
}

.hms-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #111827;
}

.hms-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #111827;
}

.subtext {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.hms-list {
  list-style: none;
  padding: 0;
}

.hms-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #111827;
  font-weight: 500;
}

.hms-list li i {
  color: #34d399;
  margin-right: 0.6rem;
  font-size: 1.2rem;
}

.hms-quote {
  background: linear-gradient(to right, #f0fdf4, #ecfdf5);
  padding: 1.2rem 1.5rem;
  border-radius: 0.75rem;
  margin-top: 1.5rem;
  border: 1px solid #d1fae5;
  font-size: 1rem;
  color: #1f2937;
  text-align: center;
  line-height: 1.6;
}

/* change this: .hms-quote span { ... } */
.hms-quote .emphasis {
  color: #22c55e;
  font-weight: 700;
}

/* optional reset in case you kept other spans */
.hms-quote span:not(.emphasis) {
  color: inherit;
  font-weight: inherit;
}


.info-hms-section {
  background: #f9fafb;
  padding: 4rem 2rem;
}

.info-hms-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/*
Other div
*/
.experience-info {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  min-height: 500px;
  color: #111827;
}

.visit-button-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}

.visit-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #d1fae5; /* soft green */
  color: #047857; /* dark green text */
  border: 2px solid #a7f3d0;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.visit-button:hover {
  background-color: #bbf7d0;
  transform: translateY(-2px);
}

.experience-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.experience-info .highlight {
  color: #dc2626;
}

.info-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.info-block .icon {
  font-size: 1.5rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
}

.icon.orange {
  background-color: #fbbf24;
}

.icon.red {
  background-color: #ef4444;
}

.icon.green {
  background-color: #22c55e;
}

.details {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.orange-text {
  color: #d97706;
}

.red-text {
  color: #b91c1c;
}

.green-text {
  color: #15803d;
}

/* Responsive stacking */
@media (max-width: 768px) {
  .info-hms-wrapper {
    flex-direction: column;
  }

  .hms-card {
    order: 1;
  }

  .experience-info {
    order: -1;
  }
}

.secret-promo {
  font-size: 0.75rem;      /* small text */
  color: #666;             /* muted color */
  font-style: italic;
}

.secret-promo .secret-word {
  color: #c0392b;          /* subtle highlight (reddish) */
  font-weight: bold;
}




/*
HIGHLIGHT Section
*/
.highlight-section {
  position: relative;
  background: url('images/highlightimg.png') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.highlight-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.highlight-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 800px;
}

.highlight-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.highlight-overlay p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.highlight-btn {
  background-color: #f69711;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s, transform 0.3s;
}

.highlight-btn:hover {
  background-color: #c6790d; 
  transform: scale(1.05) !important;
}
