/* ===============================
   COMMON INNER PAGE STYLES
   =============================== */

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

/* ===============================
   SECTION TITLE – GMR BRAND LINE
   =============================== */
.section-title {
    position: relative;
    display: inline-block;   /* keeps underline bound to text width */
    padding-bottom: 12px;    /* space for underline */
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;                 /* 🔑 force start from LEFT */
    bottom: 0;
    width: 110px;
    height: 5px;
    background: linear-gradient(
        to right,
        #003974 0%,
        #003974 33%,
        #ED1C24 33%,
        #ED1C24 66%,
        #FAAB53 66%,
        #FAAB53 100%
    );
    border-radius: 2px;
}



.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Sidebar */
.sidebar-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.sidebar-title {
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid #003060;
    padding-bottom: 8px;
}

.sidebar-links,
.glance-list,
.journey-list {
    list-style: none;
    padding-left: 0;
}

.sidebar-links li,
.glance-list li {
    margin-bottom: 10px;
}

.sidebar-links a {
    text-decoration: none;
    color: #003060;
    font-weight: 500;
}

.sidebar-links a:hover {
    text-decoration: underline;
}

/* Animation */
.fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive sidebar stacking */
@media (max-width: 991px) {
    .inner-page .col-lg-4 {
        order: 2;
        margin-top: 40px;
    }

    .inner-page .col-lg-8 {
        order: 1;
    }
}
/* ===============================
   COLUMN SEPARATION
   =============================== */

@media (min-width: 992px) {
    .inner-main {
        position: relative;
        padding-right: 35px;
    }

    .inner-main::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background: linear-gradient(
            to bottom,
            transparent,
            #d9dee5,
            transparent
        );
    }

    .inner-sidebar {
        padding-left: 35px;
    }
}
/* ===============================
   SECTION DIVIDERS
   =============================== */

.inner-divider {
    border-top: 1px solid #e6ebf1;
    margin: 40px 0;
}
/* Sidebar accent */
.sidebar-links li {
    position: relative;
    padding-left: 14px;
}

.sidebar-links li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #cfd8e3;
    border-radius: 50%;
}

.sidebar-links a:hover {
    color: #003060;
}
.journey-list li::before {
    color: #003060;
}/* ===== Program Hero ===== */
.program-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
}

.program-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.program-hero .container {
  position: relative;
  z-index: 2;
}

.program-hero .hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
}
