/* Glow Animation on Button */
.glow-effect {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glow-effect::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.2),
        transparent 40%
    );
    transform: translateX(-100%) rotate(45deg);
    animation: glow-slide 3s linear infinite;
    z-index: -1;
}

@keyframes glow-slide {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}
.nav-active {
    color: #ffffff !important;
    padding: 5px 20px !important;
    background: #000000;
}
.top-bar .email-link,
.top-bar .contact-link {
    font-size: 14px;
    font-weight: 500;
}
.text-justify {
    text-align: justify;
}
.bg-color-black {
    background-color: #000 !important;
}
.social-icon {
    background: black;
    padding: 8px 9px;
    border-radius: 50%;
    color: #fff;
    width: 30px;
    height: 30px;
    font-size: 14px;
}
.nav-icons li {
    list-style: none;
    margin: 8px 0;
}

.nav-icons li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.nav-icons li i {
    margin-right: 8px;
    color: #ffffff;
}
/*------- Hero Section Styles ----------*/
.custom-slider-height {
    height: 80vh;
    min-height: 600px;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.center-text-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 25px 40px;
    border-radius: 10px;
}

.center-text h1 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.center-text p {
    font-size: 20px;
    color: #ddd;
    margin: 0;
}

@media (max-width: 768px) {
    .custom-slider-height {
        height: 60vh;
        min-height: 400px;
    }
    .center-text h1 {
        font-size: 32px;
    }
    .center-text p {
        font-size: 16px;
    }
    .center-text-box {
        padding: 15px 20px;
    }
}

/*------- Hero Section End -----------*/

/*-------- Branch Section Styles -------*/
.circle-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center align */
    gap: 20px; /* gap between circles */
}

.circle-item {
    flex: 1 1 calc(20% - 20px); /* default: 5 per row */
    display: flex;
    justify-content: center;
}
.circle-img {
    position: relative;
    width: 180px;
    height: 180px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-img img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.circle-img:hover {
    transform: scale(1.05);
}

.circle-img .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.circle-img .overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
}

.circle-img:hover .overlay {
    opacity: 1;
}
@media (max-width: 991px) {
    .circle-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .circle-item {
        flex: 1 1 calc(50% - 20px);
    }
    .circle-img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .circle-item {
        flex: 1 1 calc(50% - 20px);
    }
    .circle-img {
        width: 150px;
        height: 150px;
    }
}
/*--------- Branch Section End ----------*/

/*-------- Services Styles -------*/
.services-link {
    text-decoration: none;
    color: inherit;
}

.services-item.circle {
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.services-item.circle:hover {
    transform: translateY(-8px) scale(1.05);
    background: #000000;
    color: #fff;
    border-color: #000000;
}

.services-item.circle h5 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.services-item.circle:hover h5 {
    color: #fff;
}

/*-------- Services Styles End -------*/

/*-------- Programs Section Styles -------*/
.programs {
    background: #f8f9fa;
    padding: 60px 0;
}

.programs h4 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.programs hr {
    border-top: 2px solid #000000;
}
.program-header {
    background-color: #000000;
    color: #fff !important;
    padding: 15px 20px;
    border-radius: 10px;
}
.nav-tabs .nav-link {
    color: #333;
    font-weight: 600;
}

.nav-tabs .nav-link.active {
    background-color: #000000;
    color: #fff;
}
/*-------- Programs Section Styles End -------*/

/*-------- Contact Section Styles -------*/
.contact-section {
    background: #f9f9f9;
    padding: 60px 0;
}

.contact_form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact_form .form-control {
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 15px;
}

.contact_form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.25);
}

/*-------- Contact Section Styles End -------*/

/* Poadcast Section Styles */
.broadcast-box {
    min-height: 450px;
    background: #000;
    position: relative;
}

.broadcast-overlay {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 10;
}
.play-btn {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 32px;
    transition: all 0.3s ease-in-out;
}

.play-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    color: #000000;
}
/* Poadcast Section Styles End */

/*---- Youtube Style ---- */
.no-video {
    background: #f2f2f2;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    border-radius: 8px;
}
/*---- Youtube Style End -----*/

/*---- Programs Style ------*/
.module-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.module-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.05);
}

.module-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.module-card:hover .module-icon {
    background: #000;
    transform: rotate(10deg) scale(1.1);
}

.module-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.module-description {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    transition: bottom 0.4s ease;
    border-radius: 0 0 20px 20px;
}

.module-card:hover .module-description {
    bottom: 0;
}
/*---- Programs Style End ----*/

/* ---- FAQs Style Section --- */
.faq-question {
    background: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
    transition: background 0.2s;
    position: relative;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.2s;
}

.faq-question[aria-expanded="true"]::after {
    content: "-";
}

.faq-answer {
    padding: 10px 20px;
    font-size: 15px;
    color: #555;
}
/* --- FAQs Style End -- */

/* --- Student Testimonials Style --- */
.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.testimonial img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 15px;
    color: #555;
    font-style: italic;
}

.testimonial h5 {
    margin-top: 15px;
    font-weight: 600;
}

.testimonial span {
    font-size: 14px;
    color: #888;
}
/* --- Student Testimonails End --- */

/* -- MOK Experience Style -- */
.section-padding30 {
    padding: 60px 0;
}

.experience-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mok-experience-text {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 5px;
}

.read-more-btn {
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 0px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
    width: 100%;
}

.read-more-btn:hover {
    background: #fff;
    color: #000000;
}
/* --- MOK Experience End --- */

/* --- Instagram Style ---- */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.reel-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.reel-box img,
.reel-box video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.reel-box:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.overlay-text {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    padding: 5px 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}
/* ---- Instagram Style ---- */
