﻿
/* Red Text */
.notice-text {
    color: #ffffff;
    font-weight: 700;
}

/* Blinking Icon */
.blink-icon {
    animation: blink 1s infinite;
}

/* Blink Animation */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
.top-bar {
    /*background-color: #06BBCC;
    color: #fff;*/
    background-image: linear-gradient(to right bottom, #740000, rgb(76 1 0));
    font-size: 14px;
    overflow: hidden;
}

    .top-bar a {
        color: #fff;
        text-decoration: none;
    }

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
}

.top-bar-left {
    flex: 1;
    min-width: 0;
}

.marquee-wrap {
    position: relative;
    overflow: hidden;
    height: 24px;
}

.marquee-text {
    position: absolute;
    white-space: nowrap;
    top: 0;
    left: 100%;
    line-height: 24px;
    color: white;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .social-icons a {
        color: #fff;
    }

/* Mobile */
@media (max-width: 767.98px) {
    .top-bar {
        font-size: 12px;
    }

    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 8px 0;
    }

    .top-bar-left,
    .top-bar-right {
        width: 100%;
    }

    .top-bar-right {
        justify-content: space-between;
        gap: 10px;
    }

    .contact-item {
        font-size: 12px;
    }

    .social-icons {
        gap: 10px;
    }

    .marquee-wrap {
        height: 20px;
    }

    .marquee-text {
        line-height: 20px;
    }
}
@media (max-width: 575.98px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        justify-content: center;
    }
}

/*nav*/
.logo-wrap {
    display: flex;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 6px;
}

