body {
    font-family: 'Raleway', sans-serif;
    background-color: #f4f7fa;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.hero-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

#carouselExampleAutoplaying,
.carousel-item {
    height: 70vh;
    min-height: 500px;
}

.carousel-item img {
    height: 70vh;
    min-height: 500px;
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 7s ease-in-out; 
}

.carousel-item.active img {
    transform: scale(1.08);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55); 
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 0 20px;
    text-align: center;
}

.carousel-caption h1,
.carousel-caption p {
    max-width: 800px;
    width: 100%;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    opacity: 0; 
}

.carousel-caption p {
    font-size: 1.25rem;
    color: #f8f9fa;
    margin-bottom: 25px;
    opacity: 0; 
}

.carousel-item.active .animate-title {
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.carousel-item.active .animate-subtitle {
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.carousel-item.active .animate-btn {
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-btn {
    padding: 10px 30px;
    font-size: 1.1rem;
    color: #ffffff;
    background-color: #009FDF;
    border: none;
    border-radius: 4px;
    opacity: 0; /* Hidden initially for animation */
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-btn:hover {
    color: #ffffff;
    background-color: #007bb5;
    transform: translateY(-3px); /* Slight lift on hover */
}

/* Responsiveness for Mobile Devices */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2.2rem;
    }
    .carousel-caption p {
        font-size: 1.1rem;
    }
    #carouselExampleAutoplaying,
    .carousel-item,
    .carousel-item img {
        height: 60vh;
        min-height: 400px;
    }
}


/* --- ABOUT US SECTION --- */
.about-wrapper {
    padding: 80px 0;
    background-color: #f4f7fa;
    position: relative;
}

.about-text-content {
    padding-right: 40px;
}

.about-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.about-img-stack {
    position: relative;
    height: 400px;
}

#carouselExampleAutoplaying2 {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 39, 88, 0.15);
    height: 100%;
    position: relative;
    z-index: 2;
}

#carouselExampleAutoplaying2 img {
    height: 100%;
    object-fit: cover;
}

.img-accent-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #009FDF 0%, #2C2758 100%);
    border-radius: 24px;
    z-index: 1;
}


/* --- MISSION, VISION & NEWS (Split Layout) --- */
.mv-news-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.mission-vision-box {
    background: #f8faff;
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 30px;
    border-left: 6px solid #2C2758;
    transition: all 0.3s ease;
}

.mission-vision-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mission-vision-box:nth-child(2) {
    border-left-color: #E31836;
}

.mission-vision-box h3 {
    font-size: 1.8rem;
    color: #2C2758;
    margin-bottom: 15px;
}


/* Noticeboard Dashboard */
.noticeboard-dashboard {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(44, 39, 88, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #eef2f6;
}

.dashboard-header {
    background: #2C2758;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-view-all {
    background: #009FDF;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-view-all:hover {
    background: #FFF000;
    color: #2C2758;
}

.marquee-wrapper {
    padding: 20px;
    flex-grow: 1;
    background: #fafbfc;
}

.news-item {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid #009FDF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: scale(1.02);
    border-left-color: #E31836;
}

.news-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2C2758;
    margin: 0 0 5px 0;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #777;
}

.news-badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.category-academic {
    background-color: #009FDF;
}

.category-announcement {
    background-color: #FFF000;
    color: #2C2758;
}

.category-sports {
    background-color: #81ca00;
}

.category-holiday {
    background-color: #E31836;
}


/* --- SHINING STARS --- */
.stars-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C2758 0%, #171430 100%);
    color: #ffffff;
    position: relative;
}

.stars-section .section-header {
    color: #ffffff;
}

#slider {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
}

#slider .slides {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.star-card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.star-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.star-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #009FDF;
    margin-bottom: 15px;
}

.star-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.star-card p {
    color: #009FDF;
    font-weight: 600;
    margin: 0;
}


/* --- ACHIEVEMENTS --- */
.achievements-section {
    padding: 80px 0;
    background: #f4f7fa;
}

.tab-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.achievement-btns {
    background: #ffffff;
    color: #2C2758;
    border: 2px solid transparent;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.achievement-btns.achievement-selected {
    background: #009FDF;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 159, 223, 0.3);
    transform: translateY(-3px);
}

.achievement-btns.achievement-unselected:hover {
    border-color: #009FDF;
    color: #009FDF;
}

.achievement-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(44, 39, 88, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2C2758, #009FDF);
    transition: height 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 39, 88, 0.1);
}

