@charset "UTF-8";

/* ========== GLOBAL OVERFLOW FIX ========== */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ========== MOBILE DRAWER FIX ========== */
.th-side-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 280px;
  height: 100vh !important;
  margin: 0 !important;
  z-index: 999;
  background: #fff;
  transform: translateX(100%);
  overflow-y: auto !important;
  overflow-x: hidden;
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
}
.th-side-drawer.open {
  transform: translateX(0);
  visibility: visible;
}
.th-side-drawer-backdrop {
  position: fixed !important;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
}

/* ========== CONTAINER CONSTRAINT ========== */
.th-container {
  max-width: 1280px !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
}
@media (max-width: 768px) {
  .th-container {
    padding-left: 4% !important;
    padding-right: 4% !important;
  }
}

/* ========== HEADER NAV ========== */
header a, .th-menu a, .th-side-drawer a {
  text-decoration: none !important;
}

/* ========== SECTION HEADINGS ========== */
.section-tag {
  display: inline-block;
  background: #fff8e6;
  color: #fdb022;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
  line-height: 1.25;
}
.section-subtitle {
  font-size: 1rem;
  color: #667085;
  max-width: 560px;
  margin: 0 auto;
}
.section-divider {
  width: 56px;
  height: 4px;
  background: #fdb022;
  border-radius: 100px;
  margin: 14px auto 0;
}
.section-divider-left {
  margin-left: 0;
}

/* ========== HERO ========== */
.hero-section {
  position: relative !important;
  min-height: 92vh;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-image: url('../images/sonipat-orchids-min.png');
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #101828;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 780px;
  margin: 0 auto;
}
.hero-tag {
  display: inline-block;
  background: rgba(253,176,34,0.18);
  border: 1px solid rgba(253,176,34,0.5);
  color: #fdb022;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span {
  color: #fdb022;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-btn-primary {
  display: inline-block;
  background: #fdb022;
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid #fdb022;
}
.hero-btn-primary:hover { background: #e8a01a; border-color: #e8a01a; color: #000; }
.hero-btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid rgba(255,255,255,0.7);
  margin-left: 16px;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,0.12); color: #fff; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounceDown 1.8s ease infinite;
}
.hero-scroll-indicator i { font-size: 22px; color: rgba(255,255,255,0.6); }
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@media (max-width: 768px) {
  .hero-section { min-height: 70vh; }
  .hero-btn-secondary { margin-left: 0; margin-top: 12px; }
}

