.academy-navbar {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    transition: .3s;
}


.academy-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.academy-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.academy-brand h5 {
    color: #252564;
    font-weight: 800;
    margin: 0;
    font-size: 1.3rem;
}

.academy-brand small {
    color: #d62025;
    font-weight: 900;
    font-size: small;
}

.academy-nav-menu .nav-link {
    color: #252564;
    font-weight: 600;
    padding: 12px 18px !important;
    position: relative;
    transition: .3s;
}

.academy-nav-menu .nav-link:hover,
.academy-nav-menu .nav-link.active {
    color: #d62025;
}

.academy-nav-menu .nav-link::after {
    content: '';
    position: absolute;
    left: 17px;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: #d62025;
    transition: .3s;
}

.academy-nav-menu .nav-link:hover::after,
.academy-nav-menu .nav-link.active::after {
    width: 60%;
}

.academy-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    background: linear-gradient(135deg, #252564, #d62025);
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.academy-nav-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.academy-toggler {
    border: none;
    box-shadow: none !important;
}

.academy-toggler i {
    font-size: 2rem;
    color: #252564;
}

@media(max-width:991px) {

    .academy-navbar {
        padding: 10px 0;
    }

    .academy-nav-menu {
        padding: 20px 0;
    }

    .academy-nav-menu .nav-link {
        padding: 14px 20px !important;
        border-bottom: 1px solid #f1f1f1;
    }

    .academy-nav-menu .nav-link:hover {
        background: linear-gradient(135deg, #252564, #d62025);
        color: #fff !important;
        transform: translateX(5px);
    }

    .academy-nav-menu .nav-link.active {
        background: linear-gradient(135deg, #252564, #d62025);
        color: #fff !important;


    }

    .academy-nav-menu .nav-link:hover::after,
    .academy-nav-menu .nav-link.active::after {
        display: none;
    }

    .academy-nav-btn {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .academy-brand h5 {
        font-size: 1.1rem;
    }

    .academy-logo {
        width: 50px;
        height: 50px;
    }
}

/* Dropdown Box */
.academy-nav-menu .dropdown-menu {
    border: none;
    border-radius: 15px;
    padding: 10px;
    min-width: 240px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    margin-top: 12px;
    overflow: hidden;
}



/* Dropdown Items */
.academy-nav-menu .dropdown-item {
    padding: 12px 18px;
    border-radius: 10px;
    color: #252564;
    font-weight: 600;
    transition: all .3s ease;
}

/* Hover Effect */
.academy-nav-menu .dropdown-item:hover {
    background: linear-gradient(135deg, #252564, #d62025);
    color: #fff;
    transform: translateX(5px);
}

/* Active Item */
.academy-nav-menu .dropdown-item.active,
.academy-nav-menu .dropdown-item:active {
    background: #d62025;
    color: #fff;
    margin: 5px;
}


.academy-nav-menu .nav-item.dropdown .nav-link::before,
.academy-nav-menu .nav-item.dropdown .nav-link::after {
    content: none !important;
}

.dropdown-icon {
    font-size: 12px;
    transition: .3s ease;
}


.nav-link[aria-expanded="true"] .dropdown-icon {
    transform: rotate(-180deg);
}

/* hero */

.hero-banner-section {
    position: relative;
    overflow: hidden;
}


.hero-glass-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(15px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
}

.hero-glass-badge i {
    font-size: 28px;
    color: #d62025;
}

.hero-glass-badge strong {
    display: block;
    font-size: 18px;
}

.hero-glass-badge small {
    opacity: .85;
}

.hero-banner-img {
    height: 85vh;
    width: 100%;
    object-fit: cover;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.hero-banner-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

}

.hero-banner-content h1 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.hero-banner-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
}

.hero-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #252564, #d62025);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    color: #fff;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}



@media (max-width: 768px) {
    .hero-banner-img {
        height: 40vh;
        object-fit: cover !important;
         object-position: center center !important;
    }

    .hero-banner-content h1 {
        font-size: 1.6rem;
        line-height: 1.1;
        width: 100% !important;
        margin: 0 auto 15px;
    }

    .hero-banner {
        min-height: 50vh !important;
    }
}

@media (max-width:576px) {

    .hero-banner {
        min-height: 50vh !important;
    }

    .hero-banner-content {
        text-align: left;
        display: flex;
    }

    .hero-banner-content h1 {
        font-size: 1.5rem;

        line-height: 1.1;
        width: 100% !important;
        margin: 0 auto 15px;
    }

    .hero-banner-content p {
        font-size: 14px;
        line-height: 1.7;
        max-width: 280px;
    }

    .hero-banner-content p {
        font-size: 1rem;
    }

    .hero-btn-primary {
        padding: 12px 25px;
    }
}


/* home gallery */

.home-gallery-section {
    padding: 10px 0;
    background: #fff;
}

.gallery-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(37, 37, 100, .08);
    color: #252564;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.gallery-title {
    font-size: 35px;
    font-weight: 800;
    color: #252564;
    margin: 15px 0;
}

.gallery-subtitle {
    max-width: 650px;
    margin: auto;
    color: #666;
}

.gallery-card {
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-view-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #252564, #d62025);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.gallery-view-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* crad */

.academy-program-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    border: 1px solid #edf0f5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transition: .3s;
}

.academy-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

.academy-program-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #f8f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.academy-program-logo img {
    width: 65px;
    height: 65px;
    object-fit: cover;
}

.academy-program-title {
    color: #252564;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.academy-program-desc {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.academy-course-header {
    max-width: 850px;
    margin: 0 auto 70px;
}

.academy-course-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(214, 32, 37, .08);
    color: #d62025;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.academy-course-badge i {
    font-size: 16px;
}

.academy-course-heading {
    font-size: 35px;
    font-weight: 800;
    color: #252564;
    line-height: 1.2;
    margin-bottom: 20px;
}

.academy-course-heading span {
    color: #d62025;
}

.academy-course-description {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.9;
}

.academy-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: linear-gradient(135deg, #252564, #d62025);
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    box-shadow: 0 15px 35px rgba(37, 37, 100, .25);
    transition: all .3s ease;
}

.academy-view-btn i {
    font-size: 18px;
    transition: .3s;
}

.academy-view-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(214, 32, 37, .25);
}