.achievement-card:hover::before {
    height: 8px;
    background: linear-gradient(90deg, #E31836, #FFF000);
}

.ach-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.ach-header h6 {
    font-size: 1.2rem;
    color: #2C2758;
    margin: 0;
}

.ach-year {
    background: #f0f4f8;
    color: #009FDF;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
}

.achievement-card h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.achievement-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.btn-global-primary {
    display: inline-block;
    background: #E31836;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(227, 24, 54, 0.3);
    margin-top: 30px;
}

.btn-global-primary:hover {
    background: #2C2758;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(44, 39, 88, 0.3);
}

@media (max-width: 992px) {
    .about-text-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    #slider .star-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .section-header {
        font-size: 2rem;
    }

    #slider .star-card {
        flex: 0 0 100%;
    }
}


/* BACK TO TOP */
#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background-color: #2C2758;
    /* Logo Navy */
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(44, 39, 88, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
}

#backToTopBtn .btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 18px;
}

#backToTopBtn:hover {
    background-color: #009FDF;
    /* Logo Cyan on Hover */
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 159, 223, 0.4);
}

#backToTopBtn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #009FDF;
    top: 0;
    left: 0;
    animation: btnPulse 2s infinite;
    z-index: -1;
    opacity: 0;
}

@keyframes btnPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    fill: none;
    stroke: #E31836;
    stroke-width: 4;
    stroke-dasharray: 307.919, 307.919;
    stroke-dashoffset: 307.919;
    transition: stroke-dashoffset 10ms linear;
    display: none;
}

@media (max-width: 768px) {
    #backToTopBtn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}


/*Achievements and Awards*/
#achievements-part {
    background-image: url('assets/images/achievements-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding-top: 70px;
    padding-bottom: 90px;
    position: relative;
}

.container-content {
    position: relative;
    z-index: 1;
}

.shinning_stars {
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    font-size: 46px;
    color: #2C2758;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-description {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    color: #555;
    margin-top: 20px;
    font-size: 1.1rem;
}

.span-border {
    display: inline-block;
    position: relative;
    text-align: center;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2C2758, #009FDF, #E31836);
    border-radius: 10px;
    margin-bottom: 20px;
}

#awards-container {
    border-radius: 50px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(44, 39, 88, 0.1);
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.achievement-btns {
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.achievement-btns.achievement-selected {
    background: linear-gradient(135deg, #009FDF 0%, #0082B8 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 159, 223, 0.4);
    transform: translateY(-2px);
}

.achievement-btns.achievement-unselected {
    background-color: transparent;
    color: #2C2758;
}

.achievement-btns.achievement-unselected:hover {
    background-color: #f0f4f8;
    color: #2C2758;
}

.achievement-outer-container {
    margin-bottom: 2rem;
}

.achievment-inner-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(44, 39, 88, 0.05);
}

.achievment-inner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2C2758, #009FDF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.achievment-inner-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(44, 39, 88, 0.1);
}

.achievment-inner-container:hover::before {
    transform: scaleX(1);
}

.achievement-name-with-year {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #e0e0e0;
}

.achievement-name-with-year h6 {
    font-size: 1.15rem;
    color: #2C2758;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.achievement-yr {
    background-color: #FFF000;
    color: #2C2758;
    border: 1px solid #E5D800;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    margin-left: 10px;
}

.achievment-inner-container h4 {
    color: #222;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.achievment-inner-container p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.empty-state i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.achievement-section {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Gallery Cards Styling */
.gallery-card {
    background: #fff;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(44, 39, 88, 0.03);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(44, 39, 88, 0.12);
}

.img-thumbnail {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: none;
    padding: 0;
    margin-bottom: 12px !important;
}

.gallery-card h6 {
    color: #2C2758;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 5px;
    font-size: 1.1rem;
}


/*Contact Us*/
.hero-creative {
    position: relative;
    background: linear-gradient(135deg, #2C2758 0%, #171430 100%);
    padding: 8rem 0 10rem 0;
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/contact-us-banner.jpg') center/cover;
    opacity: 0.15;
    z-index: -1;
}

.hero-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-title span {
    color: #009FDF;
    /* Cyan accent */
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

.custom-shape-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: #f8faff;    /* Matches body background */
}

.contact-content-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    height: 100%;
}

.info-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 39, 88, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 39, 88, 0.1);
}