/* Desktop */
.logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Laptop */
@media (max-width: 1199.98px) {
    .logo-img {
        height: 60px;
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .logo-img {
        height: 75px;
    }

    .logo-wrap {
        padding-left: 12px !important;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .logo-img {
        height: 52px;
    }
}


/*notice*/

.about-content-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    border: 1px solid #eef2f7;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-badge {
    display: inline-block;
    background: #e8f7ff;
    color: #06bbcc;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.about-content-box h1 {
    font-size: 34px;
    font-weight: 700;
    color: #1d3557;
    line-height: 1.3;
}

.about-content-box p {
    font-size: 15px;
    color: #5c677d;
    line-height: 1.8;
}

.feature-list {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #1d3557;
}

    .feature-item i {
        color: #0dcaf0;
        font-size: 18px;
    }

.notice-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #eef2f7;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.notice-header {
   /* background: linear-gradient(135deg, #0dcaf0, #0a58ca);*/
    background: linear-gradient(135deg, #cf0000, #5a0000);
    color: #fff;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

    .notice-header h4 {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
    }

        .notice-header h4 i {
            margin-right: 8px;
        }

.view-all-btn {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

    .view-all-btn:hover {
        background: #fff;
        color: #0a58ca;
    }

.notice-scroll {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #f8fbff;
}

.notice-track {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 18px;
}

.notice-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #ebf1f6;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

    .notice-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 24px rgba(13, 110, 253, 0.08);
    }

.notice-date {
    min-width: 78px;
    max-width: 78px;
    background: #0dcaf0;
    color: #fff;
    border-radius: 14px;
    text-align: center;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .notice-date .day {
        font-size: 24px;
        font-weight: 800;
        line-height: 1;
    }

    .notice-date .month {
        font-size: 12px;
        font-weight: 600;
        margin-top: 6px;
        line-height: 1.3;
    }

.notice-content {
    flex: 1;
}

    .notice-content h5 {
        margin: 0 0 8px;
        font-size: 17px;
        font-weight: 700;
        color: #1c2b5a;
        line-height: 1.4;
    }

    .notice-content p {
        margin: 0 0 12px;
        font-size: 14px;
        color: #5a6473;
        line-height: 1.7;
    }

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #dc3545;
    border: 1px solid #f1d5d8;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

    .download-btn img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .download-btn:hover {
        background: #dc3545;
        color: #fff;
        border-color: #dc3545;
    }

@media (max-width: 991.98px) {
    .about-content-box {
        padding: 30px 24px;
    }

        .about-content-box h1 {
            font-size: 28px;
        }

    .notice-scroll {
        height: 450px;
    }
}

@media (max-width: 767.98px) {
    .notice-item {
        flex-direction: column;
    }

    .notice-date {
        min-width: 100%;
        max-width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .notice-date .month {
            margin-top: 0;
        }

    .notice-header {
        flex-wrap: wrap;
    }
}


.footer-section {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    position: relative;
    overflow: hidden;
}

.footer-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-title::after {
        content: "";
        width: 50px;
        height: 3px;
        background: #06BBCC;
        position: absolute;
        left: 0;
        bottom: 0;
        border-radius: 10px;
    }

.footer-links a {
    display: block;
    color: #dcdcdc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-size: 15px;
}

    .footer-links a:hover {
        color: #06BBCC;
        padding-left: 6px;
    }

.footer-contact p {
    color: #dcdcdc;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.btn-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

    .btn-social:hover {
        background: #06BBCC;
        border-color: #06BBCC;
        color: #fff;
        transform: translateY(-3px);
    }

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

    .footer-gallery img {
        width: 100%;
        height: 75px;
        object-fit: cover;
        border-radius: 10px;
        padding: 3px;
        background: #fff;
        transition: 0.3s ease;
    }

        .footer-gallery img:hover {
            transform: scale(1.05);
        }

.footer-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    border: 3px solid rgba(255,255,255,0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

    .footer-bottom p,
    .footer-bottom a,
    .footer-menu a {
        color: #dcdcdc;
        font-size: 14px;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-bottom a:hover,
        .footer-menu a:hover {
            color: #06BBCC;
        }

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

@media (max-width: 991px) {
    .footer-title {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .footer-gallery img {
        height: 70px;
    }

    .footer-map iframe {
        height: 200px;
    }

    .footer-menu {
        justify-content: center;
    }

    .footer-bottom p {
        text-align: center;
    }
}

/**about us*/

.section-badge {
    display: inline-block;
    background: rgba(6, 187, 204, 0.1);
    color: #06BBCC;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.about-top-text {
    max-width: 750px;
    color: #6c757d;
    font-size: 17px;
    line-height: 1.8;
}

.about-img-wrap {
    position: relative;
}

.main-about-img {
    border-radius: 20px;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.about-img-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #06BBCC;
    color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    min-width: 160px;
    text-align: center;
}

    .about-img-box h3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 5px;
        color: #fff;
    }

.about-content-card {
    padding: 15px 10px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    height: 100%;
}

    .feature-box i {
        width: 42px;
        height: 42px;
        background: rgba(6, 187, 204, 0.12);
        color: #06BBCC;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-box span {
        font-weight: 600;
        color: #222;
    }

    .feature-box:hover {
        transform: translateY(-4px);
    }

.highlight-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    height: 100%;
}

    .highlight-card:hover {
        transform: translateY(-6px);
    }

.highlight-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.highlight-card p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .main-about-img {
        height: 350px;
    }

    .about-img-box {
        bottom: 15px;
        left: 15px;
        padding: 15px 18px;
    }
}

@media (max-width: 767px) {
    .main-about-img {
        height: 300px;
    }

    .about-img-box {
        position: static;
        margin-top: 15px;
        display: inline-block;
    }

    .about-content-card {
        padding: 0;
    }
}
/**about end*/

/**pricipal*/
.principal-desk-section {
    background: linear-gradient(to bottom, #f8fbff, #ffffff);
}

.principal-badge {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.principal-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.principal-subtitle {
    font-size: 17px;
    line-height: 1.9;
    color: #6b7280;
}

.principal-image-wrapper {
    position: relative;
}

.principal-image-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

    .principal-image-card::before {
        content: "";
        position: absolute;
        top: -40px;
        right: -40px;
        width: 120px;
        height: 120px;
        background: rgba(6, 187, 204, 0.12);
        border-radius: 50%;
    }

.principal-image {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 20px;
}

.principal-message-box {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
    position: relative;
    border-left: 5px solid #06BBCC;
}

.quote-icon {
    width: 65px;
    height: 65px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.principal-message-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.principal-message-box p {
    color: #5f6b7a;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.principal-signature {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

    .principal-signature h5 {
        font-weight: 700;
        color: #0f172a;
    }

    .principal-signature span {
        color: #06BBCC;
        font-weight: 600;
        font-size: 15px;
    }

.principal-highlight-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    height: 100%;
}

    .principal-highlight-card:hover {
        transform: translateY(-8px);
    }

.highlight-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 18px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.principal-highlight-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.principal-highlight-card p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .principal-main-title {
        font-size: 34px;
    }

    .principal-message-box {
        padding: 30px 22px;
    }

    .principal-image {
        max-height: 400px;
    }
}

@media (max-width: 767px) {
    .principal-main-title {
        font-size: 28px;
    }

    .principal-subtitle {
        font-size: 15px;
    }

    .principal-message-title {
        font-size: 24px;
    }

    .principal-message-box p {
        font-size: 15px;
        line-height: 1.8;
    }
}

.principal-image-wrapper {
    height: 100%;
}

.principal-image-card {
    height: 100%;
}

.principal-image {
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: 0.4s;
}

    .principal-image:hover {
        transform: scale(1.05);
    }

.principal-message-box p.text-primary {
    font-size: 18px;
    background: rgba(6, 187, 204, 0.08);
    padding: 12px 20px;
    border-radius: 10px;
}

/**end pricipal*/


/*depar*/
/* Gradient Text */
.text-gradient {
    background: linear-gradient(45deg, #06bbcc, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Design */
.dept-card {
    background: #fff;
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

    .dept-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

/* Icon Box */
/* Gradient Text */
.text-gradient {
    background: linear-gradient(45deg, #06bbcc, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Design */
.dept-card {
    background: #fff;
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

    .dept-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-box i {
        color: #fff;
        font-size: 26px;
    }
/**/

/**/

.course-section {
    background: #f8fbff;
}

.course-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.course-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 10px;
}

.course-subtitle {
    max-width: 700px;
    margin: auto;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
}

.course-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .course-card::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #06BBCC, #0ea5e9);
        top: 0;
        left: 0;
    }

    .course-card:hover {
        transform: translateY(-10px);
    }

.course-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.course-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.course-card p {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 20px;
}

.course-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #06BBCC;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

    .course-btn:hover {
        background: #0ea5e9;
        color: #fff;
    }
/**/

/**/

.facility-section {
    background: linear-gradient(to bottom, #ffffff, #f8fbff);
}

.facility-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
}

.facility-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 10px;
}

.facility-subtitle {
    max-width: 700px;
    margin: auto;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
}

.facility-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .facility-card::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #06BBCC, #0ea5e9);
        top: 0;
        left: 0;
    }

    .facility-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }

.facility-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: 0.3s;
}

.facility-card:hover .facility-icon {
    background: #06BBCC;
    color: #fff;
    transform: rotate(10deg);
}

.facility-card h5 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.facility-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .facility-title {
        font-size: 28px;
    }
}
/**/

/**/

.rules-section {
    background: linear-gradient(to bottom, #f8fbff, #ffffff);
}

.rules-badge {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rules-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 12px;
    margin-bottom: 12px;
}

.rules-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
}

.rules-accordion-wrap {
    max-width: 950px;
    margin: 0 auto;
}

.custom-rules-accordion .accordion-item {
    border: none;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.custom-rules-accordion .accordion-button {
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    font-size: 17px;
    padding: 22px 25px;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 16px;
}

    .custom-rules-accordion .accordion-button:not(.collapsed) {
        background: #ffffff;
        color: #06BBCC;
        box-shadow: none;
    }

    .custom-rules-accordion .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }

.custom-rules-accordion .accordion-body {
    padding: 0 25px 22px 90px;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    background: #ffffff;
}

.rule-number {
    min-width: 48px;
    height: 48px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
}

.rule-text {
    flex: 1;
    text-align: left;
}

.custom-rules-accordion .accordion-button::after {
    background-size: 18px;
    width: 18px;
    height: 18px;
}

@media (max-width: 767px) {
    .rules-title {
        font-size: 28px;
    }

    .custom-rules-accordion .accordion-button {
        font-size: 15px;
        padding: 18px 16px;
        gap: 12px;
    }

    .rule-number {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .custom-rules-accordion .accordion-body {
        padding: 0 16px 18px 16px;
    }
}
/**/

/*lib*/

/* Gradient Text */
.text-gradient {
    background: linear-gradient(45deg, #06bbcc, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Image Section */
.library-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.library-img img {
    width: 100%;
    transition: 0.5s;
    border-radius: 20px;
}

.library-img:hover img {
    transform: scale(1.1);
}

.library-img .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    text-align: center;
    padding: 15px;
    transition: 0.4s;
}

/* Content */
.library-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    animation: fadeInUp 1s ease;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card i {
    color: #06bbcc;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/**/

/*sport*/
/* HERO */
.sports-hero {
    background: url('/img/sports.jpg') center/cover no-repeat;
    height: 300px;
    position: relative;
}

    .sports-hero .overlay {
        background: transparent; 
        height: 100%;
        display: flex;
        align-items: center;
    }
.sports-title {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    animation: fadeDown 1s ease;
}

.sports-subtitle {
    color: #ddd;
    margin-top: 10px;
    animation: fadeUp 1.2s ease;
}

/* CARD */
.sports-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .sports-card::before {
        content: "";
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #06BBCC, #0ea5e9);
        position: absolute;
        top: 0;
        left: 0;
    }

    .sports-card:hover {
        transform: translateY(-12px);
    }

/* ICON */
.sports-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 15px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: 0.4s;
}

.sports-card:hover .sports-icon {
    background: #06BBCC;
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

.sports-card h4 {
    font-weight: 700;
    margin-top: 10px;
}

.sports-card p {
    color: #6b7280;
    font-size: 15px;
}

/* ANIMATION */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sports-title {
    color: #000;
}

.sports-subtitle {
    color: #333;
}
/*end sport*/

/*labora*/
.lab-hero {
    background: linear-gradient(135deg, #eef9ff, #ffffff);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}

    .lab-hero::before {
        content: "";
        position: absolute;
        top: -60px;
        right: -60px;
        width: 220px;
        height: 220px;
        background: rgba(6, 187, 204, 0.08);
        border-radius: 50%;
        animation: floatCircle 5s ease-in-out infinite;
    }

    .lab-hero::after {
        content: "";
        position: absolute;
        bottom: -40px;
        left: -40px;
        width: 160px;
        height: 160px;
        background: rgba(14, 165, 233, 0.08);
        border-radius: 50%;
        animation: floatCircle 6s ease-in-out infinite;
    }

.lab-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeUpLab 1s ease;
}

.lab-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lab-title {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 18px;
    margin-bottom: 15px;
}

.lab-subtitle,
.lab-section-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
}

.lab-image-wrapper {
    position: relative;
    animation: fadeLeftLab 1s ease;
}

.lab-main-img {
    width: 100%;
    height: auto; /* 👈 fixed height hatao */
    max-height: 380px; /* 👈 limit laga do */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.lab-floating-box {
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: #06BBCC;
    color: #fff;
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(6, 187, 204, 0.28);
    animation: floatBox 3s ease-in-out infinite;
}

    .lab-floating-box h4 {
        margin-bottom: 6px;
        font-size: 20px;
        font-weight: 700;
    }

.lab-content-box {
    animation: fadeRightLab 1s ease;
}

    .lab-content-box h2,
    .lab-section-title {
        font-size: 36px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 15px;
    }

    .lab-content-box p {
        color: #6b7280;
        line-height: 1.9;
        font-size: 16px;
    }

.lab-mini-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

    .lab-mini-feature i {
        color: #06BBCC;
        font-size: 18px;
    }

    .lab-mini-feature span {
        font-weight: 600;
        color: #0f172a;
    }

    .lab-mini-feature:hover {
        transform: translateY(-4px);
    }

.lab-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .lab-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 5px;
        width: 100%;
        background: linear-gradient(90deg, #06BBCC, #0ea5e9);
    }

    .lab-card:hover {
        transform: translateY(-10px);
    }

.lab-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: 0.35s ease;
}

.lab-card:hover .lab-icon {
    background: #06BBCC;
    color: #fff;
    transform: rotate(8deg) scale(1.08);
}

.lab-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.lab-card p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 0;
}

.lab-highlight-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
    height: 100%;
}

    .lab-highlight-card:hover {
        transform: translateY(-8px);
    }

.lab-highlight-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: 0.3s ease;
}

.lab-highlight-card:hover .lab-highlight-icon {
    background: #06BBCC;
    color: #fff;
    transform: scale(1.08);
}

.lab-highlight-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
}

@keyframes fadeUpLab {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeftLab {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRightLab {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(12px);
    }
}

@keyframes floatBox {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 991px) {
    .lab-title {
        font-size: 34px;
    }

    .lab-content-box h2,
    .lab-section-title {
        font-size: 30px;
    }

    .lab-main-img {
        height: 360px;
    }
}

@media (max-width: 767px) {
    .lab-title {
        font-size: 28px;
    }

    .lab-main-img {
        max-height: 250px; /* 👈 mobile me aur chota */
    }

    .lab-floating-box {
        position: static;
        margin-top: 10px;
        display: inline-block;
    }

    .lab-content-box h2,
    .lab-section-title {
        font-size: 26px;
    }
}

/*end labora*/

/*infra*/

.infra-hero {
    background: linear-gradient(135deg, #eef9ff, #ffffff);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}

    .infra-hero::before {
        content: "";
        position: absolute;
        top: -70px;
        right: -70px;
        width: 230px;
        height: 230px;
        background: rgba(6, 187, 204, 0.08);
        border-radius: 50%;
        animation: infraFloat 6s ease-in-out infinite;
    }

    .infra-hero::after {
        content: "";
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 170px;
        height: 170px;
        background: rgba(14, 165, 233, 0.08);
        border-radius: 50%;
        animation: infraFloat 5s ease-in-out infinite;
    }

.infra-hero-content {
    position: relative;
    z-index: 2;
    animation: infraFadeUp 1s ease;
}

.infra-badge,
.infra-mini-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.infra-title {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 18px;
    margin-bottom: 15px;
}

.infra-subtitle,
.infra-section-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
}

.infra-image-wrapper {
    position: relative;
    max-width: 92%;
    margin: auto;
    animation: infraFadeLeft 1s ease;
}

.infra-main-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

    .infra-main-img:hover {
        transform: scale(1.03);
    }

.infra-floating-card {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: #06BBCC;
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(6, 187, 204, 0.28);
    animation: infraFloatBox 3s ease-in-out infinite;
}

    .infra-floating-card h4 {
        margin-bottom: 5px;
        font-size: 20px;
        font-weight: 700;
        color: #fff;
    }

.infra-content-box {
    animation: infraFadeRight 1s ease;
}

    .infra-content-box h2,
    .infra-section-title {
        font-size: 36px;
        font-weight: 800;
        color: #0f172a;
        margin: 15px 0;
    }

    .infra-content-box p {
        color: #6b7280;
        line-height: 1.9;
        font-size: 16px;
    }

.infra-mini-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

    .infra-mini-feature i {
        color: #06BBCC;
        font-size: 18px;
    }

    .infra-mini-feature span {
        font-weight: 600;
        color: #0f172a;
    }

    .infra-mini-feature:hover {
        transform: translateY(-4px);
    }

.infra-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px 24px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .infra-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 5px;
        width: 100%;
        background: linear-gradient(90deg, #06BBCC, #0ea5e9);
    }

    .infra-card:hover {
        transform: translateY(-10px);
    }

.infra-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    background: rgba(6, 187, 204, 0.12);
    color: #06BBCC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: 0.35s ease;
}

.infra-card:hover .infra-icon {
    background: #06BBCC;
    color: #fff;
    transform: rotate(8deg) scale(1.08);
}

.infra-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.infra-card p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 0;
}

.infra-stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
}

    .infra-stat-card:hover {
        transform: translateY(-8px);
    }

    .infra-stat-card h3 {
        font-size: 34px;
        font-weight: 800;
        color: #06BBCC;
        margin-bottom: 8px;
    }

    .infra-stat-card p {
        margin-bottom: 0;
        color: #6b7280;
        font-weight: 600;
    }

@keyframes infraFadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes infraFadeLeft {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes infraFadeRight {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes infraFloat {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(12px);
    }
}

@keyframes infraFloatBox {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 991px) {
    .infra-title {
        font-size: 34px;
    }

    .infra-content-box h2,
    .infra-section-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .infra-title {
        font-size: 28px;
    }

    .infra-content-box h2,
    .infra-section-title {
        font-size: 26px;
    }

    .infra-main-img {
        max-height: 260px;
    }

    .infra-floating-card {
        position: static;
        margin-top: 12px;
        display: inline-block;
    }
}
/*end infra*/

/*Gallery*/
.gallery-page {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.gallery-subtitle {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e2a3a;
    margin-bottom: 12px;
}

    .gallery-title span {
        background: linear-gradient(45deg, #0d6efd, #00c6ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.gallery-desc {
    max-width: 650px;
    margin: 0 auto;
    color: #6c757d;
    font-size: 17px;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.filter-btn {
    border: none;
    background: #ffffff;
    color: #1e2a3a;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

    .filter-btn:hover,
    .filter-btn.active {
        background: linear-gradient(45deg, #0d6efd, #00c6ff);
        color: #fff;
        transform: translateY(-2px);
    }

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    background: #fff;
    transform: translateY(0);
    transition: all 0.4s ease;
}

    .gallery-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: transform 0.6s ease;
        display: block;
    }

    .gallery-card:hover img {
        transform: scale(1.12);
    }

    .gallery-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    }

.gallery-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 22px 18px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.08));
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h5 {
    margin-bottom: 6px;
    font-weight: 700;
}

.gallery-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.92;
}

.fade-up {
    animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .gallery-title {
        font-size: 34px;
    }

    .gallery-card img {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .gallery-title {
        font-size: 28px;
    }

    .gallery-desc {
        font-size: 15px;
    }

    .filter-btn {
        padding: 9px 18px;
        font-size: 14px;
    }

    .gallery-card img {
        height: 220px;
    }
}
/**/