.academy-view-btn:hover i {
    transform: translateX(5px);
}

@media(max-width:768px) {

    .academy-course-heading {
        font-size: 36px;
    }

    .academy-course-description {
        font-size: 16px;
    }

}

.academy-testimonial-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fc, #ffffff);
}

.academy-section-header {
    max-width: 850px;
    margin: 0 auto 70px;
}

.academy-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(214, 32, 37, .08);
    color: #d62025;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.academy-section-badge i {
    font-size: 14px;
}

.academy-section-title {
    margin-top: 20px;
    font-size: 35px;
    font-weight: 800;
    color: #252564;
    line-height: 1.2;
}

.academy-section-title span {
    color: #d62025;
    position: relative;
}

.academy-section-title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background: rgba(214, 32, 37, .15);
    z-index: -1;
}

.academy-section-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #252564, #d62025);
    border-radius: 10px;
    margin: 25px auto;
}

.academy-section-description {
    max-width: 700px;
    margin: auto;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.9;
}

@media(max-width:768px) {

    .academy-section-title {
        font-size: 25px;
    }

    .academy-section-description {
        font-size: 15px;
    }

}

.academy-testimonial-card {
    max-width: 700px;
    margin: auto;
    background: #fff;
    border-radius: 24px;
    padding: 35px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
    border: 1px solid rgba(37, 37, 100, .08);
    position: relative;
}

.academy-testimonial-card::before {
    content: "❝";
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 70px;
    color: rgba(214, 32, 37, .08);
    font-weight: bold;
    line-height: 1;
}

.academy-testimonial-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
}

.academy-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #d62025;
    box-shadow: 0 10px 25px rgba(214, 32, 37, .15);
}

.academy-testimonial-message {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    font-style: normal;
}

.academy-testimonial-name {
    color: #252564;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.academy-testimonial-position {
    color: #d62025;
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
}

.carousel-control-prev {
    left: -40px;
}

.carousel-control-next {
    right: -40px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 45px;
    height: 45px;
    background-color: #252564;
    border-radius: 50%;
    background-size: 16px;
}

.carousel-indicators {
    margin-bottom: -45px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d62025;
}