.info-card .phone-stack {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}

.info-card .phone-stack a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #2C2758;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.info-card .phone-stack a:hover {
    color: #009FDF;
}

.info-card:nth-child(1) {
    border-top: 4px solid #009FDF;
}

.info-card:nth-child(2) {
    border-top: 4px solid #E31836;
}

.info-card:nth-child(3) {
    border-top: 4px solid #FFF000;
}

.info-card:nth-child(4) {
    border-top: 4px solid #2C2758;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #f4f7fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #2C2758;
    transition: all 0.3s ease;
}

.info-card:hover .icon-circle {
    background: #2C2758;
    color: #ffffff;
    transform: scale(1.1);
}

.info-card h5 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #2C2758;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-card p,
.info-card a {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #009FDF;
    font-weight: 600;
}

.form-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(44, 39, 88, 0.08);
    height: 100%;
}

.form-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    color: #2C2758;
    font-size: 2rem;
    margin-bottom: 5px;
}

.form-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #009FDF, #E31836);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.input-group-custom {
    margin-bottom: 1.5rem;
}

.input-group-custom label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #2C2758;
    margin-bottom: 8px;
    display: block;
}

.input-custom {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #f0f2f5;
    border-radius: 12px;
    background-color: #f8faff;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-custom:focus {
    outline: none;
    border-color: #009FDF;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 159, 223, 0.1);
}

textarea.input-custom {
    resize: vertical;
    min-height: 120px;
}

.submit-btn-creative {
    background: #2C2758;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.submit-btn-creative:hover {
    background: #009FDF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 159, 223, 0.3);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 4rem;
    border: 5px solid #ffffff;
}

/* --- PREMIUM QUOTE BLOCK --- */
.quote-wrapper {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
    padding: 50px;
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(44, 39, 88, 0.08);
    overflow: visible;
}

.quote-accent-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #009FDF 0%, #2C2758 100%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.1;
}

.quote-icon-box {
    margin-bottom: 20px;
    color: #009FDF;
}

.quote-svg {
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

.quote-text {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #2C2758;
    margin-bottom: 25px;
    position: relative;
}

.quote-author-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.author-name {
    font-weight: 800;
    color: #E31836; /* Brand Red */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-divider {
    color: #ddd;
}

.author-title {
    color: #777;
    font-style: italic;
    font-size: 0.95rem;
}

#graduation-cap-image {
    position: absolute;
    top: -40px;
    right: -30px;
    width: 100px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@media (max-width: 768px) {
    .quote-wrapper { padding: 35px 20px; margin: 40px 15px; }
    .quote-text { font-size: 1.4rem; }
    #graduation-cap-image { width: 70px; top: -30px; right: 10px; }
    .quote-author-line { flex-direction: column; gap: 0; }
    .author-divider { display: none; }
}

@media screen and (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .quote-block h4 {
        font-size: 1.5rem;
    }
}


/*Curriculum*/
#curriculum-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #2C2758 0%, #171430 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    color: #fff;
    position: relative;
}

.hero-title-box {
    background-color: transparent;
    padding: 2rem 4rem;
    border-radius: 10px;
}

