:root {
  --primary: #11006A;
  --secondary: #775A19;
}

body {
  font-family: "Poppins", sans-serif;
  color: #606060;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
}

hr {
  background: var(--primary);
  opacity: 0.75;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%239AA5C0' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

ul {
  margin: 0 0 16px;
}

ul li {
  font-weight: 400;
  line-height: 28px;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 16px;
}

small,
em {
  font-size: 14px;
  line-height: 18px;
  display: inline-block;
}

strong {
  font-weight: 600;
}

/* Common CSS */
button,
input[type=submit] {
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  height: 48px;
  margin: 15px 0 0;
}
h1 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 600;
  color: #fff;
  margin: 10px 10px 40px 0;
}

h2 {
  color: var(--primary);
  font-size: 30px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  margin: 0 0 25px;
  /* text-decoration: underline;
  text-decoration-color: var(--secondary);  
  text-underline-offset: 15px;    
  text-decoration-thickness: 3px; */
}
h2::after {
  content: "";
  display: block;
  width: 40%;              /* 👈 half width */
  height: 3px;
  background: var(--secondary);
  margin: 8px auto 0;     /* space + center */
}

/* Header */
header {
  padding: 5px 0;
}

header .logo {
  height: 80px;
  width: auto;
}
header .accred {
  height: 70px;
  width: auto;
}

.banner {
  position: relative;
}
.banner_pic {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.banner_pic img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 600px;
}

.banner-new {
  position: absolute;
  bottom: 50px;
  z-index: 3;
  width: 100%;
  color: #fff;
}

.banner-new .text-content > p {
  font-size: 16px;
  margin: 0 0 30px;
  background: #7e7e7e;
  color: #fff;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
}
.banner-new button {
  padding: 10px 20px;
  height: auto;
  color: #fff;
  background: var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-new button:hover {
  transform: scale(1.05);
}

.key-card img {
  width: auto;
  margin: 0 10px 0 0;
}

.key-card {
  width: 30%;
  margin: 0 0 20px;
}

.key-card h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.key-card p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  text-align: left;
  margin: 0;
}

.key-card small {
  font-weight: 400 !important;
}

.key-card .small-text {
  line-height: 12px;
}

.brochureBtn {
  width: 300px;
  padding: 10px 20px;
  color: #fff;
  background: var(--primary);
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brochureBtn:hover {
  transform: scale(1.05);
}

a:hover {
  cursor: pointer;
}

.modal h5,
form h5 {
  color: var(--primary);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  text-align: center;
  margin: auto 0;
  background: #E7F4FF;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 70%;
  transform: translateX(-50%);
  padding: 8px 5px;
}

.form-section .form_box {
  background-color: #fff;
  padding: 25px;
  width: 100%;
  border-radius: 10px;
}
.form_box p {
  font-size: 14px;
  line-height: 22px;
  margin: 10px 0;
  color: #000;
  text-align: center;
}
.form_box h3 {
  text-align: center;
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.form_box .form-control {
  border-radius: 5px;
  font-size: 14px;
  height: 50px;
  color: #686868;
  border: 1px solid #C6C3C3;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}

.form_box .form-control:focus {
  box-shadow: none;
  border: 1px solid #999;
  transition: all 0.3s ease-in-out;
}

.form_box .form-control::placeholder {
  color: #686868
}

.form_box .form-control:-moz-placeholder {
  color: #686868
}

.single-input {
  font-size: 11px;
  color: #686868;
  text-align: left;
  padding-left: 20px;
  position: relative;
}

.single-input input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 5px;
}

.single-input a {
  color: #fff;
}

/* eligibility */
.eligibility {
  padding: 50px 0;
}

.main-image {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 20px;
}

.who-can-apply h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
}
.criteria-box {
  margin-bottom: 30px;
}

.icon-wrapper {
  width: 45px;
  height: 45px;
  background-color: #F8F7F3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  overflow: hidden;
}

.icon-wrapper img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.criteria-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
  color: #000
}

.note-section p{
  border-top: 1px solid #ccc;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
}

.overview {
  padding: 0 0 50px;
}
.overview p{
  width: 80%;
  margin: 0 auto 10px;
}
.highlights {
  padding: 50px 0;
  background: #F8F7F3;
}
.highlight-card {
  border-radius: 12px;
  padding: 30px 25px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  background: #fff;
}
.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-card h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--secondary);
}

.leaders {
  padding: 50px 0;
}
.profile-table td:first-child,
.profile-table th:first-child {
  border-right: 1px solid #eee; /* 👈 vertical line */
  padding-right: 20px;
}

.profile-table td:last-child,
.profile-table th:last-child {
  padding-left: 20px;
}
.profile-table {
  width: 70%;
  border-collapse: collapse;
  margin: 0 auto;
}
.profile-table th {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--secondary);
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  text-align: left;
}

.profile-table td {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.profile-table tr.highlighted-row {
  border-top: 2px solid var(--highlight-blue);
  border-bottom: 2px solid var(--highlight-blue);
}

.profile-name {
  font-weight: 500;
  color: #000;
  font-size: 16px;
  width: 40%;
}

.profile-action {
  font-size: 16px;
  width: 60%;
}

/* course-content */
.course-content {
  padding: 50px 0;
  background: #F8F7F3;
}
.course-content p {
  margin: 0 auto 15px;
  width: 80%;
}
.course-content h4 {
  font-size: 18px;
  margin: 0 0 15px;
  color: #000;
}

.module-header-text {
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: var(--secondary);
  font-size: 16px;
}

.module-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}