@media(max-width:768px) {

    .academy-testimonial-card {
        padding: 30px 20px;
    }

    .academy-testimonial-image {
        width: 75px;
        height: 75px;
    }

    .academy-testimonial-message {
        font-size: 15px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}


/* footer */

.academy-footer {
    background: #0f172a;
    color: #fff;
    padding: 80px 0 0;
}

.academy-footer-logo img {
    max-height: 70px;
    margin-bottom: 20px;
    background: #fff !important;

}

.academy-footer-about {
    color: #cbd5e1;
    line-height: 1.9;
}

.academy-footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}

.academy-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.academy-footer ul li {
    margin-bottom: 12px;
}

.academy-footer ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: .3s;
}

.academy-footer ul li a:hover {
    color: #d62025;
    padding-left: 5px;
}

.academy-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    color: #cbd5e1;
}

.academy-contact-item i {
    color: #d62025;
}

.academy-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.academy-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.academy-footer-social a:hover {
    background: #d62025;
    transform: translateY(-3px);
}

.academy-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 22px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.academy-whatsapp-btn:hover {
    color: #fff;
}

.academy-footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    padding: 20px 0;
    color: #94a3b8;
}

.academy-floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
}


.academy-stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.academy-stat-card h3 {
    color: #d62025;
    font-size: 40px;
    font-weight: 800;
}


.academy-feature-card {
    background: #fff;
    text-align: center;
    padding: 35px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .3s;
}

.academy-feature-card:hover {
    transform: translateY(-8px);
}

.academy-feature-card i {
    font-size: 40px;
    color: #d62025;
    margin-bottom: 15px;
}

/* about' section */


.about-banner {
    position: relative;
    height: 60vh;
    background: url("../images/banners/banner.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* Dark overlay for readability */
.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Title */
.banner-title {
    position: relative;

    z-index: 2;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Mobile */
@media(max-width:768px) {
    .about-banner {
        height: 220px;
    }

    .banner-title {
        font-size: 28px;
    }
}

.about-premium-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #252564, #1a1a3f);
    color: #fff;
    overflow: hidden;
}

/* Badge */
.about-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(214, 32, 25, 0.15);
    border: 1px solid #d62025;
    color: #fff;
    font-size: 13px;
    border-radius: 30px;
    margin-bottom: 15px;
}

/* Title */
.about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Text */
.about-text {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.7;
}

/* Highlights box */
.about-highlight-box {
    margin-top: 20px;
    padding: 15px;
    border-left: 4px solid #d62025;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 14px;
}

/* IMAGE COMPOSITION (NOT GRID / NOT GALLERY) */
.about-image-wrap {
    position: relative;
    height: 420px;
}

/* Main image */
.img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.about-image-wrap .about-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 22px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border: 1px solid rgba(214, 32, 37, 0.5);

    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(214, 32, 37, 0.2);

    transition: all .3s ease;
}

.about-img-badge:hover {
    transform: translateY(-3px);
    border-color: #d62025;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(214, 32, 37, 0.35);
}

.about-img-badge i {
    color: #d62025;
    font-size: 14px;
}


/* Mobile Responsive */
@media(max-width: 768px) {
    .about-title {
        font-size: 26px;
    }

    .about-image-wrap {
        margin-top: 30px;
        height: 320px;
    }

    .img-main {
        width: 100%;
    }

    .img-top-right,
    .img-bottom-left,
    .img-floating {
        display: none;
    }

    .about-premium-section {
        padding: 10px 0;
    }

    .about-badge {
        margin-top: 10px;
    }

    .why-choose-section {
        padding: 40px 0;
    }

    .academy-testimonial-section {
        padding: 40px 0;
    }
}

.why-choose-section {
    padding: 40px 0;
    background: #f8f9fc;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #252564;
}

.section-title p {
    color: #666;
    margin-top: 8px;
}

/* Main box */
.why-choose-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #d62025;
}

/* Text */
.why-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* Highlight box */
.why-highlight {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #252564, #1a1a3f);
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.6;
}

/* Mobile */
@media(max-width:768px) {
    .why-choose-box {
        padding: 25px;
    }

    .section-title h2 {
        font-size: 26px;
    }
}


.vision-mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fc, #ffffff);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #252564;
}

.section-title p {
    color: #666;
    margin-top: 8px;
}

/* Grid */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Cards */
.vm-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

