* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}

/* TOP BAR */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 35px;
    background: #ffffff;
    font-size: 16px;
}

.top-links a {
    margin-right: 20px;
    color: #333;
    text-decoration: none;
    opacity: 80%;
}

.du-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .du-logo img {
        height: 60px;
    }

/* HEADER */
.header {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    z-index: 10;
}

/* WHITE POLYGON SECTION */
.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f5f5f5;
    padding: 0 2rem;
    margin-right: -4rem;
    width: 38%;
    height: 120%;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    position: relative;
    z-index: 11;
}

/* LOGO */
.sol-logo {
    height: 5rem;
}

/* TEXT */
.header-text {
    display: flex;
    flex-direction: column;
}

.dept {
    font-size: 1rem;
    color: #333333;
    opacity: 80%;
    padding-bottom: 0.1rem;
    padding-top: 0rem;
}

.title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

/* PURPLE SECTION */
.header-right {
    flex: 1;
    background: #4f0071;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 2rem;
    height: 100%;
}

/* MENU ICON */
.menu {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
}

    .menu span {
        display: block;
        width: 1.5rem;
        height: 0.15rem;
        background: white;
    }
/* Default */
.navbar {
    gap: 1.2rem; /* px ki jagah rem */
}

/* Hamburger */
.menu span {
    display: block;
    width: 2rem;
    height: 0.18rem;
}

/* HERO */
.hero {
    position: relative;
    z-index: 1;
    /*height: 85vh;*/
    height: 75vh;
    width: 100%;
    /*overflow: hidden;*/
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NAVBAR */
.navbar {
    position: absolute;
    top: 6.5rem;
    left: 8%;
    width: 80%;
    color: #f5f5f5;
    z-index: 2;
}

    .navbar ul {
        display: flex;
        justify-content: space-between;
        list-style: none;
        font-size: 1.1rem;
        font-family: "Roboto Condensed";
    }

a.nav-img-home {
    color: white;
    margin-left: -2rem;
}

/* LEFT STRIP */
.side-strip {
    position: absolute;
    left: 0;
    top: 0;
    width: 4rem;
    height: 100%;
    background: #4f0071;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: white;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
}

.strip-line {
    position: absolute;
    bottom: 0%;
    width: 0.15rem;
    height: 34%;
    background: #d5ac49;
}

/* HERO TEXT */
.hero-content {
    position: absolute;
    top: 25%;
    left: 8%;
    color: white;
    /*z-index: 2;*/
}

.subheading {
    font-size: 1rem;
    letter-spacing: 0.2rem;
    opacity: 0.8;
    margin-top: 4rem;
    margin-left: 0;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-left: 0;
}

.hero-content span {
    color: #d5ac49;
}

/* CARDS */
.hero-cards {
    position: absolute;
    bottom: -5rem;
    left: 38%;
    width: 60%;
    height: 25%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    z-index: 10;
    opacity: 80%;
}

.card {
    padding: 1.5rem;
    color: white;
    text-align: center;
    border-radius: 0.5rem;
    backdrop-filter: blur(0.5rem);
    text-decoration: none;
}

/* COLORS */
.gold {
    background: linear-gradient(rgba(213, 172, 73, 0.9), rgba(213, 172, 73, 0.6));
}

.purple {
    background: linear-gradient(rgba(79, 0, 113, 0.9), rgba(79, 0, 113, 0.6));
}

.gold h4 {
    color: #000000;
}

.gold p {
    color: #000000;
}

.card h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    margin-top: 2rem;
    text-decoration: none;
    font-weight: 400;
    opacity: 100%;
}

    .card h4:hover {
        text-decoration: underline;
        cursor: pointer;
    }

.card p {
    font-size: 1rem;
    font-weight: 300;
    opacity: 100%;
}

/* Responsive */
@media (max-width: 576px) {
    .menu {
        margin-top: 3rem;
        margin-right: -1.5rem;
    }

        .menu span {
            width: 1.5rem;
        }

    .sol-logo {
        margin-left: -1.5rem;
    }

    .dept {
        margin-top: 0rem;
        font-size: 0.7rem;
    }

    .title {
        font-size: 1rem;
    }

    .du-logo img {
        height: 65px;
        margin-left: 3.5rem;
    }

    .top-links {
        display: none;
    }

    .strip-line {
        height: 27%;
    }

    .header-left {
        width: 95%;
        margin-top: 1.5rem;
    }

    .header-right {
        margin-top: 1rem;
    }

    .hero-content {
        top: 28%;
        left: 25%;
        z-index: 1;
    }

        .hero-content h1 {
            font-size: 3rem;
        }

    .hero-cards {
        bottom: -10.2rem;
        left: 5%;
        width: 90%;
        height: 25%;
        gap: 1rem;
        grid-template-columns: 1fr 1fr;
        opacity: 100%;
    }

    .card {
        padding: 1rem;
    }

        .card h4 {
            margin-top: 2rem;
        }

    .navbar {
        display: none;
        flex-direction: column;
        background: #4f0071; /* purple tone */
        width: 195%;
        position: absolute;
        top: 12%;
        left: 0;
        padding: 2rem 0;
    }

        .navbar.active {
            display: flex;
        }

    .navbar {
        position: relative; /* 🔥 absolute hatao */
        top: 0;
        left: 0;
        width: 100%;
        margin-top: -27rem;
    }

        .navbar ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem 2rem;
            padding: 0 1rem;
        }

        .navbar li {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

    img.nav-img {
        margin-left: -2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .topbar {
        font-size: 18px;
    }

    .du-logo img {
        height: 68px;
    }

    .header {
        top: 80px;
    }
    .side-strip {
        z-index: 1;
    }
    .header-left {
        width: 72%;
    }

    .hero-content {
        top: 25%;
        left: 13%;
    }

    .hero-cards {
        bottom: -4.2rem;
        left: 9%;
        width: 90%;
        height: 25%;
        gap: 1rem;
    }

    .card {
        padding: 1rem;
    }

        .card h4 {
            margin-top: 2rem;
        }

    .navbar {
        display: none;
        flex-direction: column;
        background: #4f0071; /* purple tone */
        width: 195%;
        position: absolute;
        top: 12%;
        left: 0;
        padding: 2rem 0;
    }

        .navbar.active {
            display: flex;
        }

    .navbar {
        position: relative; /* 🔥 absolute hatao */
        top: 0;
        left: 0;
        width: 100%;
        margin-top: 5rem;
    }

        .navbar ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem 2rem;
            padding: 0 1rem;
        }

        .navbar li {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

    a.nav-img-home {
        margin-left: -0.5rem;
    }

    .dept {
        padding-top: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header-left {
        width: 50%;
    }
    .topbar {
        font-size: 18px;
    }

    .du-logo img {
        height: 63px;
    }

    .header {
        top: 75px;
    }
    .navbar {
        left: 8%;
        width: 90%;
    }

    a.nav-img-home {
        margin-left: -1rem;
    }

    .hero-content {
        top: 20%;
    }

        .hero-content h1 {
            font-size: 4rem;
        }

    .hero-cards {
        bottom: -3.5rem;
        left: 30%;
        width: 67%;
        height: 25%;
    }

    .card h4 {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }

    .strip-line {
        height: 26%;
    }

    .card {
        padding: 0.5rem;
    }

    .navbar ul {
        font-size: 1rem;
    }

    .menu {
        display: none;
    }

    .dept {
        padding-top: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .header-left {
        width: 45%;
    }
    .topbar {
        font-size: 18px;
    }
    .du-logo img {
        height: 63px;
    }
    .header {
        top: 75px;
    }
    .navbar {
        left: 7%;
        width: 90%;
    }

    a.nav-img-home {
        margin-left: -1rem;
    }

    .hero-content {
        top: 20%;
    }

    .hero-cards {
        bottom: -3rem;
        left: 30%;
        width: 67%;
        height: 25%;
    }

    .card h4 {
        margin-bottom: 1rem;
        font-size: 1.3rem;
        margin-top: 2rem;
        text-decoration: none;
        font-weight: 400;
        opacity: 100%;
    }

        .card h4:hover {
            text-decoration: underline;
        }

    .strip-line {
        height: 30%;
    }

    .menu {
        display: none;
    }

    .dept {
        padding-top: 0;
    }
}


/* Section Second */
.alerts-section {
  max-width: 100rem;
  margin: auto;
  padding: 10rem 2rem 1rem;
}

/* TITLE */

.title-alerts {
  text-align: center;
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Roboto Condensed";
  margin-top: 1rem;
}

.alerts-title-underline {
  display: block;
  width: 3rem;
  height: 0.25rem;
  background: #d6a23c;
  margin: 0.8rem auto 2rem;
  margin-top: 0.2rem;
}

/* TABS */

.alerts-tabs {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.alerts-tab {
  padding: 0.7rem 2rem;
  border: 0.08rem solid #4f0071;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
}

.alerts-tab:hover {
  background: #4f0071;
  color: white;
}

.alerts-card {
    display: flex;
}
/* .alerts-card {
  display: none !important;
}

.alerts-card[data-category="latest"] {
  display: flex !important;
} */

.alerts-tab.active {
  background: #4f0071;
  color: white;
}

/* CARDS */

.alerts-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.alerts-card {
  display: flex;
  align-items: center;
  background: #f6f2f8;
  padding: 1.2rem;
  border-radius: 0.5rem;
}

.alerts-card:hover {
  border-left: 0.25rem solid #4f0071;
  background-color: #ece3f0;
}

.alerts-date {
  min-width: 3rem;
  margin-right: 1rem;
}

.alerts-date strong {
  display: block;
  font-size: 1.8rem;
}

.alerts-date span {
  font-size: 1rem;
  font-size: 1rem;
  color: #333333;
  opacity: 90%;
  margin-left: 0.2rem;
}

.alerts-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
  font-family: "Roboto Condensed";
}

.alerts-content p {
  font-size: 1rem;
  color: #333333;
  margin-top: 0.5rem;
  opacity: 90%;
  font-weight: 300;
  font-family: "Roboto";
}

.alerts-right {
  margin-left: auto;
  text-align: right;
}

.alerts-badge {
  display: inline-block;
  background: #fdfbfd;
  color: #ff543e;
  font-weight: 500;
  font-size: 0.8rem;
  padding: 0.2rem 1rem;
  border-radius: 0.4rem;
  margin-bottom: 1.5rem;
}

.alerts-arrow {
  display: block;
  font-size: 1.8rem;
  color: #4f0071;
  cursor: pointer;
}

/* VIEW MORE */

.alerts-view-more {
  display: inline-flex;
  align-items: center;
  gap: 0rem;
  background: #d5ac49;
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  margin-left: 43rem;
  margin-top: 2.5rem;
}

/* 📱 max-width 576px → 36em */

@media (max-width: 576px) {
  .alerts-cards {
    grid-template-columns: 1fr;
  }

  .alerts-tabs {
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    display: flex;
    flex-wrap: wrap;
  }
  button.alerts-tab {
    font-size: 1rem;
  }
  .alerts-section {
    padding: 28rem 1rem;
    padding-bottom: 2rem;
  }
  .alerts-view-more {
    margin-left: 8rem;
  }
}

/* 📲 min-width 768px → 48em */

@media (min-width: 768px) and (max-width: 991px) {
  .alerts-cards {
    grid-template-columns: 1fr;
  }
  .alerts-section {
    padding: 10rem 3rem;
    padding-bottom: 3rem;
  }
  .alerts-view-more {
    margin-left: 18rem;
  }
}

/* 💻 min-width 992px → 62em */

@media (min-width: 992px) and (max-width: 1199px) {
    .alerts-section {
        padding: 8rem 3rem;
        padding-bottom: 1rem;
    }

  .alerts-cards {
    grid-template-columns: 1fr 1fr;
  }
  .alerts-view-more {
    margin-left: 28rem;
  }
}

/* 🖥 min-width 1200px → 75em */

@media (min-width: 1200px) and (max-width: 1500px) {
  .title-alerts {
    font-size: 2.2rem;
  }

  .alerts-cards {
    grid-template-columns: 1fr 1fr;
  }
  .alerts-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
  }
  .alerts-view-more {
    margin-left: 34rem;
  }
}

/* Section Third */
.courses-offered {
    background: #f5f5f5;
    padding: 2rem 0;
}

.courses-wrapper {
    width: 70%;
    margin: auto;
    text-align: center;
}

.courses-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

    .courses-heading h2 {
        font-size: 2rem;
        font-weight: 700;
        position: relative;
        font-family: "Roboto Condensed";
    }

        .courses-heading h2::after {
            content: "";
            display: block;
            width: 2.5rem;
            height: 0.15rem;
            background: #d5ac49;
            margin: 0.4rem auto 0 auto;
        }

.line {
    flex: 1;
    height: 0.05rem;
    background: #cfcfcf;
    max-width: 12rem;
}

.courses-text {
    font-size: 0.9rem;
    color: #333333;
    opacity: 80%;
    line-height: 1.6;
    max-width: 50rem;
    margin: auto;
}

.course-search {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 5%;
}

/* SEARCH BAR */

.search-wrapper {
    display: flex;
    align-items: center;
    width: 50%;
    border: 0.08rem solid #cfcfcf;
    border-radius: 2rem;
    overflow: hidden;
    background: #fff;
}

    .search-wrapper input {
        flex: 1;
        border: none;
        padding: 0.8rem 1rem;
        outline: none;
        font-size: 1rem;
        color: #333333;
        opacity: 75%;
    }

.search-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.4rem 1.4rem;
    border-radius: 2rem;
    cursor: pointer;
    margin-right: 0.2rem;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}

/* PROGRAM BUTTONS */

.program-buttons {
    display: flex;
    gap: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.program-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    padding: 0.7rem 2.1rem;
    border-radius: 3rem;
    border: 0.12rem solid #d5ac49;
    background: #d5ac49;
    color: #000;
    font-size: 1rem;
    cursor: pointer;
}

h6.button-text {
    font-family: roboto;
    font-size: 1rem;
    font-weight: 500;
    color: #333333;
    opacity: 90%;
}

.arrow-course {
    background: #f5f5f5;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
}

@media (max-width: 576px) {
    .courses-wrapper {
        width: 88%;
    }

    .search-wrapper {
        width: 100%;
    }

    .program-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .program-btn {
        gap: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .search-wrapper {
        width: 100%;
    }

    .courses-heading h2::after {
        width: 5.5rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .search-wrapper {
        width: 85%;
    }

    .courses-heading h2::after {
        width: 5.5rem;
        height: 0.25rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .courses-heading h2::after {
        width: 5.5rem;
        height: 0.25rem;
    }

    .courses-wrapper {
        width: 100%;
    }

    .courses-text {
        font-size: 1rem;
        max-width: 54rem;
    }

    .search-wrapper {
        width: 70%;
    }

    .program-btn {
        padding: 0.5rem 1.1rem;
        gap: 8rem;
    }

    .course-search {
        padding: 2rem 1rem;
    }
}

/* Section Fourth */
.admissions-section {
    width: 100%;
    background: #ffffff;
    padding: 4rem 0;
    position: relative;
}

    /* FULL WIDTH PURPLE STRIP */

    .admissions-section::before {
        content: "";
        position: absolute;
        top: 5;
        left: 0;
        width: 100%;
        height: 12rem;
        background: #4f0071;
        z-index: 1;
    }

/* MAIN LAYOUT */

.admissions-container {
    width: 85%;
    margin: auto;
    display: flex;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* LEFT SIDE */

.admissions-left {
    width: 45%;
    color: white;
    padding-top: 2.8rem;
}

    .admissions-left h2 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 2rem;
        margin-left: 1rem;
        margin-top: 1rem;
    }

.admissions-desc {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 35rem;
    margin-left: 1rem;
    margin-top: 1rem;
    font-family: roboto;
    color: #f5f5f5;
    opacity: 90%;
}

/* LINKS */

.admissions-links {
    list-style: disc;
    color: #333;
    padding: 0;
}

    .admissions-links li {
        border-bottom: 0.05rem solid #d1d1d1;
        padding: 1rem 0.5rem;
    }

    .admissions-links a {
        color: #333333;
        font-family: "Roboto";
        font-size: 1rem;
        font-weight: 500;
    }

    .admissions-links li:hover {
        background-color: #f6f2f8;
    }

    .admissions-links a:hover {
        color: #4f0071;
    }

/* HOVER STATE (4th item) */

/* RIGHT SIDE */

.admissions-right {
    width: 55%;
    position: relative;
}

    /* IMAGE OVERLAP */

    .admissions-right img {
        width: 80%;
        display: block;
        position: relative;
        top: 4rem;
        left: 10rem;
    }

/* ABOUT CARD */

.about-card {
    position: absolute;
    top: 25%;
    right: 5%;
    background: white;
    width: 50%;
    height: 60%;
    padding: 2rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    opacity: 95%;
}

    .about-card h3 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 1.4rem;
        margin-bottom: 1rem;
        text-align: center;
        margin-top: 1.2rem;
    }

    .about-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

/* BUTTON */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #d5ac49;
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    margin-left: 5rem;
    margin-top: 2rem;
}

    .about-btn span {
        font-size: 1rem;
    }

.About-preview {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.5rem;
    font-weight: 400;
    color: #333333;
}

.Admission-list {
    margin-top: 5rem;
    margin-left: 2rem;
    line-height: 3rem;
}

@media (max-width: 576px) {
    .admissions-section {
        padding: 1rem 0;
    }

    .admissions-container {
        flex-direction: column;
        gap: 1rem;
        width: 95%;
    }

    .admissions-right {
        width: 100%;
    }
    
        .admissions-right img {
            height: 90%;
            width: 119%;
            left: -2rem;
            top: 1rem;
        }

    .about-card {
        top: 15%;
        right: 4%;
        height: 80%;
        width: 90%;
        padding: 1rem;
    }

    .about-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        margin-left: 2.8rem;
        margin-top: -1rem;
        width: 13rem;
    }

    .about-card h3 {
        margin-top: 0rem;
        margin-bottom: -1rem;
    }

    .About-preview {
        font-size: 0.9rem;
    }

    .admissions-left {
        margin-left: 0rem;
        padding-top: 0.8rem;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .admissions-right img {
        height: 90%;
        width: 130%;
        left: -2rem;
    }
    .admissions-desc {
        margin-left: -1rem;
    }
    .Admission-list {
        margin-left: 0rem;
    }
    .about-card {
        top: 25%;
        right: -6%;
        height: 62%;
        width: 100%;
    }

    .about-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        margin-left: -0.5rem;
        margin-top: 0rem;
        width: 15rem;
    }

    .about-card h3 {
        margin-top: 1rem;
    }

    .admissions-left {
        padding-top: 0.8rem;
        width: 62%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .admissions-right img {
        height: 90%;
        width: 100%;
        left: 3rem;
    }

    .about-card {
        top: 25%;
        right: -3%;
        height: 62%;
        width: 60%;
    }

    .about-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        margin-left: -0.5rem;
        margin-top: 1rem;
        width: 15rem;
    }

    .about-card h3 {
        margin-top: 1rem;
    }

    .admissions-left {
        padding-top: 0.8rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .admissions-right img {
        height: 90%;
        width: 100%;
        left: 3rem;
    }

    .about-card {
        top: 22%;
        right: -1%;
        height: 70%;
    }

    .about-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        margin-left: -0.5rem;
        margin-top: 1rem;
        width: 15rem;
    }

    .about-card h3 {
        margin-top: 1rem;
    }

    .admissions-left {
        padding-top: 0.8rem;
    }
}

/* Section Fifth */
.learning-section {
    background: #f8f5fa;
    padding: 3rem 0;
    font-family: "Roboto", sans-serif;
}

.learning-container {
    width: 85%;
    margin: auto;
}

/* TOP TEXT */

.learning-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

    .learning-top h2 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 1.8rem;
        margin-left: 9rem;
    }

    .learning-top span {
        color: #6a1b9a;
    }

    .learning-top p {
        max-width: 36rem;
        font-size: 1rem;
        margin-right: 9rem;
        line-height: 1.6;
        color: #333333;
    }

.focus-section {
    padding: 1rem 2rem;
    width: 100%;
}

.container-focus {
    width: 100%;
    margin: 0 auto;
}

/* Cards Layout */

