.hero-section {
    background-color: #1f517a; /* Blue background */
    min-height: 40vh;           /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 15px;
}
.hero-title {
    font-family: "Playfair Display", Georgia, serif; /* font family */
    font-style: normal;                              /* normal style */
    font-weight: 700;                                /* bold */
    font-size: 60px;                                 /* correct size */
    line-height: 60px;                               /* correct line height */
    color: rgb(255, 255, 255);                       /* text color */
    margin-bottom: 20px;                             /* spacing below */
}

.hero-subtitle {
    font-family: "Inter", sans-serif;       /* font family */
    font-style: normal;                      /* normal style */
    font-weight: 400;                        /* normal */
    font-size: 20px;                         /* matches WhatFont */
    line-height: 28px;                       /* matches WhatFont */
    color: rgba(255, 255, 255, 0.8);        /* text color */
    max-width: 700px;
    margin: 0 auto;
}
.cta-badge {
    font-family: Inter, sans-serif;
    font-size: 14px;           /* matches WhatFont */
    line-height: 20px;         /* matches design */
    font-weight: 500;           /* matches WhatFont */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(250, 204, 21, 0.15);
    color: rgb(196, 161, 79);  /* exact match */
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
}
.badge-icon svg {
    display: block;
}


/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
}
/* ===== Section ===== */
.admission-section {
    text-align: center;
    background-color: #F9F9F6;
    padding: 80px 0;
}

/* ===== Badge ===== */
.process-badge {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgb(31, 81, 122);
    background-color: #eaf2ff;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

/* ===== Heading ===== */
.title {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    color: #123c6b;
    margin: 15px 0;
}

.underline {
    width: 60px;
    height: 4px;
    background: #d4a24c;
    margin: 0 auto 50px;
}

/* ===== Width Controller ===== */
.timeline-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Timeline ===== */
.timeline {
    position: relative;
    margin-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #d0d7e2;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

/* ===== Number Circle ===== */
.circle {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: normal;
    font-weight: 800;      /* Bold */
    font-size: 18px;
    line-height: 28px;
    color: #f9f9f6;        /* Text color */
    
    width: 70px;
    height: 65px;
    background: #123c6b;   /* Dark blue background */
    border-radius: 50%;     /* Makes it circular */
    
    display: flex;
    align-items: center;
    justify-content: center; /* Centers the text */
    z-index: 1;
}

/* ===== Card ===== */
.content {
    background: #ffffff;
    padding: 26px 34px;
    margin-left: 30px;
    border-radius: 14px;
    /* border: 1px solid #e5e7eb; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    text-align: left;
    width: 100%;
    min-height: 95px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #123c6b;
    margin: 0 0 6px;
}

.content p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #6b7280; /* matches grayish text */
    margin: 0;
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
    .timeline {
        margin-left: 0;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .circle {
        margin-bottom: 12px;
    }

    .content {
        margin-left: 0;
    }
}
/* Section */
.eligibility-section {
  padding: 80px 0;
  background: white;
}

/* Layout */
.eligibility-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  color: #123c6b;
}

/* Block */
.eligibility-block {
  text-align: left;
}

/* Badges */
.section-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.age-badge {
  background: #fff2d9;
  color: rgb(196, 161, 79);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  user-select: none;
}
.checklist-badge {
  background: #eef3f8;
  color: rgb(31, 81, 122);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  user-select: none;
}
/* Titles */
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  color: rgb(31, 81, 122);
  margin: 0 0 18px;
}

/* Table wrapper only */
.table-wrapper {
  background: #f4f4ee;
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid #e5e7eb;
  overflow-x: auto;
  flex-grow: 1; /* take full height */
}


/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: #1f4f78;
  color: white;
}

th{
   padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: rgb(249, 249, 246); /* near-white text for table header */
  text-align: left; /* optional, keeps text left-aligned */
}
td {
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: rgb(46, 46, 46); /* dark text for readability */
  text-align: left;
}

tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

tbody tr:last-child {
  border-bottom: none;
}

/* Note below table - on white background */
.note {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: rgb(89, 89, 89);
  margin-top: 12px;
}

.eligibility-content {
  background: #f4f4ee;
  border-radius: 16px;
  padding: 24px 28px;
  flex-grow: 1; /* make right card fill height */
  display: flex;
  flex-direction: column;
}

/* Document list */
.document-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.document-list li {
  padding: 10px 0 10px 34px; /* top, bottom, left for icon spacing */
  position: relative;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: rgb(46, 46, 46);
}

.document-list li::before {
  content: "📄";
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .eligibility-wrapper {
    grid-template-columns: 1fr;
  }
} 
/* Container & Layout */
.enquiry-section {
  background: #ebecea;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  color: #1f355e;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.enquiry-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* Badges */
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  user-select: none;
  letter-spacing: 0.03em;
}
.form-card {
  background: #fff;
  border-radius: 8px;
  padding: 25px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-top: 15px; /* spacing below heading */
}

.badge-gold {
  background: #f4eddc;
  color: #c19b50;
}

.badge-blue {
  background: #dae1e8;
  color: #577094;
}

/* Left Side */
.left-side {
  flex: 1 1 450px;
}

.left-side h3 {
  font-weight: 700;
  margin-bottom: 25px;
  color: #163c66;
}

/* Form styling remains same as before */
.left-side form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #444;
}

.required {
  color: #d28a24;
  margin-left: 3px;
}

.left-side form input,
.left-side form select,
.left-side form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1.5px solid #dbe1e7;
  border-radius: 6px;
  font-size: 14px;
  color: #666;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.left-side form input::placeholder,
.left-side form textarea::placeholder,
.left-side form select {
  color: #161718;
}

.left-side form input:focus,
.left-side form select:focus,
.left-side form textarea:focus {
  outline: none;
  border-color: #1f4d73;
}

/* .row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
} */

.col-half {
  flex: 1;
}

.submit-btn {
  background-color: #1f4d73;
  color: #fff;
  border: none;
  padding: 12px 0;
  font-weight: 700;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #163c66;
}

/* Right Side */
.right-side {
  flex: 1 1 350px;
}

.right-side h3 {
  font-weight: 700;
  color: #163c66;
  margin-bottom: 18px;
}

/* Visit Box white background */
.visit-box {
  background: #fff;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.05);
  color: #444;
  font-size: 14px;
  line-height: 1.5;
}

/* Contact Boxes inside visit-box */
.contact-box {
  margin-top: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #163c66;
}

.contact-item strong {
  font-weight: 700;
}

.contact-item.call {
  color: #163c66;
}

.contact-item.whatsapp {
  color: #6f8a74;
}

/* Office Hours box */
.office-hours {
  background: #e8e1c6;
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  gap: 15px;
  color: #163c66;
  font-size: 14px;
  align-items: flex-start;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.05);
}

.office-hours strong {
  font-weight: 700;
}

.icon {
  font-size: 20px;
  line-height: 1;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-card {
  background: #F4F6F8;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 15px;
  color: #163c66;
  font-size: 14px;
}

.contact-card strong {
  font-weight: 700;
}

.contact-card.call {
  /* You can add distinct color styling if you want */
}

.contact-card.whatsapp {
  color: #6f8a74;
}

.contact-card .icon {
  font-size: 22px;
  line-height: 1;
  user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
  .enquiry-wrapper {
    flex-direction: column;
  }
  .right-side,
  .left-side {
    flex: 1 1 100%;
  }
}