/* Hover effect */
.vm-card:hover {
    transform: translateY(-5px);
}

/* Icon */
.vm-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

/* Titles */
.vm-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #252564;
}

/* Text */
.vm-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* Vision accent */
.vm-card.vision {
    border-top: 4px solid #252564;
}

/* Mission accent */
.vm-card.mission {
    border-top: 4px solid #d62025;
}

/* Mobile */
@media(max-width:768px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 25px;
    }
}


/* gallery */


.premium-gallery {
    padding: 40px 0;
    background: #f8f9fc;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #252564;
}

.section-title p {
    color: #666;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ITEM */
.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin: 10px auto;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

/* HOVER ZOOM */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(37, 37, 100, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    color: #fff;
    font-weight: 500;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* MOBILE */
@media(max-width:992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* central goverment */

.central-page-header {
    position: relative;
    min-height: 50vh;
    /* better than height for responsiveness */
    padding: 0;
    background: url('../images/banners/banner.png') center center / cover no-repeat;
    color: #fff;

    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
}

.central-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.central-page-header .container {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.central-tag {
    background: rgba(255, 255, 255, .15);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.central-page-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.central-page-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
}

/* Tablet */
@media (max-width: 991px) {
    .central-page-header {
        min-height: 45vh;
        text-align: center;
    }

    .central-page-header h1 {
        font-size: 2.4rem;
    }

    .central-page-header p {
        font-size: 1rem;
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .central-page-header {
        min-height: 40vh;
    }

    .central-page-header h1 {
        font-size: 1.4rem;
    }

    .central-page-header p {
        font-size: .95rem;
        line-height: 1.7;
    }

    .central-tag {
        font-size: .85rem;
        padding: 8px 16px;
    }

    .exam-content-section h2 {
        font-size: 1.25rem;
    }
}

.section-heading h2,
.exam-content-section h2 {
    color: #252564;
    font-weight: 800;
    margin-bottom: 30px;

}




.exam-content-section {
    padding: 40px 0;
}

.exam-block {
    padding: 25px 0;
    border-bottom: 1px solid #e9ecef;
}

.exam-block:last-child {
    border-bottom: none;
}

.exam-block h4 {
    color: #d62025;
    font-weight: 700;
    margin-bottom: 12px;
}

.exam-block p {
    color: #666;
    line-height: 1.9;
    margin: 0;
}

/* contactpage */

.contact-top-section {
    padding: 40px 0 50px;
}

.contact-info-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

}

.contact-info-box {
    text-align: center;
}

.contact-info-box i {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;
    color: #fff;
    font-size: 24px;

    background: linear-gradient(135deg,
            #252564,
            #d62025);
}

.contact-info-box h5 {
    color: #252564;
    font-weight: 700;
}

.contact-info-box p {
    color: #666;
    margin: 0;
}

/* Main Section */

.contact-main-section {
    padding-bottom: 80px;
}

.contact-map-card {
    height: 100%;
    min-height: 600px;

    overflow: hidden;
    border-radius: 24px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;

    height: 100%;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.form-title span {
    color: #d62025;
    font-weight: 600;
}

.form-title h2 {
    color: #252564;
    font-weight: 800;
    margin-top: 8px;
    margin-bottom: 30px;
}

.academy-input {
    height: 56px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: none !important;
}

textarea.academy-input {
    height: auto;
}

.academy-input:focus {
    border-color: #d62025;
}

.academy-contact-btn {
    border: none;
    padding: 14px 35px;

    border-radius: 50px;

    color: #fff;
    font-weight: 600;

    background: linear-gradient(135deg,
            #252564,
            #d62025);
}

@media(max-width:991px) {

    .contact-info-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-map-card {
        min-height: 400px;
    }
}

@media(max-width:576px) {

    .contact-info-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .contact-info-box:last-child {
        grid-column: 1 / -1;
    }

    .contact-info-box {
        text-align: left;
    }

    .contact-info-box i {
        width: 55px;
        height: 55px;
        font-size: 20px;
        margin: 0 0 15px 0;
        /* remove auto centering */
    }

    .contact-info-box h5 {
        font-size: 15px;
    }

    .contact-info-box p {
        font-size: 13px;
    }

    .contact-form-card {
        padding: 25px;
    }
}