.card-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.focus-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.card-top {
    padding: 1.5rem;
    text-align: center;
    min-height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

    .card-top h3 {
        font-size: 1rem;
        line-height: 1.4;
        font-weight: 500;
    }

.icon {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.bg-blue {
    background: #e3f0f2;
}

.bg-beige {
    background: #f1ede6;
}

.card-image {
    height: 100%;
    width: 100%;
}

    .card-image img {
        width: 100%;
        height: 15rem;
        object-fit: cover;
        display: block;
        border-radius: 1rem;
    }

    .card-image p {
        margin-top: -7rem;
        text-align: center;
        color: #ffffff;
        font-size: 1rem;
        padding: 1rem;
    }

/* Responsive */
@media (max-width: 576px) {
    .card-wrapper {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 768px) {
    .card-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .card-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .card-image p {
        margin-top: -10rem;
        padding: 1rem;
    }
}

@media (min-width: 1200px) {
    .card-wrapper {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        width: 130%;
        margin-left: -1rem;
    }
}

@media (max-width: 576px) {
    .learning-section {
        padding-bottom: 3rem;
    }

    .learning-container {
        width: 90%;
    }

    .learning-top {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }

        .learning-top h2 {
            margin-left: 0rem;
        }

        .learning-top p {
            max-width: 28rem;
            margin-right: 0rem;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .learning-container {
        width: 90%;
    }

    .learning-top h2 {
        margin-left: 2rem;
    }

    .learning-top p {
        max-width: 28rem;
        margin-right: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    .learning-top h2 {
        margin-left: 5rem;
    }
    .learning-container {
        width: 90%;
    }
    .learning-top p {
        margin-right: 4rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {

    .learning-top h2 {
        margin-left: 6rem;
    }

    .learning-top p {
        margin-right: 5rem;
    }
}

/* Section Events */

.events-section {
    padding: 2rem 0;
    background: #ffffff;
    font-family: "Roboto", sans-serif;
}

.events-container {
    width: 85%;
    margin: auto;
}

/* HEADER */

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

    .events-header h2 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 2rem;
    }

.view-all {
    font-size: 1rem;
    text-decoration: none;
    color: #4f0071;
    font-weight: 500;
}

/* GRID */

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

/* CARD */

.event-card {
    position: relative;
}

/* TOP LINE */

.event-line1 {
    background: #d7d7d7;
    position: relative;
    margin-bottom: 1.2rem;
}

.event-line2 {
    background: #d7d7d7;
    position: relative;
    margin-bottom: 1.2rem;
    align-items: center;
}

.event-line3 {
    background: #d7d7d7;
    position: relative;
    margin-bottom: 1.2rem;
}

.event-line1::after {
    content: "";
    position: absolute;
    left: 9%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.25rem;
    background: #caa43a;
    top: 0.5rem;
}

.event-line2::after {
    content: "";
    position: absolute;
    left: 52%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.25rem;
    background: #caa43a;
    top: 0.5rem;
    align-items: center;
}

.event-line3::after {
    content: "";
    position: absolute;
    left: 89%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.25rem;
    background: #caa43a;
    top: 0.5rem;
}

/* CONTENT */

.event-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* DATE */

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 2.5rem;
    margin-top: 1rem;
    margin-left: -0.8rem;
    color: #333333;
}

.month {
    color: #333333;
    font-size: 1.4rem;
    opacity: 85%;
    align-items: center;
    line-height: 1.5rem;
    font-family: "Roboto Condensed";
    margin-left: 0.8rem;
}

.day {
    font-weight: 700;
    font-size: 2rem;
    margin-left: 0.5rem;
}

/* INFO */

.event-info {
    flex: 1;
}

.event-title {
    font-size: 1.2rem;
    font-family: "Roboto";
    margin-top: 1.6rem;
    line-height: 1.5rem;
    font-family: "roboto";
    text-decoration: none;
    font-weight: 500;
    margin-left: 0.5rem;
}

    .event-title:hover {
        text-decoration: underline;
    }

.event-time {
    color: #333333;
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.events-header h2 {
    margin-left: -1rem;
}
/* ARROW */

.event-arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
}

/* FILLED */

.filled {
    background: #6a1b9a;
    color: white;
    border: none;
    margin-right: 3rem;
}

/* OUTLINE */

.outline {
    background: white;
    border: 0.08rem solid #4f0071;
    color: #4f0071;
}

@media (max-width: 576px) {
    .events-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .filled {
        margin-right: 0rem;
    }

    .event-title {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .events-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .filled {
        margin-right: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .filled {
        margin-right: 1rem;
    }

    .outline {
        margin-top: 0;
    }

    .event-title {
        margin-top: 0;
        margin-left: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .filled {
        margin-right: 1rem;
    }

    .outline {
        margin-top: 2rem;
    }

    .event-title {
        margin-top: 0;
        margin-left: 0;
    }
}

/* Section Fifth */
.leadership-section {
    background: #ffffff;
    padding: 1rem;
    font-family: "Roboto", sans-serif;
}

.leadership-container {
    width: 100%;
    margin: auto;
    position: relative;
}

/* IMAGE */

.leadership-image {
    position: relative;
}

    .leadership-image img {
        width: 80%;
        display: block;
        margin-left: -15px;
        height: 40rem;
    }

/* GOLD DIAGONAL */

.gold-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    border-left: 0.18rem solid #caa43a;
    border-top: 0.18rem solid #caa43a;
    transform: skewX(-40deg);
    transform-origin: left;
    pointer-events: none;
}

/* PURPLE CARD */

.leadership-card {
    position: absolute;
    right: 0;
    top: 5%;
    width: 38%;
    background: #4f0071;
    color: white;
    padding: 2.5rem;
}

    /* TITLE */

    .leadership-card h2 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 2rem;
        margin-bottom: 1rem;
        font-weight: 600;
        letter-spacing: 0.2rem;
    }

/* TEXT */

.leadership-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #f5f5f5;
    opacity: 90%;
    font-family: "Roboto", sans-serif;
}

/* LINKS */

.leadership-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.leadership-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    padding-top: 1rem;
    font-size: 1rem;
}

/* ARROW CIRCLE */

.circle {
    background: #d4a63a;
    width: 13%;
    height: 10%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
}

    .circle img {
        width: 100%;
        height: 50%;
    }

.top-line {
    border-top: 0.05rem solid #ffffff;
}

@media (max-width: 576px) {
    .leadership-card {
        right: -0.8rem;
        top: 8%;
        width: 85%;
        padding: 1rem;
    }

    .leadership-image img {
        width: 90%;
        margin-left: -1rem;
        height: 30rem;
    }

    .leadership-card h2 {
        font-size: 1.5rem;
    }

    .leadership-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .leadership-card {
        right: -0.8rem;
        top: 11%;
        width: 60%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .leadership-card {
        top: 10%;
        width: 50%;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .leadership-card {
        position: absolute;
        right: 0;
        left: 39.8rem;
        top: 8%;
        width: 50%;
        background: #4f0071;
        color: white;
        padding: 2.5rem;
    }
}

/* Section Quick Links */
.quick-links-section {
    text-align: center;
    padding: 3rem 6%;
    background: #ffffff;
}

/* TITLE */

.quick-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    font-family: "Roboto Condensed";
}

    /* grey divider */
    .quick-title::after {
        content: "";
        display: block;
        width: 28rem;
        height: 0.08rem;
        background: #cfcfcf;
        margin: 0.6rem auto 0;
    }

    /* yellow highlight */
    .quick-title::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -0.15rem;
        width: 3.5rem;
        height: 0.3rem;
        background: #deb04c;
    }

/* GRID */

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem 2rem;
    max-width: 70rem;
    margin: auto;
    margin-top: 1rem;
}

/* LINK */

.quick-link {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

/* ICON BOX */

.icon-box {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f5fa;
    border-radius: 1.2rem;
    font-size: 2rem;
}

/* TEXT */

.quick-link span {
    font-size: 1rem;
    font-family: "Roboto";
    font-weight: 500;
    color: #333333;
    opacity: 90%;
    letter-spacing: 0.05rem;
}

@media (max-width: 576px) {
    .icon-box {
        width: 4rem;
        height: 4rem;
    }

    .quick-links-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1rem;
    }

    .quick-title {
        display: block;
    }

        .quick-title::before {
            width: 7.5rem;
        }

        .quick-title::after {
            width: 22rem;
        }

    .quick-links-section {
        padding: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .quick-title::before {
        width: 7.5rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .quick-title::before {
        width: 7.5rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .quick-title::before {
        width: 7.5rem;
    }
}

/* CTA Section */
.connect-section {
    background: #ffffff;
    font-family: "Roboto", sans-serif;
    width: 150rem;
    margin-left: -12rem;
    margin-top: 2rem;
}

/* IMAGE */

.connect-image {
    position: relative;
    width: 85%;
    margin: auto;
}

    .connect-image img {
        width: 100%;
        display: block;
        height: 25rem;
    }

/* CARD CONTAINER */

.connect-cards {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 80%;
}

/* WHITE CARDS */

.connect-card {
    background: white;
    padding: 2rem;
    flex: 1;
    border-bottom: 0.2rem solid #d4a63a;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    max-width: 40rem;
    margin-left: 5rem;
}

    /* TITLES */

    .connect-card h3 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 2rem;
        letter-spacing: 0.1rem;
        margin-bottom: 1rem;
    }

    /* TEXT */

    .connect-card p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        max-width: 35rem;
        font-family: "Roboto";
        color: #333333;
        opacity: 90%;
    }

/* LINK BUTTON */

.connect-link {
    display: inline-flex;
    align-items: center;
    gap: 1.8rem;
    color: #b10e0e;
    text-decoration: underline;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.arrow-cta {
    background: #b10e0e;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

/* SOCIAL LINKS */

.social-links {
    display: flex;
    gap: 1.5rem;
}

    .social-links a {
        display: inline-flex;
    }

    .social-links img {
        height: 1.8rem;
        margin-bottom: -5rem;
    }

@media (max-width: 576px) {
    .connect-cards {
        top: 50%;
        left: 22.4%;
        gap: 1rem;
        width: 44%;
        flex-direction: column;
    }

    .connect-card {
        max-width: 21rem;
        margin-left: 2rem;
        padding: 1rem;
    }

        .connect-card p {
            font-size: 0.9rem;
            margin-bottom: -0.5rem;
            max-width: 18rem;
        }

        .connect-card h3 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

    .social-links a {
        margin-top: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .connect-cards {
        top: 50%;
        left: 22.3%;
        width: 45%;
    }

    .connect-card {
        max-width: 22rem;
        margin-left: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .connect-cards {
        left: 41%;
    }

    .connect-card {
        max-width: 27rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .connect-cards {
        left: 30%;
        width: 50%;
    }
}

/* FOOTER */
.footer {
    background: #4f0071;
    color: white;
    font-family: "Roboto", sans-serif;
    padding: 4rem 0;
}

.footer-container {
    width: 85%;
    margin: auto;
}

/* TOP LINKS */

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-family: "Roboto", sans-serif;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: disc;
    opacity: 90%;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
}

/* CONTACT INFO */

.footer-info {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.info-block h5 {
    font-family: "Roboto", sans-serif;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.info-block p {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 40rem;
    opacity: 90%;
}

/* DIVIDER */

hr {
    border: none;
    height: 0.06rem;
    background: rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
}

/* DESCRIPTION */

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 91rem;
    font-family: "Roboto";
    opacity: 95%;
}

/* BOTTOM */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

    .footer-bottom p {
        font-size: 1rem;
        color: #f5f5f5;
        opacity: 90%;
    }

/* SOCIAL */

.footer-social {
    display: flex;
    gap: 1.5rem;
}

    .footer-social img {
        height: 1rem;
    }

@media (max-width: 576px) {
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-left: 1rem;
    }

    .footer {
        padding: 3rem 0;
    }
}

/* parent */
.Dropdown {
    position: relative;
}
/* MEGA MENU */

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #e2e2e1;
    display: flex;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 999;
}

.Dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

    .mega-col a {
        color: #000000;
        padding: 0.5rem 0;
        font-size: 1.2rem;
        font-weight: 200;
        text-decoration: none;
        width: 100%;
        padding-left: 0rem;
    }

        .mega-col a:hover {
            color: #4f0071;
            text-decoration: underline;
        }

a.nav-link1 {
    color: white;
    text-decoration: none;
}

    a.nav-link1:hover {
        color: #deb04c;
        text-decoration: underline;
    }

/* dropdown */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #e2e2e1;
    display: flex;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 999;
}

/* 📱 MOBILE max-width 576px */

@media (max-width: 576px) {
    .mega-menu {
        position: static;
        flex-direction: column;
        width: 100%;
    }
}

/* 📲 min-width 768px */

@media (min-width: 768px) and (max-width: 991px) {
    .mega-menu {
        margin-left: -1.7rem;
        margin-top: 0rem;
        width: 22vw;
        padding: 0rem;
        top: 2rem;
    }

    .mega-col a {
        padding-left: 1rem;
    }
}

/* 💻 min-width 992px */

@media (min-width: 992px) and (max-width: 1199px) {
    .mega-menu {
        margin-left: -1.7rem;
        margin-top: 0rem;
        width: 18vw;
        padding: 0rem;
        top: 2rem;
    }

    .mega-col a {
        padding-left: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .mega-menu {
        margin-left: -1.7rem;
        margin-top: 0rem;
        width: 18vw;
        padding: 0rem;
        top: 2rem;
    }

    .mega-col a {
        padding-left: 1rem;
    }
}

/*------------------------------------------------------*/
/* SOL ABOUT US OVERVIEW PAGE  */
/*------------------------------------------------------*/

/* HERO TEXT */
.hero-content1 {
    position: absolute;
    top: 25%;
    left: 6%;
    color: white;
    /*z-index: 2;*/
}

.subheading {
    font-size: 1rem;
    letter-spacing: 0.2rem;
    opacity: 0.8;
    margin-top: 4rem;
    margin-left: 0;
}

.hero-content1 h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-left: 1rem;
}

.hero-content1 span {
    color: #d5ac49;
}

.breadcrumb {
    color: #d5ac49;
    margin-top: 10rem;
}

    .breadcrumb a {
        color: #d5ac49;
        text-decoration: none;
    }

.subheading-hero {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 85%;
}

.hero-content h1 {
    margin-top: 1rem;
}
/* 2. LAYOUT - Sidebar + Main */
.page-container {
    display: grid;
    grid-template-columns: 350px 1fr; /* Sidebar fixed on desktop */
    min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
    background-color: #f3eef8;
    padding-top: 0rem;
    border-right: 1px solid #ddd;
    margin-top: -4rem;
}

    .sidebar ul {
        list-style: none;
        margin-top: 7rem;
    }

    .sidebar li {
        padding: 15px 30px;
        font-size: 1.2rem;
        color: #666;
        cursor: pointer;
        text-align: right;
    }

        .sidebar li:hover {
            background-color: #e6e0ec;
            color: #000;
            font-weight: 500;
            border-right: 0.4rem solid #4f0071;
        }

.sol-section {
    padding: 3rem 1rem;
    text-align: center;
}

.sol-container {
    max-width: 75rem;
    margin: auto;
}

.sol-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #444;
    max-width: 48rem;
    margin: 0 auto 2.5rem auto;
}

.sol-links {
    display: flex;
    justify-content: center;
    gap: 12rem;
    flex-wrap: wrap;
}

.sol-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sol-icon {
    width: 3rem;
    height: 3rem;
    background: #4b0d6b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.sol-link {
    color: #4b0d6b;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 0.12rem solid #4b0d6b;
    padding-bottom: 0.2rem;
}

    .sol-link::after {
        content: " →";
    }

@media (max-width: 576px) {
    .hero-content1 {
        top: 20%;
        text-align: center;
        left: 0;
    }
        .hero-content1 h1 {
            font-size: 3rem;
            line-height: 1.1;
            margin-left: 0.5rem;
        }

    .sol-container {
        margin-left: 0.8rem;
        max-width: 92%;
    }

    .sol-links {
        gap: 3rem;
    }

    .sol-text {
        font-size: 1.02rem;
        max-width: 22rem;
    }

    .page-container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-top: -6rem;
        padding-bottom: 1rem;
    }

        .sidebar li {
            text-align: center;
            width: 84%;
            margin-left: 2rem;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .subheading-hero {
        font-size: 1.4rem;
    }

    .sol-links {
        gap: 6rem;
    }

    .sol-text {
        font-size: 1.02rem;
    }

    .page-container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-top: -6rem;
        padding-bottom: 1rem;
    }

        .sidebar li {
            text-align: center;
            width: 90%;
            margin-left: 2.5rem;
        }

    .hero-content1 h1 {
        margin-left: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-content1 {
        top: 16%;
    }

    .subheading-hero {
        font-size: 1.2rem;
    }

    .sol-links {
        gap: 6rem;
    }

    .sol-text {
        font-size: 1.05rem;
    }

    .page-container {
        display: grid;
        grid-template-columns: 250px 1fr;
        min-height: 100vh;
    }

    .sidebar li {
        padding: 25px 30px;
    }

    .hero-content1 h1 {
        margin-left: 0rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .page-container {
        display: grid;
        grid-template-columns: 280px 1fr;
        min-height: 100vh;
    }

    .sidebar li {
        padding: 30px 37px;
        font-size: 1.3rem;
    }

    .subheading-hero {
        font-size: 1.2rem;
    }

    .sol-text {
        font-size: 1.1rem;
    }

    .sol-links {
        gap: 8rem;
    }

    .hero-content1 h1 {
        margin-left: 0rem;
    }
}

.about-sol {
    background: #f5f5f5;
    padding: 2rem 1rem;
    width: 90%;
    margin-left: 5rem;
}

.about-container {
    max-width: 62rem;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: #f5f5f5;
}

.about-left img {
    width: 90%;
    height: auto;
    border-radius: 0.3rem;
}

.about-right {
    padding: 2rem;
}

.about-small {
    font-size: 1rem;
    letter-spacing: 0.08rem;
    color: #555;
    display: block;
    margin-bottom: 10rem;
}

.about-title {
    font-size: 3rem;
    margin-bottom: 8rem;
    margin-top: -9rem;
}

    .about-title span {
        background: #e8dcc6;
        padding: 0.2rem 0.5rem;
    }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 4rem;
    margin-left: -2rem;
    margin-top: -4rem;
}

.about-item h3 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 0.2rem;
    color: #222;
    font-weight: 500;
}

.about-item p {
    font-size: 1rem;
    color: #777;
    text-align: center;
}

@media (max-width: 576px) {
    .about-sol {
        margin-left: 1rem;
        width: 92%;
    }

    .about-container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-left img {
        width: 100%;
        height: 22rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-right {
        margin-top: -2rem;
        padding: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 3rem;
        margin-left: -1rem;
    }

    .about-item {
        margin-left: 0rem;
    }

        .about-item h3 {
            font-size: 1rem;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .about-sol {
        margin-left: 2.4rem;
    }

    .about-container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-left img {
        width: 100%;
        height: 30rem;
    }

    .about-right {
        margin-top: -2rem;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-item {
        margin-left: 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
    }

    .about-right {
        padding: 2.5rem;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-sol {
        margin-left: 2.7rem;
        padding: 0rem 1rem;
    }

    .about-left img {
        width: 100%;
    }

    .about-item {
        margin-left: -1rem;
    }

        .about-item h3 {
            font-size: 1rem;
        }

        .about-item p {
            font-size: 0.9rem;
        }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .about-title {
        font-size: 1.7rem;
    }

    .about-grid {
        gap: 2rem 3rem;
    }

    .about-item h3 {
        font-size: 1.05rem;
    }

    .about-sol {
        margin-left: 3rem;
    }
}

.academic-section {
    background: linear-gradient(90deg, #5a007a, #4a006a);
    padding: 2.5rem 1.5rem;
    color: white;
    width: 90%;
    margin-left: 5rem;
    margin-top: 2rem;
}

.academic-container {
    max-width: 75rem;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.academic-left h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
}

.academic-right p {
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 40rem;
}

.academic-line {
    height: 0.3rem;
    background: #e0b84c;
    margin-top: 1.8rem;
    width: 92%;
    margin-left: 3rem;
}

@media (max-width: 576px) {
    .academic-section {
        margin-left: 1rem;
        width: 92%;
    }

    .academic-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .academic-left h2 {
        font-size: 2rem;
    }

    .academic-right p {
        font-size: 1.1rem;
    }

    .academic-line {
        width: 100%;
        margin-left: -0.1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .academic-section {
        margin-left: 2.4rem;
    }

    .academic-container {
        grid-template-columns: 1fr 1.5fr;
        gap: 2rem;
    }

    .academic-left h2 {
        font-size: 2.2rem;
    }

    .academic-right p {
        font-size: 1.1rem;
    }

    .academic-line {
        width: 100%;
        margin-left: -0.1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .academic-section {
        padding: 2rem 2rem;
        margin-left: 2.7rem;
    }

    .academic-left h2 {
        font-size: 2.6rem;
    }

    .academic-right p {
        font-size: 1.05rem;
        width: 102%;
    }

    .academic-line {
        width: 100%;
        margin-left: 0rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .academic-left h2 {
        font-size: 3rem;
        margin-left: 2rem;
    }

    .academic-right p {
        font-size: 1.1rem;
        margin-right: 1rem;
    }

    .academic-container {
        gap: 0rem;
    }

    .academic-section {
        margin-left: 3rem;
    }

    .academic-line {
        width: 100%;
        margin-left: 0rem;
    }
}

/* Section */
.programmes {
    padding: 2rem;
    width: 90%;
}

.overview-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-left: 8rem;
}

/* Card */
.card5 {
    position: relative;
    flex: 1 1 48%;
    overflow: hidden;
    border-radius: 0.5rem;
    min-height: 20rem;
}

    .card5 img {
        width: 104%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Content */
.content {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    /* right: 2rem; */
    color: #fff;
    text-align: left;
}

    .content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-decoration: underline;
        font-weight: 500;
    }

    .content p {
        font-size: 1rem;
        margin-bottom: 1rem;
        max-width: 70%;
    }

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    background: #d4a017;
    border-radius: 50%;
    font-size: 1rem;
}

@media (max-width: 576px) {
    .overview-container {
        flex-direction: column;
    }

    .card5 {
        flex: 1 1 100%;
    }

    .programmes {
        margin-left: -2.2rem;
        width: 114%;
    }

    .content {
        position: absolute;
        bottom: 1rem;
        left: 1.5rem;
        color: #fff;
        text-align: left;
    }

        .content h2 {
            font-size: 1.8rem;
        }

        .content p {
            font-size: 1rem;
            margin-bottom: 1rem;
            max-width: 97%;
        }

    .overview-container {
        gap: 1rem;
        margin-left: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .programmes {
        margin-left: 2.3rem;
    }

    .content {
        position: absolute;
        bottom: 1rem;
        left: 1.5rem;
        color: #fff;
        text-align: left;
    }

        .content h2 {
            font-size: 1.8rem;
        }

        .content p {
            font-size: 1rem;
            margin-bottom: 1rem;
            max-width: 97%;
        }

    .overview-container {
        gap: 1rem;
        margin-left: 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .programmes {
        margin-left: 2.3rem;
    }

    .content {
        position: absolute;
        bottom: 1rem;
        left: 1.5rem;
        color: #fff;
        text-align: left;
    }

        .content h2 {
            font-size: 1.8rem;
        }

        .content p {
            font-size: 1rem;
            margin-bottom: 1rem;
            max-width: 97%;
        }

    .overview-container {
        gap: 1rem;
        margin-left: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .programmes {
        padding: 2rem 1rem;
    }

    .content {
        position: absolute;
        bottom: 1rem;
        left: 1.5rem;
        color: #fff;
        text-align: left;
    }

        .content h2 {
            font-size: 2rem;
        }

        .content p {
            font-size: 1rem;
            margin-bottom: 1rem;
            max-width: 97%;
        }

    .overview-container {
        gap: 1rem;
        margin-left: 6rem;
    }
}

/* Section */
.learning {
    padding: 1rem 1.5rem;
    text-align: center;
}

/* Wrapper */
.wrapper {
    max-width: 90%;
    margin: 0 auto;
}

/* Title */
.title-card {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    margin-bottom: 1rem;
}

/* Subtitle */
.subtitle-card {
    font-size: 1.2rem;
    color: #555;
    max-width: 47rem;
    margin: 0 auto 2rem auto;
    line-height: 1.5;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* Card */
.card1 {
    background: #f3eef8;
    border-radius: 0.6rem;
    padding: 2rem 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
}

    /* Highlight first card */
    .card1:hover {
        background: #e9dcf3;
    }

/* Icon */
.icon1 {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #6a1b9a;
}

/* Card Title */
.card1 h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    color: #000000;
    font-weight: 500;
}

/* Card Text */
.card1 p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.4;
    font-weight: 200;
}

@media (max-width: 576px) {
    .grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card1 {
        padding: 1.2rem;
    }

    .icon1 {
        margin-bottom: 2rem;
    }

    .card1 h3 {
        font-size: 1.5rem;
    }

    .card1 p {
        font-size: 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .wrapper {
        width: 92%;
    }

    .grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .icon1 {
        margin-bottom: 2rem;
    }

    .title-card {
        font-size: 1.7rem;
    }

    .subtitle-card {
        font-size: 1rem;
    }

    .card1 h3 {
        font-size: 1rem;
    }

    .card1 p {
        font-size: 0.8rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .learning {
        padding: 1rem 2rem;
    }

    .title-card {
        font-size: 2rem;
    }

    .subtitle-card {
        font-size: 1.05rem;
    }

    .card1 h3 {
        font-size: 1.1rem;
    }

    .card1 p {
        font-size: 0.8rem;
    }
}

/* Section */
.framework {
    position: relative;
    background: url("../images/overview-last-img.png") no-repeat center/cover;
    padding: 3rem 1.5rem;
    color: #fff;
    height: 45vh;
}

/* Container */
.container-frame {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5rem;
    max-width: 65rem;
    margin: 0 auto;
}

/* Left Box */
.left-box {
    background: #ffffff;
    color: #222;
    padding: 2rem;
    border-radius: 0.3rem;
    flex: 1 1 22rem;
    height: 17rem;
    margin-top: 1.5rem;
    border-bottom: 1rem solid #e0b84c;
}

    .left-box h2 {
        font-size: 2rem;
        letter-spacing: 0.08rem;
        font-weight: 500;
        margin-top: 1rem;
        margin-bottom: -1rem;
    }

    .left-box hr {
        border: none;
        border-top: 0.08rem solid #ccc;
        margin-bottom: 1rem;
    }

    .left-box p {
        font-size: 1rem;
        color: #555;
        line-height: 1.5;
        margin-top: 3rem;
    }

/* Right Content */
.right-content {
    flex: 1 1 22rem;
    margin-top: 1rem;
}

.item {
    position: relative;
    padding: 0.9rem 0;
    font-size: 1rem;
}

    /* Line separator */
    .item::after {
        content: "";
        display: block;
        height: 0.08rem;
        width: 100%;
        background: #d5ac49;
        opacity: 45%;
        margin-top: 0.9rem;
    }

@media (max-width: 576px) {
    .framework {
        height: 80vh;
    }

    .container-frame {
        flex-direction: column;
        gap: 1rem;
    }

    .left-box {
        flex: 0 0 15rem;
        height: 14rem;
        margin-top: 1rem;
    }

    .left-box {
        padding: 1.5rem;
    }

        .left-box h2 {
            font-size: 1.2rem;
        }

    .item {
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .framework {
        padding: 1rem 1.5rem;
        height: 40vh;
    }

    .container-frame {
        gap: 2rem;
    }

    .left-box {
        height: 18rem;
    }

        .left-box h2 {
            font-size: 1.5rem;
        }

    .item {
        font-size: 1rem;
        text-align: center;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .framework {
        height: 60vh;
    }

    .container-frame {
        flex-wrap: nowrap;
    }

    .left-box {
        max-width: 28rem;
    }

    .right-content {
        padding-left: 2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .framework {
        padding: 4rem 3rem;
        height: 50vh;
    }

    .left-box {
        margin-top: 0;
    }

        .left-box h2 {
            font-size: 1.7rem;
        }

        .left-box p {
            font-size: 1rem;
        }

    .item {
        font-size: 1rem;
    }
}

/*------------------------------------------------------*/
/* SOL ABOUT US LEADERSHIP PAGE  */
/*------------------------------------------------------*/

/* HERO TEXT */
.hero-content2 {
    position: absolute;
    top: 40%;
    left: 6%;
    color: white;
    /*z-index: 2;*/
}

    .hero-content2 h1 {
        font-size: 4rem;
        line-height: 1.1;
        margin-left: 0;
        margin-top: 1rem;
    }

.sol-text1 {
    margin-left: 6rem;
    width: 83%;
    font-size: 1.4rem;
}

    .sol-text1 span {
        color: #4f0071;
        font-weight: 500;
    }

.container-director {
    width: 90%;
    margin: auto;
}

.director-section {
    padding: 2rem 0;
    background: #f3f3f3;
}

.director-title h2 {
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    color: #444;
    position: relative;
    display: inline-block;
    margin-left: 7rem;
}

    .director-title h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.6rem;
        width: 6rem;
        height: 0.3rem;
        background: #4f0071;
    }

.director-wrapper {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    align-items: flex-start;
}

.director-image {
    width: 35%;
}

    .director-image img {
        width: 85%;
        margin-left: 12rem;
        height: 36rem;
        display: block;
    }

.director-content {
    width: 43%;
    margin-left: 9rem;
    text-align: left;
}

.quote {
    color: #d89a00;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.director-content h4 {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    color: #777;
    margin: 1rem 0;
    border-bottom: 0.05rem solid #ddd;
    padding-bottom: 0.6rem;
    margin-top: 3.5rem;
    margin-left: -2rem;
}

.director-content .quote {
    font-size: 1.3rem;
    width: 88%;
    margin-left: -2.5rem;
    margin-top: -4rem;
    color: #deb04c;
}

.director-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    margin-left: -2rem;
}

.director-content h5 {
    color: #5a2ca0;
    margin-top: 2rem;
    font-size: 1.5rem;
    margin-left: -1rem;
}

.director-content span {
    font-size: 1rem;
    color: #777;
    margin-left: -2rem;
}

@media (max-width: 576px) {
    .sol-text1 {
        margin-left: 0rem;
        width: 100%;
        font-size: 1.1rem;
    }

    .director-wrapper {
        flex-direction: column;
    }

    .director-title h2 {
        margin-left: 5rem;
        font-size: 2rem;
    }

    .director-image {
        width: 100%;
    }

        .director-image img {
            width: 100%;
            margin-left: 0rem;
            height: 29rem;
        }

    .director-content {
        width: 85%;
        text-align: center;
        margin-left: 3rem;
    }

        .director-content h4 {
            margin-top: 0rem;
            margin-left: -3rem;
        }

        .director-content p {
            margin-left: -3rem;
        }

        .director-content .quote {
            width: 100%;
            margin-left: -1rem;
            margin-top: -2rem;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .sol-text1 {
        margin-left: 0rem;
        width: 100%;
    }

    .director-wrapper {
        flex-direction: column;
    }

    .director-title h2 {
        margin-left: 3rem;
    }

    .director-image {
        width: 42%;
    }

        .director-image img {
            width: 100%;
            margin-left: 3rem;
            height: 29rem;
        }

    .director-content {
        width: 83%;
        margin-left: 6rem;
    }

        .director-content h4 {
            margin-top: 10.5rem;
            margin-left: -3rem;
        }

        .director-content p {
            margin-left: -3rem;
        }

        .director-content .quote {
            width: 50%;
            margin-left: 19rem;
            margin-top: -23rem;
        }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-content2 h1 {
        font-size: 3rem;
    }
    .hero-content2 {
        top: 30%;
    }

    .sol-text1 {
        margin-left: 1rem;
        width: 95%;
        font-size: 1.2rem;
    }

    .director-title h2 {
        font-size: 2.5rem;
        margin-left: 0rem;
    }

    .container-director {
        width: 90%;
    }

    .director-content h4 {
        margin-top: 3rem;
    }

    .director-content .quote {
        font-size: 1.2rem;
        width: 119%;
        margin-left: -2rem;
        margin-top: -4rem;
    }

    .director-wrapper {
        margin-left: -12rem;
    }

    .director-content p {
        font-size: 1.1rem;
    }

    .director-content {
        width: 43%;
        margin-left: 11rem;
    }

    .director-image img {
        width: 90%;
        margin-left: 12rem;
        height: 34rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .sol-text1 {
        margin-left: 1rem;
        width: 95%;
        font-size: 1.2rem;
    }

    .director-title h2 {
        font-size: 2.5rem;
        margin-left: 0rem;
    }

    .container-director {
        width: 90%;
    }

    .director-content h4 {
        margin-top: 3rem;
    }

    .director-content .quote {
        font-size: 1.3rem;
        width: 113%;
        margin-left: -2rem;
        margin-top: -4rem;
    }

    .director-wrapper {
        margin-left: -12rem;
    }

    .director-content p {
        font-size: 1.1rem;
    }

    .director-content {
        width: 43%;
        margin-left: 12rem;
    }

    .director-image img {
        width: 95%;
        margin-left: 12rem;
        height: 34rem;
    }
}

.container-principal {
    width: 90%;
    margin: auto;
}

.principal-section {
    padding: 2rem 0;
}

.principal-title h2 {
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    color: #444;
    position: relative;
    display: inline-block;
    margin-left: 66rem;
}

    .principal-title h2::after {
        content: "";
        position: absolute;
        left: 6rem;
        bottom: -0.6rem;
        width: 6rem;
        height: 0.3rem;
        background: #4f0071;
    }

.principal-wrapper {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    align-items: flex-start;
}

.principal-image {
    width: 35%;
}

    .principal-image img {
        width: 85%;
        margin-left: 3rem;
        height: 36rem;
        display: block;
    }

.principal-content {
    width: 43%;
    text-align: right;
    margin-left: 9rem;
}

.quote {
    color: #d89a00;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.principal-content h4 {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    color: #777;
    margin: 1rem 0;
    border-bottom: 0.05rem solid #ddd;
    padding-bottom: 0.6rem;
    margin-top: 5rem;
    margin-left: -2rem;
}

.principal-content .quote {
    font-size: 1.3rem;
    width: 88%;
    margin-left: 9rem;
    margin-top: -4rem;
    color: #deb04c;
}

.principal-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    margin-left: -2rem;
}

.principal-content h5 {
    color: #5a2ca0;
    margin-top: 2rem;
    font-size: 1.5rem;
    margin-left: -2rem;
}

.principal-content span {
    font-size: 1rem;
    color: #777;
    margin-left: -2rem;
}

@media (max-width: 576px) {
    .principal-wrapper {
        flex-direction: column;
    }

    .principal-image {
        width: 100%;
    }

    .principal-content {
        width: 85%;
        text-align: center;
        margin-left: 2.5rem;
    }

    .principal-title h2 {
        margin-left: 5rem;
        margin-bottom: 2rem;
        font-size: 2rem;
    }

    .principal-content h4 {
        margin-top: 2rem;
        margin-left: -2rem;
    }

    .principal-image img {
        width: 100%;
        margin-left: 0rem;
        margin-top: -80.5rem;
        height: 29rem;
    }
    .prin-sir-img img {
        margin-top: -88.5rem;
    }

    .principal-content .quote {
        width: 100%;
        margin-left: -1rem;
        margin-top: 29rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .principal-wrapper {
        flex-direction: column;
    }

    .principal-image {
        width: 40%;
    }

    .principal-content {
        width: 82%;
        margin-left: 5rem;
    }

    .principal-title h2 {
        margin-left: 25rem;
        margin-bottom: 3rem;
    }

    .principal-content h4 {
        margin-top: 10rem;
        margin-left: -2rem;
    }

    .principal-image img {
        width: 114%;
        margin-left: 25rem;
        margin-top: -56rem;
        height: 29rem;
    }

    .principal-content .quote {
        width: 50%;
        margin-left: -1rem;
        margin-top: 9rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .principal-title h2 {
        font-size: 2rem;
        margin-left: 32rem;
    }

    .container-principal {
        width: 90%;
    }

    .principal-content h4 {
        margin-top: 3rem;
        margin-left: -2rem;
    }

    .principal-content .quote {
        font-size: 1.2rem;
        width: 118%;
        margin-left: -4rem;
        margin-top: -4rem;
    }

    .principal-wrapper {
        margin-left: -12rem;
    }

    .principal-content p {
        font-size: 1.1rem;
        margin-left: -2rem;
    }

    .principal-content {
        width: 53%;
        margin-left: 14rem;
    }

    .principal-image img {
        width: 112%;
        height: 34rem;
        margin-left: 0rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .principal-title h2 {
        font-size: 2rem;
        margin-left: 39rem;
    }

    .container-principal {
        width: 90%;
    }

    .principal-content h4 {
        margin-top: 3rem;
        margin-left: -2rem;
    }

    .principal-content .quote {
        font-size: 1.3rem;
        width: 118%;
        margin-left: -4rem;
        margin-top: -4rem;
    }

    .principal-wrapper {
        margin-left: -12rem;
    }

    .principal-content p {
        font-size: 1.1rem;
        margin-left: -2rem;
    }

    .principal-content {
        width: 53%;
        margin-left: 14rem;
    }

    .principal-image img {
        width: 110%;
        height: 34rem;
        margin-left: 0rem;
    }
}

.membership-section {
    background: #f5f5f5;
    padding: 1rem 2rem;
    color: #000000;
    margin-top: 2rem;
    margin-bottom: 1rem;
    height: 28vh;
}

.membership-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* LEFT */
.membership-left {
    width: 22%;
    margin-top: 7rem;
    margin-bottom: -7rem;
    margin-left: -7rem;
}

    .membership-left h3 {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.3;
        color: #4f0071;
        margin-left: 8rem;
        margin-bottom: 3rem;
    }

/* DIVIDER */
.divider {
    width: 0.1rem;
    height: 15rem;
    background: #e4e4e4;
    margin-left: 3rem;
}

/* MIDDLE */
.membership-middle {
    width: 38%;
    margin-top: -6rem;
    margin-left: 8rem;
}

    .membership-middle p {
        font-size: 1.2rem;
        width: 113%;
        line-height: 1.6;
        opacity: 0.9;
        font-weight: 300;
        color: #333333;
    }

/* RIGHT */
.membership-right {
    width: 40%;
    padding-left: 16rem;
    margin-bottom: -11rem;
}

    .membership-right a {
        font-size: 1.3rem;
        line-height: 1.6;
        opacity: 0.9;
        font-weight: 300;
        color: #000000;
    }

/*  RESPONSIVE  */
@media (max-width: 576px) {
    .membership-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .membership-section {
        height: 38vh;
    }

    .membership-left {
        width: 100%;
        margin-top: 0rem;
        margin-left: 0;
        margin-bottom: -8rem;
    }

        .membership-left h3 {
            margin-left: 3.5rem;
            margin-bottom: 3rem;
        }

    .divider {
        display: none;
    }

    .membership-middle {
        width: 100%;
        margin-top: 4rem;
        margin-left: 0.5rem;
    }

        .membership-middle p {
            font-size: 1rem;
            width: 100%;
            text-align: center;
        }

    .membership-right {
        width: 100%;
        padding-left: 3.5rem;
        margin-bottom: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .membership-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .membership-section {
        height: 22vh;
    }

    .membership-left {
        width: 100%;
        margin-top: 0rem;
        margin-left: 0;
        margin-bottom: -7rem;
    }

        .membership-left h3 {
            margin-left: 2rem;
            margin-bottom: 3rem;
        }

    .divider {
        display: none;
    }

    .membership-middle {
        width: 111%;
        margin-top: 4rem;
        margin-left: 4rem;
    }

        .membership-middle p {
            font-size: 1rem;
            width: 92%;
        }

    .membership-right {
        width: 100%;
        padding-left: 31rem;
        margin-bottom: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .membership-left h3 {
        margin-left: 6rem;
        margin-bottom: 6rem;
        font-size: 1.8rem;
    }

    .divider {
        margin-left: 6rem;
        height: 10rem;
    }

    .membership-middle {
        margin-top: -2rem;
        margin-left: 0rem;
    }

        .membership-middle p {
            width: 167%;
            font-size: 1rem;
        }

    .membership-right {
        padding-left: 5rem;
        margin-bottom: -8rem;
    }

        .membership-right a {
            font-size: 1.1rem;
        }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .membership-left h3 {
        margin-left: 6rem;
        margin-bottom: 4rem;
    }

    .divider {
        margin-left: 6rem;
        height: 12rem;
    }

    .membership-middle {
        margin-top: -2rem;
        margin-left: 0rem;
    }

        .membership-middle p {
            width: 167%;
        }

    .membership-right {
        padding-left: 5rem;
        margin-bottom: -10rem;
    }
}

/*------------------------------------------------------*/
/* SOL ABOUT US VISION & MISSION PAGE  */
/*------------------------------------------------------*/

/* HERO TEXT */
/*
.hero-content2 {
  position: absolute;
  top: 40%;
  left: 6%;
  color: white;
  /*z-index: 2;
}*/
/*
.hero-content2 h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-left: 0;
  margin-top: 1rem;
}*/
h2.text-heading2 {
    background: linear-gradient(to right, #4f0071 0%, #deb04c 15%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    margin-top: 0rem;
    text-align: left;
    margin-left: -8rem;
}

.sol-text2 {
    margin-left: 29rem;
    width: 75%;
    font-size: 1.3rem;
    text-align: left;
    margin-top: -8rem;
    color: #333333;
    font-weight: 300;
}

    .sol-text2 span {
        color: #4f0071;
        font-weight: 500;
    }

/* MAIN CONTAINER */
.container-vision {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

/* LEFT SIDE */
.left {
    flex: 2;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 30rem;
    background: url("../images/our-story-v&m.png") no-repeat center/cover;
}


    .left h2 {
        margin-bottom: 1rem;
        padding: 1rem;
        color: #ffffff;
    }

    .left p {
        margin-top: 23rem;
        font-size: 1rem;
        line-height: 1.6;
        width: 100%;
        padding: 1rem;
        color: #ffffff;
    }

/* RIGHT SIDE */
.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* CARDS */
.card-our {
    padding: 1.8rem;
    border-radius: 1rem;
    width: 100%;
    height: 100%;
}

    .card-our h3 {
        margin-bottom: 1rem;
        font-size: 1.4rem;
    }

    .card-our p {
        line-height: 1.6;
        width: 99%;
    }

/* VISION CARD */
.vision {
    background: #d8d2d8;
    color: #333;
}

/* MISSION CARD */
.mission {
    background: #5a0075;
    color: white;
}

@media (max-width: 576px) {
    .hero-content2 h1 {
        font-size: 2rem;
    }

    h2.text-heading2 {
        margin-top: 0rem;
        text-align: left;
        margin-left: 7rem;
        font-size: 2rem;
    }

    .sol-text2 {
        margin-left: 0rem;
        width: 100%;
        font-size: 1.1rem;
        text-align: center;
        margin-top: 2rem;
    }

    .container-vision {
        flex-direction: column;
    }

    .left {
        min-height: 22rem;
    }

        .left h2 {
            font-size: 2rem;
        }

        .left p {
            font-size: 0.9rem;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    h2.text-heading2 {
        margin-left: 2rem;
    }

    .sol-text2 {
        margin-left: 19rem;
        width: 58%;
        font-size: 1rem;
    }

    .left p {
        margin-top: 30rem;
    }

    .left h2 {
        font-size: 2.2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .left p {
        margin-top: 25rem;
    }

    .container-vision {
        margin-top: -3rem;
        padding: 2rem;
    }

    h2.text-heading2 {
        margin-left: 3rem;
    }

    .sol-text2 {
        margin-left: 20rem;
        width: 59%;
        font-size: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .left h2 {
        font-size: 2rem;
    }

    .left p {
        font-size: 1.05rem;
    }

    h2.text-heading2 {
        margin-left: 1rem;
    }

    .sol-text2 {
        margin-left: 16rem;
        width: 70%;
    }
}

/* Section */
.Priority {
    padding: 1rem 1.5rem;
    text-align: center;
}

/* Wrapper */
.wrapper-priority {
    max-width: 90%;
    margin: 0 auto;
}

/* Title */
.title-card {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #4f0071 0%, #deb04c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid */
.grid-priority {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

/* Card */
.card-priority {
    background: #f5f5f5;
    border-radius: 0.6rem;
    padding: 2rem 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.card-priority1 {
    background: #f5f5f5;
    opacity: 60%;
    border-radius: 0.6rem;
    padding: 2rem 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
}

/* Card Text */
.card-priority p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.4;
    font-weight: 200;
    margin-top: 6rem;
    width: 68%;
    margin-left: 2rem;
}

.card-priority1 p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.4;
    font-weight: 200;
    margin-top: 6rem;
    width: 71%;
    margin-left: 2rem;
}

@media (max-width: 576px) {
    .title-card {
        font-size: 2rem;
    }

    .grid-priority {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .grid-priority {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-priority p {
        font-size: 1.2rem;
        margin-left: 3rem;
    }

    .card-priority1 p {
        font-size: 1.2rem;
        margin-left: 3rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .wrapper-priority {
        width: 100%;
    }

    .grid-priority {
        grid-template-columns: repeat(3, 1fr);
    }

    .title-card {
        font-size: 1.7rem;
    }

    .card-priority p {
        font-size: 1.1rem;
        width: 81%;
        margin-left: 1rem;
    }

    .card-priority1 p {
        font-size: 1.1rem;
        width: 81%;
        margin-left: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .title-card {
        font-size: 2rem;
    }

    .card-priority p {
        width: 99%;
        margin-left: 0rem;
    }

    .card-priority1 p {
        width: 99%;
        margin-left: 0rem;
    }

    .wrapper-priority {
        max-width: 100%;
    }
}

/* Section */
.support {
    padding: 1rem 1.5rem;
    text-align: center;
}

/* Wrapper */
.wrapper-support {
    max-width: 90%;
    margin: 0 auto;
}

/* Title */
.title-support {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    margin-bottom: 1rem;
}

.underline-support {
    color: #deb04c;
    height: 0.3rem;
    width: 4rem;
}

/* Subtitle */
.subtitle-support {
    font-size: 1.2rem;
    color: #555;
    max-width: 55rem;
    margin: 0 auto 2rem auto;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .title-support {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .title-support {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .title-support {
        font-size: 2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .title-support {
        font-size: 2rem;
    }
}

/*------------------------------------------------------*/
/* SOL ABOUT US INFRASTRUCTURE PAGE  */
/*------------------------------------------------------*/

.study-section {
    padding: 1rem 0;
    font-family: "Roboto", sans-serif;
}

.study-container {
    width: 100%;
    margin: auto;
}

/* TOP TEXT */

.gray-line {
    width: 95%;
    height: 0.2rem;
    background-color: #ccc;
    margin-bottom: 2rem;
    margin-left: 2rem;
    margin-top: -1rem;
}

.study-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

    .study-top h2 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 3rem;
        margin-left: 3rem;
    }

    .study-top span {
        background: linear-gradient(to left, #4f0071 0%, #deb04c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .study-top p {
        max-width: 48rem;
        font-size: 1.3rem;
        margin-right: 5rem;
        line-height: 1.6;
        color: #333333;
    }

/* SLIDER */

.study-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.campus-section {
    padding: 2rem;
}

.campus-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.campus-card {
    position: relative;
    width: 17vw;
    height: 20vw;
    overflow: hidden;
    cursor: pointer;
}

.campus-card1 {
    position: relative;
    width: 17vw;
    height: 20vw;
    overflow: hidden;
    cursor: pointer;
    margin-top: 3rem;
}

.campus-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campus-card1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.campus-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent );
    color: #fff;
}

    .campus-overlay h2 {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 0.1rem;
    }

    .campus-overlay p {
        font-size: 1.2rem;
        margin-top: 0.5rem;
        line-height: 1.2;
        font-weight: 200;
        width: 92%;
    }

@media (max-width: 576px) {
    .campus-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }

    .campus-card {
        width: 80vw;
        height: 60vw;
    }

    .campus-card1 {
        width: 80vw;
        height: 60vw;
        margin-top: 0;
    }

    .study-top {
        flex-direction: column;
    }

        .study-top h2 {
            font-size: 2rem;
        }

        .study-top p {
            max-width: 20rem;
            margin-left: 3rem;
            margin-right: 0rem;
            font-size: 1.1rem;
        }

    .gray-line {
        width: 90%;
        margin-left: 1.2rem;
    }
    .campus-overlay h2 {
        font-size: 1.5rem;
    }
    .campus-overlay p {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .campus-card {
        width: 40vw;
        height: 50vw;
    }

    .campus-card1 {
        width: 40vw;
        height: 50vw;
    }

    .campus-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .study-top p {
        max-width: 32rem;
        margin-right: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .campus-card {
        width: 22vw;
        height: 30vw;
    }

    .campus-card1 {
        width: 22vw;
        height: 30vw;
    }

    .study-top p {
        margin-right: 2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .campus-card {
        width: 18vw;
        height: 26vw;
    }
    .campus-container {
        gap: 1rem;
    }
    .campus-card1 {
        width: 18vw;
        height: 26vw;
    }

    .study-top p {
        margin-right: 2rem;
    }
}

/* section*/
.digital-section {
    padding: 1rem 0;
    font-family: "Roboto", sans-serif;
}

.digital-container {
    width: 100%;
    margin: auto;
}

/* TOP TEXT */

.digital-line {
    width: 95%;
    height: 0.2rem;
    background-color: #ccc;
    margin-bottom: 2rem;
    margin-left: 2rem;
    margin-top: -1rem;
}

.digital-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

    .digital-top h2 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 3rem;
        margin-left: 3rem;
    }

    .digital-top span {
        background: linear-gradient(to left, #4f0071 0%, #deb04c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .digital-top p {
        max-width: 48rem;
        font-size: 1.3rem;
        margin-right: 5rem;
        line-height: 1.6;
        color: #333333;
    }

.services {
    padding: 2rem;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 90%;
    margin-left: 5rem;
}

.services-card {
    flex: 1 1 30%;
    background: #d8b2e5;
    color: #2e0057;
    padding: 2rem 1.5rem;
    position: relative;
    height: 15rem;
}

    .services-card.light {
        background: #f1e7f7;
    }

    .services-card p {
        margin-top: 3rem;
        font-size: 1.5rem;
        font-weight: 500;
    }

.services-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.services-link {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #000;
}

.services-arrow {
    background: #d4a441;
    color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

@media (max-width: 576px) {
    .digital-top h2 {
        font-size: 2rem;
    }
    .services {
        width: 100%;
        margin-left: 0rem;
    }

    .services-card {
        flex: 1 1 100%;
        height: 12rem;
    }
        .services-card p {
            margin-top: 1rem;
            font-size: 1.1rem;
        }

    .digital-top {
        flex-direction: column;
    }

    .digital-line {
        width: 90%;
        margin-left: 1.2rem;
    }

    .digital-top p {
        max-width: 20rem;
        margin-left: 3rem;
        margin-right: 0rem;
        font-size: 1.1rem;
    }
    .services-link {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .services-card {
        flex: 1 1 45%;
    }

    .services {
        flex-direction: column;
        width: 79%;
    }

    .digital-top p {
        max-width: 24rem;
        margin-right: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .services-card {
        flex: 1 1 30%;
    }

    .digital-top p {
        margin-right: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .services {
        max-width: 80rem;
        margin: auto;
    }

    .services-card p {
        margin-top: 2rem;
        font-size: 1.3rem;
    }

    .digital-top p {
        max-width: 43rem;
        margin-right: 2rem;
    }
}

/*section */
.Glimpses-section {
    padding: 1rem 0;
    font-family: "Roboto", sans-serif;
}

.Glimpses-container {
    width: 100%;
    margin: auto;
}

/* TOP TEXT */

.Glimpses-line {
    width: 95%;
    height: 0.2rem;
    background-color: #ccc;
    margin-bottom: 2rem;
    margin-left: 2rem;
    margin-top: -1rem;
}

.Glimpses-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

    .Glimpses-top h2 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 3rem;
        margin-left: 3rem;
    }

    .Glimpses-top span {
        background: linear-gradient(to left, #4f0071 0%, #deb04c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .Glimpses-top p {
        max-width: 48rem;
        font-size: 1.3rem;
        margin-right: 5rem;
        line-height: 1.6;
        color: #333333;
    }

.gallery {
    width: 100%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Glimpses-slider {
    width: 90%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #6a4c7c, #8b4db0);
    padding: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

/* SIDE IMAGES */
.side {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 11%;
}

    .side img {
        width: 100%;
        height: 65vh;
        object-fit: cover;
        border-radius: 0.5rem;
    }

/* MAIN IMAGE */
.Glimpses-main {
    width: 50%;
    height: 100%;
}

    .Glimpses-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0.5rem;
        margin-left: 5.2rem;
    }

.Glimpses-right {
    margin-right: 10.5rem;
}

/* DRAG BUTTON */
.drag-btn {
    position: absolute;
    right: 22%;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
    background: #fff;
    border: 0.2rem solid goldenrod;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    font-size: 0.9rem;
}

.Glimpses-slider img {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.Glimpses-slider {
    cursor: grab;
}

    .Glimpses-slider:active {
        cursor: grabbing;
    }

@media (max-width: 576px) {
    .Glimpses-top h2 {
        font-size: 2rem;
    }
    .Glimpses-slider {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }

    .side {
        flex-direction: row;
        width: 46%;
    }

    .Glimpses-left {
        margin-left: -10rem;
    }

    .Glimpses-right {
        margin-right: 10rem;
    }

    .Glimpses-main {
        width: 100%;
        height: 40vh;
    }

        .Glimpses-main img {
            margin-left: 0.2rem;
        }

    .drag-btn {
        right: 89%;
        top: 38%;
        transform: translate(50%, -50%);
    }

    .Glimpses-top {
        flex-direction: column;
    }

        .Glimpses-top p {
            max-width: 20rem;
            margin-left: 3rem;
            margin-right: 0rem;
            font-size: 1.1rem;
        }

    .Glimpses-line {
        width: 90%;
        margin-left: 1.2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .Glimpses-main {
        width: 48%;
    }

        .Glimpses-main img {
            margin-left: 2.8rem;
        }

    .Glimpses-right {
        margin-right: 5.5rem;
    }

    .Glimpses-slider {
        width: 95%;
    }

    .Glimpses-top p {
        max-width: 27rem;
        margin-right: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .Glimpses-main {
        width: 50%;
    }

    .Glimpses-top p {
        margin-right: 1rem;
    }

    .Glimpses-right {
        margin-right: 7.9rem;
    }

    .Glimpses-main img {
        margin-left: 4rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .Glimpses-slider {
        width: 80%;
    }

    .Glimpses-right {
        margin-right: 6.9rem;
    }

    .Glimpses-main img {
        margin-left: 3.3rem;
    }

    .Glimpses-top p {
        max-width: 45rem;
        margin-right: 2rem;
    }
}

/*------------------------------------------------------*/
/* SOL ACADEMICS PAGE  */
/*------------------------------------------------------*/
.hero1 {
    position: relative;
    z-index: 1;
    /*height: 85vh;*/
    height: 90vh;
    width: 100%;
    /*overflow: hidden;*/
}

/* SECTION OVER HERO */
.announcement-section {
    position: relative;
    margin-top: -14.7rem;
    z-index: 10;
}

/* WRAPPER */
.wrapper-announcement {
    width: 90%;
    margin: auto;
    display: flex;
    margin-left: 25rem;
}

/* LEFT LABEL */
.left-label {
    background: #d4a73c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    height: 28vh;
    margin-top: -1.8rem;
    margin-bottom: 0rem;
}

    .left-label span {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-size: 1rem;
        font-weight: bold;
    }

/* MAIN BOX */
.main-box {
    display: flex;
    background: #fff;
    width: 60%;
}

/* LEFT CONTENT GRID */
.left-announcement {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex: 2;
    height: 25vh;
}

/* ITEM */
.item-announcement {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border-bottom: 0.05rem solid #ddd;
    position: relative;
}

/* DATE */
.date h2 {
    font-size: 1.6rem;
}

.date p {
    font-size: 0.9rem;
    color: gray;
}

/* TEXT */
.text h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.text a {
    font-size: 0.8rem;
    color: #6a0dad;
    text-decoration: none;
}

/* NEW TAG */
.new {
    position: absolute;
    right: 1rem;
    top: 4rem;
    background: #ff3b3b;
    color: #fff;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 0.3rem;
}

/* RIGHT SIDE */
.right-announcement {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* PURPLE BOX */
.purple-box {
    background: #4e235a;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: -13.2rem;
    height: 22vh;
    opacity: 85%;
}

    .purple-box a {
        color: #fff;
        text-decoration: none;
        display: flex;
        justify-content: space-between;
        font-size: 1rem;
        padding-top: 0.3rem;
    }

/* VIDEO BOX */
.video-box {
    background: url("https://picsum.photos/800/500") center/cover no-repeat;
    height: 15rem;
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.play {
    font-size: 2.5rem;
    color: red;
    cursor: pointer;
}

.overlay p {
    color: #fff;
    font-size: 1rem;
    margin-left: 12rem;
}

@media (max-width: 576px) {
    .announcement-section {
        margin-top: -18.6rem;
    }

    .wrapper-announcement {
        margin-left: 1rem;
    }

    .left-label {
        height: 38vh;
        margin-top: -0.9rem;
    }

    .left-announcement {
        height: 35vh;
        width: 100%;
    }

    .item-announcement {
        width: 110%;
        gap: 2rem;
    }

    .text h4 {
        font-size: 1rem;
    }

    .new {
        top: 8rem;
    }

    .purple-box {
        margin-top: -10.7rem;
        padding: 1rem;
        gap: 1rem;
        height: 18vh;
        width: 230%;
    }

    .video-box {
        height: 21.6rem;
        width: 230%;
    }

    .purple-box a {
        padding-top: 0rem;
    }

    .right-announcement {
        margin-left: 1.4rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .announcement-section {
        margin-top: -21.6rem;
    }

    .wrapper-announcement {
        margin-left: 1rem;
    }

    .left-label {
        height: 38vh;
        margin-top: -0.9rem;
    }

    .left-announcement {
        height: 35vh;
        width: 100%;
    }

    .item-announcement {
        width: 110%;
        gap: 2rem;
    }

    .text h4 {
        font-size: 1rem;
    }

    .new {
        top: 8rem;
    }

    .purple-box {
        margin-top: -10.7rem;
        padding: 1rem;
        gap: 1rem;
        height: 18vh;
        width: 230%;
    }

    .video-box {
        height: 21.6rem;
        width: 230%;
    }

    .purple-box a {
        padding-top: 0rem;
    }

    .right-announcement {
        margin-left: 1.4rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .announcement-section {
        margin-top: -13.6rem;
    }

    .wrapper-announcement {
        margin-left: 16rem;
    }

    .left-label {
        height: 38vh;
        margin-top: -1.1rem;
    }

    .left-announcement {
        height: 35vh;
    }

    .text h4 {
        font-size: 1rem;
    }

    .new {
        top: 5rem;
    }

    .purple-box {
        margin-top: -12rem;
        padding: 1rem;
        gap: 1rem;
        height: 31vh;
    }

    .video-box {
        height: 13.6rem;
    }

    .purple-box a {
        padding-top: 0rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .wrapper-announcement {
        margin-left: 19rem;
    }

    .left-label {
        height: 34vh;
        margin-top: -1.25rem;
    }

    .left-announcement {
        height: 31vh;
    }

    .purple-box {
        margin-top: -12.5rem;
        padding: 1rem;
        gap: 1rem;
        height: 27vh;
    }

    .video-box {
        height: 14.5rem;
    }

    .purple-box a {
        padding-top: 0rem;
    }
}

/* Section */
.programme-course {
    padding: 2rem 5%;
    background: #f5f5f5;
}

/* Container */
.container-course {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Left Side */
.left-course {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 11rem;
}

.icon-course {
    font-size: 2rem;
}

.left-course h2 {
    font-size: 1.5rem;
    line-height: 1.4;
    color: #333;
    width: 55%;
}

.highlight-purple {
    color: #4f0071;
    font-weight: 600;
}

.highlight-orange {
    color: #d87a00;
    font-weight: 600;
}

/* Right Side */
.right-course {
    flex: 1;
}

.search-box {
    display: flex;
    width: 80%;
}

    .search-box input {
        flex: 1;
        padding: 0.8rem 1rem;
        border: none;
        outline: none;
        font-size: 0.9rem;
        background: #ffffff;
    }

    .search-box button {
        background: #4f0071;
        color: #fff;
        border: none;
        padding: 0 1.3rem;
        font-size: 0.9rem;
        cursor: pointer;
        margin-left: 1rem;
    }

@media (max-width: 576px) {
    .container-course {
        flex-direction: column;
    }

    .left-course {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-left: 3rem;
    }

        .left-course h2 {
            font-size: 1.1rem;
        }

    .search-box button {
        padding: 0.5rem 1.8rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .left-course {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-left: 0rem;
    }

        .left-course h2 {
            font-size: 1.6rem;
        }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .left-course {
        margin-left: 8rem;
    }

        .left-course h2 {
            font-size: 1.8rem;
        }

    .search-box input {
        font-size: 1rem;
    }

    .search-box button {
        font-size: 1rem;
    }

    .container-course {
        gap: 0rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .container-course {
        gap: 0rem;
    }

    .left-course h2 {
        font-size: 2rem;
    }
}

.academics {
    padding: 3rem 5%;
}

.academics-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    width: 80rem;
    margin-left: 16rem;
}

/* LEFT SIDE */
.academics-left {
    flex: 2;
}

    .academics-left h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

.academics-content {
    display: flex;
    gap: 1.5rem;
}

    .academics-content img {
        width: 10rem;
        height: auto;
        object-fit: cover;
    }

    .academics-content p {
        font-size: 1.3rem;
        line-height: 1.6;
        color: #333;
        width: 66%;
    }

/* RIGHT SIDE */
.academics-right {
    flex: 1;
}

.box {
    background: #fff;
    padding: 2rem 1.5rem;
    border: 0.1rem solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-left: -5rem;
    margin-right: 5rem;
}

    .box a {
        text-decoration: none;
        color: purple;
        font-size: 1.3rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 0rem;
        margin-left: 1.5rem;
    }

        .box a:hover {
            text-decoration: underline;
        }

@media (max-width: 576px) {
    .academics-container {
        flex-direction: column;
        margin-left: 0rem;
    }

    .academics-left h2 {
        font-size: 1.8rem;
    }

    .academics-content p {
        font-size: 1.2rem;
        width: 27%;
        text-align: center;
    }

    .box {
        margin-left: 0rem;
        margin-right: 0rem;
        padding: 1rem 0rem;
    }

        .box a {
            padding: 1rem 1rem;
            margin-left: 0rem;
        }

    .academics-content {
        flex-direction: column;
    }

        .academics-content img {
            width: 27.4%;
            height: auto;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .academics-container {
        flex-direction: column;
        margin-left: 0rem;
    }

    .academics-left h2 {
        font-size: 1.8rem;
    }

    .academics-content p {
        font-size: 1.2rem;
        width: 39%;
    }

    .box {
        margin-left: 7rem;
        margin-right: 0rem;
    }

        .box a {
            padding: 1rem 3rem;
            margin-left: 0rem;
        }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .academics-container {
        margin-left: -3rem;
    }

    .academics {
        padding: 4rem 8%;
    }

    .academics-content p {
        width: 66%;
    }

    .academics-content img {
        width: 14rem;
    }

    .academics-left h2 {
        font-size: 2rem;
    }

    .box {
        margin-left: -4rem;
        margin-right: 9rem;
    }

        .box a {
            margin-left: 0rem;
            font-size: 1.1rem;
        }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .academics-container {
        margin-left: -3rem;
    }

    .academics {
        padding: 4rem 8%;
    }

    .academics-content img {
        width: 14rem;
    }

    .academics-left h2 {
        font-size: 2rem;
    }

    .box {
        margin-left: 0rem;
        margin-right: 0rem;
    }

        .box a {
            margin-left: 0rem;
        }
}

.study-acad {
    padding: 3rem 2rem;
    background: #f6f2f8;
}

.container-acad {
    max-width: 75rem;
    margin: auto;
}

/* TOP CONTENT */
.acad-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

    .acad-content h2 {
        font-size: 1.8rem;
        font-weight: 700;
    }

.right-acad {
    max-width: 37rem;
    font-size: 1.1rem;
    color: #444;
}

/* CARDS */
.acad-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.card-acad {
    padding: 1.5rem;
    color: white;
}

    .card-acad h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        text-decoration: underline;
        font-weight: 500;
    }

    .card-acad p {
        font-size: 1rem;
        line-height: 1.4;
        font-weight: 200;
    }

    /* COLORS */
    .card-acad.dark {
        background: #5a0a7a;
    }

    .card-acad.light {
        background: #a279b4;
    }

@media (max-width: 576px) {
    .acad-content {
        flex-direction: column;
        gap: 1rem;
    }

    .acad-wrapper {
        grid-template-columns: 1fr;
    }

    .right-acad {
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .acad-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .acad-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .container-acad {
        max-width: 75%;
    }

    .card-acad {
        padding: 2rem;
    }
}

/* SECTION */
.schedule-section {
    padding: 3rem 2rem;
}

.schedule-container {
    max-width: 75rem;
    margin: auto;
}

/* TOP AREA */
.schedule-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.left-schedule {
    max-width: 42rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.right-title h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
}

/* MAIN CONTENT */
.content-schedule {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    background: white;
    border: 0.05rem solid #ddd;
}

/* IMAGE */
.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT SIDE */
.schedule-box {
    display: flex;
    flex-direction: column;
}

.item-schedule {
    padding: 1.2rem;
    border-bottom: 0.05rem solid #ddd;
}

    .item-schedule:last-child {
        border-bottom: none;
    }

    .item-schedule h3 {
        font-size: 1.3rem;
        color: #6a1b9a;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    .item-schedule p {
        font-size: 1rem;
        color: #555;
        line-height: 1.4;
    }

@media (max-width: 576px) {
    .content-schedule {
        grid-template-columns: 1fr;
    }

    .image-box {
        order: 1;
    }

    .schedule-box {
        order: 2;
    }

    .right-title {
        width: 100%;
        text-align: left;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .content-schedule {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .content-schedule {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .schedule-container {
        max-width: 75%;
    }

    .item-schedule {
        padding: 2rem;
    }
}

/* SECTION */
.exam-section {
    padding: 1rem 2rem;
}

.exam-container {
    max-width: 75rem;
    margin: auto;
}

/* TITLE */
.exam-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* MAIN LAYOUT */
.exam-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

/* LEFT SIDE */
.left-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exam-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* CARDS */
.exam-card {
    padding: 1.2rem;
    border-radius: 0.3rem;
}

    .exam-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        font-weight: 500;
        margin-top: 5rem;
        width: 103%;
    }

    .exam-card p {
        font-size: 1rem;
        line-height: 1.4;
        width: 75%;
    }

    /* COLORS */
    .exam-card.purple {
        background: #9c7bb3;
        color: white;
    }

    .exam-card.light {
        background: #eeeeee;
        color: #333;
    }

    .exam-card.full {
        width: 100%;
    }

/* IMAGE */
.exam-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.3rem;
}

@media (max-width: 576px) {
    .exam-content {
        grid-template-columns: 1fr;
    }

    .exam-cards {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .exam-content {
        grid-template-columns: 1fr;
    }

    .exam-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .exam-content {
        grid-template-columns: 1fr 1.5fr;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .exam-container {
        max-width: 75%;
    }

    .exam-card {
        padding: 1.5rem;
    }
}

/*------------------------------------------------------*/
/* SOL ABOUT PCP PAGE  */
/*------------------------------------------------------*/

.hero-pcp {
    position: relative;
    /* height: 85vh; */
    height: 70vh;
    width: 100%;
    /* overflow: hidden; */
}

.tabs-section {
    background: #f5f5f5;
    padding: 2rem 5%;
    text-align: center;
}

.tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin-bottom: 1.5rem;
}

    .tabs span {
        color: #777;
    }

/* Tab Buttons */
.tab {
    background: none;
    border: none;
    font-size: 1rem;
    color: #777;
    cursor: pointer;
    transition: 0.3s;
}

    .tab.active {
        color: #000;
        font-weight: 600;
    }

    .tab:hover {
        color: #000;
        font-weight: 600;
    }

/* Content */
.tab-content {
    display: none;
    font-size: 0.95rem;
    color: #333;
}

    .tab-content.active {
        display: block;
    }

@media (max-width: 576px) {
    .tabs {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .tab {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .tabs {
        gap: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .tab {
        font-size: 1.2rem;
    }
}

.pcp {
    background: #f5f5f5;
    padding: 4rem 6%;
}

.pcp-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* LEFT */
.pcp-left {
    flex: 1;
}

    .pcp-left img {
        width: 100%;
        height: auto;
        display: block;
    }

/* RIGHT */
.pcp-right {
    flex: 1.2;
    text-align: left;
    margin-top: -5rem;
}

    .pcp-right h5 {
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
        color: #555;
        margin-bottom: 2.5rem;
    }

    .pcp-right h2 {
        font-size: 1.8rem;
        color: #5a0f8a;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .pcp-right p {
        font-size: 1.1rem;
        color: #444;
        line-height: 1.6;
        margin-bottom: 1rem;
        width: 83%;
    }

/* FEATURES */
.pcp-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0;
    margin-top: 1.5rem;
}

.item-pcp {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.icon-pcp {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* COLORS */
.yellow {
    background: #d9a520;
}

.blue {
    background: #3b6cb7;
}

.red {
    background: #ff4d4d;
}

.green {
    background: #1abc9c;
}

.item-pcp p {
    font-size: 1.1rem;
    width: 54%;
    margin-top: 1rem;
}

@media (max-width: 576px) {
    .pcp {
        padding: 2rem 6%;
    }

    .pcp-wrapper {
        flex-direction: column;
    }

    .pcp-features {
        grid-template-columns: 1fr;
    }

    .pcp-right {
        text-align: center;
    }

        .pcp-right h2 {
            font-size: 1.5rem;
        }

        .pcp-right p {
            width: 100%;
        }

    .item-pcp {
        gap: 2rem;
        text-align: left;
    }

    .icon-pcp {
        width: 2.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pcp-wrapper {
        flex-direction: column;
    }

    .pcp-right {
        text-align: center;
    }

        .pcp-right h2 {
            font-size: 2rem;
        }

        .pcp-right p {
            width: 100%;
        }

    .pcp-features {
        gap: 1rem 6rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pcp {
        padding: 5rem 1rem;
    }

    .pcp-wrapper {
        gap: 2rem;
    }

    .pcp-right {
        margin-top: -2rem;
    }

        .pcp-right h2 {
            width: 92%;
        }

    .item-pcp p {
        width: 71%;
    }

    .pcp-right p {
        width: 100%;
        font-size: 1rem;
    }

    .pcp-right h5 {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .pcp {
        padding: 5rem 5rem;
    }

    .pcp-right {
        margin-top: -2rem;
    }

        .pcp-right h2 {
            width: 93%;
        }

    .item-pcp p {
        width: 71%;
    }

    .pcp-right p {
        width: 108%;
    }

    .pcp-right h5 {
        margin-bottom: 1.5rem;
    }
}

.notices-pcp {
    background: #f3f3f3;
    padding: 4rem 6%;
}

.pcp-container {
    max-width: 80rem;
    margin: auto;
}

/* HEADING */
.heading-pcp {
    text-align: center;
    margin-bottom: 3rem;
}

    .heading-pcp h2 {
        font-size: 1.4rem;
        color: #5a0f8a;
        line-height: 1.5;
    }

.underline-pcp {
    width: 3rem;
    height: 0.2rem;
    background: goldenrod;
    margin: 0.8rem auto 0;
}

/* LIST */
.pcp-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ITEM */
.notice-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* DATE */
.date-pcp {
    width: 5rem;
    text-align: center;
    border-right: 0.1rem solid #ccc;
    padding-right: 1rem;
}

    .date-pcp span {
        font-size: 0.7rem;
        color: #777;
    }

    .date-pcp h3 {
        font-size: 1.5rem;
    }

/* CONTENT */
.content-pcp {
    flex: 1;
    background: #eaeaea;
    padding: 1rem 1.5rem;
    position: relative;
    text-align: left;
}

    .content-pcp h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-weight: 500;
    }

    .content-pcp p {
        font-size: 1rem;
        color: #666;
    }

/* NEW TAG */
.new-pcp {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: red;
    font-size: 1rem;
}

/* ARROW */
.arrow-pcp {
    width: 2.5rem;
    height: 2.5rem;
    background: #eee6f1;
    color: #4f0071;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

    .arrow-pcp:hover {
        background: #4f0071;
        color: #ffffff;
    }

/* BUTTON */
.view-all-pcp {
    text-align: center;
    margin-top: 2rem;
}

    .view-all-pcp a {
        text-decoration: none;
        color: #000000;
        font-size: 1.1rem;
    }

    .view-all-pcp svg {
        color: #ffffff;
        background: #deb04c;
        border-radius: 50%;
    }

svg.view-arrow {
    margin-bottom: -0.7rem;
}

@media (max-width: 576px) {
    .notice-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .date-pcp {
        border: none;
        padding: 0;
    }

    .content-pcp {
        width: 100%;
    }

    .arrow-pcp {
        align-self: flex-end;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .heading-pcp h2 {
        font-size: 1.6rem;
    }

    .content-pcp h4 {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .notice-item {
        gap: 2rem;
    }
}

@media (min-width: 1200px) {
    .notices-pcp {
        padding: 5rem 8%;
    }

    .heading-pcp h2 {
        font-size: 1.8rem;
        font-weight: 500;
    }
}

.timetable-pcp {
    background: #f3f3f3;
    padding: 4rem 6%;
}

.timetable-container {
    max-width: 80rem;
    margin: auto;
}

/* HEADING */
.heading-timetable {
    text-align: center;
    margin-bottom: 3rem;
}

    .heading-timetable h2 {
        font-size: 1.4rem;
        color: #5a0f8a;
        line-height: 1.5;
    }

.underline-pcp {
    width: 3rem;
    height: 0.2rem;
    background: goldenrod;
    margin: 0.8rem auto 0;
}

@media (max-width: 576px) {
    .timetable-pcp {
        padding: 1rem 6%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .heading-timetable h2 {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
}

@media (min-width: 1200px) {
    .timetable-pcp {
        padding: 2rem 8%;
    }

    .heading-timetable h2 {
        font-size: 2rem;
        font-weight: 500;
        width: 100%;
    }
}

.sessions-schedule {
    padding: 2rem 1rem;
    text-align: center;
}

.sessions-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 500;
    display: inline-block;
}

    .sessions-subtitle::after {
        content: "";
        display: block;
        width: 8rem;
        height: 1rem;
        margin: 0.3rem auto 0;
        border-bottom: 0.2rem solid #ff8878;
        border-radius: 50%;
        transform: rotate(175deg);
        margin-left: 8rem;
    }

.sessions-container {
    max-width: 90%;
    margin: auto;
}

.tabs-sessions {
    background: #e5d9ea;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
    margin-left: 0rem;
}

.tab-sessions {
    background: #f2eef4;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
    min-width: 30%;
}

.icon-sessions {
    color: #00a99d;
    font-size: 1rem;
    margin-left: 5rem;
}

@media (max-width: 576px) {
    .tabs-sessions {
        flex-direction: column;
        width: 139%;
        margin-left: -3rem;
    }

    .tab-sessions {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .sessions-container {
        max-width: 65%;
    }

    .tabs-sessions {
        padding: 1.5rem 1rem;
        margin-left: -9.5rem;
        width: 180%;
    }

    .tab-sessions {
        padding: 1rem 1.2rem;
    }

    .icon-sessions {
        margin-left: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .sessions-container {
        max-width: 65%;
    }

    .tabs-sessions {
        padding: 1.5rem 3rem;
        margin-left: -14rem;
        width: 181%;
    }

    .tab-sessions {
        padding: 1rem 1.2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .sessions-container {
        max-width: 65%;
    }

    .tabs-sessions {
        padding: 1.5rem 6rem;
        margin-left: -15rem;
        width: 178%;
    }

    .tab-sessions {
        padding: 1rem 1.2rem;
    }
}

.timetable-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: 1rem;
}

    .timetable-top h2 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 3rem;
        text-align: left;
        margin-left: 0rem;
    }

    .timetable-top span {
        background: linear-gradient(to left, #4f0071 0%, #deb04c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .timetable-top p {
        max-width: 33rem;
        font-size: 1.3rem;
        margin-right: -1rem;
        line-height: 1.6;
        color: #333333;
        margin-top: 1rem;
        text-align: left;
    }

/* MAIN WRAPPER */
.filter-wrapper {
    width: 100%;
    max-width: 70rem;
    margin: auto;
    border: 0.08rem solid #4f0071;
    padding: 1.5rem;
    background: #f3f3f3;
}

/* FILTER ROW */
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
}

/* CUSTOM DROPDOWN */
.custom-dropdown {
    position: relative;
    flex: 1 1 12rem;
    min-width: 10rem;
}

.dropdown-btn {
    width: 100%;
    background: #dddddd;
    border: 0.06rem solid #cfcfcf;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    color: #555;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}

    .dropdown-btn:hover {
        background: #d4d4d4;
    }

    .dropdown-btn span {
        font-size: 0.9rem;
    }

/* DROPDOWN MENU */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 0.06rem solid #ccc;
    display: none;
    z-index: 999;
    margin-top: 0.2rem;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
}

    .dropdown-menu.active {
        display: block;
    }

/* SEARCH BAR */
.dropdown-search {
    width: 100%;
    padding: 0.7rem;
    border: none;
    border-bottom: 0.06rem solid #ccc;
    outline: none;
    font-size: 0.95rem;
}

/* OPTIONS CONTAINER */
.dropdown-options {
    max-height: 12rem;
    overflow-y: auto;
}

    .dropdown-options div {
        padding: 0.8rem 1rem;
        cursor: pointer;
        font-size: 0.95rem;
        color: #444;
    }

        .dropdown-options div:hover {
            background: #f1f1f1;
        }

    /* SCROLLBAR */
    .dropdown-options::-webkit-scrollbar {
        width: 0.4rem;
    }

    .dropdown-options::-webkit-scrollbar-thumb {
        background: #999;
        border-radius: 0.3rem;
    }

    .dropdown-options::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

@media (max-width: 576px) {
    .filter-wrapper {
        padding: 1rem;
    }

    .filter-row {
        flex-direction: column;
        gap: 1rem;
    }

    .custom-dropdown {
        width: 100%;
        flex: 1 1 1rem;
    }

    .timetable-top {
        flex-direction: column;
    }

        .timetable-top h2 {
            text-align: center;
            margin-left: 2rem;
        }

        .timetable-top p {
            margin-top: 1rem;
            text-align: center;
            margin-left: -2rem;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .filter-wrapper {
        max-width: 100rem;
        width: 112%;
        margin-left: -2rem;
    }

    .dropdown-btn {
        padding: 1rem;
    }

    .filter-row {
        flex-wrap: wrap;
    }

    .timetable-top h2 {
        font-size: 1.5rem;
        margin-left: 0rem;
    }

    .timetable-top p {
        max-width: 22rem;
        font-size: 1rem;
        margin-right: -1rem;
        margin-top: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .filter-wrapper {
        max-width: 100rem;
        width: 112%;
        margin-left: -3rem;
    }

    .dropdown-btn {
        padding: 1rem;
    }

    .filter-row {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .filter-wrapper {
        max-width: 100rem;
        width: 112%;
        margin-left: -3rem;
    }

    .dropdown-btn {
        padding: 1rem;
    }

    .filter-row {
        flex-wrap: nowrap;
    }
}

.timeline-wrapper {
    width: 100%;
    max-width: 100rem;
    margin: auto;
    background: #f3eef5;
    padding: 1.5rem;
    margin-top: 3rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 6rem 2rem 1fr;
    column-gap: 1rem;
    position: relative;
    margin-bottom: 5rem;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

/* DATE */
.timeline-date {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    padding-top: 0rem;
}

/* TIMELINE LINE + DOT */
.timeline-marker {
    position: relative;
    display: flex;
    justify-content: center;
}

    .timeline-marker::before {
        content: "";
        position: absolute;
        top: 0;
        width: 0.12rem;
        height: 200%;
        background: #4f0071;
    }

.timeline-item:last-child .timeline-marker::before {
    height: 3.5rem;
}

.timeline-dot {
    width: 0.7rem;
    height: 0.7rem;
    background: #4f0071;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    margin-top: 0rem;
}

/* CONTENT BOX */
.timeline-content {
    background: #ffffff;
    border: 0.06rem solid #dddddd;
    padding: 1rem 1.2rem;
    width: 100%;
    overflow-x: auto;
}

.schedule-row {
    display: grid;
    grid-template-columns: 8rem 13rem 6rem 13rem 13rem;
    gap: 5rem;
    padding: 0.6rem 0;
    font-size: 1rem;
    color: #333;
    align-items: center;
    white-space: nowrap;
}

    .schedule-row:not(:last-child) {
        border-bottom: 0.03rem solid #f0f0f0;
    }

/* SCROLLBAR */
.timeline-content::-webkit-scrollbar {
    height: 0.4rem;
}

.timeline-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 0.3rem;
}

.timeline-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

@media (max-width: 576px) {
    .timeline-wrapper {
        margin-top: 3rem;
        width: 112%;
        margin-left: -1rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        row-gap: 1rem;
        margin-bottom: 3rem;
    }

    .timeline-date {
        font-size: 1.2rem;
    }

    .timeline-marker {
        position: absolute;
        left: 0;
        top: 2.2rem;
        height: calc(100% - 2rem);
    }

        .timeline-marker::before {
            left: 0.35rem;
        }

    .timeline-content {
        margin-left: 1rem;
        padding: 0.8rem;
        width: 95%;
    }

    .schedule-row {
        min-width: 50rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .timeline-wrapper {
        margin-top: 3rem;
        width: 115%;
        margin-left: -2.5rem;
    }

    .timeline-item {
        column-gap: 0rem;
    }

    .timeline-date {
        font-size: 1.1rem;
    }

    .schedule-row {
        font-size: 1rem;
        display: grid;
        grid-template-columns: 6rem 12rem 4rem 9rem 13rem;
        gap: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .timeline-wrapper {
        margin-top: 3rem;
        width: 115%;
        margin-left: -4rem;
    }

    .timeline-item {
        column-gap: 0rem;
    }

    .timeline-date {
        font-size: 1.1rem;
    }

    .schedule-row {
        font-size: 1rem;
        display: grid;
        grid-template-columns: 6rem 12rem 4rem 9rem 13rem;
        gap: 2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .timeline-wrapper {
        margin-top: 3rem;
        width: 112%;
        margin-left: -3rem;
    }

    .timeline-date {
        font-size: 1.3rem;
    }

    .schedule-row {
        font-size: 1.1rem;
        display: grid;
        grid-template-columns: 6rem 11rem 5rem 11rem 13rem;
        gap: 2rem;
    }
}




/*------------------------------------------------------*/
/* SOL NOTICE PAGE  */
/*------------------------------------------------------*/

h2.official-heading {
    margin-top: -15rem;
    margin-left: 10rem;
    font-size: 3rem;
    color: #ffffff;
}

/* BREADCRUMB WRAPPER */
.breadcrumb-wrap {
    width: 100%;
    background: #ffffff;
    border-top: 0.15rem solid #000;
}

/* CENTER CONTAINER */
.breadcrumb-container {
    max-width: 90%;
    margin-left: 15rem;
    padding-top: 3rem;
}

/* BREADCRUMB TEXT */
.breadcrumb-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #000;
    text-decoration: underline;
}

    .breadcrumb-notice a {
        color: #000;
    }

    .breadcrumb-notice span {
        color: #000;
    }

    .breadcrumb-notice .current {
        font-weight: 600;
        cursor: pointer;
    }

@media (max-width: 576px) {
    .breadcrumb-notice {
        font-size: 1rem;
        flex-wrap: wrap;
        margin-left: -180px;
        row-gap: 0rem;
    }

    h2.official-heading {
        margin-left: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-container {
        max-width: 85%;
    }

    .breadcrumb-notice {
        margin-left: -8.5rem;
        font-size: 1.5rem;
    }

    h2.official-heading {
        margin-left: 8rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .breadcrumb-container {
        max-width: 80%;
    }

    .breadcrumb-notice {
        font-size: 1.3rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .breadcrumb-container {
        max-width: 75%;
    }
}

/* HEADER */
.page-header {
    background: linear-gradient(90deg, #4f0071, #4b0259);
    padding: 1.5rem 3%;
}

    .page-header h2 {
        color: #fff;
        font-size: 1.4rem;
    }

/* LAYOUT */
.announcement-container {
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 2rem;
    padding: 2rem 3%;
}

/* SIDEBAR */
.sidebar-announce {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 0rem;
}

.search-box-announce {
    position: relative;
}

    .search-box-announce input {
        width: 100%;
        padding: 0.6rem 2.2rem 0.6rem 0.8rem;
        border: none;
        border-bottom: 0.2rem solid #6a0572;
        background: #4f00711a;
    }

.search-icon {
    position: absolute;
    right: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
}

.calendar-box,
.filter-box {
    border: 0.08rem solid #e5e5e5;
    padding: 1rem;
}

    .calendar-box .left-img {
        margin-right: 4rem;
    }

    .calendar-box .right-img {
        margin-left: 4rem;
    }

    .calendar-box h4,
    .filter-box h4 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .calendar-box h4 {
        text-align: center;
        background: #deb04c4d;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.7rem;
    font-size: 0.75rem;
    text-align: center;
}

    .calendar-grid span:hover {
        background: #4f0071;
        color: #fff;
        border-radius: 50%;
        cursor: pointer;
        width: 90%;
        height: 100%;
    }

.back {
    color: #c7c0c0;
}

.dropdown {
    border-bottom: 0.08rem solid #d1cdcd;
}

.dropdown-header {
    width: 100%;
    background: none;
    border: none;
    padding: 0.9rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4f0071;
    border-bottom: 0.1rem solid #d1cdcd;
}

.arrow-notice {
    background: none;
    transform: rotate(0deg); /* 🔽 default down */
    transition: transform 0.3s ease;
    color: #d5ac49;
}

/* OPEN STATE */
.dropdown-header.active .arrow-notice {
    transform: rotate(180deg); /* 🔼 180deg rotate */
}

.dropdown-content {
    list-style: none;
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 0.6rem 0 1rem;
    font-size: 1rem;
    margin-bottom: 4rem;
}

    .dropdown-content li {
        cursor: pointer;
        color: #333;
    }

        .dropdown-content li:hover {
            color: #4f0071;
        }

    /* OPEN STATE */
    .dropdown-content.open {
        display: flex;
    }

/* ANNOUNCEMENTS */
.announcement-list1 {
    width: 100%;
}

.list-header {
    display: grid;
    grid-template-columns: 1fr 20rem 16rem 6rem;
    font-weight: 600;
    color: #4f0071;
    padding-bottom: 1rem;
    border-bottom: 0.3rem solid #4f0071;
    align-items: center;
}

    .list-header span {
        font-size: 1.5rem;
    }

.list-row {
    display: grid;
    grid-template-columns: 1fr 18.5rem 19rem 4rem;
    padding: 1.5rem 0;
    border-bottom: 0.15rem solid #eee;
    font-size: 0.85rem;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    align-items: center;
}

    .list-row:hover {
        background: #4f00711a;
    }

    .list-row p {
        max-width: 95%;
        font-size: 1rem;
    }

/* PAGINATION */
.pagination {
    display: flex;
    gap: 3.8rem;
    margin-top: 4rem;
    font-size: 1.3rem;
}

    .pagination span {
        padding: 0.2rem 1rem;
    }

        .pagination span:hover {
            background: #4f0071;
            color: #fff;
        }

    .pagination .next-announce {
        margin-left: auto;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }

@media (max-width: 576px) {
    .announcement-list1 {
        margin-top: 2rem;
    }

    .announcement-container {
        display: block;
    }

    .sidebar-announce {
        gap: 1rem;
        margin-top: 0rem;
    }

    .list-header,
    .list-row {
        display: grid;
        grid-template-columns: 2fr 2fr 1fr 1fr;
        gap: .6rem;
        align-items: center;
        padding-left: 0;
    }

        .list-header span {
            font-size: 1.1rem;
            line-height: 1.3;
        }

    .list-row {
        font-size: .8rem;
        padding: 1rem 0;
        gap: 1.5rem;
    }

        .list-row p,
        .list-row span {
            margin: 0;
            word-break: break-word;
        }

        .list-row svg {
            width: 18px;
            height: 18px;
        }

    .pagination {
        display: flex;
        justify-content: center;
        gap: 1.2rem;
        flex-wrap: nowrap;
        font-size: 1rem;
    }

        .pagination .next-announce {
            white-space: nowrap;
            margin-left: 0;
        }
}


@media (min-width: 768px) and (max-width: 991px) {

    .sidebar-announce {
        gap: 0.35rem;
        margin-top: 0rem;
    }

    .announcement-container {
        grid-template-columns: 37% 1fr;
        gap: 1rem;
    }

    .list-header,
    .list-row {
        display: grid;
        grid-template-columns: 1fr 8rem 7rem 5rem;
        align-items: center;
        padding-bottom: 1rem;
    }

    .sidebar {
        margin-right: -1rem;
        margin-left: -1rem;
    }

    .pagination.aos-init.aos-animate {
        gap: 1rem;
        margin-right: 5rem;
    }

    .calendar-box .left-img {
        margin-right: 1rem;
    }

    .calendar-box .right-img {
        margin-left: 1rem;
    }
    .list-header span {
        font-size: 1.3rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .announcement-container {
        grid-template-columns: 27% 1fr;
        gap: 1rem;
    }

    .calendar-box .left-img {
        margin-right: 1rem;
    }

    .calendar-box .right-img {
        margin-left: 1rem;
    }

    .list-header {
        display: grid;
        grid-template-columns: 1fr 14rem 12rem 5rem;
        padding-bottom: 1.3rem;
    }

    .list-row {
        display: grid;
        grid-template-columns: 1fr 13rem 14rem 4rem;
    }

    .sidebar-announce {
        gap: 0.6rem;
        margin-top: 0rem;
    }

    .list-header span {
        font-size: 1.3rem;
    }
    h2.official-heading {
        margin-top: -10rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .announcement-container {
        grid-template-columns: 27% 1fr;
    }

    .calendar-box .left-img {
        margin-right: 1rem;
    }

    .calendar-box .right-img {
        margin-left: 1rem;
    }

    .calendar-grid span:hover {
        border-radius: 80%;
    }

    .sidebar-announce {
        gap: 0.6rem;
        margin-top: 0rem;
    }

    .list-header span {
        font-size: 1.5rem;
    }

    .list-header {
        display: grid;
        grid-template-columns: 1fr 17rem 11rem 6rem;
        padding-bottom: 1rem;
    }

    .list-row {
        display: grid;
        grid-template-columns: 1fr 15.5rem 13rem 5rem;
        font-size: 1rem;
    }
    h2.official-heading {
        margin-top: -10rem;
    }
}



/*------------------------------------------------------*/
/* SOL EVENT PAGE  */
/*------------------------------------------------------*/

/* TOP BAR */

.events-top {
    display: flex;
    gap: 3rem;
    align-items: center;
    border-bottom: 0.15rem solid #4f0071;
    padding-bottom: 0.3rem;
    margin-bottom: 2rem;
}

    .events-top span {
        background: none;
        border: none;
        font-size: 1rem;
        margin-right: 3rem;
        cursor: pointer;
    }

        .events-top span:hover {
            border-bottom: 0.2rem solid #4f0071;
            font-weight: 600;
        }

.dropdown1 {
    margin-left: auto;
}

.dropdown-header1 {
    width: 100%;
    background: none;
    border: none;
    padding: 0.9rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 600;
    color: #4f0071;
}

    .dropdown-header1 span {
        font-size: 1rem;
    }

        .dropdown-header1 span:hover {
            border-bottom: none;
        }

.arrow1 {
    background: none;
    transform: rotate(0deg); /* 🔽 default down */
    transition: transform 0.3s ease;
}

/* OPEN STATE */
.dropdown-header1.active .arrow1 {
    transform: rotate(180deg); /* 🔼 180deg rotate */
}

.dropdown-content1 {
    list-style: none;
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 0.6rem 0 1rem;
    font-size: 1rem;
    margin-bottom: 4rem;
}

    .dropdown-content1 li {
        cursor: pointer;
        color: #333;
    }

        .dropdown-content1 li:hover {
            color: #4f0071;
        }

    /* OPEN STATE */
    .dropdown-content1.open {
        display: flex;
    }

/* EVENT LIST */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.events-card {
    display: flex;
    gap: 1.5rem;
    border: 0.15rem solid #f3f2f2;
    border-left: 0.3rem solid #dac482;
}

.events-img {
    flex: 0 0 18%;
}

    .events-img img {
        width: 100%;
        height: 100%;
        display: block;
    }

.events-content {
    margin-top: 1rem;
}

    .events-content h3 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

.descr {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: #817d7d;
}

.meta {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #817d7d;
}

    .meta strong {
        color: #4f0071;
        text-decoration: underline;
        margin-right: 0.3rem;
        font-weight: 500;
    }

.actions {
    margin-top: 2.5rem;
}

    .actions a {
        font-size: 1rem;
        margin-right: 1.2rem;
        color: #000;
        text-decoration: none;
    }

        .actions a:hover {
            border-bottom: 0.3rem solid #ceb66f;
        }

@media (max-width: 576px) {
    .events-list {
        margin-top: 2rem;
    }

    .events-content {
        margin-top: 0rem;
        padding: 1rem;
    }

    .events-top {
        gap: 1rem;
    }

    .events-card {
        flex-direction: column;
    }

    .events-img {
        flex: none;
    }

    .event-top {
        flex-direction: row;
        align-items: center;
    }

    .pagination {
        flex-direction: row; /* 🔥 horizontal */
        justify-content: center;
        gap: 1.4rem;
        flex-wrap: nowrap; /* 🔥 wrap band */
    }

        .pagination .next {
            margin-left: -1.5rem; /* right side shift */
            white-space: nowrap;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .events-content {
        margin-top: 0rem;
        padding: 1rem;
    }

    .events-img {
        flex: 0 0 22%;
    }

    .events-card {
        flex-direction: column;
        width: 27rem;
    }

    .events-img img {
        width: 26rem;
        height: 20rem;
    }

    .events-list {
        margin-right: 7rem;
    }

    .events-top {
        margin-right: 6rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .events-img {
        flex: 0 0 18%;
    }

        .events-img img {
            width: 18rem;
            height: 16rem;
        }

    .events-card {
        flex-direction: row;
        width: 47rem;
    }

    .pagination span {
        margin-right: 2rem;
    }

    .events-content h3 {
        font-size: 1.5rem;
    }

    .descr {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .events-card {
        flex-direction: row;
        width: 53.5rem;
    }

    .pagination span {
        margin-right: 2rem;
    }

    .events-img img {
        width: 18rem;
        height: 19rem;
    }

    .events-content h3 {
        font-size: 1.6rem;
        font-weight: 500;
    }

    .events-content {
        margin-top: 2rem;
    }
}

/* Large screens */
@media (min-width: 1700px) {
    /* 1700px */
    .events-card {
        width: 89.5rem;
    }

    .pagination span {
        margin-right: 2rem;
    }
}


/*------------------------------------------------------*/
/* SOL NEWS PAGE  */
/*------------------------------------------------------*/


/* HERO SECTION */
.news-hero {
    position: relative;
    min-height: 80vh;
    background: url("../images/Frame 427324776.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 3rem;
    color: #fff;
}

    /* DARK OVERLAY */
    .news-hero .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1;
    }

/* LEFT CONTENT */
.news-hero-content {
    position: relative;
    margin-left: 3rem;
    max-width: 100%;
    z-index: 1;
}

.breadcrumb-news {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #eca115;
}

.news-hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 600;
    margin: 1.2rem 0;
}

.news-hero-content p {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 200;
}

/* ANNOUNCEMENT BOX */
.announcement-box1 {
    position: absolute;
    right: 3rem;
    bottom: 6rem;
    background: #ffffff;
    color: #000;
    width: 45%;
    padding: 1.5rem;
    z-index: 1;
    margin-bottom: -5.7rem;
    margin-right: 7rem;
}

/* horizontal row */
.announce-row {
    display: flex;
    gap: 1.5rem;
}

.announcement-box1 h3 {
    font-size: 1.5rem;
    color: #c00;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

/* ANNOUNCEMENT ITEM */
.announcement-item1 {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.2rem;
}

    .announcement-item1 img {
        width: 10rem;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .announcement-item1 small {
        font-size: 0.75rem;
        color: #777;
    }

    .announcement-item1 p {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-top: 0.3rem;
        font-weight: 500;
    }

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 576px) {
    .news-hero {
        flex-direction: column;
        justify-content: flex-end;
        padding: 2rem;
    }

    .news-hero-content {
        max-width: 100%;
    }

        .news-hero-content h1 {
            font-size: 2rem;
        }

    .announcement-box {
        position: static;
        width: 100%;
        margin-top: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .news-hero-content {
        max-width: 70%;
    }

    .announcement-box {
        width: 70%;
        right: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .news-hero-content {
        max-width: 50%;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .news-hero-content h1 {
        font-size: 3.4rem;
        margin-left: -2rem;
    }

    .breadcrumb-news {
        margin-left: -2rem;
    }

    .news-hero-content p {
        margin-left: -2rem;
    }

    .announcement-box1 {
        width: 53%;
        margin-right: -2rem;
        height: 18rem;
    }
}

/*---------- Section Second ----------*/
:root {
    --purple: #4f0071;
    --light-purple: #f3e8fa;
    --gray: #666;
}


/* WRAPPER */
.announcement-wrapper {
    margin: 3rem auto;
    width: 80%;
}

/* HEADER */
.announcement-header {
    display: flex;
    align-items: center;
    background: var(--purple);
    padding: 1.2rem 2rem;
    color: #fff;
}

    .announcement-header .bar {
        width: 0.3rem;
        height: 2rem;
        background: #ffd000;
        margin-right: 1rem;
        margin-left: 10rem;
    }

    .announcement-header h2 {
        font-size: 1.5rem;
        font-weight: 600;
    }

/* TABS */
.tabs-news {
    display: flex;
    gap: 6rem;
    margin: 2rem 1.9rem;
}

    .tabs-news button {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--gray);
        cursor: pointer;
        padding-bottom: 0.3rem;
    }

        .tabs-news button:hover {
            color: #000;
            border-bottom: 0.2rem solid var(--purple);
            font-weight: 600;
        }

/* LIST */
.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* CARD */
.announcement-card {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    gap: 1.5rem;
}

    .announcement-card:hover {
        background-color: #e3dce6;
    }

.date {
    text-align: center;
    min-width: 4rem;
    border-right: 0.08rem solid var(--gray);
}

    .date small {
        font-size: 0.75rem;
        color: var(--gray);
    }

    .date strong {
        font-size: 1.6rem;
        display: block;
    }

.content-news {
    flex: 1;
}

    .content-news h4 {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
        font-weight: 500;
    }

    .content-news p {
        font-size: 0.85rem;
        color: var(--gray);
        line-height: 1.5;
    }

/* ARROW */
.arrow {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--light-purple);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
}

    .arrow:hover {
        background-color: #4f0071;
        color: white;
    }

/* VIEW MORE */
.view-more1 {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

    .view-more1 button {
        background: var(--purple);
        color: #fff;
        border: none;
        padding: 0.8rem 5.5rem;
        font-size: 1.1rem;
        cursor: pointer;
    }

@media (max-width: 576px) {
    .announcement-header .bar {
        margin-left: 1rem;
    }

    .announcement-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .arrow {
        align-self: flex-end;
    }

    .tabs-news {
        gap: 2rem;
    }

    .date {
        border-right: none;
        border-bottom: 0.08rem solid #ccc;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        padding-right: 0;
        margin-right: 0;
        width: 100%;
        text-align: left;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .content-news h4 {
        font-size: 1.05rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .announcement-wrapper {
        width: 85%;
    }

    .content-news h4 {
        font-size: 1.1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .announcement-wrapper {
        width: 80%;
    }

    .content-news p {
        font-size: 0.9rem;
    }
}

/*---------- Section Third ----------*/
:root {
    --purple: #4f0071;
    --light-bg: #f6f3f8;
    --text-gray: #555;
}
/* SECTION */
.latest-news {
    width: 100%;
    background: var(--light-bg);
}

/* TOP BAR */
.news-bar {
    width: 90%;
    margin: auto;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .bar-left .line {
        width: 0.3rem;
        height: 3rem;
        background: var(--purple);
    }

    .bar-left h2 {
        font-size: 2rem;
        font-weight: 600;
    }

    .bar-left .pipe {
        color: #999;
    }

    .bar-left small {
        font-size: 1.3rem;
        letter-spacing: 0.3em;
        color: #777;
    }

/* SEARCH */
.bar-right {
    display: flex;
}

    .bar-right input {
        border: 0.08rem solid var(--purple);
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        outline: none;
    }

    .bar-right button {
        background: var(--purple);
        border: none;
        color: #fff;
        padding: 0.6rem 1rem;
        cursor: pointer;
    }

/* BODY */
.news-body {
    width: 100%;
    margin: auto;
    display: flex;
    gap: 2rem;
    background-color: #eeecec;
}

/* IMAGE (≈60%) */
.news-img {
    flex: 1.4;
}

    .news-img img {
        width: 70%;
        height: 100%;
        object-fit: cover;
        margin-left: 14rem;
    }

/* CONTENT (≈40%) */
.news-info {
    flex: 1;
    margin-top: 3rem;
    line-height: 4rem;
    margin-left: 0rem;
}

.news-date {
    font-size: 1.3rem;
    color: #777;
}

.news-info h3 {
    font-size: 1.6rem;
    margin: 0.8rem 0 1rem;
    line-height: 1.35;
    font-weight: bold;
}

.news-info p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
}

.news-info a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--purple);
    text-decoration: underline;
}

@media (max-width: 576px) {
    .news-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .news-body {
        flex-direction: column;
    }

    .bar-right {
        width: 100%;
    }

        .bar-right input {
            flex: 1;
        }

    .news-img {
        margin-top: 2rem;
        margin-bottom: -5rem;
    }

        .news-img img {
            width: 100%;
            margin-left: 0rem;
        }

    .news-info {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .news-info h3 {
        font-size: 1.7rem;
    }

    .news-img img {
        margin-left: 0rem;
        width: 100%;
    }
}

/* 💻 LAPTOPS – 992px */ /*
@media (min-width: 62rem) {
  .news-body {
    padding: 2.5rem;
  }
}*/

@media (min-width: 1200px) and (max-width: 1500px) {

    .news-img img {
        width: 70%;
        height: 100%;
        object-fit: cover;
        margin-left: 5rem;
    }

    .news-info {
        flex: 1;
        margin-top: 1rem;
        line-height: 4rem;
        margin-left: -10rem;
    }
}

/*---------- Section Fourth ----------*/
:root {
    --purple: #4f0071;
    --text-gray: #555;
    --border-gray: #ccc;
}

/* SECTION */
.featured-news1 {
    width: 90%;
    margin: 3rem auto;
    display: flex;
    gap: 2.5rem;
}

/* LEFT VERTICAL TITLE */
.featured-title1 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    border-left: 0.2rem solid var(--border-gray);
    border-top: 0.2rem solid var(--border-gray);
    padding-right: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60%;
}

    .featured-title1 span {
        font-size: 1.9rem;
        font-weight: 700;
        color: var(--purple);
        letter-spacing: 0.08em;
    }

/* GRID */
.news-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0rem;
}

.news-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

    /* CARD */
    .news-cards img {
        width: 100%;
        height: 15rem;
        object-fit: cover;
        margin-bottom: 0.8rem;
    }

    .news-cards h4 {
        font-size: 1.5rem;
        color: #000;
        margin-bottom: 0.5rem;
        font-weight: 500;
        width: 100%;
    }

        .news-cards h4:hover {
            color: var(--purple);
            text-decoration: underline;
        }

    .news-cards p {
        font-size: 1rem;
        color: var(--text-gray);
        line-height: 1.6;
        margin-bottom: 0.6rem;
        width: 78%;
    }

    .news-cards a {
        font-size: 0.9rem;
        font-weight: 800;
        color: black;
        text-decoration: none;
    }

        .news-cards a:hover {
            color: var(--purple);
            border-bottom: 0.2rem solid #d4a143;
        }

.news-content7 {
    margin-top: 1.5rem;
}

@media (max-width: 576px) {
    .featured-news1 {
        flex-direction: column;
    }

    .featured-title1 {
        writing-mode: horizontal-tb;
        transform: none;
        border-right: none;
        border-bottom: 0.08rem solid var(--border-gray);
        padding-bottom: 0.8rem;
        padding-left: 2rem;
        padding-top: 1rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .news-cards h4 {
        font-size: 1.05rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .featured-news1 {
        width: 85%;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .featured-news1 {
        width: 90%;
    }

    .news-grid {
        gap: 2rem;
    }

    .news-cards h4 {
        font-size: 1.1rem;
    }

    .news-cards p {
        font-size: 0.9rem;
        width: 100%;
    }
}

/*---------- Section Fifth ----------*/
/* SECTION */
.browse-category {
    padding: 2rem 1.5rem;
    color: #fff;
}

/* HEADER */
.browse-header {
    display: flex;
    background: #4f0071;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2rem;
    margin-bottom: 1.5rem;
}

    .browse-header .bar {
        width: 0.3rem;
        height: 2rem;
        background: #f2c24f;
        margin-right: 1rem;
        margin-left: 10rem;
    }

    .browse-header h2 {
        font-size: 1.5rem;
        font-weight: 800;
    }

/* TABS */
.category-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1.9rem 2rem;
}

    .category-tabs button {
        background: transparent;
        border: 0.08rem solid #d7bde2;
        color: #000;
        padding: 0.45rem 2.5rem;
        font-size: 0.9rem;
        cursor: pointer;
        margin-left: 1rem;
    }

        .category-tabs button:hover {
            background: #e0b34f;
            color: white;
            border-color: #e0b34f;
        }

/* SCROLL CONTAINER */
.scroll-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    /* hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

    .scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

.scroll-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

/* CARD */
.news-card1 {
    background: #fff;
    color: #111111;
    width: 25rem;
    height: 20rem;
    padding: 1.25rem;
    border: 0.08rem solid #ccc;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

    .news-card1 h4 {
        font-size: 1.2rem;
        font-weight: 800;
        line-height: 1.4;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        cursor: pointer;
    }

    .news-card1 p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 3rem;
    }

    .news-card1 a {
        font-size: 0.9rem;
        font-weight: 700;
        color: black;
        text-decoration: none;
    }

.browse-line {
    border-bottom: 0.2rem solid #000;
    width: 8rem;
}

    .browse-line:hover {
        border-bottom: 0.2rem solid #e0b34f;
    }

.news-card1 h4:hover {
    color: #4f0071;
}

/* FOOTER */
.browse-footer {
    margin-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-all {
    font-size: 1.1rem;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    margin-left: 3rem;
}

    .view-all:hover {
        border-bottom: 0.15rem solid #10b39e;
    }

/* ARROWS */
.nav-icons {
    display: flex;
    gap: 1.6rem;
    margin-right: 7rem;
}

.nav-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 0.08rem solid #fff;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .nav-circle img {
        height: 3rem;
        display: block;
    }

    .nav-circle img {
        width: 3rem;
    }

    .nav-circle.active {
        background: #e0b34f;
        border-color: #e0b34f;
        color: #000;
    }

@media (max-width: 576px) {
    .browse-header .bar {
        margin-left: 2rem;
    }

    .news-card1 {
        width: 85%;
        height: 100%;
    }

    .browse-footer {
        flex-direction: column;
        gap: 2rem;
    }

    .view-all {
        margin-left: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .news-card1 {
        width: 23rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .news-card1 {
        width: 24rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
}

/*---------- Section Sixth ----------*/
.col-bulletin {
    padding: 2rem 1.5rem;
}

/* HEADER */
.col-header {
    display: flex;
    background: rgba(79, 0, 113, 0.05);
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2rem;
    margin-bottom: 1.5rem;
}

    .col-header .bar {
        width: 0.3rem;
        height: 2rem;
        background: #4f0071;
        margin-right: 1rem;
        margin-left: 10rem;
    }

    .col-header h2 {
        font-size: 1.5rem;
        font-weight: 800;
    }

/* SCROLL */
.col-scroll-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

    .col-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

.col-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

/* CARD */
.col-card {
    width: 22rem;
    height: 25rem;
    border: 0.08rem solid #5a5858;
    padding: 2rem;
    background: #fff;
    flex-shrink: 0;
}

.thumb {
    position: relative;
}

    .thumb img {
        width: 100%;
        display: block;
    }

.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.col-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.75rem;
}

/* FOOTER */
.col-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-more {
    font-size: 0.95rem;
    text-decoration: none;
    color: #000;
    margin-left: 3rem;
    margin-top: 1rem;
    font-weight: 500;
}

    .view-more:hover {
        border-bottom: 0.15rem solid #10b39e;
    }

/* RESPONSIVE */
@media (max-width: 576px) {
    .col-header .bar {
        margin-left: 2rem;
    }

    .col-card {
        width: 80%;
    }

    .col-footer {
        flex-direction: column;
        gap: 2rem;
    }

    .view-more {
        margin-left: 0rem;
    }

    .nav-icons {
        margin-left: 7rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .col-card {
        width: 18rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .col-card {
        width: 20rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .col-card {
        width: 25rem;
    }
}

/*---------- Section Sixth ----------*/
/* SECTION */
.press-media {
    min-height: 50vh;
    background: url("../images/media\ page.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 2rem;
}

/* CARD */
.press-card {
    background: #ffffff;
    width: 42%;
    padding: 3rem;
    position: relative;
    margin-left: 6rem;
}

/* TOP YELLOW LINE */
.top-line1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.3rem;
    background: #f2c24f;
}

/* HEADING */
.press-card h1 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

/* DIVIDER */
.press-card hr {
    border: none;
    height: 0.08rem;
    background: #bbb;
    margin-bottom: 1.5rem;
}

/* TEXT */
.press-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* LINK */
.press-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #4f0071;
    text-decoration: none;
}

    .press-link .arrow {
        width: 2.2rem;
        height: 2.2rem;
        border-radius: 50%;
        background: #4f0071;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* ---------- RESPONSIVE ---------- */

/* PHONES */
@media (max-width: 576px) {
    .press-media {
        justify-content: center;
        padding: 1.5rem;
    }

    .announce-row {
        flex-direction: column;
    }

    .press-card {
        width: 100%;
        padding: 2rem;
        margin: 2rem 1rem;
    }

        .press-card h1 {
            font-size: 1.6rem;
        }
}

/* TABLETS */
@media (min-width: 768px) and (max-width: 991px) {
    .press-card {
        width: 70%;
    }
}

/* LAPTOPS */
@media (min-width: 992px) and (max-width: 1199px) {
    .press-card {
        width: 45%;
    }
}

/* LARGE SCREENS */
@media (min-width: 1200px) and (max-width: 1500px) {
    .press-card {
        width: 53%;
    }
}


/*------------------------------------------------------*/
/* SOL STUDY CENTRE PAGE  */
/*------------------------------------------------------*/

.hero-content3 {
    position: absolute;
    top: 45%;
    left: 12%;
    color: white;
}

    .hero-content3 h1 {
        font-size: 4rem;
        line-height: 1.1;
        margin-left: 0;
        margin-top: 4rem;
    }

    .hero-content3 p {
        font-size: 1.2rem;
        opacity: 80%;
        width: 75%;
        font-weight: 300;
    }

.support-section {
    background: #f5f5f5;
    padding: 2rem 5%;
}

.support-container {
    display: flex;
    gap: 2%;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 70%;
    margin-left: 16rem;
}

.support-card {
    background: #fff;
    padding: 1.5rem;
    flex: 1 1 30%;
    position: relative;
    border-bottom: 0.2rem solid #4f0071;
    margin-top: -6rem;
}

    .support-card h3 {
        font-size: 1.4rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .support-card p {
        font-size: 1rem;
        color: #666;
        line-height: 1.4;
    }

@media (max-width: 576px) {
    .support-container {
        flex-direction: column;
        gap: 7rem;
        width: 100%;
        margin-left: 0rem;
    }

    .hero-content3 h1 {
        font-size: 3rem;
        margin-top: 1rem;
    }

    .hero-content3 p {
        width: 95%;
        text-align: center;
        margin-left: -1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .support-container {
        width: 100%;
        margin-left: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .support-container {
        max-width: 100%;
        margin: auto;
        width: 100%;
    }

    .hero-content3 {
        top: 36%;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .support-container {
        max-width: 90%;
        margin: auto;
        width: 100%;
    }
}

.support-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: 18rem;
    width: 70%;
}

    .support-top h2 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 3rem;
        text-align: left;
        margin-left: 0rem;
    }

    .support-top span {
        background: linear-gradient(to left, #4f0071 0%, #deb04c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .support-top p {
        max-width: 48rem;
        font-size: 1.3rem;
        margin-right: -1rem;
        line-height: 1.6;
        color: #333333;
        margin-top: 1rem;
        text-align: left;
    }

.locations-section {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 2rem;
}

.locations-wrapper {
    display: flex;
}

/* LEFT SIDE */
.locations-left {
    position: relative;
    width: 40%;
    min-height: 28rem;
    background: url("../images/location-img.png") no-repeat center/cover;
    display: flex;
    align-items: center;
}

.locations-content {
    position: relative;
    color: #fff;
    padding: 2rem;
    margin-left: 10rem;
}

    .locations-content h2 {
        font-size: 2.5rem;
    }

.locations-underline {
    width: 4.8rem;
    height: 0.2rem;
    background: gold;
    margin: 0.5rem 0 1rem;
}

.locations-content p {
    font-size: 1rem;
    line-height: 1.5;
    width: 57%;
}

.locations-controls {
    margin-top: 1.5rem;
}

    .locations-controls button {
        width: 3rem;
        height: 3rem;
        border: none;
        margin-right: 0.5rem;
        border-radius: 50%;
        cursor: pointer;
    }

button#leftBtn {
    opacity: 60%;
}

button#rightBtn {
    background: #000000;
    color: #ffffff;
}

/* RIGHT SIDE SCROLLER */
.locations-right {
    width: 60%;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem;
}

    .locations-right::-webkit-scrollbar {
        display: none;
    }

.locations-card {
    min-width: 30rem;
    height: 26rem;
    position: relative;
    flex-shrink: 0;
    border-radius: 0rem;
    overflow: hidden;
}

    .locations-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.locations-card-text {
    position: absolute;
    bottom: -1rem;
    color: #fff;
    padding: 2rem;
}

    .locations-card-text h3 {
        font-size: 2rem;
        font-weight: 500;
    }

    .locations-card-text p {
        font-size: 1rem;
        font-weight: 200;
        opacity: 85%;
    }

@media (max-width: 576px) {
    .locations-wrapper {
        flex-direction: column;
    }

    .locations-left,
    .locations-right {
        width: 100%;
    }

    .locations-card {
        min-width: 80%;
    }

    .support-top {
        flex-direction: column;
        margin-left: 0rem;
        width: 100%;
    }

        .support-top h2 {
            font-size: 2rem;
            text-align: center;
            margin-left: 6rem;
        }

        .support-top p {
            max-width: 23rem;
            margin-right: 0rem;
            margin-top: 1rem;
            text-align: center;
            margin-left: 0.5rem;
        }

    .locations-content {
        margin-left: 0rem;
        text-align: center;
    }

        .locations-content p {
            width: 100%;
        }

    .locations-card-text {
        bottom: 0rem;
    }

        .locations-card-text h3 {
            margin-bottom: 0.5rem;
        }

    .locations-underline {
        margin-left: 8rem;
    }

    .locations-right {
        width: 93%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .locations-card {
        min-width: 16rem;
    }

    .support-top {
        flex-direction: column;
        margin-left: 3rem;
    }

        .support-top p {
            width: 121%;
            max-width: 80rem;
        }

    .locations-content {
        margin-left: 2rem;
        margin-left: 1rem;
        text-align: center;
    }

        .locations-content p {
            width: 91%;
        }

    .locations-card-text {
        bottom: 0rem;
    }

        .locations-card-text h3 {
            margin-bottom: 0.5rem;
        }

    .locations-underline {
        margin-left: 4rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .locations-card {
        min-width: 18rem;
    }

    .support-top {
        margin-left: 4rem;
        width: 90%;
    }

        .support-top h2 {
            font-size: 2.5rem;
        }

        .support-top p {
            max-width: 42rem;
            font-size: 1.1rem;
            margin-top: 0rem;
        }

    .locations-content {
        margin-left: 2rem;
    }

        .locations-content p {
            width: 91%;
        }

    .locations-card-text {
        bottom: 0rem;
    }

        .locations-card-text h3 {
            margin-bottom: 0.5rem;
        }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .locations-card {
        min-width: 20rem;
    }

    .support-top {
        margin-left: 4rem;
        width: 90%;
    }

    .locations-content {
        margin-left: 5rem;
    }

        .locations-content p {
            width: 83%;
        }

    .locations-card-text {
        bottom: 0rem;
    }

        .locations-card-text h3 {
            margin-bottom: 0.5rem;
        }
}

/*------------------------------------------------------*/
/* SOL PROGRAMME PAGE  */
/*------------------------------------------------------*/

.hero-prog {
    position: relative;
    /* height: 85vh; */
    height: 60vh;
    width: 100%;
    /* overflow: hidden; */
}

.explore-programmes {
    position: relative;
    display: flex;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

/* Images */
.explore-image {
    width: 50%;
    height: 100%;
}

    .explore-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Center Box */
.explore-content-box {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 2rem;
    width: 26%;
    height: 40%;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-bottom: 0.5rem solid #deb04c;
}

    .explore-content-box h2 {
        color: #4f0071;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
        margin-top: 1rem;
    }

    .explore-content-box p {
        font-size: 1rem;
        line-height: 1.5;
        color: #555;
        margin-top: 2rem;
    }

@media (max-width: 576px) {
    .explore-content-box {
        top: 62%;
        left: 50%;
        padding: 1rem;
        width: 67%;
        height: 43%;
        text-align: center;
    }

        .explore-content-box h2 {
            margin-bottom: 0rem;
            font-size: 1.1rem;
            margin-top: 0rem;
        }

        .explore-content-box p {
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .explore-content-box {
        width: 60%;
    }

        .explore-content-box h2 {
            margin-bottom: 0rem;
            margin-top: 0rem;
        }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .explore-content-box {
        width: 35%;
        height: 42%;
        top: 65%;
        padding: 1rem;
    }

        .explore-content-box h2 {
            margin-bottom: 0rem;
            font-size: 1.2rem;
            margin-top: 0rem;
        }

        .explore-content-box p {
            font-size: 0.9rem;
            margin-top: 1rem;
        }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .explore-content-box {
        width: 35%;
        height: 43%;
        padding: 1rem;
    }
}

.explore-framework {
    padding: 3rem 2rem;
}

.explore-container {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6rem;
}

/* Left Side */
.framework-left {
    flex: 1;
}

    .framework-left h2 {
        font-size: 2rem;
        font-weight: 500;
        color: #222;
    }

.explore-underline {
    display: block;
    width: 14rem;
    height: 0.2rem;
    background: #d4a017;
    margin-top: 0.5rem;
}

/* Right Side */
.framework-right {
    flex: 1;
}

    .framework-right p {
        font-size: 1.2rem;
        color: #555;
        line-height: 1.5;
        width: 91%;
    }

@media (max-width: 576px) {
    .explore-container {
        flex-direction: column;
        gap: 1rem;
        max-width: 90%;
    }

    .framework-right p {
        text-align: center;
        width: 100%;
        font-size: 1rem;
    }

    .framework-left h2 {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .framework-left h2 {
        font-size: 1.7rem;
    }

    .explore-container {
        flex-direction: column;
        gap: 1rem;
        width: 90%;
    }

    .framework-right p {
        text-align: center;
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .framework-left h2 {
        font-size: 1.6rem;
    }

    .explore-container {
        max-width: 90%;
        gap: 7rem;
    }

    .framework-right p {
        font-size: 1.1rem;
        width: 112%;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .framework-left h2 {
        font-size: 2rem;
    }

    .explore-container {
        max-width: 90%;
        gap: 5rem;
    }

    .framework-right p {
        font-size: 1.1rem;
        width: 112%;
    }
}

.path-learning {
    position: relative;
    background: #dcd7de;
    padding: 4rem 2rem;
    overflow: hidden;
    height: 50vh;
}

/* Background image */
.path-bg-img {
    position: absolute;
    bottom: 0;
    left: 35%;
    width: 30%;
    opacity: 0.6;
    top: 0rem;
}

    .path-bg-img img {
        width: 60%;
        height: 100%;
    }

/* Left Text */
.path-left-text {
    position: relative;
    width: 30%;
    margin-left: 27rem;
    margin-top: 6rem;
}

    .path-left-text h2 {
        font-size: 2rem;
        color: #333;
        line-height: 1.3;
    }

/* Cards */
.path-cards {
    position: absolute;
    top: 50%;
    right: 30%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 25%;
    height: 80%;
}

/* Card Layout */
.path-card {
    display: flex;
    background: linear-gradient(135deg, #6a1b9a, #2e003e);
    color: #fff;
    overflow: hidden;
}

/* Card Text */
.path-card-text {
    flex: 1;
    padding: 1.5rem;
}

    .path-card-text h3 {
        font-size: 1.1rem;
        margin-bottom: 4rem;
        font-weight: 500;
    }

    .path-card-text a {
        font-size: 0.9rem;
        color: #f7c948;
        text-decoration: none;
    }

/* Card Image */
.path-card-img {
    width: 40%;
}

    .path-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (max-width: 576px) {
    .path-learning {
        height: 45vh;
    }

    .path-bg-img img {
        width: 100%;
        height: 100%;
    }

    .path-left-text {
        margin-left: -1rem;
        margin-top: 3rem;
    }

        .path-left-text h2 {
            font-size: 1.2rem;
        }

    .path-card-text {
        padding: 0.5rem;
    }

        .path-card-text h3 {
            font-size: 0.9rem;
            margin-bottom: 3rem;
        }

    .path-cards {
        top: 50%;
        right: 4%;
        width: 63%;
        height: 80%;
    }

    .path-bg-img {
        left: 20%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .path-left-text h2 {
        font-size: 1.5rem;
    }

    .path-left-text {
        margin-left: 6rem;
        margin-top: 7rem;
    }

    .path-bg-img img {
        width: 100%;
        height: 100%;
    }

    .path-cards {
        top: 50%;
        right: 12%;
        width: 36%;
        height: 70%;
    }

    .path-card-text h3 {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .path-left-text h2 {
        font-size: 1.6rem;
    }

    .path-left-text {
        margin-left: 12rem;
        margin-top: 2rem;
    }

    .path-cards {
        right: 28%;
    }

    .path-card-text {
        height: 100%;
        padding-top: 1rem;
    }

        .path-card-text h3 {
            font-size: 1rem;
            margin-bottom: 2rem;
            height: 50%;
        }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .path-left-text h2 {
        font-size: 2rem;
    }

    .path-left-text {
        margin-left: 13rem;
        margin-top: 3rem;
    }

    .path-cards {
        right: 28%;
    }

    .path-card-text {
        height: 100%;
    }

        .path-card-text h3 {
            font-size: 1rem;
            margin-bottom: 2rem;
            height: 50%;
        }
}

/*------------------------------------------------------*/
/* SOL DEPARTMENT PAGE  */
/*------------------------------------------------------*/
/*Department Main Page*/
.hero-dept {
    position: relative;
    z-index: 1;
    /*height: 85vh;*/
    height: 60vh;
    width: 100%;
    /*overflow: hidden;*/
}

.hero-department-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-department-content {
    position: absolute;
    top: 25%;
    left: 8%;
    color: white;
}

.hero-content-dept {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    text-align: center;
    color: white;
}

    .hero-content-dept h1 {
        font-size: clamp(2.5rem, 8vw, 5rem);
        line-height: 1.1;
        margin-left: 0;
        font-family: "Oswald", sans-serif;
        font-weight: 700;
        font-size: 4rem;
        letter-spacing: 1px;
        margin: 0;
        color: #ffffff !important;
        text-shadow: 10px 10px 9px #b78e53;
        text-align: center;
        text-transform: none;
    }

    .hero-content-dept span {
        color: #d5ac49;
    }

/* For Projectors & Ultrawide Monitors */
@media (min-width: 2000px) {
    .hero-content-dept h1 {
        font-size: 7rem;
    }
}

/* For Tablets */
@media (max-width: 768px) {
    .hero-content-dept h1 {
        text-align: center;
        font-size: 3rem;
        text-shadow: 4px 4px 6px #b78e53;
    }
}

/* For Small Mobile  */
@media (max-width: 480px) {
    .hero-content-dept {
        top: 45%;
    }

        .hero-content-dept h1 {
            letter-spacing: 0px;
            margin-top: 18rem;
        }
}
/* ONLY CARD */
.dept-grid .dept-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    /* Animated Border ONLY on card */
    .dept-grid .dept-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 0.12rem;
        background: linear-gradient( 90deg, transparent 0%, transparent 40%, #4f0071 50%, transparent 60%, transparent 100% );
        background-size: 300% 300%;
        animation: deptBorderMove 3s linear infinite;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

/* Keep content above */
.dept-grid .dept-content,
.dept-grid .dept-img-wrapper {
    position: relative;
    z-index: 2;
}

@keyframes deptBorderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.dept-section {
    padding: 3rem 1rem;
    text-align: center;
}

.dept-container {
    max-width: 75rem;
    margin: auto;
}

.dept-text {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #444;
    max-width: 50rem;
    margin: 0 auto 2.5rem auto;
    text-align: left;
}

.yellowline-dept {
    width: 4rem;
    height: 0.35rem;
    margin-top: 0.75rem;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to left, #deb04c 0%, #4f0071 100%);
}

.departments {
    padding: 3rem;
    margin-left: 5%;
    margin-right: 5%;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.dept-card {
    background: #f5f5f5;
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .dept-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

.dept-img-wrapper {
    position: relative;
    height: 50%;
    padding: 0 1rem 1rem;
}

    .dept-img-wrapper img {
        width: 100%;
        object-fit: cover;
        border-radius: 0.75rem;
    }
/* Image Wrapper */
.dept-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 0.8rem 1.8rem;
}

    /* Bottom Curved Design */
    .dept-img-wrapper::after {
        content: "";
        position: absolute;
        right: -2rem;
        bottom: -3rem;
        width: 8rem;
        height: 8rem;
        background: #fff;
        border-radius: 50%;
        z-index: 2;
    }

.dept-content {
    padding: 1.2rem;
    height: 50%;
    position: relative;
}

    .dept-content h3 {
        font-size: 1.3rem;
        margin: 0 0 8px;
        font-weight: 500;
    }

    .dept-content p {
        font-size: 1rem;
        color: #666;
        margin-bottom: 1.2rem;
    }

.dept-cardbtn {
    position: absolute;
    bottom: 19px;
    right: 27px;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    background-color: #d4a017;
    border: 1px solid purple;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

    .dept-cardbtn:hover {
        background-color: #4f0071;
        transform: scale(1.1);
    }

@media (max-width: 576px) {
    .dept-text {
        margin: 0 auto 1.5rem auto;
        text-align: center;
        font-size: 1.1rem;
    }

    .departments {
        padding: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .dept-text {
        text-align: center;
        margin: 0px auto 1.5rem;
    }

    .dept-section {
        padding: 2rem 1rem;
    }

    .departments {
        padding: 1rem;
    }
}

/*Department About Page*/
.dark-menu-page .nav-link1 {
    color: black;
}

.dark-menu-page .dropdown-toggle {
    color: black;

}
.dark-menu-page a svg {
    color: black;
}
.heading-deptabout {
    color: black;
}

.underline-deptabout {
    text-decoration: underline;
    color: #e4bf6e;
}

.hero-content-deptabout {
    position: absolute;
    top: 35%;
    left: 12%;
    z-index: 1;
    max-width: 41%;
}

    .hero-content-deptabout h1 {
        font-size: 4rem;
        font-weight: 500;
        line-height: 1.1;
        margin-left: 0;
    }

.subheading-deptabout {
    color: black;
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

a.nav-linkblackclss {
    color: black !important;
    text-decoration: none;
}

    a.nav-linkblackclss:hover {
        color: #deb04c;
        text-decoration: underline;
    }

.nav-img-homeblack {
    width: 20px;
    height: 20px;
}

.slideshow-bg {
    position: absolute;
    top: 0%;
    right: -6%;
    width: 656px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eee6f1;
    border-radius: 50%;
}

.slideshow-container {
    width: 95%;
    height: 95%;
    padding: 1rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.mySlides {
    display: none;
    border: none;
}

    .mySlides img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.dots {
    margin-top: 38rem;
    width: 16%;
    margin-left: -21rem;
    margin-right: 15rem;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    border-radius: 50%;
    display: inline-block;
    background-color: #a27ab3;
    transition: background-color 0.6s ease;
}

.slideshow-bg .dot:hover {
    background-color: #4f0071;
}

.slideshow-bg .activedot {
    background-color: #4f0071;
}

.slideshow-bg div[style*="text-align:center"] {
    position: absolute;
    bottom: -30px;
    right: 30%;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.purpledept {
    color: #4f0071;
    text-transform: capitalize;
}

.department-wrapper {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: -3rem;
}

.sidebar-depart {
    width: 18rem;
    background: #fff;
    border: 0.0625rem solid #ddd;
}

.depart-tab-btn {
    width: 100%;
    border: none;
    background: #fff;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1rem;
    color: #444;
    border-bottom: 0.0625rem solid #e7e7e7;
    transition: 0.3s;
}

    .depart-tab-btn:hover {
        background: #f7f2fb;
    }

    .depart-tab-btn.active {
        background: #e9dff2;
        color: #5b2484;
        font-weight: 700;
    }

.depart-arrow {
    font-size: 1rem;
}

.depart-content-area {
    flex: 1;
    padding: 2rem;
    min-height: 28rem;
    background: #f5f5f5;
    margin-bottom: 4rem;
}

.depart-tab-content {
    display: none;
}

    .depart-tab-content.active {
        display: block;
    }

.depart-content-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.depart-content-text {
    max-width: 50rem;
    margin: auto;
    text-align: center;
    line-height: 2;
    font-size: 1rem;
    color: #555;
}

    .depart-content-text span {
        color: #6f1fa1;
        font-weight: 500;
    }

@media (max-width: 576px) {
    .depart-content-area {
        padding: 1rem;
    }

    .department-wrapper {
        flex-direction: column;
        margin-top: 14rem;
        max-width: 26rem;
    }

    .hero-content-deptabout h1 {
        font-size: 1.6rem;
    }

    .sidebar-depart {
        width: 100%;
    }

    .hero-content-deptabout {
        top: 36rem;
        max-width: 100%;
        left: 6%;
    }

    .slideshow-bg {
        top: 1%;
        right: -19%;
        width: 534px;
        height: 500px;
    }

    .dots {
        margin-top: 33rem;
        width: 33%;
        margin-left: -21rem;
        margin-right: 10rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .depart-content-area {
        padding: 2.5rem;
    }

    .department-wrapper {
        margin-top: 3rem;
        flex-direction: column;
        width: 95%;
    }

    .hero-content-deptabout h1 {
        font-size: 2rem;
    }

    .hero-content-deptabout {
        top: 80%;
        max-width: 61%;
    }

    .sidebar-depart {
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .department-wrapper {
        gap: 1rem;
        margin-top: 6rem;
        max-width: 70rem;
    }

    .depart-content-title {
        font-size: 2rem;
    }

    .depart-content-text {
        font-size: 1rem;
    }

    .hero-content-deptabout h1 {
        font-size: 3rem;
    }

    .hero-content-deptabout {
        left: 10%;
        max-width: 30%;
    }

    .slideshow-container {
        width: 92%;
        height: 94%;
        margin-right: 1rem;
    }

    .slideshow-bg {
        width: 626px;
        height: 530px;
    }

    .dots {
        margin-top: 33rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .department-wrapper {
        max-width: 82rem;
        margin-top: 5rem;
    }

    .depart-content-area {
        padding: 3rem;
    }
}

.depart-programmes-section {
    width: 100%;
    background: #f5f5f5;
    padding: 1.5rem 1.5rem;
    margin-bottom: 1rem;
}

.depart-container {
    width: 100%;
    max-width: 75rem;
    margin: auto;
}

/* SECTION TITLE */

.depart-section-title {
    text-align: center;
    margin-bottom: 4rem;
}

    .depart-section-title h2 {
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

.depart-title-line {
    width: 19rem;
    height: 0.08rem;
    background: #d8d3de;
    margin: auto;
    position: relative;
}

    .depart-title-line::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 4rem;
        height: 0.18rem;
        background: #d4a53b;
        top: -0.05rem;
    }

/* GRID */

.depart-programmes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 5rem;
    margin-top: 4rem;
}

/* CARD */

.depart-programme-card {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
}

.depart-programme-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d8d8d8;
    line-height: 1;
}

.depart-programme-content {
    border-left: 0.08rem solid #d5d5d5;
    padding-left: 1rem;
}

    .depart-programme-content h3 {
        font-size: 1.2rem;
        font-weight: 500;
        text-decoration: underline;
        margin-bottom: 0.4rem;
    }

    .depart-programme-content p {
        font-size: 1rem;
        color: #5b5b5b;
        margin-bottom: 1.6rem;
    }

.depart-programme-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #111111;
    font-size: 1rem;
    font-weight: 500;
}

    .depart-programme-btn span {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: #d4a53b;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 1.2rem;
    }

/* POSTGRADUATE */

.depart-postgraduate {
    margin-top: 4rem;
}

@media (max-width: 576px) {
    .depart-programmes-grid {
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .depart-programmes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .depart-section-title h2 {
        font-size: 2.3rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .depart-programmes-section {
        padding: 1rem 1rem;
    }

    .depart-programme-content h3 {
        font-size: 1.3rem;
    }

    .depart-programme-content p {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .depart-container {
        max-width: 80rem;
    }

    .depart-section-title h2 {
        font-size: 2rem;
    }

    .depart-programme-number {
        font-size: 3.5rem;
    }

    .depart-programme-content h3 {
        font-size: 1.3rem;
    }

    .depart-programme-content p {
        font-size: 1.1rem;
    }
}

.pcp-main-section {
    width: 100%;
    padding: 1rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.depart-pcp-container {
    width: 100%;
    padding: 1rem 1.3rem 0.5rem;
}

/* heading */

.depart-pcp-heading {
    text-align: center;
    margin-bottom: 1.8rem;
}

    .depart-pcp-heading h2 {
        font-size: 1.5rem;
        color: #111111;
        font-weight: 500;
        margin-bottom: 0.8rem;
    }

.depart-heading-line {
    width: 100%;
    max-width: 26rem;
    height: 0.05rem;
    background: #d7d7d7;
    margin: 0 auto;
    position: relative;
}

    .depart-heading-line::after {
        content: "";
        position: absolute;
        width: 5rem;
        height: 0.12rem;
        background: #d4a037;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

/* content */

.depart-pcp-content {
    text-align: center;
    color: #3f3f3f;
    line-height: 1.9;
    font-size: 1rem;
    width: 80%;
    margin-bottom: 2.5rem;
    margin-left: 5rem;
}

    .depart-pcp-content span {
        color: #5b1689;
        font-weight: 500;
    }

/* tips section */

.tips-wrapper {
    margin-top: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    margin-left: 6rem;
}

.tip-card {
    background: #f8f8f8;
    padding: 1rem 0.7rem;
    min-height: 6.8rem;
    position: relative;
}

    .tip-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0.12rem;
        height: 100%;
        background: #6b1aa0;
    }

.tip-icon {
    font-size: 1rem;
    color: #b9b9b9;
    margin-bottom: 0.7rem;
}

.tip-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #111111;
    font-weight: 500;
    width: 92%;
}

/* bottom text */

.depart-bottom-text {
    text-align: center;
    margin-top: 2.7rem;
}

    .depart-bottom-text p {
        font-size: 0.9rem;
        color: #4b4b4b;
        line-height: 1.8;
    }

    .depart-bottom-text span {
        color: #5b1689;
        font-weight: 500;
    }

    .depart-bottom-text small {
        display: block;
        color: #7b7b7b;
        margin-top: 0.3rem;
        font-size: 0.9rem;
    }

/* button */

.depart-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.3rem;
}

.depart-pcp-btn {
    text-decoration: none;
    background: #d9a63f;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

@media (max-width: 576px) {
    .depart-pcp-content {
        width: 100%;
        margin-left: 0rem;
    }

    .tips-grid {
        display: flex;
        flex-direction: column;
        margin-left: 0rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .depart-pcp-content {
        font-size: 1rem;
        width: 100%;
        margin-left: 0rem;
    }

    .tips-grid {
        margin-left: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .depart-pcp-container {
        max-width: 48rem;
    }

    .depart-pcp-heading h2 {
        font-size: 1.35rem;
    }

    .depart-pcp-content {
        font-size: 0.9rem;
        width: 87%;
        margin-left: 3rem;
    }

    .tip-card p {
        font-size: 0.82rem;
    }

    .depart-pcp-btn {
        font-size: 0.82rem;
    }

    .tips-grid {
        margin-left: 4rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .depart-pcp-container {
        max-width: 52rem;
    }

    .depart-pcp-content {
        width: 90%;
        margin: 0 auto 2.5rem;
    }

    .tip-card {
        min-height: 8rem;
    }

    .tips-grid {
        margin-left: 4rem;
    }
}

.study-main-section {
    width: 100%;
    padding: 1rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.depart-study-container {
    width: 100%;
    padding: 1rem 1.3rem 0.5rem;
}

.depart-section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

    .depart-section-heading h2 {
        font-size: 1.5rem;
        font-weight: 500;
        color: #111111;
        margin-bottom: 0.8rem;
    }

.depart-heading-line {
    width: 100%;
    max-width: 13rem;
    height: 0.05rem;
    background: #d7d7d7;
    margin: 0 auto;
    position: relative;
}

    .depart-heading-line::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 3rem;
        height: 0.12rem;
        background: #d7a338;
    }

.depart-study-content {
    text-align: center;
    color: #555555;
    line-height: 2;
    font-size: 1rem;
    margin-bottom: 2.7rem;
    width: 80%;
    margin-left: 5rem;
}

    .depart-study-content p {
        margin-bottom: 1rem;
    }

    .depart-study-content span {
        color: #5f178e;
        font-weight: 500;
    }

.depart-access-section {
    margin-top: 1rem;
}

.depart-access-text {
    text-align: center;
    margin-top: 2rem;
}

    .depart-access-text p {
        color: #4d4d4d;
        font-size: 1rem;
        line-height: 1.8;
    }

    .depart-access-text span {
        color: #5f178e;
        font-weight: 500;
    }

.depart-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.depart-study-btn {
    text-decoration: none;
    background: #d8a640;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: 0.3s ease;
}

    .depart-study-btn:hover {
        background: #c3922e;
    }

@media (max-width: 576px) {
    .depart-study-content {
        width: 100%;
        margin-left: 0rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .depart-study-content {
        width: 100%;
        margin-left: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .depart-study-container {
        max-width: 48rem;
    }

    .depart-section-heading h2 {
        font-size: 1.35rem;
    }

    .depart-study-content {
        font-size: 0.9rem;
        line-height: 2.1;
        width: 87%;
        margin-left: 3.5rem;
    }

    .depart-access-text p {
        font-size: 0.85rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .depart-study-container {
        max-width: 52rem;
    }

    .depart-study-content {
        width: 90%;
        margin: 0 auto 2.7rem;
    }
}

.faculty-main-section {
    width: 100%;
    padding: 1rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faculty-container {
    width: 100%;
    padding: 1rem 1.3rem 0.5rem;
}

.faculty-heading {
    text-align: center;
    margin-bottom: 2rem;
}

    .faculty-heading h2 {
        font-size: 1.5rem;
        font-weight: 500;
        color: #111111;
        margin-bottom: 0.8rem;
    }

.heading-line {
    width: 100%;
    max-width: 13rem;
    height: 0.05rem;
    background: #d8d8d8;
    margin: 0 auto;
    position: relative;
}

    .heading-line::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 3rem;
        height: 0.12rem;
        background: #d7a337;
    }

.faculty-top-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.faculty-left-content h3 {
    font-size: 1.2rem;
    color: #111111;
    line-height: 1.8;
    font-weight: 500;
    width: 85%;
}

.faculty-right-content p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: #666666;
    width: 100%;
}

.faculty-right-content span {
    color: #65179a;
    font-weight: 500;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
}

.faculty-card {
    background: #fafafa;
    border: 0.06rem solid #d7c8de;
    padding: 1rem 0.8rem;
    min-height: 4.8rem;
    transition: 0.3s ease;
    box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.08);
}

    .faculty-card:hover {
        background: #4f0071;
        border: none;
        cursor: pointer;
        transform: translateY(-0.2rem);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
    }

    .faculty-card h4 {
        font-size: 1rem;
        color: #111111;
        margin-bottom: 0.35rem;
        font-weight: 500;
        line-height: 1.5;
    }

    .faculty-card p {
        font-size: 1rem;
        color: #666666;
        margin-bottom: 0.55rem;
    }

    .faculty-card span {
        font-size: 1rem;
        color: #65179a;
        font-weight: 500;
        line-height: 1.5;
        display: block;
    }

    .faculty-card h4:hover {
        color: #ffffff;
    }

    .faculty-card p:hover {
        color: #ffffff;
        opacity: 80%;
    }

    .faculty-card span:hover {
        color: #deb04c;
    }

@media (max-width: 576px) {
    .faculty-top-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .faculty-left-content h3 {
        width: 100%;
        font-size: 1.1rem;
    }

    .faculty-grid {
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .faculty-container {
        padding: 0.5rem 0.3rem 0.5rem;
    }

    .faculty-card span {
        font-size: 0.95rem;
    }

    .faculty-top-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .faculty-left-content h3 {
        width: 100%;
        text-align: center;
    }

    .faculty-right-content p {
        text-align: center;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .faculty-container {
        max-width: 48rem;
    }

    .faculty-heading h2 {
        font-size: 1.35rem;
    }

    .faculty-left-content h3 {
        font-size: 1.08rem;
        width: 94%;
    }

    .faculty-right-content p {
        font-size: 0.82rem;
        line-height: 2;
    }

    .faculty-card {
        padding: 1.2rem 0.9rem;
    }

        .faculty-card h4 {
            font-size: 0.88rem;
        }

        .faculty-card p {
            font-size: 0.72rem;
        }

        .faculty-card span {
            font-size: 0.76rem;
        }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .faculty-container {
        max-width: 52rem;
    }

    .faculty-grid {
        gap: 0.9rem;
    }

    .faculty-card {
        min-height: 8rem;
        padding: 2rem 0.8rem;
    }
}

.result-main-section {
    width: 100%;
    padding: 1rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.result-container {
    width: 100%;
    min-height: 21rem;
    padding: 1rem 1.3rem 0.5rem;
    position: relative;
}

.result-heading {
    text-align: center;
    margin-bottom: 2rem;
}

    .result-heading h2 {
        font-size: 1.5rem;
        font-weight: 500;
        color: #111111;
        margin-bottom: 0.8rem;
    }

.heading-line {
    width: 100%;
    max-width: 13rem;
    height: 0.05rem;
    background: #d7d7d7;
    margin: 0 auto;
    position: relative;
}

    .heading-line::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 3rem;
        height: 0.12rem;
        background: #d7a339;
    }

.result-content {
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
    text-align: center;
}

    .result-content p {
        font-size: 1rem;
        line-height: 2;
        color: #555555;
        width: 190%;
        margin-left: -10rem;
    }

    .result-content span {
        color: #661799;
        font-weight: 500;
    }

.result-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.result-tabs {
    display: flex;
    align-items: center;
    border: 0.06rem solid #dddddd;
    overflow: hidden;
    background: #ffffff;
    width: 60%;
    gap: 7.8rem;
}

.result-tab-btn {
    border: none;
    background: #ffffff;
    color: #111111;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.55rem 1.1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

    .result-tab-btn:hover {
        background: #d9a63f;
        color: #ffffff;
    }

@media (max-width: 576px) {
    .result-content p {
        width: 100%;
        margin-left: 0rem;
    }

    .result-tabs {
        width: 100%;
        gap: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .result-content {
        max-width: 39rem;
    }

        .result-content p {
            margin-left: 0rem;
            width: 100%;
        }

    .result-tabs {
        width: 70%;
        gap: 6rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .result-container {
        max-width: 48rem;
    }

    .result-heading h2 {
        font-size: 1.35rem;
    }

    .result-content {
        max-width: 34rem;
    }

        .result-content p {
            font-size: 0.9rem;
            line-height: 2.1;
            width: 109%;
            margin-left: -2rem;
        }

    .result-tab-btn {
        font-size: 0.82rem;
    }

    .result-tabs {
        gap: 5.9rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .result-container {
        max-width: 52rem;
    }

    .result-tabs-wrapper {
        margin-top: 3.5rem;
    }

    .result-tabs {
        gap: 7.3rem;
    }
}

/*------------------------------------------------------*/
/* SOL NEP PAGE  */
/*------------------------------------------------------*/
.hero-nep {
    position: relative;
    z-index: 1;
    height: 60vh;
    width: 100%;
}

.hero-content4 {
    position: absolute;
    top: 40%;
    left: 0%;
    color: white;
    /*z-index: 2;*/
}

    .hero-content4 h1 {
        font-size: 4rem;
        line-height: 1.1;
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
    }

.subheading-hero1 {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 75%;
    width: 37%;
    text-align: center;
    margin-left: 36rem;
}

    .subheading-hero1 span {
        color: #deb04c;
    }
/* Heading */
.nep-programme-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 2rem;
}

    .nep-programme-heading h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #2f2f2f;
        letter-spacing: 0.03rem;
    }

    .nep-programme-heading .nep-line {
        width: 0.2rem;
        height: 2rem;
        background: #39c7b7;
        margin-left: 1rem;
    }

    .nep-programme-heading p {
        font-size: 1rem;
        color: #7b7b7b;
        font-weight: 400;
        letter-spacing: 0.1rem;
    }

.nep-container {
    max-width: 85rem;
    margin: auto;
}

/* ================= TOP SECTION ================= */

.top-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* ================= TOP FILTER ================= */

.top-filter {
    flex: 1;
    background: #f5f5f5;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    border-radius: 0.3rem;
    box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.08);
}

/* Button */
.nep-search-btn {
    min-width: 13rem;
    height: 3rem;
    border: none;
    background: #f5f5f5;
    border: 0.2rem solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: 0.3s ease;
    padding: 0 1rem;
    margin-top: 0.1rem;
}

    .nep-search-btn:hover {
        background: #fafafa;
    }

.nep-arrow-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #d7a940;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.nep-search-btn span {
    font-size: 0.78rem;
    color: #2f2f2f;
    font-weight: 500;
    white-space: nowrap;
}

/* ================= CUSTOM DROPDOWN ================= */

.programme-type-dropdown {
    width: 100%;
    position: relative;
}

.programme-dropdown {
    width: 100%;
    position: relative;
}

.inner-dropdown {
    width: 100%;
    position: relative;
}

.dropdown-btn {
    width: 100%;
    height: 3.3rem;
    border: 0.06rem solid #d7d7d7;
    background: #fff;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.96rem;
}

    .dropdown-btn span {
        color: #666;
    }

.dropdown-menu {
    width: 100%;
    position: absolute;
    top: 105%;
    left: 0;
    background: #fff;
    border: 0.06rem solid #ddd;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

    .dropdown-menu.active {
        display: block;
    }

.dropdown-search {
    width: 100%;
    height: 2.8rem;
    border: none;
    border-bottom: 0.06rem solid #ececec;
    padding: 0 0.9rem;
    outline: none;
    font-size: 0.92rem;
}

.dropdown-options {
    max-height: 14rem;
    overflow-y: auto;
}

.dropdown-option {
    padding: 0.85rem 1rem;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.92rem;
}

    .dropdown-option:hover {
        background: #f3ebfa;
        color: #68008e;
    }

/* ================= MAIN SECTION ================= */

.main-section {
    display: none;
    gap: 1.5rem;
    align-items: flex-start;
}

    .main-section.active {
        display: flex;
    }

/* ================= SIDEBAR ================= */

.nep-sidebar {
    width: 18rem;
    background: #fff;
    border: 0.06rem solid #e4e4e4;
}

.tab-btn {
    width: 100%;
    border: none;
    background: #fff;
    padding: 1.3rem 1rem;
    text-align: left;
    font-size: 1rem;
    border-bottom: 0.06rem solid #ececec;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .tab-btn.active {
        background: #4f0071;
        color: #fff;
        font-weight: 600;
    }

    .tab-btn:hover {
        background: #f4ebfa;
    }

    .tab-btn.active:hover {
        background: #68008e;
    }

/* ================= RIGHT CONTENT ================= */

.content-area {
    flex: 1;
    background: #fff;
    border: 0.06rem solid #e5e5e5;
    padding: 0.8rem;
    margin-bottom: 1rem;
}

/* ================= INNER FILTER ================= */

.inner-filter {
    background: #eef5f2;
    padding: 0.8rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.programme-name {
    min-width: 14rem;
    height: 3rem;
    background: #4f0071;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0 1rem;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 85% 100%, 0 100%);
}

.inner-dropdown {
    width: 14rem;
}

.inner-search-btn {
    margin-left: auto;
    height: 3rem;
    padding: 0 1.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

    .inner-search-btn span {
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 50%;
        background: #68008e;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
    }

/* ================= PDF ================= */

.pdf-wrapper {
    width: 100%;
    height: 35rem;
    border: 0.06rem solid #d9d9d9;
    overflow: hidden;
    background: #fff;
}

.placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #777;
    font-size: 1.3rem;
    padding: 2rem;
}

.nep-tab-content {
    display: none;
    padding: 1.5rem;
}

    .nep-tab-content.active-tab-content {
        display: block;
    }

.placeholder {
    min-height: 30rem;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.3rem;
    color: #777;
}

    .placeholder.active-tab-content {
        display: flex;
    }

.nep-timeline-wrapper {
    width: 100%;
    max-width: 100rem;
    margin: auto;
    background: #f3eef5;
    padding: 1.5rem;
    margin-top: 0rem;
}

.nep-timeline-item {
    column-gap: 1rem;
    position: relative;
    margin-bottom: 0.5rem;
}

    .nep-timeline-item:last-child {
        margin-bottom: 0;
    }

/* CONTENT BOX */
.nep-timeline-content {
    background: #ffffff;
    border: 0.06rem solid #dddddd;
    padding: 1rem 1.2rem;
    width: 100%;
    overflow-x: auto;
}

.nep-schedule-row {
    display: grid;
    grid-template-columns: 4rem 9rem 2rem 9rem 6rem;
    gap: 5rem;
    padding: 0.6rem 0;
    font-size: 1rem;
    color: #333;
    align-items: center;
    white-space: nowrap;
}

    .nep-schedule-row:not(:last-child) {
        border-bottom: 0.03rem solid #f0f0f0;
    }

/* SCROLLBAR */
.nep-timeline-content::-webkit-scrollbar {
    height: 0.4rem;
}

.nep-timeline-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 0.3rem;
}

.nep-timeline-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.video-wrapper {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    /* Vertical Scroll */
    max-height: 32rem;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
}

    /* Scrollbar */
    .video-wrapper::-webkit-scrollbar {
        width: 0.5rem;
    }

    .video-wrapper::-webkit-scrollbar-thumb {
        background: #bdbdbd;
        border-radius: 1rem;
    }

    .video-wrapper::-webkit-scrollbar-track {
        background: #ececec;
    }

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.video-card {
    background: #ffffff;
    border: 0.0625rem solid #d9d9d9;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .video-thumbnail img {
        width: 100%;
        display: block;
    }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .play-btn::before {
        content: "";
        border-left: 1rem solid #ffffff;
        border-top: 0.65rem solid transparent;
        border-bottom: 0.65rem solid transparent;
        margin-left: 0.2rem;
    }

.video-content {
    padding: 0.8rem;
}

.video-title {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333333;
}

@media (max-width: 576px) {
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-nep {
        height: 50vh;
    }
    .subheading-hero1 {
        width: 77%;
        margin-left: 6rem;
    }

    .nep-container {
        max-width: 45rem;
        margin: auto;
    }

    .main-section {
        flex-direction: column;
    }

    .nep-sidebar {
        width: 100%;
    }

    .nep-tab-content {
        padding: 0.5rem;
    }

    .nep-timeline-wrapper {
        padding: 0.5rem;
        margin-top: 1rem;
    }

    .nep-schedule-row {
        display: grid;
        grid-template-columns: 4rem 9rem 2rem 9rem 2rem;
        gap: 3rem;
    }

    .video-wrapper {
        padding-right: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .subheading-hero1 {
        width: 58%;
        margin-left: 15rem;
    }

    .nep-container {
        max-width: 66rem;
    }

    .nep-sidebar {
        width: 15rem;
    }

    .nep-tab-content {
        padding: 0.5rem;
    }

    .inner-filter {
        padding: 0.8rem;
        gap: 1rem;
    }

    .programme-name {
        min-width: 11rem;
    }

    .nep-timeline-wrapper {
        padding: 1rem;
        margin-top: 1rem;
    }

    .nep-schedule-row {
        display: grid;
        grid-template-columns: 5rem 10rem 3rem 10rem 2rem;
        gap: 3rem;
    }

    .video-wrapper {
        padding-right: 0rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .subheading-hero1 {
        width: 51%;
        margin-left: 19rem;
    }

    .nep-container {
        max-width: 72rem;
    }

    .nep-tab-content {
        padding: 0.5rem;
    }

    .nep-timeline-wrapper {
        padding: 1rem;
        margin-top: 1rem;
    }

    .nep-schedule-row {
        display: grid;
        grid-template-columns: 3rem 8rem 1rem 8rem 5rem;
        gap: 4rem;
    }

    .video-wrapper {
        padding-right: 0rem;
    }
}
/*------------------------------------------------------*/
/* SOL CBCS PAGE  */
/*------------------------------------------------------*/

.filter-fields {
    gap: 1rem;
    margin-left: 3rem;
}

.tab-top-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    margin-right: 1rem;
}

    .tab-top-text h3 {
        font-size: 1.5rem;
        font-weight: 500;
        color: #222;
    }

    .tab-top-text p {
        font-size: 1rem;
        color: #666;
        position: relative;
        padding-left: 1rem;
    }

        .tab-top-text p::before {
            content: "";
            position: absolute;
            left: 0;
            top: -0.4rem;
            width: 0.2rem;
            height: 2rem;
            background: #d4a017;
        }

.cbcs-timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.cbcs-timeline-item {
    width: 100%;
    border: 0.06rem solid #e5e5e5;
    background: #fff;
    overflow: hidden;
}

.cbcs-timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.5rem;
    background: #f5eef7;
    cursor: pointer;
}

    .cbcs-timeline-header h3 {
        font-size: 1rem;
        font-weight: 500;
        color: #333;
        margin: 0;
    }

.nep-icon {
    width: 0.8rem;
    height: 0.8rem;
    border-right: 0.12rem solid #333;
    border-bottom: 0.12rem solid #333;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

/* ACTIVE ICON */

.cbcs-timeline-item.active .nep-icon {
    transform: rotate(-135deg);
}

.cbcs-timeline-content {
    display: none;
    background: #fff;
    padding: 0rem 1.5rem;
}

.cbcs-timeline-item.active .cbcs-timeline-content {
    display: block;
}

.cbcs-schedule-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1.5fr 1.2fr;
    gap: 1rem;
    padding: 0.2rem 0;
    border-bottom: 0.06rem solid #ececec;
}

    .cbcs-schedule-row:last-child {
        border-bottom: none;
    }

    .cbcs-schedule-row div {
        font-size: 0.88rem;
        color: #444;
        line-height: 1.5;
    }

.cbcs-programme-wrapper {
    width: 100%;
    max-width: 75rem;
    margin: auto;
    background: #ffffff;
    border: 0.0625rem solid #e3e3e3;
    padding: 0.5rem;
    max-height: 32rem;
    overflow-y: auto;
}

/* ACCORDION */

.cbcs-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.cbcs-accordion-item {
    background: #ece7ef;
    overflow: hidden;
}

.cbcs-accordion-header {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    padding: 0.5rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
}

.cbcs-accordion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cbcs-accordion-item.active .cbcs-accordion-icon {
    transform: rotate(180deg);
}

.cbcs-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #ffffff;
}

.cbcs-accordion-body {
    padding: 1.2rem;
    border-top: 0.0625rem solid #dddddd;
}

    .cbcs-accordion-body iframe {
        width: 100%;
        height: 32rem;
        border: none;
    }

@media (max-width: 576px) {
}

@media (min-width: 768px) and (max-width: 991px) {
    .cbcs-timeline-wrapper {
        padding: 0.5rem;
        margin-top: 1rem;
    }

    .cbcs-schedule-row {
        display: grid;
        grid-template-columns: 4rem 9rem 2rem 9rem 2rem;
        gap: 3rem;
    }

    .tab-top-text h3 {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .cbcs-timeline-wrapper {
        padding: 0rem;
        margin-top: 0rem;
    }

    .cbcs-schedule-row {
        display: grid;
        grid-template-columns: 6rem 10rem 4rem 10rem 8rem;
        gap: 1rem;
    }

    .cbcs-inner {
        flex-wrap: nowrap;
    }

    .cbcs-drop {
        width: 10rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .cbcs-timeline-wrapper {
        padding: 0rem;
        margin-top: 0rem;
    }

    .cbcs-schedule-row {
        display: grid;
        grid-template-columns: 6rem 10rem 4rem 10rem 8rem;
        gap: 2rem;
    }

    .cbcs-inner {
        flex-wrap: nowrap;
    }

    .cbcs-drop {
        width: 10rem;
    }
}

/*------------------------------------------------------*/
/* SOL ADMISSIONS PAGE  */
/*------------------------------------------------------*/

.admission-section {
    width: 100%;
    background: #ece8ec;
    overflow: hidden;
}

.admission-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 45rem;
    position: relative;
}

/* LEFT CONTENT */

.admission-left {
    width: 50%;
    padding-left: 3rem;
    z-index: 2;
}

.admission-title {
    font-size: 3.4rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 2.8rem;
}

.admission-text {
    max-width: 33rem;
}

.admission-text {
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1.9;
    color: #6f6f6f;
    padding: 0rem 0rem;
    margin-bottom: 5.35rem;
}

    .admission-text span {
        display: inline-block;
        font-size: 1.3rem;
        line-height: 1.9;
        color: #000000;
        background: #d9ece5;
        padding: 0.15rem 0.4rem;
        margin-bottom: 0.35rem;
    }

/* BUTTON AREA */

.admission-actions {
    display: flex;
    align-items: flex-end;
    margin-top: 1rem;
    margin-bottom: -14rem;
}

.contact-btn {
    background: #5b0086;
    color: #ffffff;
    text-decoration: none;
    padding: 1.5rem 4rem 1.5rem 1.3rem;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

    .contact-btn::after {
        content: "⟶";
        font-size: 1.2rem;
    }

.important-box {
    width: 6.5rem;
    height: 4.5rem;
    background: #d8ab43;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4.5rem;
}

.download-box {
    width: 6.5rem;
    height: 4.5rem;
    background: #f4f4f4;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* RIGHT IMAGE */

.admission-right {
    width: 57%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    top: 5.4rem;
    left: 18.5rem;
}

.student-img {
    width: 100%;
    max-width: 40rem;
    position: relative;
    z-index: 2;
    height: 35rem;
    display: block;
}

@media (max-width: 576px) {
    .admission-container {
        flex-direction: column;
        min-height: auto;
        padding-top: 3rem;
    }

    .admission-left {
        width: 100%;
        padding: 0 1.5rem;
        order: 2;
    }

    .admission-right {
        width: 100%;
        min-height: 26rem;
        order: 1;
        top: 4rem;
        left: 0.3rem;
    }

    .student-img {
        max-width: 25rem;
        height: 26rem;
    }

    .admission-title {
        font-size: 2.3rem;
        margin-top: 5rem;
        margin-bottom: 0.5rem;
    }

    .admission-text span {
        font-size: 0.95rem;
    }

    .admission-actions {
        margin-top: 0rem;
        flex-direction: column;
        margin-bottom: 2rem;
        gap: 1rem;
        align-items: center;
    }

    .contact-btn {
        padding: 1.2rem 2rem 1.2rem 1rem;
        font-size: 0.9rem;
    }

    .important-box,
    .download-box {
        width: 15rem;
        height: 4rem;
        font-size: 0.9rem;
        margin-bottom: 0rem;
    }
    .admission-text {
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .admission-text {
        font-size: 0.8rem;
        margin-bottom: 4.35rem;
    }

        .admission-text span {
            font-size: 0.8rem;
        }

    .admission-actions {
        margin-bottom: -10rem;
    }

    .admission-right {
        top: 5rem;
        left: 0.5rem;
    }

    .admission-title {
        font-size: 3rem;
    }

    .student-img {
        max-width: 28rem;
        height: 27rem;
    }

    .contact-btn {
        padding: 0.5rem 1rem 1.5rem 0.5rem;
    }

    .admission-container {
        min-height: 36.7rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .admission-title {
        font-size: 3.5rem;
    }

    .admission-actions {
        margin-bottom: -14.5rem;
    }

    .student-img {
        max-width: 35rem;
    }

    .admission-right {
        left: 5rem;
    }

    .admission-container {
        max-width: 75rem;
    }

    .admission-text {
        font-size: 1.2rem;
    }

        .admission-text span {
            font-size: 1.2rem;
        }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .admission-title {
        font-size: 3.5rem;
    }

    .student-img {
        max-width: 35rem;
    }

    .admission-right {
        left: 5rem;
    }

    .admission-container {
        max-width: 75rem;
    }
}

.admission-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 6rem 1rem;
}

.admission-layout {
    width: 100%;
    max-width: 100rem;
    display: flex;
    gap: 5rem;
}

.admission-sidebar {
    width: 20rem;
    flex-shrink: 0;
}

.admission-tab-btn {
    width: 100%;
    border: none;
    background: #f7f7f7;
    padding: 1rem 1.2rem;
    margin-bottom: 0.6rem;
    text-align: right;
    font-size: 0.95rem;
    color: #666666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-left: 0.2rem solid #cfcfcf;
}

.admission-tab-btn {
    padding: 1rem 1.5rem;
    background: #f3f3f3;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .admission-tab-btn:hover {
        background: #ddd;
    }

    .admission-tab-btn:hover {
        background: #d8e6e4;
        color: #000000;
        border-left: 0.22rem solid #0dc7b1;
    }

        .admission-tab-btn:hover::after {
            content: "≫";
            position: absolute;
            right: -2.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: #0dc7b1;
            font-size: 2rem;
            font-weight: 700;
        }

    .admission-tab-btn.active {
        background: #d8e6e4;
        color: #000000;
        border-left: 0.22rem solid #0dc7b1;
        font-weight: 500;
    }

        .admission-tab-btn.active::after {
            content: "≫";
            position: absolute;
            right: -2.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: #0dc7b1;
            font-size: 2rem;
            font-weight: 700;
        }

.admission-content-area {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    min-height: 30rem;
    border-radius: 0.4rem;
    padding-top: 0rem;
}

.adm-tab-content {
    display: none;
    animation: fadeEffect 0.4s ease;
}

    .adm-tab-content.active {
        display: block;
    }

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: translateY(0.6rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .admission-layout {
        flex-direction: column;
        margin-top: 26rem;
        gap: 2rem;
    }

    .admission-sidebar {
        width: 90%;
    }
    .notice-section {
        padding: 0rem 0rem;
    }
    .admission-content-area {
        width: 100%;
        padding: 0.5rem;
    }

    .admission-tab-btn {
        font-size: 0.9rem;
        padding: 0.95rem 1rem;
    }

    .adm-tab-content h2 {
        font-size: 1.5rem;
    }

    .adm-tab-content p {
        font-size: 0.95rem;
        margin-left: 0rem;
        text-align: center;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .admission-sidebar {
        width: 41rem;
        padding-left: 5rem;
    }

    .adm-tab-content h2 {
        font-size: 2.1rem;
    }

    .admission-layout {
        flex-direction: column;
    }

    .admission-wrapper {
        padding: 0rem 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .admission-sidebar {
        width: 18rem;
        margin-left: 3rem;
    }

    .adm-tab-content h2 {
        font-size: 2.5rem;
    }

    .admission-wrapper {
        padding: 17rem 1rem;
    }

    .admission-layout {
        gap: 3rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .admission-sidebar {
        width: 18rem;
        margin-left: 3rem;
    }

    .adm-tab-content h2 {
        font-size: 2.5rem;
    }

    .admission-wrapper {
        padding: 12rem 1rem;
    }

    .admission-layout {
        gap: 3rem;
    }
}

.notice-section {
    width: 100%;
    padding: 0rem 1rem;
}

.notice-container {
    width: 100%;
    max-width: 78rem;
    margin: auto;
}

.notice-header {
    background: #333333;
    color: #ffffff;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notice-header-line {
    width: 0.18rem;
    height: 2rem;
    background: #d7a63e;
}

.notice-header h2 {
    font-size: 1.5rem;
    font-weight: 500;
}

.notice-description {
    margin-top: 1.2rem;
    font-size: 1rem;
    line-height: 1.9;
    color: #555555;
    max-width: 57rem;
    margin-left: 7rem;
}

.notice-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    margin-bottom: 1rem;
    gap: 1rem;
}

.notice-links-title {
    color: #6c2ea1;
    font-size: 1rem;
    font-weight: 500;
}

.notice-filter {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

    .notice-filter label {
        font-size: 0.95rem;
        color: #6c2ea1;
        font-weight: 500;
    }

.notice-content {
    display: flex;
    gap: 2rem;
}

.notice-list {
    flex: 1;
}

.adm-notice-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 0.05rem solid #e3e3e3;
}

.notice-arrow {
    color: #b592c8;
    font-size: 0.9rem;
    margin-top: 0.15rem;
}

.adm-notice-item a {
    text-decoration: none;
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.7;
    transition: 0.3s ease;
}

    .adm-notice-item a:hover {
        color: #6c2ea1;
    }

.notice-category-box {
    width: 14rem;
    padding: 1rem;
    height: fit-content;
    border: 0.1rem solid #f4f4f4;
    box-shadow: 4px 4px #f4f4f4;
}

.notice-category-list {
    list-style: none;
}

    .notice-category-list li {
        margin-bottom: 0.8rem;
    }

    .notice-category-list label {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.85rem;
        color: #666666;
        cursor: pointer;
    }

    .notice-category-list input {
        width: 0.9rem;
        height: 0.9rem;
        cursor: pointer;
    }

        .notice-category-list input[type="checkbox"] {
            accent-color: #4f0071;
        }

@media (max-width: 576px) {
    .notice-header {
        padding: 1rem;
    }

        .notice-header h2 {
            font-size: 1.1rem;
            line-height: 1.5;
        }

    .notice-description {
        font-size: 0.92rem;
        line-height: 1.8;
    }

    .notice-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .notice-filter {
        width: 100%;
    }

        .notice-filter select {
            width: 100%;
        }

    .notice-content {
        flex-direction: column;
    }

    .notice-category-box {
        width: 100%;
    }

    .adm-notice-item a {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .notice-header h2 {
        font-size: 1.6rem;
    }

    .notice-description {
        font-size: 1rem;
        max-width: 38rem;
        margin-left: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .notice-header h2 {
        font-size: 1.5rem;
    }

    .notice-description {
        font-size: 1rem;
        margin-left: 0rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .notice-header h2 {
        font-size: 2rem;
    }

    .notice-description {
        font-size: 1.05rem;
        margin-left: 1.5rem;
    }
}

.adm-wrapper {
    width: 100%;
    padding: 4rem 2rem;
    background-image: url("/images/adm-support.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.admission-box {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    padding: 2.5rem 3rem;
    position: relative;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.12);
}

/* LEFT */

.adm-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 14rem;
}

.left-line {
    width: 0.18rem;
    height: 3.2rem;
    background: #d1a43b;
}

.adm-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #111111;
}

/* CENTER */

.admission-center {
    flex: 1;
    text-align: center;
}

    .admission-center p {
        font-size: 0.92rem;
        line-height: 1.8;
        color: #222222;
        width: 53%;
    }

/* RIGHT */

.adm-right {
    background: linear-gradient(to bottom, #f0ddb0, #caa95d);
    padding: 2rem 1.8rem;
    min-width: 14rem;
    position: absolute;
    right: 3.2rem;
    top: -1rem;
    height: 12rem;
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.18);
}

    .adm-right p {
        font-size: 1rem;
        font-weight: 500;
        line-height: 2.2;
        color: rgb(17, 17, 17);
        margin-top: 0.3rem;
    }

@media (max-width: 576px) {
    .adm-wrapper {
        padding: 2rem 1rem;
    }

    .admission-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 2rem 1.5rem 6rem;
    }

    .adm-left {
        min-width: 100%;
        text-align: center;
    }

    .adm-title {
        font-size: 1.3rem;
    }

    .admission-center {
        text-align: center;
    }

        .admission-center p {
            font-size: 0.88rem;
            width: 100%;
        }

    .adm-right {
        position: absolute;
        right: 3rem;
        bottom: -1rem;
        top: auto;
        min-width: 16rem;
        padding: 1.3rem;
        height: 7rem;
    }

        .adm-right p {
            font-size: 1rem;
            line-height: 1.9;
            margin-top: -0.3rem;
            margin-bottom: -0.3rem;
            text-align: center;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .admission-box {
        padding: 0.5rem 2.5rem;
        gap: 3rem;
    }

    .adm-title {
        font-size: 1.45rem;
    }

    .admission-center p {
        font-size: 0.9rem;
        margin-left: -7rem;
        width: 70%;
    }

    .adm-right {
        padding: 1rem 1rem;
        min-width: 13rem;
        right: 1rem;
        top: -1rem;
        height: 11rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .admission-box {
        padding: 1.6rem 3rem;
    }

    .adm-title {
        font-size: 1.55rem;
    }

    .admission-center p {
        font-size: 0.95rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .admission-box {
        max-width: 86rem;
    }

    .adm-title {
        font-size: 1.6rem;
    }

    .admission-center p {
        font-size: 1rem;
    }
}

.ug-admission-section {
    width: 100%;
    max-width: 78rem;
    margin: auto;
}

/* HEADER */

.ug-header {
    width: 100%;
    background: linear-gradient(to right, #2a2a2a, #3c3c3c);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.header-line {
    width: 0.18rem;
    height: 1.8rem;
    background: #d7a83d;
}

.ug-header h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.03rem;
}

/* LIST */

.ug-list {
    width: 100%;
}

.ug-item {
    width: 100%;
    border-bottom: 0.08rem solid #d8d8d8;
}

.ug-link {
    width: 100%;
    text-decoration: none;
    padding: 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s ease;
}

    .ug-link:hover {
        background: #ececec;
    }

.ug-left {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.triangle {
    width: 0;
    height: 0;
    border-top: 0.35rem solid transparent;
    border-bottom: 0.35rem solid transparent;
    border-left: 0.45rem solid #c8afd6;
}

.ug-text {
    font-size: 1rem;
    color: #444444;
    font-weight: 500;
}

    .ug-text:hover {
        color: #4f0071;
    }

.icon-link {
    font-size: 1rem;
    color: #8e24aa;
    font-weight: 500;
}

.arrow-circle {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #e8d9ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b1fa2;
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 576px) {
    .ug-header {
        padding: 0.9rem 1rem;
    }

        .ug-header h2 {
            font-size: 1rem;
        }

    .ug-link {
        padding: 0.9rem 1rem;
    }

    .ug-text {
        font-size: 0.82rem;
    }

    .icon-link {
        font-size: 0.9rem;
    }

    .arrow-circle {
        width: 1.6rem;
        height: 1.6rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .ug-admission-section {
        max-width: 45rem;
    }

    .ug-header h2 {
        font-size: 1.15rem;
    }

    .ug-text {
        font-size: 0.92rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .ug-admission-section {
        max-width: 48rem;
    }

    .ug-header h2 {
        font-size: 1.25rem;
    }

    .ug-text {
        font-size: 0.96rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .ug-admission-section {
        max-width: 78rem;
    }

    .ug-header h2 {
        font-size: 1.35rem;
    }

    .ug-text {
        font-size: 1rem;
    }
}

.pg-admission-section {
    width: 100%;
    max-width: 78rem;
    margin: auto;
}

/* HEADER */

.pg-header {
    width: 100%;
    background: linear-gradient(to right, #2a2a2a, #3c3c3c);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.header-line {
    width: 0.18rem;
    height: 1.8rem;
    background: #d7a83d;
}

.pg-header h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.03rem;
}

/* LIST */

.pg-list {
    width: 100%;
}

.pg-item {
    width: 100%;
    border-bottom: 0.08rem solid #d8d8d8;
}

.pg-link {
    width: 100%;
    text-decoration: none;
    padding: 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s ease;
}

    .pg-link:hover {
        background: #ececec;
    }

.pg-left {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.triangle {
    width: 0;
    height: 0;
    border-top: 0.35rem solid transparent;
    border-bottom: 0.35rem solid transparent;
    border-left: 0.45rem solid #c8afd6;
}

.pg-text {
    font-size: 1rem;
    color: #444444;
    font-weight: 500;
}

    .pg-text:hover {
        color: #4f0071;
    }

.icon-link {
    font-size: 1rem;
    color: #8e24aa;
    font-weight: 500;
}

.arrow-circle {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #e8d9ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b1fa2;
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 576px) {
    .pg-header {
        padding: 0.9rem 1rem;
    }

        .pg-header h2 {
            font-size: 1rem;
        }

    .pg-link {
        padding: 0.9rem 1rem;
    }

    .pg-text {
        font-size: 0.82rem;
    }

    .icon-link {
        font-size: 0.9rem;
    }

    .arrow-circle {
        width: 1.6rem;
        height: 1.6rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pg-admission-section {
        max-width: 45rem;
    }

    .pg-header h2 {
        font-size: 1.15rem;
    }

    .pg-text {
        font-size: 0.92rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pg-admission-section {
        max-width: 48rem;
    }

    .pg-header h2 {
        font-size: 1.25rem;
    }

    .pg-text {
        font-size: 0.96rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .pg-admission-section {
        max-width: 78rem;
    }

    .pg-header h2 {
        font-size: 1.35rem;
    }

    .pg-text {
        font-size: 1rem;
    }
}

.adm-programmes-wrapper {
    width: 100%;
    max-width: 78rem;
    margin: auto;
}

.adm-programme-section {
    margin-bottom: 3rem;
}

.programme-header {
    width: 100%;
    background: linear-gradient(to right, #2f2f2f, #3b3b3b);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.header-line-yellow {
    width: 0.18rem;
    height: 1.7rem;
    background: #d8a73e;
}

.header-line-green {
    width: 0.18rem;
    height: 1.7rem;
    background: #17c5ae;
}

.programme-header h2 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.03rem;
}

.programme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem 3rem;
    padding: 0 1.2rem;
}

.programme-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.icon-yellow {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.3rem;
    background: #f2e5bf;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .icon-yellow::before {
        content: "";
        width: 0.7rem;
        height: 0.8rem;
        background: #d6a22b;
        border-radius: 0.08rem;
    }

.icon-green {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.3rem;
    background: #ccefe9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .icon-green::before {
        content: "";
        width: 0.7rem;
        height: 0.8rem;
        background: #12b39e;
        border-radius: 0.08rem;
    }

.programme-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444444;
}

@media (max-width: 576px) {
    .programme-header {
        padding: 0.9rem 1rem;
    }

        .programme-header h2 {
            font-size: 1rem;
        }

    .programme-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .programme-item p {
        font-size: 0.82rem;
    }

    .icon-yellow,
    .icon-green {
        width: 1.1rem;
        height: 1.1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .programme-header h2 {
        font-size: 1.15rem;
    }

    .programme-item p {
        font-size: 0.9rem;
    }

    .programme-grid {
        gap: 1.2rem 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .programme-header h2 {
        font-size: 1.25rem;
    }

    .programme-item p {
        font-size: 0.95rem;
    }

    .programme-grid {
        gap: 1.3rem 3rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .programme-header h2 {
        font-size: 1.35rem;
    }

    .programme-item p {
        font-size: 1rem;
    }

    .adm-programmes-wrapper {
        max-width: 82rem;
    }
}

.fee-wrapper {
    width: 100%;
    max-width: 78rem;
    margin: auto;
}

.fee-header {
    width: 100%;
    background: linear-gradient(to right, #2d2d2d, #3a3a3a);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.3rem;
}

.header-line {
    width: 0.18rem;
    height: 1.7rem;
    background: #d7a63a;
}

.fee-header h2 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.03rem;
}

.fee-description {
    width: 100%;
    padding: 0 1.8rem;
    margin-bottom: 1.8rem;
}

    .fee-description p {
        font-size: 1rem;
        line-height: 1.9;
    }

.pdf-container {
    width: 100%;
    padding: 0 1.8rem;
}

.pdf-frame {
    width: 100%;
    background: #ececec;
    border: 0.08rem solid #d3d3d3;
    padding: 0.6rem;
}

    .pdf-frame iframe {
        width: 100%;
        height: 38rem;
        border: none;
        background: #ffffff;
        display: block;
    }

@media (max-width: 576px) {
    .fee-header {
        padding: 0.9rem 1rem;
    }

        .fee-header h2 {
            font-size: 1rem;
        }

    .fee-description {
        padding: 0 0.5rem;
        margin-bottom: 1.2rem;
    }

        .fee-description p {
            font-size: 0.82rem;
            line-height: 1.7;
        }

    .pdf-container {
        padding: 0;
    }

    .pdf-frame {
        padding: 0.4rem;
    }

        .pdf-frame iframe {
            height: 24rem;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .fee-header h2 {
        font-size: 1.15rem;
    }

    .fee-description p {
        font-size: 0.9rem;
    }

    .pdf-frame iframe {
        height: 34rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .fee-header h2 {
        font-size: 1.25rem;
    }

    .fee-description p {
        font-size: 0.95rem;
    }

    .pdf-frame iframe {
        height: 38rem;
    }

    .fee-description {
        padding: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .fee-wrapper {
        max-width: 82rem;
    }

    .fee-header h2 {
        font-size: 1.35rem;
    }

    .fee-description p {
        font-size: 1rem;
    }

    .pdf-frame iframe {
        height: 42rem;
    }
}

.prospectus-wrapper {
    width: 100%;
    max-width: 78rem;
    margin: auto;
}

.prospectus-header {
    width: 100%;
    background: linear-gradient(to right, #2d2d2d, #3a3a3a);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.header-line {
    width: 0.18rem;
    height: 1.7rem;
    background: #d7a63a;
}

.prospectus-header h2 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.03rem;
}

.prospectus-description {
    padding: 0 1.8rem;
    margin-bottom: 2rem;
}

    .prospectus-description p {
        font-size: 0.95rem;
        line-height: 1.9;
        color: #444444;
    }

.adm-filter-wrapper {
    width: 100%;
    padding: 0 1.8rem;
    margin-bottom: 2rem;
}

.adm-filter-box {
    background: #f6f6f6;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    min-width: 27rem;
}

.filter-select {
    width: 100%;
    padding: 0.8rem 0.9rem;
    border: 0.08rem solid #d4d4d4;
    background: #ffffff;
    font-size: 0.88rem;
    color: #555555;
    outline: none;
    cursor: pointer;
}

/* SEARCH BUTTON */

.adm-search-btn {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-left: 4rem;
}

.search-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #d6a63a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.search-text {
    font-size: 0.85rem;
    color: #444444;
}

.pdf-viewer {
    width: 100%;
    padding: 0 1.8rem;
    display: none;
}

.pdf-frame {
    width: 100%;
    border: 0.08rem solid #d6d6d6;
    background: #ffffff;
    padding: 0.5rem;
}

    .pdf-frame iframe {
        width: 100%;
        height: 40rem;
        border: none;
    }

@media (max-width: 576px) {
    .prospectus-header {
        padding: 0.9rem 1rem;
    }

        .prospectus-header h2 {
            font-size: 1rem;
        }

    .prospectus-description {
        padding: 0 0.4rem;
    }

        .prospectus-description p {
            font-size: 0.82rem;
            line-height: 1.7;
        }

    .adm-filter-wrapper {
        padding: 0;
    }

    .adm-filter-box {
        flex-direction: column;
        padding: 0.8rem;
    }

    .filter-group {
        width: 100%;
        min-width: 100%;
    }

    .filter-select {
        font-size: 0.8rem;
    }

    .checkbox-item {
        font-size: 0.78rem;
    }

    .adm-search-btn {
        margin-top: 0.5rem;
    }

    .pdf-viewer {
        padding: 0;
    }

    .pdf-frame iframe {
        height: 24rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .prospectus-header h2 {
        font-size: 1.15rem;
    }

    .prospectus-description p {
        font-size: 0.9rem;
    }

    .pdf-frame iframe {
        height: 34rem;
    }

    .filter-group {
        min-width: 12rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .prospectus-header h2 {
        font-size: 1.25rem;
    }

    .prospectus-description p {
        font-size: 0.95rem;
    }

    .pdf-frame iframe {
        height: 38rem;
    }

    .filter-group {
        min-width: 11rem;
    }

    .prospectus-description {
        padding: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .prospectus-wrapper {
        max-width: 82rem;
    }

    .prospectus-header h2 {
        font-size: 1.35rem;
    }

    .prospectus-description p {
        font-size: 1rem;
    }

    .pdf-frame iframe {
        height: 42rem;
    }

    .filter-group {
        min-width: 16rem;
    }
}

.eligibility-section {
    width: 100%;
    padding: 0rem 1rem 3rem;
}

.eligibility-container {
    width: 100%;
    max-width: 78rem;
    margin: auto;
}

.eligibility-header {
    background: #333333;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.eligibility-line {
    width: 0.18rem;
    height: 2rem;
    background: #d4a03d;
}

.eligibility-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
}

.eligibility-description {
    margin-top: 1.5rem;
    margin-left: 0rem;
    max-width: 100rem;
    font-size: 1rem;
    line-height: 2;
    color: #555555;
}

.eligibility-filter {
    width: 100%;
    background: #ececec;
    padding: 0.8rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

    .eligibility-filter select {
        flex: 1;
        min-width: 16rem;
        height: 3rem;
        border: 0.08rem solid #dddddd;
        background: #ffffff;
        padding: 0 1rem;
        font-size: 0.9rem;
        color: #666666;
        outline: none;
        cursor: pointer;
    }

.criteria-search-btn {
    height: 3rem;
    border: none;
    background: transparent;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #444444;
    transition: 0.3s ease;
}

    .criteria-search-btn:hover {
        color: #7c2d73;
    }

.criteria-search-icon {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    background: #d4a03d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.criteria-result {
    display: none;
    margin-top: 4rem;
    animation: fadeEffect 0.4s ease;
}

    .criteria-result.active {
        display: block;
    }

.criteria-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 13rem;
}

.programme-info {
    width: 41%;
    margin-top: 6rem;
}

.programme-title {
    font-size: 2.4rem;
    font-weight: 500;
    color: #d09a3b;
    margin-bottom: 1.5rem;
}

    .programme-title span {
        color: #7c2d73;
    }

.programme-description {
    font-size: 1rem;
    line-height: 2.2;
    color: #555555;
}

.combination-wrapper {
    width: 65%;
}

.combination-box {
    border: 0.08rem solid #caa6da;
    padding: 1.4rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.combination-title {
    font-size: 1.2rem;
    color: #7c2d73;
    font-weight: 500;
    margin-bottom: 1rem;
}

.combination-box p {
    font-size: 1rem;
    line-height: 2;
    color: #555555;
}

.idea-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #4f0071;
    font-size: 1.3rem;
}

.or-text {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333333;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: translateY(0.8rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .eligibility-header {
        padding: 1rem;
    }

        .eligibility-header h2 {
            font-size: 1.1rem;
        }

    .eligibility-description {
        margin-left: 0;
        font-size: 0.92rem;
        line-height: 1.9;
    }

    .eligibility-filter {
        flex-direction: column;
    }

        .eligibility-filter select {
            width: 100%;
            min-width: 100%;
            padding: 1rem 1rem;
        }

    .criteria-search-btn {
        width: 100%;
        justify-content: center;
        height: 2rem;
    }
    .criteria-result {
        margin-top: -4rem;
    }
    .criteria-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .programme-info,
    .combination-wrapper {
        width: 100%;
    }

    .programme-title {
        font-size: 1.8rem;
    }

    .programme-description {
        font-size: 0.95rem;
    }

    .combination-box {
        padding: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .programme-title {
        font-size: 2.1rem;
    }

    .eligibility-filter select {
        min-width: 14rem;
    }

    .programme-info {
        width: 62%;
        margin-top: 8rem;
    }

    .criteria-layout {
        gap: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .programme-title {
        font-size: 2.3rem;
    }

    .eligibility-filter select {
        min-width: 13rem;
    }

    .programme-info {
        width: 74%;
        margin-top: 11rem;
    }

    .criteria-layout {
        gap: 3rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .programme-title {
        font-size: 2.5rem;
    }

    .programme-description {
        font-size: 1.05rem;
    }

    .programme-info {
        width: 54%;
        margin-top: 8rem;
    }

    .criteria-layout {
        gap: 5rem;
    }
}

.faq-section {
    width: 100%;
    padding: 0rem 1rem 3rem;
}

.faq-container {
    width: 100%;
    max-width: 78rem;
    margin: auto;
}

.faq-header {
    background: #333333;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-line {
    width: 0.18rem;
    height: 2rem;
    background: #d4a03d;
}

.faq-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
}

.faq-description {
    margin-top: 1.5rem;
    margin-left: 0rem;
    max-width: 100rem;
    font-size: 1rem;
    line-height: 2;
    color: #555555;
}

.faq-topbar {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.faq-filter-title {
    color: #6b2b90;
    font-size: 1rem;
    font-weight: 500;
}

.faq-category-btn {
    border: none;
    background: transparent;
    color: #6b2b90;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.faq-category-dropdown {
    width: 13rem;
    background: #f7f7f7;
    border: 0.08rem solid #d7c3e6;
    padding: 1rem;
    position: absolute;
    top: 2rem;
    right: 0;
    display: none;
    z-index: 5;
}

    .faq-category-dropdown.active {
        display: block;
    }

.faq-category-list {
    list-style: none;
}

    .faq-category-list li {
        margin-bottom: 0.7rem;
    }

    .faq-category-list label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.82rem;
        color: #666666;
        cursor: pointer;
    }

    .faq-category-list input[type="checkbox"] {
        accent-color: #6b2b90;
        width: 0.9rem;
        height: 0.9rem;
        cursor: pointer;
    }

.faq-box {
    margin-top: 1rem;
    border: 0.08rem solid #dddddd;
    padding: 1rem;
    background: #ffffff;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: none;
    background: #f3f3f3;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

    .faq-question h3 {
        font-size: 1.1rem;
        color: #666666;
        font-weight: 500;
    }

.faq-item.active .faq-question {
    background: #f0ebf3;
}

.faq-item.active .faq-answer {
    background: #f0ebf3;
}

.faq-item.active .faq-question h3 {
    color: #000000;
}

.faq-icon {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    background: #5d0b83;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 1rem 1rem;
    font-size: 1rem;
    line-height: 1.9;
    color: #666666;
}

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 576px) {
    .faq-header {
        padding: 1rem;
    }

        .faq-header h2 {
            font-size: 1.1rem;
        }

    .faq-description {
        margin-left: 0;
        font-size: 0.92rem;
        line-height: 1.9;
    }

    .faq-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-category-dropdown {
        width: 100%;
        position: relative;
        top: 0;
        margin-top: 1rem;
    }

    .faq-question {
        padding: 0.9rem;
    }

        .faq-question h3 {
            font-size: 0.9rem;
            line-height: 1.6;
        }

    .faq-answer {
        font-size: 0.88rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .faq-header h2 {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-description {
        font-size: 1.05rem;
    }
}

.important-section {
    width: 100%;
    padding: 0rem 1rem 3rem;
}

.important-container {
    width: 100%;
    max-width: 78rem;
    margin: auto;
}

.important-header {
    background: #333333;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.important-line {
    width: 0.18rem;
    height: 2rem;
    background: #d4a03d;
}

.important-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
}

.important-topbar {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    flex-wrap: wrap;
}

.filter-title {
    color: #6b2b90;
    font-size: 1rem;
    font-weight: 500;
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.dropdown-wrapper {
    position: relative;
}

.date-dropdown-btn {
    border: none;
    background: transparent;
    color: #6b2b90;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.date-dropdown-box {
    width: 20rem;
    background: #f8f8f8;
    border: 0.08rem solid #d8c4e5;
    padding: 0.5rem;
    position: absolute;
    top: 2rem;
    right: 0;
    display: none;
    z-index: 5;
}

    .date-dropdown-box.active {
        display: block;
    }

.date-category-list {
    list-style: none;
}

    .date-category-list li {
        margin-bottom: 0.7rem;
    }

    .date-category-list label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: #666666;
        cursor: pointer;
    }

    .date-category-list input[type="checkbox"] {
        accent-color: #6b2b90;
        width: 0.9rem;
        height: 0.9rem;
    }

.important-content {
    margin-top: 1rem;
    border: 0.08rem solid #d8d8d8;
    display: flex;
}

.important-left {
    width: 78%;
    border-right: 0.08rem solid #d8d8d8;
    padding: 1rem;
}

.update-title {
    text-align: center;
    color: #6b2b90;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border-bottom: 0.05rem solid #ececec;
}

.update-list {
    list-style: none;
}

    .update-list li {
        padding: 0.7rem 0;
        display: flex;
        align-items: flex-start;
        gap: 0.7rem;
    }

.update-arrow {
    color: #c8a7d8;
    font-size: 1rem;
    margin-top: 0.1rem;
}

.update-list a {
    text-decoration: none;
    color: #444444;
    font-size: 0.9rem;
    line-height: 1.7;
    transition: 0.3s ease;
}

    .update-list a:hover {
        color: #6b2b90;
    }

.important-right {
    width: 22%;
    padding: 1rem;
}

.date-title {
    text-align: center;
    color: #6b2b90;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border-bottom: 0.05rem solid #ececec;
}

.date-calendar-box {
    border: 0.08rem solid #d8d8d8;
    background: #ffffff;
}

.date-calendar-header {
    background: #3a3a3a;
    color: #ffffff;
    padding: 0.5rem 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    cursor: pointer;
}

.date-calendar-grid {
    padding: 0.5rem;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.2rem;
    text-align: center;
    font-size: 1rem;
    color: #777777;
}

    .date-calendar-grid span {
        padding: 0.25rem 0.1rem;
        font-size: 0.9rem;
    }

.date-list {
    list-style: none;
    margin-top: 1rem;
}

    .date-list li {
        padding: 1.3rem 0;
        text-align: center;
        font-size: 0.9rem;
        color: #444444;
    }

@media (max-width: 576px) {
    .important-header {
        padding: 1rem;
    }

        .important-header h2 {
            font-size: 1.1rem;
        }

    .important-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-right {
        width: 65%;
        margin-left: 7rem;
        justify-content: space-between;
    }

    .dropdown-box {
        width: 100%;
    }

    .important-content {
        flex-direction: column;
    }

    .important-left,
    .important-right {
        width: 100%;
    }

    .important-left {
        border-right: none;
        border-bottom: 0.08rem solid #d8d8d8;
    }

    .update-list a {
        font-size: 0.88rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .important-header h2 {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .important-header h2 {
        font-size: 1.8rem;
    }

    .update-list a {
        font-size: 0.94rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .important-header h2 {
        font-size: 2rem;
    }
}

/*------------------------------------------------------*/
/* SOL EXAMINATION PAGE  */
/*------------------------------------------------------*/

.exam-section {
    width: 100%;
    padding: 5.2rem 1rem;
}

.exam-container {
    width: 100%;
    max-width: 117rem;
    margin: auto;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 0.6rem;
    height: 32rem;
    gap: 0.5rem;
}

.exam-image-area {
    width: 50%;
    position: relative;
}

.exam-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0.6rem 0 0 0.6rem;
}

.exam-content-area {
    width: 50%;
    background: #ece7ed;
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0 0.6rem 0.6rem 0;
}

.exam-top-content {
    margin-top: 3rem;
}

    .exam-top-content h2 {
        font-size: 3rem;
        line-height: 1.1;
        font-weight: 500;
        color: #000000;
        margin-bottom: 1.5rem;
    }

    .exam-top-content p {
        max-width: 30rem;
        font-size: 1rem;
        line-height: 1.8;
        color: #666666;
    }

    .exam-top-content span {
        color: #000000;
        font-weight: 500;
    }

.explore-btn {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #000000;
    font-size: 0.95rem;
    font-weight: 500;
}

.explore-icon {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #d2a03e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.exam-bottom-content {
    margin-top: 3rem;
}

    .exam-bottom-content p {
        font-size: 1rem;
        line-height: 1.7;
        color: #000000;
        letter-spacing: 0.08rem;
    }

.exam-year {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.year-dot {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #e2d5e8;
}

.exam-year span {
    font-size: 2rem;
    font-weight: 500;
    color: #4f0071;
    margin-left: -2rem;
}

.exam-float-card {
    width: 11rem;
    background: #2d2d2d;
    border-radius: 1rem;
    overflow: hidden;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.15);
}

.float-top {
    padding: 1rem;
    position: relative;
}

    .float-top p {
        font-size: 0.72rem;
        line-height: 1.8;
        color: #c9c7c7;
    }

.float-arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #ffffff;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
}

.float-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 576px) {
    .exam-container {
        flex-direction: column;
        height: auto;
    }
    .exam-image-area {
        width: 100%;
    }
    .exam-content-area {
        width: 100%;
    }
    .exam-top-content {
        margin-top: -1rem;
    }
        .exam-top-content h2 {
            font-size: 2rem;
            text-align: center;
        }
        .exam-top-content p {
            font-size: 0.9rem;
            text-align: center;
        }
    .explore-btn {
        margin-top: 1rem;
        margin-left: 5rem;
    }
    .exam-bottom-content {
        margin-top: 2rem;
    }
        .exam-bottom-content p {
            width: 42%;
        }

    .exam-year {
        margin-top: 1rem;
    }
    .year-dot {
        width: 2rem;
        height: 2rem;
    }
    .exam-year span {
        font-size: 1.7rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .exam-top-content h2 {
        font-size: 2rem;
    }
    .exam-content-area {
        padding: 1.5rem 2rem;
    }
    .exam-bottom-content p {
        width: 46%;
    }
    .exam-top-content {
        margin-top: 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .exam-top-content h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .exam-top-content h2 {
        font-size: 3.4rem;
    }

    .exam-top-content p {
        font-size: 1.05rem;
    }
}

.latest-notification-section {
    width: 100%;
    padding: 1.5rem 1rem 3rem;
}

.latest-notification-container {
    width: 100%;
    max-width: 110rem;
    margin: auto;
    margin-top: -2rem;
}

.latest-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

/* LEFT TITLE */

.latest-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.latest-line {
    width: 0.2rem;
    height: 2rem;
    background: #d4a03d;
}

.latest-title h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #333333;
}

/* FILTER */

.latest-filter {
    display: flex;
    align-items: center;
    gap: 11rem;
    margin-right: 35rem;
}

.dropdown-wrapper {
    position: relative;
}

.latest-dropdown-btn {
    border: none;
    background: transparent;
    color: #6d2a90;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.dropdown-box {
    width: 13rem;
    background: #f8f8f8;
    border: 0.08rem solid #d8c4e5;
    padding: 0.5rem;
    position: absolute;
    top: 2rem;
    right: 0;
    display: none;
    z-index: 10;
}

    .dropdown-box.active {
        display: block;
    }

/* CHECKBOX */

.category-list {
    list-style: none;
}

    .category-list li {
        margin-bottom: 0.7rem;
    }

    .category-list label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.82rem;
        color: #666666;
        cursor: pointer;
    }

    .category-list input[type="checkbox"] {
        accent-color: #6b2b90;
        width: 0.9rem;
        height: 0.9rem;
    }

/* CALENDAR */

.latest-calendar-box {
    border: 0.08rem solid #d8d8d8;
    background: #ffffff;
}

.calendar-header {
    background: #333333;
    color: #ffffff;
    padding: 0.5rem 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
}

.calendar-grid {
    padding: 0.5rem;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.2rem;
    text-align: center;
    font-size: 0.62rem;
    color: #777777;
}

    .calendar-grid span {
        padding: 0.25rem 0;
    }

.latest-content {
    margin-top: 1.5rem;
    display: flex;
    gap: 8rem;
}

.latest-left {
    width: 70%;
}

.notification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 11rem;
    background: #fbfbfb;
    padding: 2rem;
    padding-top: 3rem;
    margin-top: 2rem;
}

.notification-card {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
}

/* DATE */

.notification-date {
    min-width: 3rem;
}

.notification-month {
    display: block;
    font-size: 1rem;
    color: #666666;
    text-transform: uppercase;
}

.notification-day {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    color: #333333;
    line-height: 1.1;
}

/* CONTENT */

.notification-info {
    flex: 1;
}

.new-label {
    color: red;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    display: block;
}

.notification-info a {
    text-decoration: none;
    color: #444444;
    font-size: 1rem;
    line-height: 1.5;
    transition: 0.3s ease;
}

    .notification-info a:hover {
        color: #6d2a90;
    }

/* VIEW MORE */

.view-more-btn {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #333333;
    font-size: 0.95rem;
    font-weight: 500;
}

.view-icon {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #d4a03d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.latest-right {
    width: 18%;
    margin-top: -3.3rem;
}

.explore-title {
    font-size: 1rem;
    letter-spacing: 0.12rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.explore-menu {
    list-style: none;
    margin-top: 3rem;
}

    .explore-menu li {
        border-bottom: 0.08rem solid #d8d8d8;
    }

        .explore-menu li a {
            display: block;
            padding: 1rem 0;
            text-decoration: none;
            color: #666666;
            font-size: 0.95rem;
            transition: 0.3s ease;
        }

        .explore-menu li.active a {
            color: #6d2a90;
            font-weight: 500;
        }

        .explore-menu li a:hover {
            color: #6d2a90;
            padding-left: 0.4rem;
        }

@media (max-width: 576px) {
    .notification-grid {
        display: flex;
        flex-direction: column;
        margin-top: 0rem;
    }
    .latest-content {
        flex-direction: column;
        gap: 6rem;
    }
    .latest-left {
        width: 100%;
    }
    .latest-notification-container {
        margin-top: 20rem;
        width: 100%;
    }
    .latest-filter {
        gap: 4rem;
        margin-right: 0rem;
        margin-left: 9rem;
    }
    .latest-right {
        width: 100%;
        margin-top: -4.3rem;
    }
    .explore-menu {
        margin-top: 0rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .latest-title h2 {
        font-size: 1.8rem;
    }

    .latest-right {
        width: 70%;
        margin-left: 12rem;
        margin-top: -9.4rem;
    }
    .latest-content {
        flex-direction: column;
    }
    .latest-left {
        width: 100%;
    }
    .notification-grid {
        gap: 1rem 3rem;
    }
    .latest-filter {
        margin-right: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .latest-title h2 {
        font-size: 2rem;
    }

    .latest-notification-container {
        width: 92%;
        max-width: 100rem;
        margin-top: 8rem;
    }
    .latest-filter {
        margin-right: 19rem;
    }
    .notification-grid {
        gap: 1rem 3rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .latest-title h2 {
        font-size: 2.2rem;
    }

    .notification-info a {
        font-size: 1rem;
    }

    .latest-notification-container {
        width: 90%;
        max-width: 100rem;
        margin-top: 3rem;
    }
    .notification-grid {
        gap: 1rem 2rem;
    }
    .latest-filter {
        margin-right: 24rem;
    }
    .latest-notification-section {
        padding: 1.5rem 1rem 1rem;
    }
}

.resources-section {
    width: 100%;
    padding: 1rem;
}

.resources-container {
    width: 100%;
    max-width: 100rem;
    margin: auto;
    display: flex;
    gap: 4rem;
}

.resources-left {
    width: 27%;
}

.resources-banner {
    position: relative;
    border-radius: 0.7rem;
    overflow: hidden;
    height: 100%;
}

    .resources-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1.5rem;
}

    .banner-overlay h2 {
        color: #ffffff;
        font-size: 2rem;
        line-height: 1.2;
        text-align: right;
        font-weight: 500;
    }

.resources-right {
    width: 73%;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.resource-card {
    min-height: 8rem;
    border-radius: 0.5rem;
    padding: 1rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

    .resource-card:hover {
        transform: translateY(-0.2rem);
    }

.light-card {
    background: #ded3e4;
    color: #111111;
}

.dark-card {
    background: #5c0086;
    color: #ffffff;
}

.resource-icon {
    font-size: 1rem;
}

.resource-card h3 {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 576px) {
    .resources-container {
        flex-direction: column;
        gap: 0rem;
    }

    .resources-left,
    .resources-right {
        width: 100%;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .resources-banner {
        min-height: 18rem;
    }

    .banner-overlay h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .resource-card {
        min-height: 6rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-overlay h2 {
        font-size: 1.8rem;
    }
    .resources-container {
        gap: 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .resources-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .banner-overlay h2 {
        font-size: 2rem;
    }
    .resources-container {
        gap: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .banner-overlay h2 {
        font-size: 2.2rem;
    }

    .resource-card h3 {
        font-size: 1.05rem;
    }
}

/*------------------------------------------------------*/
/* SOL SOP PAGE  */
/*------------------------------------------------------*/

.hero-content8 {
    position: absolute;
    top: 40%;
    left: 0%;
    color: white;
    /*z-index: 2;*/
}

    .hero-content8 h1 {
        font-size: 4rem;
        line-height: 1.1;
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
    }
.user-tab-section {
    width: 100%;
    background: #fbfbfb;
    border-bottom: 0.08rem solid #dddddd;
}

.user-tab-wrapper {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.user-tab-btn {
    border: none;
    background: transparent;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
}

    .user-tab-btn:hover {
        color: #000000;
    }

    .user-tab-btn.active {
        color: #000000;
        font-weight: 700;
    }

/* SLASH */

.tab-slash {
    color: #222222;
    font-size: 1rem;
}

.user-tab-content-wrapper {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    padding: 2rem 1rem;
}

.user-tab-content {
    display: none;
}

    .user-tab-content.active {
        display: block;
    }

    .user-tab-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #111111;
    }

    .user-tab-content p {
        font-size: 1rem;
        line-height: 1.8;
        color: #666666;
        max-width: 50rem;
    }

@media (max-width: 576px) {
    .user-tab-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 0rem;
    }

    .user-tab-btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .user-tab-content h2 {
        font-size: 1.6rem;
    }

    .user-tab-content p {
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .user-tab-btn {
        font-size: 1rem;
    }
    .hero-content8 h1 {
        font-size: 2rem;
        margin-top: 5rem;
    }
    .user-tab-wrapper {
        gap: 1rem;
    }

}

@media (min-width: 992px) and (max-width: 1199px) {
    .user-tab-btn {
        font-size: 1.02rem;
    }
    .hero-content8 h1 {
        font-size: 2.5rem;
        margin-top: 4rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .user-tab-btn {
        font-size: 1.05rem;
    }

    .user-tab-content h2 {
        font-size: 2.2rem;
    }
    .hero-content8 h1 {
        font-size: 3rem;
        margin-top: 4rem;
    }
}

.fee-structure-section {
    width: 100%;
    padding: 1rem;
}

.fee-structure-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.fee-filter-sidebar {
    width: 24%;
    background: #f5f1f7;
    border: 0.08rem solid #e5dff0;
    padding: 1rem;
}

.fee-filter1 {
    background: #ffffff;
    padding: 1rem;
}

/* FILTER HEADER */

.filter-header {
    padding-bottom: 0.8rem;
    border-bottom: 0.08rem solid #d9cfe4;
    margin-bottom: 1rem;
    text-align: center;
}

    .filter-header button {
        border: none;
        background: transparent;
        color: #4f0071;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
    }

/* FILTER LIST */

.filter-list {
    list-style: none;
}

    .filter-list li {
        margin-bottom: 1rem;
    }

    .filter-list label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        color: #555555;
        cursor: pointer;
    }

    .filter-list input[type="checkbox"] {
        width: 0.85rem;
        height: 0.85rem;
        accent-color: #6d2a90;
    }

/* APPLY BUTTON */

.apply-btn {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #444444;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 4.5rem;
}

.apply-icon {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #d4a03d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.fee-pdf-area {
    width: 76%;
    background: #ffffff;
    border: 0.08rem solid #e3e3e3;
    padding: 0.5rem;
}

.pdf-frame {
    width: 100%;
    height: 48rem;
    border: none;
    background: #2f2f2f;
}

@media (max-width: 576px) {
    .fee-structure-container {
        flex-direction: column;
    }

    .fee-filter-sidebar,
    .fee-pdf-area {
        width: 100%;
    }

    .pdf-frame {
        height: 25rem;
    }

    .filter-header button {
        font-size: 0.9rem;
    }

    .filter-list label {
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pdf-frame {
        height: 35rem;
    }
    .fee-filter-sidebar {
        width: 40%;
    }
    .apply-btn {
        margin-left: 1.5rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pdf-frame {
        height: 39rem;
    }
    .apply-btn {
        margin-left: 2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .pdf-frame {
        height: 43rem;
    }
    .apply-btn {
        margin-left: 3rem;
    }
}

/*------------------------------------------------------*/
/* SOL DATESHEET PAGE  */
/*------------------------------------------------------*/

.hero-content6 {
    position: absolute;
    top: 40%;
    left: 0%;
    color: white;
    /*z-index: 2;*/
}

    .hero-content6 h1 {
        font-size: 3rem;
        line-height: 1.1;
        margin-left: 50rem;
        margin-top: 7rem;
        text-align: center;
    }

.sheet-content {
    gap: 2rem;
}

.sheet-right {
    margin-top: 2rem;
}

.schedule-section {
    width: 73%;
    padding: 1.5rem 1rem;
}

.schedule-container {
    width: 100%;
    max-width: 65rem;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 6rem;
}

.schedule-image-wrapper {
    width: 40%;
    position: relative;
    min-height: 24rem;
}

/* GREEN BOX */

.schedule-info-box {
    width: 12rem;
    background: #1fc4a5;
    padding: 1.3rem 1rem;
    position: absolute;
    top: 1rem;
    left: 1.4rem;
    z-index: 2;
}

    .schedule-info-box h2 {
        font-size: 1rem;
        line-height: 1.8;
        color: #333333;
        font-weight: 500;
    }

        .schedule-info-box h2 span {
            font-size: 1rem;
            line-height: 1.8;
            color: #000000;
            font-weight: 600;
        }

/* IMAGE */

.schedule-image {
    width: 21rem;
    position: absolute;
    top: 2rem;
    left: 5rem;
    z-index: 1;
}

    .schedule-image img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

.schedule-content {
    width: 41%;
}

    .schedule-content p {
        font-size: 1rem;
        line-height: 2;
        color: #555555;
        margin-bottom: 2rem;
    }

/* BUTTON */

.schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #222222;
    font-size: 0.95rem;
    font-weight: 500;
}

.schedule-btn-icon {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #d4a03d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

@media (max-width: 576px) {
    .schedule-container {
        flex-direction: column;
    }

    .schedule-image-wrapper,
    .schedule-content {
        width: 100%;
    }

    .schedule-image-wrapper {
        min-height: 24rem;
    }

    .schedule-info-box {
        width: 10rem;
        padding: 1rem;
    }

        .schedule-info-box h2 {
            font-size: 0.9rem;
        }

    .schedule-image {
        width: 14rem;
        left: 3rem;
        top: 4rem;
    }

    .schedule-content p {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .hero-content6 h1 {
        font-size: 2rem;
        margin-left: 1rem;
        margin-top: 11rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .schedule-image {
        width: 18rem;
        left: 4rem;
    }
    .hero-content6 h1 {
        margin-left: 2rem;
        margin-top: 11rem;
    }
    .schedule-container {
        margin-top: 0rem;
    }
    .schedule-section {
        width: 100%;
    }
    .schedule-image-wrapper {
        width: 100%;
    }
    .schedule-content {
        width: 100%;
    }
    .schedule-info-box {
        width: 10rem;
        left: 1.3rem;
    }
    .sheet-content {
        gap: 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .schedule-image {
        width: 18rem;
        left: 3rem;
    }

    .schedule-content p {
        font-size: 1rem;
    }

    .hero-content6 h1 {
        font-size: 3rem;
        margin-left: 3rem;
        margin-top: 8rem;
    }
    .sheet-content {
        margin-top: -7rem;
    }
    .schedule-content {
        width: 45%;
    }
    .schedule-info-box {
        left: -1.8rem;
    }
    .schedule-container {
        gap: 5rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .schedule-image {
        width: 20rem;
    }

    .schedule-content p {
        font-size: 1.05rem;
    }

    .schedule-info-box h2 {
        font-size: 1.05rem;
    }

    .hero-content6 h1 {
        margin-left: 2rem;
        margin-top: 10rem;
    }
    .schedule-image-wrapper {
        width: 50%;
    }
}

/*------------------------------------------------------*/
/* SOL RE-EVALUATION PAGE  */
/*------------------------------------------------------*/

.revaluation-section {
    width: 70%;
    padding: 1.5rem 1rem 3rem;
}

.revaluation-container {
    width: 100%;
    max-width: 50rem;
    margin: auto;
}

.revaluation-block {
    margin-bottom: 4rem;
}

.block-heading {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.heading-line1 {
    width: 0.3rem;
    height: 3rem;
    background: #d4a03d;
}

.green-line {
    background: #1fc4a5;
}

.block-heading h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #222222;
}

.block-description {
    max-width: 70rem;
    font-size: 1rem;
    line-height: 2;
    color: #666666;
    margin-bottom: 2rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 2rem;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: #666666;
}

.process-arrow {
    color: #c7a8da;
    font-size: 1rem;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 3rem;
}

.guideline-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #6d2a90;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s ease;
}

    .guideline-link:hover {
        color: #000000;
    }

.guideline-arrow {
    color: #c7a8da;
    font-size: 1rem;
}

.external-icon {
    font-size: 1.3rem;
}

@media (max-width: 576px) {
    .block-heading h2 {
        font-size: 1.4rem;
    }

    .block-description {
        font-size: 0.92rem;
        line-height: 1.9;
    }

    .process-grid,
    .guidelines-grid {
        grid-template-columns: 1fr;
    }

    .process-item,
    .guideline-link {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .block-heading h2 {
        font-size: 1.7rem;
    }
    .revaluation-section {
        width: 100%;
        padding: 1.5rem 1rem 0rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .block-heading h2 {
        font-size: 1.9rem;
    }
    .revaluation-section {
        padding: 1.5rem 1rem 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .block-heading h2 {
        font-size: 2rem;
    }

    .block-description {
        font-size: 1.02rem;
    }
    .revaluation-section {
        padding: 1.5rem 1rem 1rem;
    }
}

.important-links-section {
    width: 100%;
    padding: 0rem 1rem 3rem;
}

.important-links-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
}

.important-links-heading {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.heading-line1 {
    width: 0.3rem;
    height: 3rem;
    background: #1fc4a5;
}

.important-links-heading h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #222222;
}

.important-links-box {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: transparent;
}

.important-links-list {
    width: 58%;
    background: #f3edef;
    padding: 2rem;
    z-index: 1;
    opacity: 95%;
}

.important-links-image {
    width: 42%;
    min-height: 22rem;
}

    .important-links-image img {
        width: 120%;
        height: 90%;
        object-fit: cover;
        display: block;
        margin-top: 1.1rem;
        margin-left: -7rem;
    }

.important-links-list ul {
    list-style: none;
}

.important-links-list li {
    margin-bottom: 1.5rem;
}

.important-links-list a {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    text-decoration: none;
    color: #6d2a90;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    transition: 0.3s ease;
}

    .important-links-list a:hover {
        color: #000000;
    }

.link-arrow {
    color: #c7a8da;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

@media (max-width: 576px) {
    .important-links-box {
        flex-direction: column;
    }

    .important-links-list,
    .important-links-image {
        width: 100%;
    }

    .important-links-image {
        min-height: 16rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .important-links-heading h2 {
        font-size: 1.6rem;
    }
    .important-links-image img {
        width: 132%;
        height: 90%;
        margin-left: -5rem;
    }
    .important-links-container {
        width: 90%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .important-links-heading h2 {
        font-size: 1.7rem;
    }
    .important-links-container {
        max-width: 60rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .important-links-heading h2 {
        font-size: 1.8rem;
    }

    .important-links-list a {
        font-size: 1rem;
    }
    .important-links-container {
        max-width: 68rem;
    }
}

/*------------------------------------------------------*/
/* SOL MARKSHEETS PAGE  */
/*------------------------------------------------------*/

.marksheet-section {
    width: 80%;
    padding: 2rem 1rem;
}

.marksheet-container {
    width: 115%;
    max-width: 100rem;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.marksheet-left {
    width: 65%;
    background: #e8e0ea;
    border-top-right-radius: 4rem;
    border-bottom-right-radius: 4rem;
    padding: 2.5rem 2rem;
    margin-left: -6rem;
    margin-top: 4rem;
}

    .marksheet-left p {
        max-width: 34rem;
        margin: auto;
        text-align: center;
        font-size: 1rem;
        line-height: 2;
        color: #333333;
    }

/* RELEVANT LINKS */

.relevant-links-title {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    letter-spacing: 0.12rem;
    color: #4f0071;
    font-weight: 500;
}

/* LINKS GRID */

.marksheet-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0rem;
    margin-left: 13.5rem;
    width: 37rem;
}

.marksheet-link-item {
    width: 10rem;
}

    .marksheet-link-item a {
        text-decoration: none;
        color: #555555;
        font-size: 1rem;
        line-height: 1.7;
        transition: 0.3s ease;
    }

        .marksheet-link-item a:hover {
            color: #000000;
        }

.marksheet-arrow {
    display: block;
    color: #6d2a90;
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.marksheet-right {
    width: 35%;
    margin-top: 17rem;
}

    .marksheet-right p {
        font-size: 1rem;
        line-height: 2;
        color: #666666;
        margin-bottom: 2rem;
        width: 16.2rem;
    }

/* RIGHT LINKS */

.right-links-list {
    list-style: none;
}

    .right-links-list li {
        margin-bottom: 1rem;
    }

    .right-links-list a {
        display: flex;
        align-items: flex-start;
        gap: 0.7rem;
        text-decoration: none;
        color: #444444;
        font-size: 0.92rem;
        font-weight: 500;
        transition: 0.3s ease;
    }

        .right-links-list a:hover {
            color: #6d2a90;
        }

.right-arrow {
    color: #d7b870;
    font-size: 0.9rem;
    margin-top: 0.1rem;
}

@media (max-width: 576px) {
    .marksheet-container {
        flex-direction: column;
    }

    .marksheet-left,
    .marksheet-right {
        width: 100%;
    }

    .marksheet-left {
        border-top-right-radius: 2rem;
        padding: 2rem 1.5rem;
    }

    .marksheet-links-grid {
        grid-template-columns: 1fr;
    }

    .marksheet-left p,
    .marksheet-right p {
        font-size: 0.9rem;
        line-height: 1.9;
    }

    .marksheet-link-item a,
    .right-links-list a {
        font-size: 0.88rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .marksheet-left p {
        font-size: 0.95rem;
    }
    .marksheet-left {
        width: 90%;
        margin-left: -2rem;
        margin-top: 0rem;
    }
    .marksheet-container {
        width: 100%;
        gap: 1rem;
    }
    .marksheet-links-grid {
        margin-left: -1.5rem;
        width: 30rem;
    }
    .marksheet-right p {
        width: 15rem;
    }
    .marksheet-right {
        margin-top: 8rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .marksheet-left p {
        font-size: 1rem;
    }
    .marksheet-links-grid {
        margin-left: 1rem;
        width: 33rem;
    }

    .marksheet-left {
        margin-top: 6rem;
    }

    .marksheet-right {
        margin-top: 17rem;
    }

    .marksheet-container {
        gap: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .marksheet-left p,
    .marksheet-right p {
        font-size: 1.02rem;
    }

    .marksheet-link-item a,
    .right-links-list a {
        font-size: 0.95rem;
    }
    .marksheet-links-grid {
        margin-left: 1rem;
    }
    .marksheet-left {
        margin-top: 6rem;
    }
    .marksheet-right {
        margin-top: 15rem;
    }
    .marksheet-container {
        gap: 1rem;
    }
}

/*------------------------------------------------------*/
/* SOL INTERNAL ASSESSMENT PAGE  */
/*------------------------------------------------------*/

.ia-section {
    width: 75%;
    padding: 2rem 1rem 3rem;
    padding-bottom: 0rem;
}

.ia-container {
    width: 100%;
    max-width: 65rem;
    margin: auto;
}

.ia-top-text {
    max-width: 65rem;
    font-size: 1.2rem;
    line-height: 2;
    color: #333333;
    margin-bottom: 2.5rem;
}

.ia-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.ia-card {
    background: #f7f7f7;
    border: 0.08rem solid #dddddd;
    padding: 1.5rem;
    box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

    .ia-card:hover {
        transform: translateY(-0.3rem);
    }

/* ICON */

.ia-icon {
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.2rem;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.green-icon {
    background: #65d6c4;
}

.gold-icon {
    background: #d9b86c;
}

.red-icon {
    background: #f28c81;
}

/* CARD CONTENT */

.ia-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #222222;
}

.ia-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #777777;
}

.ia-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #222222;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4rem;
}

.ia-btn-icon {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #d4a03d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* HEADING */

.portal-heading {
    background: #ece7ef;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
}

.portal-line {
    width: 0.3rem;
    height: 3rem;
    background: #6d2a90;
}

.portal-heading h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #222222;
}

/* CONTENT */

.portal-box p {
    max-width: 55rem;
    font-size: 1.2rem;
    line-height: 2;
    color: #333333;
    margin-bottom: 2rem;
}

@media (max-width: 576px) {
    .ia-cards {
        grid-template-columns: 1fr;
    }

    .ia-top-text,
    .portal-box p {
        font-size: 0.92rem;
        line-height: 1.9;
    }

    .portal-heading h2 {
        font-size: 1.4rem;
    }

    .ia-card h3 {
        font-size: 0.95rem;
        margin-top: -2rem;
    }

    .ia-card p {
        font-size: 0.85rem;
    }
    .ia-section {
        width: 100%;
        text-align: center;
        margin-top: -20rem;
    }
    .ia-btn {
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .ia-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .portal-heading h2 {
        font-size: 1.7rem;
    }
    .ia-section {
        width: 100%;
    }
    .ia-card {
        padding: 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .ia-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .portal-heading h2 {
        font-size: 1.9rem;
    }
    .ia-card {
        padding: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .portal-heading h2 {
        font-size: 2rem;
    }

    .ia-top-text,
    .portal-box p {
        font-size: 1.02rem;
    }
}

/*------------------------------------------------------*/
/* SOL RESULTS PAGE  */
/*------------------------------------------------------*/

.results-section {
    width: 75%;
    padding: 2rem 1rem;
}

.results-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.results-image {
    width: 40%;
    margin-left: -6rem;
}

    .results-image img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

.results-content {
    width: 36%;
    margin-top: 8rem;
}

    .results-content p {
        font-size: 1.1rem;
        line-height: 2;
        margin-bottom: 1.5rem;
    }

/* HIGHLIGHT TEXT */

.highlight-text {
    color: #4f0071;
    font-weight: 500;
}

/* BUTTON */

.results-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #222222;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 3rem;
}

.results-btn-icon {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #d4a03d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

@media (max-width: 576px) {
    .results-container {
        flex-direction: column;
        gap: 1rem;
    }

    .results-section {
        width: 100%;
        margin-top: -22rem;
    }

    .results-image {
        width: 100%;
        margin-left: -4rem;
    }

    .results-content {
        width: 100%;
        margin-top: 1rem;
    }

    .results-btn {
        margin-top: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .results-content p {
        font-size: 0.96rem;
    }

    .results-image {
        width: 85%;
        margin-left: -2rem;
        margin-top: -6rem;
    }

    .results-content {
        width: 100%;
        margin-top: 2rem;
    }
    .results-section {
        width: 100%;
    }
    .results-container {
        gap: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .results-content p {
        font-size: 1.03rem;
    }

    .results-content {
        width: 61%;
    }

    .results-btn {
        font-size: 1rem;
    }

    .results-image {
        width: 50%;
    }

    .results-container {
        gap: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .results-content p {
        font-size: 1.03rem;
    }

    .results-content {
        width: 54%;
    }

    .results-btn {
        font-size: 1rem;
    }

    .results-image {
        width: 50%;
    }
    .results-container {
        gap: 1rem;
    }
}

/*------------------------------------------------------*/
/* SOL STUDENT SERVICES PAGE  */
/*------------------------------------------------------*/

.student-services-banner {
    width: 100%;
    overflow: hidden;
}

.student-services-container {
    width: 100%;
    max-width: 100rem;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 32rem;
    padding: 2rem;
    margin-top: 1rem;
}

.student-services-content {
    width: 34%;
    margin-top: 8rem;
}

/* BREADCRUMB */

.student-breadcrumb {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
}

    .student-breadcrumb a {
        color: #333333;
        text-decoration: none;
    }

/* HEADING */

.student-services-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #111111;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* TEXT */

.student-services-content p {
    max-width: 34rem;
    font-size: 1.2rem;
    line-height: 2;
    color: #555555;
}

.student-services-image {
    width: 52%;
    display: flex;
    justify-content: flex-end;
}

    .student-services-image img {
        width: 100%;
        max-width: 44rem;
        display: block;
        object-fit: contain;
        margin-right: -12rem;
    }

@media (max-width: 576px) {
    .student-services-container {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 0rem 1rem;
    }

    .student-services-content,
    .student-services-image {
        width: 100%;
    }

        .student-services-content h1 {
            font-size: 2rem;
        }

        .student-services-content p {
            font-size: 0.92rem;
            line-height: 1.9;
            margin: auto;
        }

    .student-breadcrumb {
        margin-bottom: 1.5rem;
    }

    .student-services-image {
        justify-content: center;
    }

        .student-services-image img {
            max-width: 20rem;
            margin-right: -4rem;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .student-services-container {
        flex-direction: column;
    }

    .student-services-content {
        width: 100%;
        margin-top: 5rem;
    }

    .student-services-image img {
        margin-right: -9rem;
    }

    .student-services-image {
        width: 70%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .student-services-container {
        width: 95%;
    }

    .student-services-content h1 {
        font-size: 2rem;
    }

    .student-services-content {
        width: 46%;
        margin-top: 6rem;
    }

        .student-services-content p {
            font-size: 1.03rem;
        }

    .student-services-image img {
        margin-right: -4rem;
        max-width: 38rem;
        margin-top: -2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .student-services-container {
        width: 93%;
    }

    .student-services-content h1 {
        font-size: 3rem;
    }

    .student-services-content {
        width: 40%;
        margin-top: 8rem;
    }

        .student-services-content p {
            font-size: 1.03rem;
        }

    .student-services-image img {
        margin-right: -5rem;
        max-width: 38rem;
    }
}

.services-section {
    width: 100%;
    padding: 0rem 2rem;
    margin-top: -7rem;
    padding-bottom: 3rem;
}

.services-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

/* LEFT CONTENT */

.services-left {
    flex: 1;
}

.service-box {
    width: 100%;
}

.service-title {
    width: 80%;
    background: #ece8ee;
    border-left: 0.25rem solid #6d1b9a;
    padding: 1rem 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    max-width: 48rem;
}

.service-list {
    padding-left: 4rem;
    margin-bottom: 2rem;
}

    .service-list li {
        font-size: 1rem;
        color: #666;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

.apply-btn1 {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #222;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-left: 0rem;
}

.arrow-circle {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: #d8a63b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* RIGHT TABS */

.services-right {
    width: 16rem;
    margin-top: 4rem;
}

.services-heading {
    font-size: 1rem;
    letter-spacing: 0.15rem;
    color: #8b8b8b;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-tab-btn {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 0.08rem solid #d8d8d8;
    text-align: left;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #666;
    cursor: pointer;
    transition: 0.3s;
}

    .service-tab-btn.active {
        color: #6d1b9a;
        border-bottom: 0.08rem solid #6d1b9a;
        font-weight: 500;
    }

    .service-tab-btn:hover {
        color: #6d1b9a;
    }

.service-tab-content {
    display: none;
}

    .service-tab-content.active {
        display: block;
    }

@media (max-width: 576px) {
    .services-section {
        padding: 2rem 1rem;
        margin-top: 0rem;
    }

    .services-container {
        flex-direction: column;
        gap: 2rem;
    }

    .services-right {
        width: 100%;
        order: -1;
    }

    .service-title {
        font-size: 1rem;
        width: 100%;
    }

    .service-description {
        font-size: 0.88rem;
    }

    .service-list li {
        font-size: 0.85rem;
    }

    .service-tab-btn {
        font-size: 0.88rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .services-container {
        max-width: 60rem;
        gap: 2rem;
    }

    .services-section {
        margin-top: 5rem;
    }

    .service-title {
        width: 89%;
    }

    .services-right {
        width: 12rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .services-container {
        max-width: 60rem;
    }

    .services-section {
        margin-top: 3rem;
    }

    .service-title {
        width: 89%;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .services-container {
        max-width: 70rem;
    }

    .services-section {
        margin-top: 0rem;
    }
}

/*------------------------------------------------------*/
/* SOL ADMIT CARD PAGE  */
/*------------------------------------------------------*/

.admit-card-section {
    width: 72%;
    padding: 3rem 1rem;
}

.admit-card-container {
    width: 100%;
    max-width: 60rem;
    margin: auto;
}

.admit-top-text {
    max-width: 53rem;
    font-size: 1.2rem;
    line-height: 2;
    color: #444444;
    margin-bottom: 2rem;
}

.highlight-text {
    color: #6d2a90;
    font-weight: 500;
}

.admit-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.admit-image-wrapper {
    position: relative;
    width: 40%;
}

.admit-image {
    width: 100%;
    max-width: 22rem;
    position: relative;
    z-index: 2;
}

    .admit-image img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

/* DOT PATTERN */

.dot-pattern {
    position: absolute;
    right: -2rem;
    bottom: -1.9rem;
    width: 14rem;
    height: 5rem;
    background-image: radial-gradient(#cfcfcf 0.12rem, transparent 0.12rem);
    background-size: 0.7rem 0.7rem;
    z-index: 1;
}

.admit-info {
    width: 60%;
}

.admit-text-box {
    border-left: 0.2rem solid #7a2d97;
    padding-left: 1.2rem;
    margin-bottom: 2.5rem;
}

    .admit-text-box p {
        max-width: 22rem;
        font-size: 1rem;
        line-height: 2;
        color: #333333;
    }

/* BUTTON */

.admit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #222222;
    font-size: 1rem;
    font-weight: 500;
}

.admit-btn-icon {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: #d4a03d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .admit-content {
        flex-direction: column;
        gap: 2rem;
    }

    .admit-image-wrapper,
    .admit-info {
        width: 100%;
    }

    .admit-top-text,
    .admit-text-box p {
        font-size: 0.92rem;
        line-height: 1.9;
    }

    .admit-image {
        max-width: 100%;
    }

    .dot-pattern {
        right: -2rem;
        bottom: -2rem;
    }

    .admit-btn {
        font-size: 0.92rem;
    }

    .admit-card-section {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .admit-top-text {
        max-width: 29rem;
        font-size: 0.96rem;
    }

    .admit-text-box p {
        font-size: 0.96rem;
        max-width: 12rem;
    }

    .dot-pattern {
        right: -1.5rem;
        bottom: -1.9rem;
        width: 13rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .admit-top-text,
    .admit-text-box p {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .admit-top-text,
    .admit-text-box p {
        font-size: 1.03rem;
    }

    .admit-btn {
        font-size: 1rem;
    }

    .admit-card-section {
        width: 75%;
    }
}

/*------------------------------------------------------*/
/* SOL ACADEMIC CALENDAR PAGE  */
/*------------------------------------------------------*/

.calendar-section {
    width: 100%;
    padding: 2rem 1rem 3rem;
}

.calendar-container {
    width: 100%;
    max-width: 87rem;
    margin: auto;
    display: flex;
    gap: 15rem;
}

.calendar-sidebar {
    width: 28%;
}

.calendar-title {
    font-size: 1.1rem;
    letter-spacing: 0.12rem;
    color: #666666;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    position: relative;
}

    .calendar-title::after {
        content: "";
        width: 3.5rem;
        height: 0.14rem;
        background: #d5a33f;
        position: absolute;
        left: 0;
        bottom: -0.5rem;
    }

/* NOTICE LIST */

.calendar-notice-list {
    border-left: 0.08rem solid #d8d8d8;
}

.calendar-notice-item {
    padding: 1rem 1rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
    width: 100%;
}

    .calendar-notice-item:hover {
        color: #6d2a90;
        font-weight: 500;
    }

        .calendar-notice-item:hover::before {
            content: "";
            width: 0.18rem;
            height: 2rem;
            background: #6d2a90;
            position: absolute;
            left: -0.08rem;
            top: 50%;
            transform: translateY(-50%);
        }

.calendar-content {
    width: 72%;
}

.calendar-top-text {
    max-width: 45rem;
    font-size: 1.1rem;
    line-height: 2;
    color: #444444;
    margin-bottom: 2.5rem;
}

/* CONTENT BOX */

.calendar-content-box {
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* IMAGE */

.calendar-image-area {
    width: 68%;
    position: relative;
}

.calendar-image-shape {
    width: 100%;
    max-width: 28rem;
    overflow: hidden;
    border-top-right-radius: 4rem;
    border-bottom-left-radius: 4rem;
}

    .calendar-image-shape img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

/* GREEN SHAPE */

.green-shape {
    width: 5rem;
    height: 5rem;
    background: #53c7be;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    position: absolute;
    right: -1.5rem;
    bottom: -1rem;
}

/* TEXT CONTENT */

.calendar-info {
    width: 52%;
}

.calendar-text-box {
    border-left: 0.2rem solid #6d2a90;
    padding-left: 1.2rem;
    margin-bottom: 2rem;
}

    .calendar-text-box p {
        font-size: 1.1rem;
        line-height: 2;
        color: #333333;
        width: 84%;
    }

.highlight-text {
    color: #6d2a90;
    font-weight: 500;
}

/* BUTTON */

.calendar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #222222;
    font-size: 1rem;
    font-weight: 500;
}

.calendar-btn-icon {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: #d4a03d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .calendar-container {
        flex-direction: column;
        max-width: 100rem;
        gap: 2rem;
    }

    .calendar-sidebar {
        width: 100%;
    }

    .calendar-content {
        width: 100%;
    }

    .calendar-text-box p {
        width: 100%;
    }

    .calendar-content-box {
        flex-direction: column;
        gap: 2rem;
    }

    .calendar-image-area {
        width: 100%;
    }

    .calendar-info {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .calendar-container {
        flex-direction: column;
        max-width: 100rem;
        gap: 2rem;
    }

    .calendar-sidebar {
        width: 100%;
    }

    .calendar-content {
        width: 100%;
    }

    .calendar-text-box p {
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .calendar-top-text,
    .calendar-text-box p {
        font-size: 1rem;
        width: 93%;
    }

    .calendar-container {
        max-width: 65rem;
        gap: 4rem;
    }

    .calendar-notice-item {
        font-size: 0.9rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .calendar-top-text,
    .calendar-text-box p {
        font-size: 1.03rem;
        width: 94%;
    }

    .calendar-container {
        max-width: 70rem;
        gap: 8rem;
    }
}

/*------------------------------------------------------*/
/* SOL STUDENT JOURNEY PAGE  */
/*------------------------------------------------------*/

.journey-banner {
    width: 100%;
    overflow: hidden;
    height: 75vh;
}

.journey-container {
    width: 100%;
    min-height: 45rem;
    height: 57%;
    display: flex;
    align-items: stretch;
}

.journey-content {
    width: 55%;
    display: flex;
    align-items: center;
    padding: 4rem 8%;
}

    .journey-content::before {
        content: "";
        position: absolute;
        width: 55rem;
        height: 50rem;
        border-radius: 50%;
        top: 55%;
        left: 27%;
        transform: translate(-50%, -50%);
        background: radial-gradient( circle, rgba(214, 195, 226, 0.65) 0%, rgba(214, 195, 226, 0.25) 35%, rgba(214, 195, 226, 0) 70% );
        pointer-events: none;
    }

.journey-content-inner {
    max-width: 32rem;
    margin-top: 6rem;
}

.journey-tag {
    display: inline-block;
    background: #cbb4d5;
    color: #4f0071;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.45rem 0.8rem;
    margin-bottom: 1.5rem;
}

.journey-content h1 {
    font-size: 4rem;
    line-height: 1.15;
    font-weight: 500;
    color: #111111;
    margin-bottom: 1.8rem;
    opacity: 80%;
}

.journey-content p {
    font-size: 1rem;
    line-height: 2;
    color: #4f4f4f;
    margin-bottom: 2.5rem;
    opacity: 95%;
}

/* BUTTON */

.journey-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #222222;
    font-size: 1rem;
    font-weight: 500;
}

.journey-btn-icon {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #d3a33f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.journey-image {
    width: 45%;
}

    .journey-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

@media (max-width: 576px) {
    .journey-banner {
        height: 80vh;
    }

    .journey-container {
        flex-direction: column;
    }

    .journey-content-inner {
        margin-top: 8rem;
        text-align: center;
    }

    .journey-content,
    .journey-image {
        width: 100%;
    }

    .journey-content {
        padding: 1rem 1.5rem;
    }

    .journey-tag {
        margin-bottom: 0.4rem;
    }

    .journey-content h1 {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }

    .journey-content p {
        font-size: 0.92rem;
        line-height: 1.8;
        margin-bottom: 0.5rem;
    }

    .journey-image {
        height: 12rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .journey-content h1 {
        font-size: 3rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .journey-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .journey-content p {
        margin-bottom: 1rem;
    }

    .journey-content-inner {
        margin-top: -7rem;
    }

    .journey-tag {
        margin-bottom: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .journey-content h1 {
        font-size: 3rem;
    }

    .journey-content p {
        font-size: 1.02rem;
    }

    .journey-content-inner {
        margin-top: 0rem;
    }
}

.admission-journey-banner {
    width: 100%;
    padding: 0.5rem;
    padding-top: 2rem;
}

.journey1-content {
    width: 100%;
    background: #f6f2f8;
    border-left: 0.25rem solid #65108d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem 3rem;
}

.journey-left {
    flex: 1;
}

    .journey-left h2 {
        font-size: 2rem;
        font-weight: 500;
        color: #111111;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .journey-left p {
        max-width: 52rem;
        font-size: 1rem;
        line-height: 1.6;
        color: #666666;
    }

.journey-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.journey-intake {
    text-align: right;
}

    .journey-intake h3 {
        font-size: 1.3rem;
        color: #4f0071;
        font-weight: 500;
        margin-bottom: 0.2rem;
    }

    .journey-intake span {
        display: block;
        font-size: 0.72rem;
        letter-spacing: 0.12rem;
        color: #a09ea1;
        text-transform: uppercase;
    }

/* ICON BOX */

.journey-icon {
    width: 3.8rem;
    height: 3.8rem;
    background: #4f0071;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

    .journey-icon:hover {
        transform: translateY(-0.2rem);
    }

    .journey-icon svg {
        width: 1.4rem;
        height: 1.4rem;
    }

@media (max-width: 576px) {
    .admission-journey-banner {
        padding-top: 3rem;
    }

    .journey1-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.2rem;
    }

    .journey-right {
        flex-direction: row;
        gap: 1rem;
    }

    .journey-intake {
        text-align: center;
    }

    .journey-left h2 {
        font-size: 1.6rem;
    }

    .journey-left p {
        font-size: 0.9rem;
        line-height: 1.8;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .journey-left h2 {
        font-size: 1.8rem;
    }

    .journey-right {
        margin-left: 25rem;
    }

    .journey1-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .journey-left h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .journey-left h2 {
        font-size: 2.5rem;
    }

    .journey-left p {
        font-size: 1rem;
    }

    .journey1-content {
        padding: 3rem 3rem;
    }
}

.sol-student-journey {
    width: 100%;
    padding: 3rem 1rem;
    background: #ffffff;
}

.sol-student-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
}

.sol-student-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: #3d3d3d;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.sol-student-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.sol-student-card {
    background: #f8f7f4;
    border: 0.08rem solid #efe4cf;
    padding: 2rem;
    min-height: 20rem;
    transition: all 0.3s ease;
}

    .sol-student-card:hover {
        transform: translateY(-0.3rem);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    }

/* ICON */

.sol-card-icon {
    width: 2.8rem;
    height: 2.8rem;
    background: #5d0b82;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: #ffffff;
}

    .sol-card-icon img {
        width: 1.2rem;
        display: block;
    }

/* HEADING */

.sol-student-card h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 500;
    color: #111111;
    margin-bottom: 1rem;
}

/* TEXT */

.sol-student-card p {
    font-size: 1rem;
    line-height: 1.9;
    color: #676767;
}

@media (max-width: 576px) {
    .sol-student-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sol-student-journey {
        padding: 1rem 1rem;
    }

    .sol-student-heading {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .sol-student-card {
        min-height: auto;
    }

        .sol-student-card h3 {
            font-size: 1.5rem;
        }

        .sol-student-card p {
            font-size: 0.92rem;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .sol-student-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sol-student-heading {
        font-size: 2.1rem;
    }

    .sol-student-card {
        min-height: 19rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .sol-student-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }

    .sol-student-card h3 {
        font-size: 1.2rem;
    }

    .sol-student-card {
        padding: 1rem;
        min-height: 18rem;
    }

    .sol-student-heading {
        font-size: 2.3rem;
    }

    .sol-student-card p {
        line-height: 1.6;
        width: 100%;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .sol-student-heading {
        font-size: 2.5rem;
    }

    .sol-student-card h3 {
        font-size: 1.3rem;
    }

    .sol-student-card p {
        font-size: 1rem;
    }

    .sol-student-card {
        padding-bottom: 1rem;
    }
}

.flex-learning-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

/* BACKGROUND IMAGE */

.flex-learning-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .flex-learning-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* CONTAINER */

.flex-learning-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 94rem;
    margin: auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.flex-learning-content {
    width: 45%;
    margin-top: 1rem;
    color: #ffffff;
}

    .flex-learning-content h2 {
        font-size: 3rem;
        line-height: 1.2;
        font-weight: 500;
        letter-spacing: 0.08rem;
        margin-bottom: 2rem;
    }

    .flex-learning-content p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #d9d6d6;
        max-width: 34rem;
        margin-bottom: 2rem;
    }

/* LIST */

.flex-learning-list {
    list-style: none;
}

    .flex-learning-list li {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        color: #d9d6d6;
    }

.list-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #d7a73e;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    cursor: pointer;
}

.flex-learning-image {
    width: 40%;
    padding: 1rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

    .flex-learning-image img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

@media (max-width: 576px) {
    .flex-learning-container {
        flex-direction: column;
        padding: 0 1rem;
        gap: 0rem;
    }

    .flex-learning-content,
    .flex-learning-image {
        width: 100%;
        text-align: center;
    }

        .flex-learning-content h2 {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
        }

        .flex-learning-content p {
            font-size: 1rem;
            margin-bottom: 1rem;
        }

    .flex-learning-list li {
        font-size: 0.95rem;
    }

    .flex-learning-list {
        margin-left: 3.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .flex-learning-content h2 {
        font-size: 2rem;
    }

    .flex-learning-container {
        flex-direction: column;
        gap: 1rem;
    }

    .flex-learning-content {
        width: 100%;
    }

        .flex-learning-content p {
            font-size: 1.2rem;
            max-width: 40rem;
            margin-bottom: 1rem;
        }

    .flex-learning-image {
        width: 100%;
    }

        .flex-learning-image img {
            height: 20rem;
        }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .flex-learning-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .flex-learning-content p {
        margin-bottom: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .flex-learning-content h2 {
        font-size: 3rem;
    }

    .flex-learning-content p {
        margin-bottom: 1rem;
    }
}

.ecosystem-life {
    width: 100%;
    padding: 1.5rem 0;
    background: #ffffff;
}

.ecosystem-wrapper {
    width: 95%;
    margin: auto;
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

/* LEFT SIDE */

.video-ecosystem {
    position: relative;
    flex: 1.45;
    min-height: 22rem;
    overflow: hidden;
}

    .video-ecosystem img {
        width: 98%;
        margin-top: 2rem;
        height: 100%;
        display: block;
        object-fit: cover;
    }

.play-ecosystem {
    position: absolute;
    top: 53%;
    left: 50%;
    width: 4.5rem;
    height: 4.5rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 0.08rem solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(0.2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}

.video-content-ecosystem {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    color: #d3d2d2;
}

    .video-content-ecosystem h3 {
        font-size: 1.3rem;
        font-weight: 500;
        margin-bottom: 0.3rem;
    }

    .video-content-ecosystem p {
        font-size: 1rem;
        opacity: 0.9;
    }

/* RIGHT SIDE */

.info-ecosystem {
    flex: 0.72;
    margin-top: 2rem;
    margin-right: 25rem;
}

    .info-ecosystem h2 {
        font-size: 2rem;
        color: #4f0071;
        margin-bottom: 1.5rem;
        font-weight: 500;
        letter-spacing: 0.05rem;
    }

.ecosystem-card {
    border: 0.08rem solid #e8d9a5;
    padding: 1.25rem 1rem;
    margin-bottom: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
}

    .ecosystem-card:hover {
        background: #faf7ef;
    }

.card-ecosystem {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ecosystem-icon {
    color: #5d168a;
    font-size: 1.2rem;
}

.card-ecosystem span:last-child {
    font-size: 1.1rem;
    color: #333;
}

.ecosystem-arrow {
    color: #666;
    font-size: 1.6rem;
}

@media (max-width: 576px) {
    .ecosystem-wrapper {
        flex-direction: column;
    }

    .video-ecosystem {
        min-height: 14.5rem;
    }

    .info-ecosystem h2 {
        font-size: 1.7rem;
    }

    .info-ecosystem {
        padding: 0rem 0.8rem;
        margin-top: 0rem;
        margin-right: 0rem;
    }

    .card-ecosystem span:last-child {
        font-size: 0.95rem;
    }

    .video-ecosystem img {
        width: 100%;
        margin-top: 0rem;
    }

    .play-ecosystem {
        top: 50%;
        left: 50%;
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
    }

    .video-content-ecosystem h3 {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .video-ecosystem {
        min-height: 24rem;
    }

    .info-ecosystem h2 {
        font-size: 2rem;
        width: 100%;
    }

    .ecosystem-wrapper {
        width: 95%;
        gap: 0rem;
    }

    .info-ecosystem {
        margin-right: 0rem;
        margin-left: -8rem;
    }

    .video-ecosystem img {
        width: 75%;
    }

    .play-ecosystem {
        left: 38%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .video-ecosystem {
        min-height: 25rem;
    }

    .info-ecosystem {
        margin-right: 10rem;
    }

        .info-ecosystem h2 {
            font-size: 2.2rem;
        }

        .info-ecosystem h2 {
            font-size: 2rem;
            width: 100%;
        }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .ecosystem-wrapper {
        width: 94%;
    }

    .video-ecosystem {
        min-height: 26rem;
    }

    .info-ecosystem h2 {
        font-size: 2rem;
        width: 100%;
    }

    .info-ecosystem {
        margin-right: 15rem;
    }
}

.academic-hub {
    width: 100%;
    background: #f7f7f7;
    padding: 4rem 3rem;
}

.academic-access-container {
    width: 80%;
    margin-right: auto;
}

.academic-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.sub-heading {
    display: block;
    color: #707070;
    font-size: 0.85rem;
    letter-spacing: 0.15rem;
    margin-bottom: 0.8rem;
}

.heading-content h2 {
    color: #111;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
}

.portal-link {
    color: #4f0071;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.academic-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.academic-card {
    background: #fff;
    padding: 1.8rem;
    border-top: 0.2rem solid #4f0071;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.05);
}

.card-icon {
    color: #4f0071;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.academic-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 500;
}

.academic-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
    width: 67%;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.circle-arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #d8a63c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

@media (max-width: 576px) {
    .academic-hub {
        padding: 2rem 2rem;
    }

    .academic-access-container {
        width: 100%;
    }

    .academic-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .heading-content h2 {
        font-size: 1.4rem;
    }

    .portal-link {
        font-size: 1rem;
        margin-top: 0rem;
    }

    .academic-cards {
        grid-template-columns: 1fr;
    }

    .academic-card {
        padding: 1.5rem;
    }

        .academic-card h3 {
            font-size: 1.6rem;
        }

        .academic-card p {
            width: 100%;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .academic-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .academic-access-container {
        width: 100%;
    }

    .academic-card p {
        font-size: 0.9rem;
        width: 100%;
    }

    .heading-content h2 {
        font-size: 1.8rem;
    }

    .academic-hub {
        padding: 2rem 3rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .academic-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .academic-hub {
        padding: 2rem 3rem;
    }

    .heading-content h2 {
        font-size: 2rem;
    }

    .academic-access-container {
        width: 100%;
    }

    .academic-card {
        padding: 2rem;
    }

        .academic-card p {
            width: 100%;
            font-size: 0.9rem;
        }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .academic-card p {
        width: 100%;
    }

    .heading-content h2 {
        font-size: 2.5rem;
    }

    .academic-access-container {
        width: 89%;
    }

    .academic-card {
        padding: 2rem;
    }
}

.student-support {
    width: 100%;
    background: #ffffff;
    padding: 3rem 0;
    padding-bottom: 5rem;
}

.student-support-container {
    width: 94%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
}

/* LEFT SIDE */

.support-content {
    flex: 1;
}

    .support-content h2 {
        font-size: 2rem;
        font-weight: 500;
        color: #111;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

.support-desc {
    max-width: 34rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #5b5b5b;
    margin-bottom: 2.5rem;
}

.support-cards {
    display: flex;
    gap: 1.2rem;
}

.student-support-card {
    flex: 1;
    background: #f2edf5;
    border: 0.06rem solid #e4dcea;
    padding: 1rem 1.3rem;
}

.support-icon {
    color: #4f0071;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.student-support-card h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.student-support-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #777;
    width: 85%;
}

/* RIGHT SIDE */

.support-image {
    flex: 1;
    position: relative;
}

    .support-image img {
        width: 100%;
        height: 25rem;
        display: block;
        object-fit: cover;
    }

.experience-box {
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 15rem;
    height: 9rem;
    background: #4f0071;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .experience-box h4 {
        color: #fff;
        font-size: 3rem;
        line-height: 1;
        font-weight: 500;
    }

    .experience-box span {
        color: #fff;
        font-size: 0.65rem;
        letter-spacing: 0.1rem;
        margin-top: 0.8rem;
        margin-left: 0rem;
    }

@media (max-width: 576px) {
    .student-support-container {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        text-align: center;
    }

    .support-container {
        flex-direction: column;
    }

    .student-support {
        padding: 2rem 1.5rem;
    }

    .support-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .student-support-card p {
        width: 100%;
    }

    .support-desc {
        max-width: 100%;
        font-size: 1rem;
    }

    .support-cards {
        flex-direction: column;
    }

    .experience-box {
        width: 10rem;
        height: 7rem;
        right: 0;
        bottom: 0;
    }

        .experience-box h4 {
            font-size: 3rem;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    .support-content h2 {
        font-size: 1.8rem;
    }

    .student-support-container {
        flex-direction: column;
        gap: 1rem;
    }

    .support-desc {
        max-width: 42rem;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .student-support-card p {
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .support-container {
        flex-direction: row;
    }

    .student-support-card h3 {
        font-size: 1.4rem;
    }

    .support-content h2 {
        font-size: 2rem;
    }

    .student-support-card {
        padding: 1rem 1rem;
    }

        .student-support-card p {
            width: 100%;
            font-size: 0.9rem;
        }

    .experience-box {
        width: 15rem;
        height: 8rem;
        right: -1.5rem;
        bottom: -1.5rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .support-container {
        width: 95%;
    }

    .support-content h2 {
        font-size: 2rem;
    }

    .student-support-card {
        padding: 1rem 1rem;
    }

        .student-support-card p {
            width: 100%;
        }

    .experience-box {
        width: 15rem;
        height: 10rem;
        right: -1.5rem;
        bottom: -1.5rem;
    }
}

.academic-banner {
    width: 100%;
    overflow: hidden;
}

.announcement-bar {
    width: 100%;
    background: #e7deec;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 1rem 2%;
    gap: 1rem;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #4f0f77;
    font-size: 1rem;
    white-space: nowrap;
}

    .announcement-item i {
        font-size: 0.9rem;
    }

.banner-hero {
    position: relative;
    width: 100%;
    min-height: 30rem;
}

    .banner-hero img {
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
        object-fit: cover;
    }

.banner-content {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: auto;
    min-height: 28rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .banner-content h2 {
        color: #ffffff;
        font-size: 2.2rem;
        font-weight: 500;
        line-height: 1.3;
        margin-bottom: 2rem;
        max-width: 55rem;
    }

    .banner-content p {
        color: #d1d1d1;
        font-size: 1.2rem;
        line-height: 1.6;
        max-width: 48rem;
        margin-bottom: 2.5rem;
    }

.banner-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
}

.btn-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: #d7a63f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

@media (max-width: 576px) {
    .banner-hero {
        min-height: 18rem;
    }

    .announcement-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-content {
        padding: 0rem 0;
        min-height: 22rem;
    }

        .banner-content h2 {
            font-size: 1.6rem;
        }

        .banner-content p {
            font-size: 0.95rem;
            line-height: 1.7;
        }

    .banner-btn {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .banner-hero {
        min-height: 22rem;
    }

    .banner-content {
        min-height: 22rem;
    }

        .banner-content h2 {
            font-size: 1.8rem;
        }

        .banner-content p {
            font-size: 1rem;
        }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .banner-hero {
        min-height: 24rem;
    }

    .banner-content {
        min-height: 24rem;
    }

        .banner-content h2 {
            font-size: 2.4rem;
        }

    .announcement-item {
        font-size: 0.9rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .banner-hero {
        min-height: 26rem;
    }

    .banner-content {
        min-height: 26rem;
    }

        .banner-content h2 {
            font-size: 2.5rem;
            max-width: 56rem;
        }

        .banner-content p {
            max-width: 52rem;
        }
}

/*------------------------------------------------------*/
/* SOL Scholarships PAGE  */
/*------------------------------------------------------*/

.fss-banner {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

    .fss-banner img {
        width: 100%;
        display: block;
        object-fit: cover;
        min-height: 20rem;
        height: 100%;
    }

.fss-content {
    position: absolute;
    top: 57%;
    left: 15%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40%;
}

.fss-tag {
    display: inline-block;
    background: #b58a2f;
    color: #ffffff;
    padding: 0.35rem 0.7rem;
    font-size: 1rem;
    letter-spacing: 0.12rem;
    margin-bottom: 1rem;
}

.fss-content h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.3rem;
}

.fss-content p {
    color: #e7e3e3;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 35rem;
    margin-bottom: 1.8rem;
}

.fss-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    opacity: 85%;
}

.arrow-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #d6a63d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
}

@media (max-width: 576px) {
    .fss-banner img {
        min-height: 24rem;
    }

    .fss-content {
        width: 88%;
        left: 6%;
        top: 60%;
        text-align: center;
    }

        .fss-content h2 {
            font-size: 1.8rem;
        }

        .fss-content p {
            font-size: 0.9rem;
            line-height: 1.7;
        }

    .fss-tag {
        font-size: 0.75rem;
    }

    .fss-btn {
        font-size: 0.95rem;
    }

    .arrow-circle {
        width: 1.8rem;
        height: 1.8rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .fss-banner img {
        min-height: 26rem;
    }

    .fss-content {
        width: 100%;
        text-align: center;
        left: 0;
    }

        .fss-content p {
            max-width: 50rem;
        }

        .fss-content h2 {
            font-size: 2.4rem;
        }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .fss-banner img {
        min-height: 28rem;
    }

    .fss-content {
        width: 50%;
        top: 65%;
    }

        .fss-content h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .fss-content p {
            font-size: 1.1rem;
        }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .fss-banner img {
        min-height: 30rem;
    }

    .fss-content {
        width: 45%;
        top: 60%;
    }

        .fss-content h2 {
            font-size: 2.5rem;
        }

        .fss-content p {
            font-size: 1.1rem;
        }
}

.fss-overview {
    width: 100%;
    background: #f8f8f8;
    padding: 3rem 0;
}

.fss-container {
    width: 70%;
    margin: 0 auto;
}

    .fss-container h2 {
        font-size: 2rem;
        font-weight: 500;
        color: #111;
        margin-bottom: 2rem;
        line-height: 1.3;
    }

    .fss-container p {
        color: #555;
        font-size: 1rem;
        line-height: 1.9;
        margin-bottom: 1rem;
    }

.quote-box-fss {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #ece8df;
    border-left: 0.2rem solid #4f0071;
}

    .quote-box-fss p {
        margin: 0;
        color: #222;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.03rem;
        line-height: 1.8;
    }

.note-fss {
    font-size: 1rem !important;
    color: #7a7a7a !important;
    margin-top: 1.5rem;
}

@media (max-width: 576px) {
    .fss-overview {
        padding: 1rem 0;
    }

    .fss-container {
        width: 90%;
        text-align: center;
    }

        .fss-container h2 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
        }

        .fss-container p {
            font-size: 0.9rem;
            line-height: 1.8;
        }

    .quote-box-fss {
        padding: 1rem;
    }

        .quote-box-fss p {
            font-size: 0.85rem;
        }

    .note-fss {
        font-size: 0.75rem !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .fss-container {
        width: 90%;
        text-align: center;
    }

        .fss-container h2 {
            font-size: 2rem;
        }

        .fss-container p {
            width: 100%;
            text-align: center;
        }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .fss-container {
        width: 80%;
    }

        .fss-container h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .fss-container {
        width: 78%;
    }

        .fss-container h2 {
            font-size: 2.4rem;
        }

        .fss-container p {
            font-size: 1.02rem;
        }

    .quote-box-fss {
        padding: 1.8rem;
    }
}

.fss-eligibility-section {
    width: 100%;
    background: #f6f2f8;
    padding: 4rem 0;
}

.fss-eligibility-container {
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.fss-eligibility-card {
    width: 50%;
    background: #ffffff;
    border: 0.06rem solid #ded6e5;
    padding: 1.8rem;
}

.fss-card-icon {
    width: 2.8rem;
    height: 2.8rem;
    background: #f7f2e8;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #4f0071;
}

    .fss-card-icon i {
        color: #6b0d91;
        font-size: 1rem;
    }

.fss-eligibility-card h3 {
    font-size: 1.5rem;
    color: #1d1d1d;
    font-weight: 500;
    letter-spacing: 0.08rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.fss-eligibility-card ul {
    list-style: none;
}

.fss-eligibility-card li {
    position: relative;
    padding-left: 4rem;
    margin-top: 1.5rem;
    color: #5e5e5e;
    font-size: 1rem;
    line-height: 1.8;
}

    .fss-eligibility-card li::before {
        content: "✔";
        position: absolute;
        left: 0;
        top: 0;
        background: #4f0071;
        font-size: 1rem;
        border-radius: 50%;
        color: #ffffff;
        width: 1.5rem;
        height: 1.5rem;
    }

.fss-eligibility-content {
    flex: 1;
    text-align: right;
}

    .fss-eligibility-content h2 {
        font-size: 2rem;
        font-weight: 500;
        color: #111;
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .fss-eligibility-content p {
        color: #6d6d6d;
        font-size: 1rem;
        line-height: 1.7;
        max-width: 23rem;
        margin-left: auto;
    }

@media (max-width: 576px) {
    .fss-eligibility-section {
        padding: 1rem 0;
    }

    .fss-eligibility-container {
        flex-direction: column;
        gap: 1rem;
        width: 90%;
    }

    .fss-eligibility-card {
        width: 100%;
        padding: 1.5rem;
    }

    .fss-eligibility-content {
        text-align: center;
    }

        .fss-eligibility-content h2 {
            font-size: 1.8rem;
        }

        .fss-eligibility-content p {
            font-size: 0.9rem;
        }

    .fss-eligibility-card h3 {
        font-size: 1.28rem;
        margin-bottom: 0.5rem;
        margin-top: 1rem;
    }

    .fss-eligibility-card li {
        padding-left: 2rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .fss-eligibility-card {
        width: 60%;
    }

    .fss-eligibility-container {
        width: 90%;
        gap: 2rem;
    }

    .fss-eligibility-content h2 {
        font-size: 2.1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .fss-eligibility-container {
        width: 80%;
    }

    .fss-eligibility-card {
        width: 50%;
        padding: 2rem;
    }

    .fss-eligibility-content h2 {
        font-size: 2.5rem;
    }

    .fss-eligibility-content p {
        font-size: 1rem;
    }

    .fss-eligibility-section {
        padding: 2rem 0;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .fss-eligibility-container {
        width: 80%;
    }

    .fss-eligibility-card {
        width: 50%;
        padding: 2rem;
    }

    .fss-eligibility-content h2 {
        font-size: 2.8rem;
    }

    .fss-eligibility-content p {
        font-size: 1rem;
    }

    .fss-eligibility-section {
        padding: 2rem 0;
    }
}

.required-documents {
    width: 100%;
    padding: 2rem 1rem;
}

    .required-documents h2 {
        text-align: center;
        font-size: 2rem;
        font-weight: 500;
        margin-bottom: 2rem;
    }

.documents-grid {
    max-width: 90rem;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.document-card {
    border: 0.0625rem solid #d9d1df;
    background: #fff;
    min-height: 12rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

    .document-card svg {
        color: #4f0071;
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .document-card p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .document-card:nth-child(5) {
        grid-column: 1;
    }

    .document-card:nth-child(6) {
        grid-column: 2;
    }

    .document-card:nth-child(7) {
        grid-column: 3;
    }

@media (max-width: 576px) {
    .required-documents h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .documents-grid {
        grid-template-columns: 1fr;
        max-width: 20rem;
        gap: 1rem;
    }

    .document-card:nth-child(5),
    .document-card:nth-child(6),
    .document-card:nth-child(7) {
        grid-column: auto;
    }

    .document-card {
        min-height: 7rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .document-card:nth-child(5),
    .document-card:nth-child(6),
    .document-card:nth-child(7) {
        grid-column: auto;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .documents-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 60rem;
        gap: 1rem;
    }

    .document-card:nth-child(5) {
        grid-column: 1;
    }

    .document-card:nth-child(6) {
        grid-column: 2;
    }

    .document-card:nth-child(7) {
        grid-column: 3;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .documents-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 75rem;
    }
}

.deadline-section {
    width: 100%;
    padding: 2rem 1rem;
    background: #f6f2f8;
}

.deadline-wrapper {
    max-width: 90rem;
    margin: auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.deadline-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.deadline-card {
    background: #f3ebe7;
    min-height: 7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
}

.card-green {
    border-left: 0.3rem solid #4fd1c5;
}

.card-brown {
    border-left: 0.3rem solid #4a2418;
    background: #ebe6eb;
}

.deadline-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.deadline-content p {
    font-size: 1rem;
    color: #777;
    line-height: 1.4;
}

.deadline-date {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
}

.fss-important-box {
    width: 22rem;
    background: #4f0071;
    color: #fff;
    padding: 1rem 1.1rem;
}

.fss-important-icon {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.fss-important-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.fss-important-box ul {
    padding-left: 0.8rem;
}

.fss-important-box li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
    color: #f5f5f5;
    opacity: 90%;
}

@media (max-width: 576px) {
    .deadline-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .deadline-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .deadline-date {
        font-size: 0.9rem;
    }

    .fss-important-box {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .deadline-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .deadline-left {
        margin-top: 0rem;
        width: 100%;
    }

    .fss-important-box {
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .deadline-wrapper {
        max-width: 60rem;
        gap: 1rem;
    }

    .fss-important-box {
        width: 22rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .deadline-wrapper {
        max-width: 75rem;
        gap: 1rem;
    }

    .fss-important-box {
        width: 22rem;
    }
}

.application-cta {
    width: 100%;
    padding: 2rem 1rem;
}

.application-container {
    max-width: 75rem;
    margin: auto;
    text-align: center;
    height: 25vh;
    margin-top: 1.5rem;
}

    .application-container h2 {
        font-size: 2.5rem;
        font-weight: 500;
        color: #111111;
        line-height: 1.2;
        margin-bottom: 2rem;
        letter-spacing: 0.03rem;
    }

    .application-container p {
        max-width: 31rem;
        margin: 0 auto 3rem;
        font-size: 1rem;
        line-height: 1.6;
        color: #555555;
    }

.application-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #222222;
    font-size: 1rem;
    font-weight: 500;
}

.btn-icon {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d5a53a;
    color: #ffffff;
    font-size: 0.65rem;
    line-height: 1;
}

.application-btn:hover {
    opacity: 0.9;
}

@media (max-width: 576px) {
    .application-cta {
        padding: 1.5rem 1rem;
    }

    .application-container h2 {
        font-size: 1.4rem;
    }

    .application-container p {
        font-size: 1rem;
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .application-btn {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .application-container h2 {
        font-size: 1.8rem;
    }

    .application-container p {
        max-width: 28rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .application-container {
        margin-top: 1rem;
    }

        .application-container h2 {
            font-size: 2rem;
        }

        .application-container p {
            max-width: 33rem;
            margin: 0 auto 1.5rem;
        }

    .application-btn {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .application-container {
        max-width: 78rem;
    }

        .application-container h2 {
            font-size: 2.2rem;
        }

        .application-container p {
            max-width: 32rem;
        }
}

/*------------------------------------------------------*/
/* SOL DEGREE SERVICES APPOINTMENT PAGE  */
/*------------------------------------------------------*/
.degree-services-section {
    width: 100%;
    padding: 0;
}

.degree-services-wrapper {
    width: 100%;
    min-height: 16rem;
    display: flex;
    overflow: visible;
    height: 75vh;
}

.degree-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 10.2rem;
    margin-top: 5rem;
}

.degree-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.12rem;
    color: #777;
    margin-bottom: 1rem;
}

    .degree-label span {
        width: 0.8rem;
        height: 0.05rem;
        background: #4f0071;
    }

.degree-content h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 500;
    color: #222;
    margin-bottom: 1rem;
}

.degree-content p {
    max-width: 34rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.degree-image-area {
    width: 50%;
    position: relative;
    overflow: visible;
}

    .degree-image-area img {
        width: 96%;
        height: 80%;
        margin-top: 6.3rem;
        object-fit: cover;
        display: block;
        position: relative;
        box-shadow: 0 0 2rem rgba(0, 0, 0, 0.18), 0 0 4rem rgba(0, 0, 0, 0.14), 0 0 6rem rgba(0, 0, 0, 0.1);
    }

.floating-card {
    position: absolute;
    top: 10rem;
    left: -4rem;
    width: 20rem;
    background: #fff;
    border: 0.08rem solid #4f0071;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    z-index: 5;
    box-shadow: 0 0.2rem 0.7rem rgba(0, 0, 0, 0.12);
    border-left: 0.3rem solid #4f0071;
    opacity: 65%;
}

.degree-card-icon {
    color: #4f0071;
    font-size: 0.9rem;
}

.card-content span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.08rem;
    color: #777;
    margin-bottom: 0.2rem;
}

.card-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #222;
}

@media (max-width: 576px) {
    .degree-services-wrapper {
        flex-direction: column;
    }

    .degree-content,
    .degree-image-area {
        width: 100%;
    }

    .degree-label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        margin-left: 5.5rem;
    }

    .degree-content {
        padding: 3rem 1.2rem;
        text-align: center;
    }

        .degree-content p {
            font-size: 1rem;
            line-height: 1.6;
        }

        .degree-content h2 {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
        }

    .degree-image-area {
        min-height: 18rem;
        padding: 0.5rem;
    }

    .floating-card {
        left: 3.5rem;
        top: -1.5rem;
        width: 18rem;
    }

    .degree-image-area img {
        width: 100%;
        margin-top: 0rem;
    }

    .image-overlay {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .degree-content {
        padding: 2.5rem;
    }

        .degree-content h2 {
            font-size: 2rem;
        }

    .floating-card {
        left: -4rem;
    }

    .degree-content p {
        font-size: 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .degree-services-wrapper {
        max-width: 85rem;
        margin: auto;
    }

    .degree-content {
        padding: 3rem 6rem;
        margin-top: 10rem;
    }

        .degree-content p {
            font-size: 1rem;
        }

        .degree-content h2 {
            font-size: 2.5rem;
        }

    .floating-card {
        left: -4rem;
        top: 10rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .degree-services-wrapper {
        max-width: 85rem;
        margin: auto;
    }

    .degree-content {
        padding: 3rem 6rem;
        margin-top: 10rem;
    }

        .degree-content h2 {
            font-size: 2.5rem;
        }

    .floating-card {
        left: -4rem;
        top: 10rem;
    }
}

.service-section {
    width: 100%;
    max-width: 100rem;
    margin: auto;
    padding: 3rem 2rem;
}

.tab-headings {
    display: flex;
    align-items: center;
    gap: 2rem;
    border-bottom: 0.08rem solid #e3e3e3;
    margin-bottom: 3rem;
}

.deg-tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 600;
    color: #a0a0a0;
    padding-bottom: 0.8rem;
    border-bottom: 0.15rem solid transparent;
    transition: all 0.3s ease;
}

    .deg-tab-btn.active {
        color: #4f0071;
        border-bottom-color: #4f0071;
    }

.deg-tab-content {
    display: none;
}

    .deg-tab-content.active {
        display: block;
    }

.service-grid {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 4rem;
}

.service-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #222;
    margin-bottom: 2rem;
    max-width: 69%;
}

.service-list {
    margin-left: 1.5rem;
}

    .service-list li {
        margin-bottom: 1rem;
        color: #666;
        font-size: 1rem;
    }

.query-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
    text-decoration: none;
    color: #222;
    font-size: 1.8rem;
    font-weight: 500;
}

.arrow-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #d4a640;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.service-right {
    text-align: right;
}

.notice-title {
    font-size: 1rem;
    letter-spacing: 0.15rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 2rem;
}

.notice-line {
    width: 2rem;
    height: 0.12rem;
    background: #d4a640;
    margin-left: auto;
    margin-top: 0.5rem;
}

.notice-box {
    padding: 0.8rem 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0rem;
    text-align: right;
    width: 64%;
    margin-left: 10rem;
}

    .notice-box.active-notice {
        color: #4f0071;
        border-right: 0.18rem solid #4f0071;
    }

@media (max-width: 576px) {
    .service-section {
        padding: 5rem 1rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-right {
        text-align: left;
    }

    .notice-line {
        margin-left: 0;
    }

    .query-btn {
        font-size: 1.3rem;
        margin-top: 0rem;
    }

    .service-desc {
        max-width: 100%;
        text-align: center;
    }

    .service-list {
        margin-left: 1rem;
    }

    .notice-title {
        margin-bottom: 1rem;
    }

    .notice-box {
        width: 94%;
        margin-left: 0rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .service-grid {
        grid-template-columns: 55% 45%;
        gap: 1rem;
    }

    .service-desc {
        max-width: 100%;
        font-size: 1rem;
    }

    .notice-box {
        width: 75%;
        margin-left: 4rem;
    }

    .notice-title {
        margin-right: 1rem;
    }

    .query-btn {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service-section {
        max-width: 65rem;
    }

    .notice-box {
        width: 100%;
        margin-left: -4rem;
    }

    .notice-title {
        margin-right: 4.5rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .service-section {
        max-width: 75rem;
    }

    .notice-box {
        width: 89%;
        margin-left: -2rem;
    }

    .notice-title {
        margin-right: 4.5rem;
    }
}

/*------------------------------------------------------*/
/* SOL PHOTO VIDEO GALLERY PAGE  */
/*------------------------------------------------------*/
.hero-gallery {
    position: relative;
    z-index: 1;
    /* height: 85vh; */
    height: 100vh;
    width: 100%;
    /* overflow: hidden;*/
}

.gallery-section {
    width: 90%;
    max-width: 100%;
    margin: auto;
    padding: 2rem;
}

.gallery-container {
    margin-top: 10rem;
}

.gallery-heading {
    margin-bottom: 1.5rem;
}

    .gallery-heading span {
        display: block;
        font-size: 1rem;
        letter-spacing: 0.12rem;
        color: #666;
        margin-bottom: 0.35rem;
    }

    .gallery-heading h2 {
        font-size: 2rem;
        font-weight: 500;
        color: #111;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.gallery-large {
    height: 42rem;
}

.gallery-right {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 1.25rem;
}

.gallery-top {
    height: 22rem;
}

.gallery-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

    .gallery-bottom .gallery-card {
        height: 18.75rem;
    }

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
}

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: 0.4s;
    }

    .gallery-card:hover img {
        transform: scale(1.08);
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

    .gallery-overlay h3 {
        color: #fff;
        font-size: 1.4rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .gallery-overlay a {
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
    }

    .gallery-overlay.small h4 {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 1.4;
        opacity: 85%;
    }

@media (max-width: 576px) {
    .gallery-section {
        padding: 1rem;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-large {
        height: 20rem;
    }

    .gallery-top {
        height: 14rem;
    }

    .gallery-bottom {
        grid-template-columns: 1fr;
    }

        .gallery-bottom .gallery-card {
            height: 10rem;
        }

    .gallery-heading h2 {
        font-size: 1.5rem;
    }

    .gallery-container {
        margin-top: 8rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-gallery {
        height: 85vh;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-container {
        margin-top: 6rem;
    }

    .gallery-section {
        width: 100%;
    }

    .gallery-top {
        height: 18rem;
    }

    .gallery-large {
        height: 38rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .gallery-large {
        height: 35rem;
    }

    .gallery-container {
        margin-top: 8rem;
    }

    .gallery-top {
        height: 15rem;
    }

    .gallery-bottom .gallery-card {
        height: 18.75rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .gallery-section {
        width: 95%;
    }

    .gallery-container {
        margin-top: 9rem;
    }

    .gallery-large {
        height: 40rem;
    }

    .gallery-top {
        height: 19rem;
    }

    .gallery-right {
        gap: 0rem;
    }

    .gallery-bottom .gallery-card {
        height: 20rem;
    }
}

.media-showcase {
    background: #f6f2f8;
    padding: 2rem 0;
    margin-top: 3rem;
}

.media-container {
    width: 90%;
    margin: auto;
}

.media-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

    .media-header h2 {
        font-size: 2rem;
        color: #2b2b2b;
        font-weight: 500;
    }

.media-tabs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

    .media-tabs button {
        border: none;
        background: #f7f3f6;
        color: #666;
        cursor: pointer;
        padding: 0.5rem 1.5rem;
        border-radius: 2rem;
        font-size: 1.2rem;
    }

        .media-tabs button.active {
            background: #5a008a;
            color: #fff;
        }

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.media-card {
    position: relative;
    border-radius: 0.7rem;
    overflow: hidden;
    height: 20rem;
}

    .media-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.media-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: #9f0d10;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.media-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 0.8rem;
}

    .media-overlay p {
        color: #fff;
        font-size: 1rem;
    }

.see-more {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1.2rem;
}

    .see-more span {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: #d7a32f;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.media-tab-btn {
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

    .media-tab-btn.active {
        background: #4f0071;
        color: #fff;
    }

@media (max-width: 576px) {
    .media-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .media-card {
        height: 18rem;
    }

    .media-tabs {
        width: 100%;
        gap: 0.1rem;
    }

    .media-showcase {
        margin-top: 28rem;
    }

    .media-header h2 {
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .media-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .media-card {
        height: 14rem;
    }

    .media-showcase {
        margin-top: 11rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .media-container {
        max-width: 78rem;
    }

    .media-showcase {
        margin-top: 9rem;
    }

    .media-card {
        height: 14.5rem;
    }
}

.moments-section {
    width: 90%;
    margin: auto;
    padding: 3rem 0;
}

.moments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

    .moments-header h2 {
        font-size: 2rem;
        font-weight: 500;
    }

.year-tabs {
    display: flex;
    gap: 2rem;
}

.year-tab {
    border: none;
    cursor: pointer;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    background: #f2f2f2;
}

    .year-tab.active {
        background: #5a008a;
        color: #fff;
    }

.media-timeline-content {
    display: none;
}

    .media-timeline-content.active {
        display: block;
    }

.media-timeline-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
}

    .media-timeline-wrapper::-webkit-scrollbar {
        display: none;
    }

.timeline-track {
    display: flex;
    gap: 4rem;
    min-width: max-content;
    padding-top: 2rem;
}

.timeline-card {
    position: relative;
    min-width: 20rem;
    height: 22rem;
}

.media-dot {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.8rem;
    height: 0.8rem;
    background: #5a008a;
    border-radius: 50%;
}

.media-dot2 {
    margin-top: 3rem;
}

.card-box {
    border: 0.08rem solid #7d33a9;
    border-left: 0.3rem solid #4f0071;
    border-radius: 0.6rem;
    padding: 1.5rem;
    background: #fff;
}

.media-box2 {
    margin-top: 3rem;
}

.card-box small {
    display: block;
    color: #888;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.card-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.card-box img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    border-radius: 0.4rem;
}

.timeline-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 0.08rem solid #ccc;
    background: #fff;
    cursor: pointer;
}

    .nav-btn:hover {
        background: #595959;
        color: #ffffff;
    }

@media (max-width: 576px) {
    .moments-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-card {
        min-width: 16rem;
    }

    .moments-header h2 {
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .timeline-card {
        min-width: 14rem;
    }

    .year-tabs {
        gap: 1rem;
    }

    .moments-header h2 {
        font-size: 1.8rem;
    }

    .timeline-track {
        gap: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .timeline-card {
        min-width: 15rem;
    }

    .moments-header {
        margin-bottom: 1rem;
    }

    .timeline-track {
        gap: 2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .timeline-card {
        min-width: 16rem;
    }

    .timeline-track {
        gap: 2.5rem;
    }
}

/*------------------------------------------------------*/
/* SOL PHOTO VIDEO GALLERY 2 PAGE  */
/*------------------------------------------------------*/
.hero-gallery2 {
    position: relative;
    z-index: 1;
    /* height: 85vh; */
    height: 50vh;
    width: 100%;
    /* overflow: hidden;*/
}

.gallery2-banner {
    width: 100%;
    padding: 12rem 1rem;
    padding-bottom: 0rem;
}

.gallery2-container {
    max-width: 50rem;
    margin: auto;
    text-align: center;
}

    .gallery2-container h2 {
        font-size: 3rem;
        font-weight: 500;
        color: #000;
        line-height: 1.1;
        margin-bottom: 1rem;
        letter-spacing: 0.03rem;
    }

    .gallery2-container p {
        max-width: 49rem;
        margin: auto;
        font-size: 1.4rem;
        line-height: 1.6;
        color: #4d4d4d;
        font-weight: 500;
    }

@media (max-width: 576px) {
    .hero-gallery2 {
        height: 50vh;
    }

    .gallery2-banner {
        padding: 10rem 1rem;
        padding-bottom: 2rem;
    }

    .gallery2-container h2 {
        font-size: 2rem;
    }

    .gallery2-container p {
        max-width: 20rem;
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-gallery2 {
        height: 40vh;
    }

    .gallery2-banner {
        padding: 10rem 1rem;
        padding-bottom: 3rem;
    }

    .gallery2-container h2 {
        font-size: 3rem;
    }

    .gallery2-container p {
        max-width: 42rem;
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .gallery2-banner {
        padding: 10rem 1rem;
        padding-bottom: 3rem;
    }

    .gallery2-container h2 {
        font-size: 3rem;
    }

    .gallery2-container p {
        max-width: 42rem;
        font-size: 1.2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .gallery2-banner {
        padding: 11rem 1rem;
        padding-bottom: 5rem;
    }

    .gallery2-container h2 {
        font-size: 3rem;
    }

    .gallery2-container p {
        max-width: 42rem;
        font-size: 1.2rem;
    }
}

.photo-gallery-section {
    width: 90%;
    padding: 2rem;
    margin: auto;
}

.gallery2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 3rem;
}

.gallery2-card {
    width: 100%;
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

    .gallery-image img {
        width: 100%;
        height: 15rem;
        display: block;
        object-fit: cover;
    }

.photo-count {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #d9d9d9;
    color: #222;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.8rem;
    border-radius: 2rem;
    transition: 0.3s;
}

    .photo-count:hover {
        background: #b48bc8;
        color: #fff;
    }

.gallery-content {
    position: relative;
    padding-left: 1rem;
    margin-top: 0.9rem;
}

    .gallery-content::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0.3rem;
        height: 4rem;
        background: #4f0071;
    }

    .gallery-content h3 {
        font-size: 1.5rem;
        line-height: 1.3;
        font-weight: 500;
        color: #1e1e1e;
        margin-bottom: 0.7rem;
    }

.gallery-date {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.12rem;
    color: #777;
    font-weight: 500;
}

@media (max-width: 576px) {
    .photo-gallery-section {
        padding: 1rem;
        padding-bottom: 3rem;
    }

    .gallery2-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-content h3 {
        font-size: 1.4rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .photo-gallery-section {
        padding-bottom: 3rem;
    }

    .gallery2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }

    .gallery-content h3 {
        font-size: 1.2rem;
    }

    .gallery-content::before {
        width: 0.25rem;
        height: 3.5rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .photo-gallery-section {
        padding-bottom: 3rem;
    }

    .gallery2-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem 2rem;
    }

    .gallery-content h3 {
        font-size: 1.2rem;
    }

    .gallery-content::before {
        width: 0.25rem;
        height: 3.5rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .photo-gallery-section {
        padding-bottom: 3rem;
    }

    .gallery2-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem 2rem;
    }

    .gallery-content h3 {
        font-size: 1.2rem;
    }

    .gallery-content::before {
        width: 0.25rem;
        height: 5rem;
    }
}

/*------------------------------------------------------*/
/* SOL PHOTO VIDEO GALLERY INNER PAGE  */
/*------------------------------------------------------*/
.galleryinner-date {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.12rem;
    color: #777;
    font-weight: 500;
}

.image-inner-area {
    border: 0.1rem solid #dfd1b3;
    padding: 0.5rem;
}

.galleryinner-grid {
    margin-top: -10rem;
}

@media (max-width: 576px) {
    .galleryinner-grid {
        margin-top: -2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .galleryinner-grid {
        margin-top: -5rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .galleryinner-grid {
        margin-top: -3rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .galleryinner-grid {
        margin-top: -5rem;
    }
}

/*------------------------------------------------------*/
/* SOL STUDENT SUPPORT SERVICES PAGE  */
/*------------------------------------------------------*/
.grievance-section {
    width: 100%;
    padding: 2rem 1rem;
}

.grievance-card {
    max-width: 93%;
    margin: auto;
    background: #ece4ef;
    border-radius: 1.2rem;
    display: grid;
    grid-template-columns: 42% 55.5%;
    gap: 2.5rem;
    padding: 2rem;
    align-items: center;
    border: 0.06rem solid rgba(0, 0, 0, 0.08);
}

.grievance-image {
    width: 100%;
    height: 25rem;
}

    .grievance-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-radius: 0.9rem;
    }

.grievance-content {
    width: 100%;
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.heading-block h2 {
    color: #4f0071;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.underline {
    display: block;
    width: 7rem;
    height: 0.3rem;
    background: #d6aa43;
}

.sol-name {
    text-align: right;
}

    .sol-name h3 {
        color: #333333;
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 0.35rem;
    }

    .sol-name p {
        color: #666666;
        font-size: 1rem;
    }

.description {
    margin-top: 8.2rem;
    color: #444444;
    font-size: 1.2rem;
    line-height: 1.8;
    text-transform: capitalize;
    width: 100%;
}

@media (max-width: 576px) {
    .grievance-card {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 100%;
        padding: 1rem;
    }

    .top-row {
        flex-direction: column;
    }

    .grievance-image {
        min-height: 16rem;
    }

    .heading-block h2 {
        font-size: 1.5rem;
        margin-left: 3rem;
        margin-bottom: 0.4rem;
    }

    .description {
        margin-top: 1rem;
        font-size: 1rem;
        line-height: 1.6;
        width: 100%;
        text-align: center;
    }

    .underline {
        height: 0.2rem;
        margin-left: 6.5rem;
    }

    .sol-name {
        text-align: center;
        margin-left: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .grievance-card {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .grievance-image {
        min-height: 16rem;
    }

    .description {
        margin-top: 2rem;
        font-size: 1.1rem;
        line-height: 1.6;
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .grievance-card {
        padding: 1.5rem;
        grid-template-columns: 42% 53.5%;
    }

    .grievance-image {
        min-height: 18rem;
    }

    .description {
        max-width: 100%;
        margin-top: 4rem;
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .grievance-card {
        padding: 1.5rem;
        grid-template-columns: 42% 54.5%;
    }

    .grievance-image {
        min-height: 18rem;
    }

    .description {
        max-width: 100%;
        margin-top: 7.2rem;
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

.colgram-section {
    width: 100%;
    padding: 1.5rem;
}

.colgram-wrapper {
    max-width: 93%;
    margin: auto;
    border: 0.0625rem solid #7c7c7c;
    border-radius: 0.4rem;
    padding: 1rem;
}

.main-heading {
    font-size: 2rem;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
    max-width: 71rem;
    margin-left: 8rem;
}

.colgram-heading-line {
    width: 100%;
    height: 0.0625rem;
    background: #9f9f9f;
    margin: 1.5rem 0 2rem;
}

.colgram-content-area {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-height: 32rem;
}

.colgram-image-box {
    width: 50%;
}

    .colgram-image-box img {
        height: 35rem;
        width: 87%;
        display: block;
        border-radius: 0.3rem;
        margin-left: 8rem;
    }

.info-area {
    width: 48%;
    padding-top: 1rem;
}

.title-block h3 {
    color: #4f0071;
    font-size: 1.8rem;
    font-weight: 500;
    margin-left: 2rem;
}

.title-block span {
    display: block;
    width: 6rem;
    height: 0.25rem;
    background: #d4a63f;
    margin-top: 0.6rem;
    margin-bottom: 1rem;
    margin-left: 2rem;
}

.info-card {
    background: #f8f8f8;
    border: 0.0625rem solid #9b9b9b;
    border-radius: 0.3rem;
    padding: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
}

    .info-card p {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #555;
    }

.top-card {
    margin-top: 2rem;
    margin-left: -5rem;
    width: 92%;
}

.bottom-card {
    position: absolute;
    bottom: 3rem;
    right: 9rem;
    width: 45%;
}

    .bottom-card strong {
        color: #4f0071;
    }

.visit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: -2rem;
    text-decoration: none;
    color: #333;
    font-size: 1.3rem;
    font-weight: 500;
    margin-left: 54%;
    margin-bottom: -2rem;
}

    .visit-link span {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: #d4a63f;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
    }

@media (max-width: 576px) {
    .main-heading {
        font-size: 1.1rem;
        margin-left: 0rem;
        text-align: center;
    }

    .colgram-content-area {
        flex-direction: column;
    }

    .title-block h3 {
        font-size: 1.5rem;
        margin-left: 7rem;
    }

    .title-block span {
        width: 3rem;
        margin-left: 9rem;
    }

    .colgram-image-box {
        width: 95%;
    }

        .colgram-image-box img {
            height: 20rem;
            width: 100%;
            margin-left: 0.5rem;
        }

    .top-card {
        margin-top: 1rem;
        margin-left: 0rem;
        width: 100%;
        padding: 0.5rem;
    }

    .info-area {
        width: 100%;
        padding-top: 0rem;
    }

    .bottom-card {
        bottom: -19rem;
        right: 0rem;
        width: 100%;
    }

    .visit-link {
        margin-top: 20rem;
        margin-left: 5rem;
        margin-bottom: 0rem;
        font-size: 1.1rem;
    }

    .info-card p {
        text-align: center;
        width: 100%;
        line-height: 1.6;
        font-size: 1rem;
    }

    .colgram-section {
        width: 100%;
        padding: 0rem;
    }

    .colgram-heading-line {
        margin: 1rem 0 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .main-heading {
        font-size: 1.5rem;
        margin-left: 0rem;
    }

    .colgram-content-area {
        flex-direction: column;
    }

    .title-block h3 {
        font-size: 1.6rem;
    }

    .colgram-image-box {
        width: 95%;
    }

        .colgram-image-box img {
            height: 25rem;
            width: 100%;
            margin-left: 1rem;
        }

    .top-card {
        margin-top: 1rem;
        margin-left: 1rem;
        width: 46%;
    }

    .info-area {
        width: 100%;
    }

    .bottom-card {
        bottom: -3rem;
        right: 1rem;
        width: 48%;
    }

    .visit-link {
        margin-top: 1rem;
        margin-left: 5%;
        margin-bottom: 0rem;
    }

    .info-card p {
        text-align: center;
        width: 100%;
        line-height: 1.6;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .main-heading {
        font-size: 1.6rem;
        margin-left: 1rem;
    }

    .colgram-image-box img {
        margin-left: 0rem;
        width: 95%;
        height: 32rem;
    }

    .title-block h3 {
        font-size: 2rem;
        margin-left: 0rem;
    }

    .title-block span {
        margin-left: 0rem;
    }

    .top-card {
        margin-left: -10rem;
        width: 135%;
    }

    .bottom-card {
        right: 0rem;
        width: 65%;
        bottom: 1.5rem;
    }

    .visit-link {
        margin-left: 52%;
        margin-bottom: 0rem;
    }

    .info-card p {
        font-size: 1.05rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .main-heading {
        font-size: 1.9rem;
        margin-left: 1rem;
    }

    .colgram-image-box img {
        margin-left: 0rem;
        width: 100%;
    }

    .title-block h3 {
        font-size: 2rem;
        margin-left: 0rem;
    }

    .title-block span {
        margin-left: 0rem;
    }

    .top-card {
        margin-left: -11.3rem;
        width: 132%;
    }

    .bottom-card {
        right: 0rem;
        width: 65%;
    }

    .visit-link {
        margin-left: 52%;
        margin-bottom: 0rem;
    }
}

.call-centre-section {
    width: 100%;
    padding: 2rem 1.5rem;
}

.call-centre-container {
    max-width: 93%;
    margin: auto;
}

.top-grid {
    display: grid;
    grid-template-columns: 57% 40%;
    gap: 3%;
    align-items: start;
}

.left-image img {
    width: 100%;
    height: 30rem;
    display: block;
    border-radius: 1.2rem;
}

.right-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.top-content h2 {
    font-size: 1.5rem;
    color: #222;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 500;
}

.top-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.building-image {
    border-radius: 1.2rem;
    overflow: hidden;
}

    .building-image img {
        width: 100%;
        height: 27rem;
        display: block;
        border-radius: 1.2rem;
    }

.bottom-grid {
    display: grid;
    grid-template-columns: 57% 41%;
    gap: 3%;
    margin-top: -9rem;
}

.call-centre-info h3 {
    color: #5b148f;
    font-size: 2rem;
    font-weight: 500;
}

.yellow-line {
    display: block;
    width: 6.5rem;
    height: 0.25rem;
    background: #d4a63f;
    margin: 0.5rem 0 1rem;
}

.call-centre-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.9;
    max-width: 95%;
}

@media (max-width: 576px) {
    .call-centre-section {
        padding: 2rem 0rem;
    }

    .top-content h2 {
        font-size: 1.3rem;
        margin-top: 1rem;
        text-align: center;
    }

    .top-grid {
        display: flex;
        flex-direction: column;
    }

    .call-centre-info h3 {
        font-size: 1.5rem;
        margin-left: 7.5rem;
    }

    .left-image img {
        height: 20rem;
    }

    .issue-info h4 {
        font-size: 1.6rem;
    }

    .top-content p {
        line-height: 1.6;
        text-align: center;
        font-size: 1rem;
    }

    .building-image img {
        height: 18rem;
    }

    .bottom-grid {
        grid-template-columns: 100% 0%;
        margin-top: 1rem;
    }

    .call-centre-info p {
        line-height: 1.6;
        max-width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .yellow-line {
        width: 3.5rem;
        margin: 0.5rem 0 0.7rem;
        margin-left: 9.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .top-content h2 {
        font-size: 1.48rem;
        margin-top: 1rem;
    }

    .top-grid {
        display: flex;
        flex-direction: column;
    }

    .call-centre-info h3 {
        font-size: 1.8rem;
    }

    .left-image img {
        height: 26rem;
    }

    .issue-info h4 {
        font-size: 1.6rem;
    }

    .top-content p {
        line-height: 1.6;
        text-align: center;
    }

    .building-image img {
        height: 22rem;
    }

    .bottom-grid {
        grid-template-columns: 100% 0%;
        margin-top: 1rem;
    }

    .call-centre-info p {
        line-height: 1.6;
        max-width: 100%;
        text-align: center;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .top-content h2 {
        font-size: 1.6rem;
    }

    .call-centre-info p {
        max-width: 100%;
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .call-centre-info h3 {
        font-size: 1.8rem;
    }

    .bottom-grid {
        margin-top: -9rem;
    }

    .issue-info h4 {
        font-size: 2rem;
    }

    .top-content p {
        line-height: 1.6;
        font-size: 1rem;
    }

    .building-image img {
        height: 24rem;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .top-content h2 {
        font-size: 1.8rem;
    }

    .call-centre-info p {
        max-width: 97%;
    }

    .call-centre-info h3 {
        font-size: 2.2rem;
    }

    .bottom-grid {
        margin-top: -11rem;
    }

    .issue-info h4 {
        font-size: 2rem;
    }

    .top-content p {
        line-height: 1.6;
    }

    .building-image img {
        height: 24rem;
    }
}