/* ========== ABOUT SECTION ========== */
.about-section { padding: 80px 0; background: #fff; }
.about-text-content { padding-right: 40px; }
.about-text-content h2 { font-size: 2rem; font-weight: 700; color: #101828; margin-bottom: 8px; }
.about-text-content h4 { font-size: 1.05rem; color: #fdb022; font-weight: 600; margin-bottom: 20px; }
.about-text-content p { color: #475467; line-height: 1.8; font-size: 0.97rem; text-align: justify;}
.show-more-btn { color: #fdb022 !important; cursor: pointer; font-weight: 600; }
.about-video { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.12); }
.about-video iframe { width: 100%; height: 360px; display: block; }
@media (max-width: 768px) {
  .about-section { padding: 48px 0; }
  .about-text-content { padding-right: 0; margin-bottom: 32px; }
  .about-video iframe { height: 240px; }
}

/* ========== WHY CHOOSE US ========== */
.why-section { padding: 80px 0; background: #f9fafb; }
.why-card {
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(253,176,34,0.15);
  border-color: #fdb022;
}
.why-icon {
  width: 72px; height: 72px;
  background: #fff8e6;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  transition: background 0.3s;
}
.why-card:hover .why-icon { background: #fdb022; }
.why-card h5 { font-size: 1rem; font-weight: 700; color: #101828; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: #667085; line-height: 1.6; margin: 0; }

/* ========== MANDATORY DISCLOSURE ========== */
.disclosure-section { padding: 80px 0; background: #fff; }
.disclosure-section-header {
  background: linear-gradient(135deg, #101828 0%, #1d2939 100%);
  color: #fff;
  border-radius: 16px 16px 0 0;
  padding: 20px 32px;
  margin-bottom: 0;
}
.disclosure-section-header h3 {
  color: #fdb022;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}
/* Disclosure Tabs */
.disclosure-tabs-wrapper { margin-bottom: 0; overflow-x: auto; }
.disclosure-tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
  border-bottom: 2px solid #eaecf0;
  padding-bottom: 0;
}
.disc-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid #eaecf0;
  border-bottom: none;
  background: #f9fafb;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: #667085;
  transition: all 0.2s;
  white-space: nowrap;
}
.disc-tab:hover { background: #fff8e6; color: #344054; }
.disc-tab.active {
  background: #fff;
  color: #101828;
  border-color: #eaecf0;
  border-bottom: 2px solid #fff;
  margin-bottom: -2px;
}
.disc-tab-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #eaecf0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #667085;
  transition: all 0.2s;
}
.disc-tab.active .disc-tab-letter {
  background: #fdb022;
  color: #000;
}
.disclosure-tab-body {
  border: 1px solid #eaecf0;
  border-top: none;
  border-radius: 0 0 16px 16px;
  background: #fff;
  overflow: hidden;
}
.disc-panel { display: none; }
.disc-panel.active { display: block; }

/* Disclosure Table */
.disclosure-table { width: 100%; border-collapse: collapse; border: 1px solid #d0d5dd; }
.disclosure-table thead th {
  background: #fdb022;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #c4982a;
}
.disclosure-table tbody tr { border-bottom: 1px solid #d0d5dd; }
.disclosure-table tbody tr:last-child { border-bottom: 1px solid #d0d5dd; }
.disclosure-table tbody tr:hover { background: #fffbf0; }
.disclosure-table tbody td {
  font-size: 13.5px;
  color: #344054;
  border: 1px solid #d0d5dd;
  padding: 13px 16px;
  vertical-align: middle;
}
.disclosure-table tbody td:first-child { color: #667085; font-weight: 600; }

/* Doc View Button */
.doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff8e6;
  border: 1px solid #fdb022;
  color: #b47d0a;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.2s;
}
.doc-btn:hover { background: #fdb022; color: #000; }
.doc-na { color: #98a2b3; font-size: 13px; }
.scroller { overflow-x: auto; }

/* ========== ENQUIRE CARDS ========== */
.enquire-section { padding: 60px 0; background: #f9fafb; }
.enquire-card {
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.enquire-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: #fdb022;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.enquire-card:hover::before { transform: scaleX(1); }
.enquire-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.enquire-icon {
  width: 64px; height: 64px;
  background: #f9fafb;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.enquire-icon img { width: 36px; height: 36px; object-fit: contain; }
.enquire-card h3 { font-size: 1.15rem; font-weight: 700; color: #101828; margin-bottom: 14px; }
.enquire-card p { font-size: 0.9rem; color: #667085; line-height: 1.65; margin-bottom: 24px; flex-grow: 1; }
.enquire-btn {
  display: block;
  width: 100%;
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s;
}
.enquire-btn:hover { background: #fdb022; color: #000; }

/* ========== PRINCIPAL SECTION ========== */
.principal-section { padding: 80px 0; background: #fff; }
.principal-img-wrap { border-radius: 24px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.principal-img-wrap img { width: 100%; height: 420px; object-fit: cover; object-position: center top; display: block; }
.principal-info { padding-left: 48px; }
.principal-info h3 { font-size: 1.6rem; font-weight: 700; color: #101828; margin-bottom: 4px; }
.principal-info h5 { font-size: 0.95rem; color: #667085; font-weight: 500; margin-bottom: 28px; }
.principal-quote {
  background: #fffbf0;
  border-left: 4px solid #fdb022;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.principal-quote p { font-size: 1rem; color: #344054; font-style: italic; line-height: 1.7; margin: 0; }
.principal-info .descp { font-size: 0.92rem; color: #475467; line-height: 1.85; text-align: justify; }
@media (max-width: 768px) {
  .principal-info { padding-left: 0; margin-top: 28px; }
  .principal-img-wrap img { height: 280px; }
  .principal-section { padding: 48px 0; }
}

/* ========== FEE STRUCTURE ========== */
.fees-section { padding: 80px 0; background: linear-gradient(135deg, #fffbf0 0%, #f0f5ff 100%); }
.fees-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #eaecf0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.fees-card-header { background: #101828; padding: 28px 32px; }
.fees-card-header h2 { color: #fff; font-size: 1.5rem; font-weight: 700; margin: 0; }
.fees-card-header p { color: #98a2b3; font-size: 0.9rem; margin: 6px 0 0; }
.fee-row {
  display: flex;
  border-bottom: 1px solid #f2f4f7;
  transition: background 0.2s;
}
.fee-row:last-child { border-bottom: none; }
.fee-row:hover { background: #fffbf0; }
.fee-row-head { background: #f9fafb; }
.fee-grade, .fee-amount {
  flex: 1;
  padding: 13px 24px;
  text-align: center;
  font-size: 14px;
  color: #344054;
}
.fee-grade { border-right: 1px solid #f2f4f7; }
.fee-row-head .fee-grade,
.fee-row-head .fee-amount {
  font-weight: 700;
  color: #101828;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fee-notes { padding: 20px 24px; background: #f9fafb; border-top: 1px solid #eaecf0; }
.fee-notes ul { margin: 0; padding-left: 20px; }
.fee-notes li { font-size: 13px; color: #475467; line-height: 1.8; }

/* ========== STATS BANNER ========== */
.stats-section { padding: 60px 0; background: #101828; }
.stats-section h2 { color: #fff; font-size: 1.8rem; font-weight: 700; margin-bottom: 10px; }
.stats-section p { color: #98a2b3; font-size: 0.95rem; }
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.25s;
}
.stat-card:hover { background: rgba(253,176,34,0.12); border-color: rgba(253,176,34,0.3); }
.stat-card h3 { color: #eaecf0; font-size: 1.4rem; font-weight: 700; margin: 0 0 4px; }
.stat-card p { color: #98a2b3; font-size: 14px; margin: 0; }
.stat-card-icon { width: 48px; height: 52px; opacity: 0.8; }

/* ========== CONTACT SECTION ========== */
.contact-section { padding: 80px 0; background: #fff; }
.contact-info-card {
  background: #f9fafb;
  border: 1px solid #eaecf0;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
}
.contact-info-card h4 { font-size: 1.1rem; font-weight: 700; color: #101828; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-item-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: #fff8e6;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fdb022; font-size: 16px;
}
.contact-item-text p { font-size: 0.9rem; color: #475467; margin: 0; line-height: 1.6; }
.contact-map { border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.contact-map iframe { display: block; width: 100%; border: none; }

/* ========== FOOTER ========== */
.site-footer { background: #f9fafb; border-top: 1px solid #eaecf0; padding: 28px 0; }
.site-footer p { color: #667085; font-size: 14px; margin: 0; }

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .section-title { font-size: 1.5rem; }
  .why-section, .disclosure-section, .fees-section, .contact-section { padding: 48px 0; }
  .principal-section { padding: 48px 0; }
  .stats-section { padding: 40px 0; }
  .enquire-section { padding: 40px 0; }
}