.hero-title-box .h1-header {
    color: #fff !important;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

/* Intro Paragraph Styling */
.intro-text {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    border-top: 4px solid #009FDF;
    /* Logo Cyan */
    position: relative;
    margin-top: -40px !important;
    /* Overlap hero slightly */
    z-index: 10;
}

/* Section Headings */
.span-border {
    display: inline-block;
    width: 80px;
    height: 4px;
    /* Integrated Logo Colors: Navy to Cyan to Red */
    background: linear-gradient(90deg, #2C2758, #009FDF, #E31836);
    border-radius: 10px;
    margin-bottom: 2rem;
    margin-top: 10px;
}

#book-with-bulb-image {
    animation: move 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

/* Curriculum Cards */
.subject-taught {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(44, 39, 88, 0.05);
    border: 1px solid rgba(44, 39, 88, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 3rem !important;
    align-items: center;
}

.subject-taught:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(44, 39, 88, 0.1);
}

/* Alternate Layout for Even Sections */
@media (min-width: 768px) {
    .subject-taught:nth-of-type(even) {
        flex-direction: row-reverse !important;
    }
}

.subject-taught p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.subject-taught .h3-header {
    font-size: 2rem;
    color: #2C2758;
    /* Logo Navy */
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 10px;
}

.subject-taught .h3-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #E31836;
    /* Logo Red Accent */
    border-radius: 5px;
}

/* Focus Areas Inner Box */
.curriculum-focus-areas {
    background-color: #f8faff;
    border-left: 4px solid #2C2758;
    /* Logo Navy */
    border-radius: 10px;
    padding: 1.5rem 2rem;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
}

.curriculum-focus-areas .h4-header {
    font-size: 1.3rem;
    color: #2C2758;
    margin-bottom: 0.5rem;
}

.curriculum-focus-areas p {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 1rem;
}

/* List Styling */
ul[class="list-unstyled"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

ul[class="list-unstyled"] li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: #444;
    font-size: 0.95rem;
}

ul[class="list-unstyled"] li::before {
    content: "";
    background-image: url("../assets/icons/minus.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    display: inline-block;
    /* Filter updated to approximate the #009FDF Cyan color */
    filter: invert(44%) sepia(87%) saturate(2250%) hue-rotate(167deg) brightness(97%) contrast(101%);
}

/* Image Styling */
.subjects-taught-right img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.subject-taught:hover .subjects-taught-right img {
    transform: scale(1.02);
}

/* Mobile specific fixes */
@media (max-width: 767px) {
    ul[class="list-unstyled"] {
        grid-template-columns: 1fr;
    }

    .hero-title-box .h1-header {
        font-size: 2.5rem;
    }
}

@keyframes move {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0%);
    }
}


/*Our Facilities*/
.facility-header {
    width: 100%;
    background: linear-gradient(135deg, #2C2758 0%, #171430 100%);
    height: 45vh;
    min-height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content-box {
    padding: 0 20px;
    max-width: 800px;
    margin-top: 40px;
}

.facility-header .h1-header {
    color: #ffffff !important;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.3);
}

.facility-header p {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
}

.card-row-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.facilities-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 39, 88, 0.08);
    border: 1px solid rgba(44, 39, 88, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 4px solid #009FDF;
    /* Default Cyan Border */
}

.facilities-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 39, 88, 0.15);
    border-bottom-color: #E31836;
    /* Changes to Red on hover */
}

.card-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 1;
}

.facilities-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.facilities-card:hover img {
    transform: scale(1.08);
}

.card__content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

.card__title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    color: #2C2758;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card__description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .facility-header .h1-header {
        font-size: 2.5rem;
    }

    .facility-header p {
        font-size: 1rem;
    }
}


/*Faculty & Staff*/
.page-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    color: #2C2758;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.span-border {
    display: block;
    width: 60px;
    height: 4px;
    background: #d9534f;
    /* Accent color */
    border-radius: 2px;
    margin: 0 auto 40px auto;
}

/* Department Section Styles */
.department-section {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
}

.department-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #2C2758;
    font-size: 1.75rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
    margin-bottom: 30px;
    position: relative;
}

.department-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 80px;
    background-color: #2C2758;
}