.module-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.module-number {
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 10px;
  display: block;
}

.module-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

p.module-desc {
  margin: 0 0 15px !important;
  min-height: 50px;
}

.btn-detailed {
  background-color: var(--primary);
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-detailed:hover {
  background-color: var(--secondary);
  color: #fff;
}

/* Credential Section*/
.credential {
  padding: 50px 0;
}

.credential-subtext {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 15px;
}

.certificate-container {
  border-radius: 8px;
  padding: 10px;
}

.certificate-img {
  width: 90%;
  display: block;
  border-radius: 4px;
}

.criteria-table {
  width: 100%;
  margin-top: 20px;
}

.criteria-table th {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-weight: 500;
  color: var(--secondary);
}

.criteria-table td {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  font-weight: 400;
  font-size: 15px;
}

.criteria-label {
  font-weight: 400;
  color: #000;
  font-size: 16px;
  width: 45%;
}

.criteria-value {
  font-size: 15px;
  width: 55%;
}

.disclaimer-text {
  font-size: 13px;
  margin-top: 20px;
  line-height: 18px;
  font-style: italic;
}
.criteria-table td:first-child,
.criteria-table th:first-child {
  padding-right: 25px; /* space on right */
}

.criteria-table td:last-child,
.criteria-table th:last-child {
  padding-left: 25px; /* space on left */
}

/* Applied Impact Section (New) */
.impact {
  background-color: #F8F7F3;
  padding: 50px 0;
}

.impact-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 2px 4px 14px rgba(0, 0, 0, 0.10);
}
.impact-card p {
  margin: 0;
}

.impact-card h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--secondary);
}

/* Alumni Benefits Section (New) */
.alumni {
  padding: 50px 0;
}

.alumni-intro {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.benefit-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: #F8F7F3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 15px;
}

/* experts */
.experts {
  padding: 50px 0;
  background: #F8F7F3;
}

.faculty-intro {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.faculty-card {
  border-radius: 12px;
  padding: 0 20px;
  display: flex;
  gap: 40px;
}

.faculty-img-wrapper {
  flex-shrink: 0;
  width: 250px;
}

.faculty-img {
  filter: grayscale(10%);
  width: 100%;
}

.faculty-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.faculty-role {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
  color: #000;
}

.faculty-bio p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
}

/* swiper */
.swiper-pagination {
  display: flex;
  justify-content: center;
  position: relative;
  bottom: auto;
  margin-top: 25px;
}

.swiper-pagination span {
  margin: 0 3px;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  padding: 0;
  display: block;
  color: transparent;
  background: #707070;
  border: 0;
}

.swiper-pagination span.swiper-pagination-bullet-active {
  background: var(--primary);
}

.swiper-button-next {
  color: var(--primary);
  right: 0px;
  left: auto;
  top: 100px;
}

.swiper-button-prev {
  color: var(--primary);
  font-size: 10px !important;
  right: auto;
  left: -2px;
  top: 100px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: var(--secondary);
  font-size: 18px !important;
  font-weight: 500;
}


.schedule {
  padding: 50px 0;
}
.sub-heading {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
}

.description {
    max-width: 800px;
    margin: 0 auto 40px;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.item-content p {
  margin: 0;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #F8F7F3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.icon-wrapper img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.item-content h4 {
    font-size: 16px;
    font-weight:500;
    margin-bottom: 8px;
    color: #000;
}

.footer-note {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 22px;
}
.vertical-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
  height: 100%;
}

.announcement-bar {
    background-color: var(--secondary);
    color: #FFF;
    text-align: center;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 18px;
}

footer {
    background-color: var(--primary);
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
}

.footer-logo-container {
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    position: absolute;
    top: 50px;
    right: 10%;
}
.footer-logo-container img {
    height: 70px;
}
.footer-heading {
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 16px;
}
.footer-text {
    color: #b0b0cf;
    font-size: 15px;
    line-height: 24px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #b0b0cf;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.copyright {
    color: #b0b0cf;
    font-size: 13px;
    line-height: 18px;
}
.legal-links a {
    color: #b0b0cf;
    text-decoration: none;
    font-size: 13px;
    line-height: 18px;
    margin-left: 20px;
}
.legal-links a:hover {
    color: #fff;
}

.cp-tab-nav {
  justify-content: center;
  position: sticky;
  background: #F8F8F8;
  text-transform: uppercase;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  top: 0;
  width: 100%;
  z-index: 30;
  display: flex;
  margin: 0 auto;
  border-radius: 5px;
}

.cp-tab-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 10px;
  margin: 0;
  overflow-x: auto;
  justify-content: flex-start;
  align-items: center;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}

.cp-tab-nav ul::-webkit-scrollbar {
  display: none;
}

.cp-tab-nav ul li {
  white-space: nowrap;
  margin: 0;
}

.cp-tab-nav ul li a {
  color: #6a6464;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.cp-tab-nav ul a.active,
.cp-tab-nav ul a:hover {
  font-weight: 500;
  color: var(--primary);
  border-bottom: 4px solid var(--primary);
}
/* Show More Button (Mobile Only) */
.show-more-container {
  display: none;
  text-align: center;
}

.btn-show-more {
  background-color: var(--secondary);
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
  margin: 20px 0 0;
}

.readMore {
  cursor: pointer;
  font-weight: 400 !important;
  color: var(--secondary);

}
.readLess {
  cursor: pointer;
  display: none;
  font-weight: 400 !important;
  color: var(--secondary);
}
.moreDesc {
  display: none;
}