/* Faculty Card Styles */
.faculty-container {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faculty-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.faculty-image {
    width: 100%;
    height: 260px;
    background-color: #f9f9f9;
    overflow: hidden;
    position: relative;
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* Keeps faces in view */
    transition: transform 0.4s ease;
}

.faculty-container:hover .faculty-image img {
    transform: scale(1.05);
}

.faculty-content {
    padding: 25px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faculty-content h5 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.faculty-designation {
    color: #d9534f;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.faculty-qualifications {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}

.faculty-qualifications strong {
    color: #2C2758;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}


/*Job Form*/
.careers-hero {
    background: linear-gradient(135deg, #2C2758 0%, #171430 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/contact-us-banner.jpg') center/cover;
    opacity: 0.1;
}

.careers-hero h1 {
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.careers-hero p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.application-container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto 80px auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(44, 39, 88, 0.08);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.app-sidebar {
    background: #2C2758;
    color: #ffffff;
    padding: 40px;
    flex: 1 1 300px;
    position: relative;
}

.app-sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, #009FDF, #E31836);
}

.sidebar-icon {
    font-size: 3rem;
    color: #009FDF;
    margin-bottom: 20px;
}

.app-sidebar h3 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.app-sidebar p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 30px;
}

.contact-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #E31836;
}

.app-form-area {
    padding: 50px 40px;
    flex: 2 1 500px;
    background: #ffffff;
}

.form-legend {
    color: #2C2758;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 5px;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-legend i {
    color: #009FDF;
}

.form-subtitle {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.form-label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #2C2758;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #eef2f6;
    border-radius: 12px;
    padding: 12px 15px;
    font-family: 'Raleway', sans-serif;
    background-color: #fcfdfd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #009FDF;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 159, 223, 0.1);
    outline: none;
}

input[type="file"].form-control {
    /*padding: 10px;*/
    background: #f8faff;
}

input[type="file"]::file-selector-button {
    background: #2C2758;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    margin-right: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
    background: #009FDF;
}

.file-hint {
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

#input-file-size-error {
    color: #E31836;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Submit Button */
#submit-btn {
    background: linear-gradient(135deg, #E31836 0%, #c4122d 100%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(227, 24, 54, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

#submit-btn:hover {
    background: linear-gradient(135deg, #2C2758 0%, #1A1736 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(44, 39, 88, 0.3);
}

#submit-btn:disabled {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

#rotate-svg {
    display: none;
    width: 20px;
    animation: rotate 2s linear infinite;
    filter: brightness(0) invert(1);
    /* Makes SVG white */
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .app-sidebar::after {
        width: 100%;
        height: 5px;
        bottom: 0;
        right: 0;
        top: auto;
    }

    .app-form-area {
        padding: 30px 20px;
    }

    .careers-hero h1 {
        font-size: 2.2rem;
    }
}


/*Leadership Message*/
.leadership-hero {
    background: linear-gradient(rgba(44, 39, 88, 0.9), rgba(44, 39, 88, 0.95));
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.leadership-hero h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.leadership-hero p {
    font-size: 1.15rem;
    font-weight: 400;
    color: #e0e6ed;
    max-width: 700px;
    margin: 0 auto;
}

.messages-wrapper {
    padding: 60px 0 80px 0;
}

.executive-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.executive-card.reversed {
    flex-direction: row-reverse;
}

.exec-img-col {
    background-color: #f4f7f9;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-right: 1px solid #eef2f5;
    width: 35%;
}

.reversed .exec-img-col {
    border-right: none;
    border-left: 1px solid #eef2f5;
}

.exec-img-col img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 6px solid #ffffff;
    object-fit: cover;
}

.exec-text-col {
    padding: 60px;
    width: 65%;
    position: relative;
}

.quote-icon-bg {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 6rem;
    color: #f0f4f8;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.exec-header {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.exec-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2C2758;
    /* Navy */
    margin-bottom: 5px;
}

.exec-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #E31836;
    /* Red */
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid #009FDF;
    /* Cyan */
    margin-bottom: 0;
}

.exec-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.exec-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    position: relative;
    z-index: 1;
}

.exec-contact i {
    color: #009FDF;
}

.exec-contact a {
    color: #2C2758;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.exec-contact a:hover {
    color: #E31836;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 991px) {

    .executive-card,
    .executive-card.reversed {
        flex-direction: column;
    }

    .exec-img-col,
    .exec-text-col {
        width: 100%;
    }

    .exec-img-col {
        padding: 40px;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid #eef2f5;
    }

    .exec-text-col {
        padding: 40px 30px;
    }

    .quote-icon-bg {
        top: 20px;
        right: 30px;
    }
}

@media (max-width: 576px) {
    .leadership-hero h2 {
        font-size: 2.2rem;
    }

    .exec-name {
        font-size: 1.8rem;
    }

    .exec-img-col {
        padding: 30px;
    }

    .exec-text-col {
        padding: 30px 20px;
    }
}


/*List of Book*/
.page-hero {
    background: linear-gradient(135deg, #2C2758 0%, #171430 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-bottom: -60px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/contact-us-banner.jpg') center/cover;
    opacity: 0.08;
}

.page-hero h1 {
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.page-hero p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}

.table-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(44, 39, 88, 0.08);
    padding: 40px;
    border-top: 5px solid #E31836;
}

.dataTables_wrapper .dataTables_filter input {
    border: 2px solid #eef2f6;
    border-radius: 8px;
    padding: 8px 15px;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #009FDF;
    box-shadow: 0 0 0 3px rgba(0, 159, 223, 0.1);
}

.dataTables_wrapper .dataTables_length select {
    border: 2px solid #eef2f6;
    border-radius: 8px;
    padding: 5px 10px;
    outline: none;
}

table.dataTable {
    border-collapse: collapse !important;
    width: 100% !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eef2f6;
}

table.dataTable thead th {
    background-color: #f8faff;
    color: #2C2758;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 20px;
    border-bottom: 2px solid #eef2f6;
}

table.dataTable tbody td {
    padding: 15px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #eef2f6;
    color: #555;
    font-weight: 500;
}

table.dataTable tbody tr:hover {
    background-color: #f4f7fa;
}

table.dataTable.no-footer {
    border-bottom: 1px solid #eef2f6;
}

.pdf-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-view {
    background-color: rgba(0, 159, 223, 0.1);
    color: #009FDF;
    border: 1px solid rgba(0, 159, 223, 0.2);
}

.btn-view:hover {
    background-color: #009FDF;
    color: #ffffff;
}

.btn-download {
    background-color: rgba(227, 24, 54, 0.1);
    color: #E31836;
    border: 1px solid rgba(227, 24, 54, 0.2);
}

.btn-download:hover {
    background-color: #E31836;
    color: #ffffff;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #2C2758 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #f0f4f8 !important;
    color: #2C2758 !important;
    border: 1px solid transparent !important;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .table-card {
        padding: 20px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .pdf-action-btn {
        margin-bottom: 5px;
        width: 100%;
        justify-content: flex-start;
    }
}


/*List of Holidays*/
.calendar-wrapper {
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}

.month-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(44, 39, 88, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.month-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 39, 88, 0.1);
}

/* Rotating Header Colors */
.month-card:nth-child(4n+1) .month-header {
    background: linear-gradient(135deg, #009FDF 0%, #0082B8 100%);
}

/* Cyan */
.month-card:nth-child(4n+2) .month-header {
    background: linear-gradient(135deg, #E31836 0%, #c4122d 100%);
}

/* Red */
.month-card:nth-child(4n+3) .month-header {
    background: linear-gradient(135deg, #2C2758 0%, #1A1736 100%);
}

/* Navy */
.month-card:nth-child(4n+4) .month-header {
    background: linear-gradient(135deg, #81CA00 0%, #6aa300 100%);
}

/* Green */

.month-header {
    padding: 15px 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.month-header h5 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.month-header i {
    font-size: 1.5rem;
    opacity: 0.8;
}

.month-body {
    padding: 5px 20px;
    /*min-height: 150px;*/
}

.holiday-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.holiday-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.date-box {
    background: #f8faff;
    border: 1px solid #eef2f6;
    border-radius: 8px;
    padding: 6px 12px;
    text-align: center;
    min-width: 65px;
    margin-right: 15px;
    flex-shrink: 0;
}

.date-box span.day {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #2C2758;
    font-family: 'Quicksand', sans-serif;
    line-height: 1;
    margin-bottom: 2px;
}

.date-box span.month {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #009FDF;
    text-transform: uppercase;
}

.holiday-details {
    flex-grow: 1;
    padding-top: 2px;
}

.holiday-occasion {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 3px 0;
    line-height: 1.3;
}

.holiday-day {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    font-weight: 500;
}

.no-holidays {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 30px 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .calendar-wrapper {
        padding-top: 20px;
    }

    .month-card {
        margin-bottom: 20px;
    }
}


/*Mandatory Disclosure*/
.content-wrapper {
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}

.table-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(44, 39, 88, 0.08);
    padding: 40px;
    margin-bottom: 40px;
}

.card-red {
    border-top: 5px solid #E31836;
}

.card-cyan {
    border-top: 5px solid #009FDF;
}

.card-navy {
    border-top: 5px solid #2C2758;
}

.table-card h4 {
    color: #2C2758;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-bottom: 2px dashed #eef2f6;
    padding-bottom: 15px;
}

.dataTables_wrapper .dataTables_filter input {
    border: 2px solid #eef2f6;
    border-radius: 8px;
    padding: 8px 15px;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    margin-bottom: 10px;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #009FDF;
    box-shadow: 0 0 0 3px rgba(0, 159, 223, 0.1);
}

.dataTables_wrapper .dataTables_length select {
    border: 2px solid #eef2f6;
    border-radius: 8px;
    padding: 5px 10px;
    outline: none;
}

table.dataTable {
    border-collapse: collapse !important;
    width: 100% !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    table-layout: auto;
    word-wrap: break-word;
}

table.dataTable thead th {
    background-color: #f8faff;
    color: #2C2758;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 15px 20px;
    border-bottom: 2px solid #eef2f6;
    white-space: normal;
}

table.dataTable tbody td {
    padding: 15px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #eef2f6;
    color: #555;
    font-weight: 500;
    word-break: break-word;
    white-space: normal;
}

table.dataTable tbody tr:hover {
    background-color: #f4f7fa;
}

table.dataTable.no-footer {
    border-bottom: 1px solid #eef2f6;
}

.pdf-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-view {
    background-color: rgba(0, 159, 223, 0.1);
    color: #009FDF;
    border: 1px solid rgba(0, 159, 223, 0.2);
}

.btn-view:hover {
    background-color: #009FDF;
    color: #ffffff;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #2C2758 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #f0f4f8 !important;
    color: #2C2758 !important;
    border: 1px solid transparent !important;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .table-card {
        padding: 20px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    table.dataTable tbody td {
        padding: 10px;
    }
}


/*News & Updates*/
.dashboard-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(44, 39, 88, 0.05);
    margin-bottom: 40px;
    margin-top: 100px;
    border-left: 5px solid #009FDF;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2C2758;
}

.dashboard-title i {
    color: #009FDF;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.news-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(44, 39, 88, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #eef2f6;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44, 39, 88, 0.08);
}

.news-card:hover::before {
    background: linear-gradient(90deg, #009FDF, #E31836);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eef2f6;
}

.news-date {
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-date i {
    color: #009FDF;
}

.news-badge {
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.category-academic {
    background-color: #009FDF;
}

.category-announcement {
    background-color: #FFF000;
    color: #2C2758;
}

.category-sports {
    background-color: #81ca00;
}

.category-holiday {
    background-color: #E31836;
}

.category-default {
    background-color: #2C2758;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2C2758;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-description {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.description-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.description-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.read-toggle {
    color: #E31836;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 15px;
    display: inline-block;
    align-self: flex-start;
    transition: color 0.3s ease;
    background: rgba(227, 24, 54, 0.05);
    padding: 5px 12px;
    border-radius: 8px;
}

.read-toggle:hover {
    color: #2C2758;
    background: rgba(44, 39, 88, 0.05);
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-header-bar {
        padding: 15px 20px;
    }
}



/*Our Story & Mission*/
.our-story-hero-section {
    position: relative;
    height: 70vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    background: linear-gradient(rgba(44, 39, 88, 0.8), rgba(44, 39, 88, 0.6)), url("assets/images/gnps-building.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.h1-header {
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

.hero-link {
    margin-top: 2rem;
    background: linear-gradient(135deg, #009FDF 0%, #007bb0 100%);
    border: none;
    color: #fff !important;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 159, 223, 0.3);
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
}

.hero-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 159, 223, 0.4);
    background: #E31836;
}

.arrow {
    position: absolute;
    bottom: 30px;
    color: #FFF000;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

#timeline-section {
    padding: 80px 0;
    opacity: 0;
    transition: all 1.2s ease-out;
    transform: translateY(30px);
}

.h2-header {
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    color: #2C2758;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.span-border {
    display: inline-block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #E31836, #009FDF);
    border-radius: 10px;
}

.timeline-ul {
    position: relative;
    padding: 40px 0;
    list-style: none;
}

.timeline-ul::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-ul li {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-ul li:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-ul li:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-ul li::after {
    content: "";
    position: absolute;
    top: 25px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 4px solid #009FDF;
    border-radius: 50%;
    z-index: 1;
}

.timeline-ul li:nth-child(odd)::after {
    right: -10px;
}

.timeline-ul li:nth-child(even)::after {
    left: -10px;
}

.date {
    display: inline-block;
    background: #2C2758;
    color: #FFF000;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.timeline-card:hover {
    transform: scale(1.02);
    border-bottom-color: #E31836;
}

#aims-objectives-section {
    padding: 80px 0;
    background: #ffffff;
    opacity: 0;
    transition: all 1.2s ease-out;
    transform: translateY(30px);
}

.card-custom {
    background: #f8faff;
    border: none;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-custom:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(44, 39, 88, 0.1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    color: #2C2758;
    transition: 0.3s;
}

.card-custom:hover .icon-circle {
    background: #009FDF;
    color: #fff;
}

.card-1 {
    border-top: 5px solid #009FDF;
}

.card-2 {
    border-top: 5px solid #E31836;
}

.card-3 {
    border-top: 5px solid #FFF000;
}

.card-4 {
    border-top: 5px solid #2C2758;
}

.card-5 {
    border-top: 5px solid #81ca00;
}

.fw-semibold {
    color: #2C2758;
    font-family: 'Quicksand', sans-serif !important;
}

@media (max-width: 768px) {
    .h1-header {
        font-size: 2.5rem;
    }

    .timeline-ul::before {
        left: 20px;
    }

    .timeline-ul li {
        width: 100%;
        padding-left: 50px;
        text-align: left !important;
    }

    .timeline-ul li:nth-child(even) {
        left: 0;
    }

    .timeline-ul li::after {
        left: 10px !important;
    }

    .timeline-card {
        margin-left: 10px;
    }
}


/*Rules & Regulations*/
.hero-banner-section {
    background: linear-gradient(135deg, #2C2758 0%, #171430 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-banner-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e6ed;
}

.accent-divider {
    width: 80px;
    height: 5px;
    background: #009FDF;
    margin: 0 auto 20px;
    border-radius: 10px;
}

.sticky-sidebar-nav {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    position: sticky;
    top: 120px;
    box-shadow: 0 10px 30px rgba(44, 39, 88, 0.05);
    border: 1px solid rgba(44, 39, 88, 0.05);
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none !important;
    color: #2C2758;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sidebar-nav-link:hover {
    background-color: rgba(0, 159, 223, 0.1);
    color: #009FDF;
    transform: translateX(5px);
}

.policy-card {
    background: #ffffff;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border-top: 5px solid #009FDF;
    transition: transform 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 39, 88, 0.08);
}

.policy-card--alt {
    border-top-color: #E31836;
}

.policy-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #2C2758;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list-item {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1.05rem;
    color: #555;
}

.policy-list-item::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #009FDF;
}

.policy-card--alt .policy-list-item::before {
    color: #E31836;
}

.nested-roman-list {
    padding-left: 0;
    margin-top: 10px;
    counter-reset: roman-counter;
}

.nested-roman-list-item {
    list-style: none;
    counter-increment: roman-counter;
    background: #f8faff;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-weight: 600;
}

.nested-roman-list-item::before {
    content: "(" counter(roman-counter, lower-roman) ") ";
    color: #E31836;
    margin-right: 5px;
}

@media screen and (max-width: 768px) {
    .hero-banner-title {
        font-size: 2.2rem;
    }

    .sidebar-column {
        display: none;
    }

    .policy-card {
        padding: 25px;
    }
}


/*Why Choose Us*/
.why-hero {
    position: relative;
    background: linear-gradient(rgba(44, 39, 88, 0.9), rgba(44, 39, 88, 0.7)), url("assets/images/school_kids_cheat.avif");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    border-left: 4px solid var(--brand-cyan);
    padding-left: 20px;
}

.btn-visit {
    background: var(--brand-cyan);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0, 159, 223, 0.3);
}

.btn-visit:hover {
    background: white;
    color: var(--brand-navy);
    transform: translateY(-3px);
    text-decoration: none;
}

#excellence-in-education {
    padding: 80px 0;
}

.section-title-box {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-box h2 {
    color: var(--brand-navy);
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.span-border {
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-red));
    margin: 0 auto;
    border-radius: 10px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(44, 39, 88, 0.05);
    height: 100%;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--brand-navy);
    z-index: 1;
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(44, 39, 88, 0.12);
}

.feature-card:hover::after {
    height: 6px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--brand-cyan);
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--brand-cyan);
    color: white;
    transform: rotate(10deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--brand-navy);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.join-banner {
    background: linear-gradient(135deg, var(--brand-navy) 0%, #1a1736 100%);
    border-radius: 30px;
    padding: 60px;
    margin: 60px 0 100px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 39, 88, 0.2);
}

.join-banner h4 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 30px;
}

.btn-call {
    background: linear-gradient(135deg, var(--brand-cyan) 0%, #007bb0 100%);
    color: #fff;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    transition: 0.3s;
    display: inline-block;
    border: none;
}

.btn-call:hover {
    background: white;
    transform: scale(1.05);
    text-decoration: none;
    color: var(--brand-navy);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .join-banner {
        padding: 40px 20px;
        border-radius: 0;
    }
}