/* container */

@media (max-width:576px) {

    .container {
        width: 94%;
    }

}

@media (max-width:320px) {

    .container {
        width: 96%;
        padding: 0 12px;
    }

}

/*================ NAVBAR RESPONSIVE ================*/

/* Large Laptop */
@media (max-width:1200px) {

    .nav-container {
        padding: 14px 0;
    }

    nav ul {
        gap: 28px;
    }

    .logo img {
        height: 60px;
    }

    .logo-text h2 {
        font-size: 22px;
    }

    .logo-text span {
        font-size: 14px;
    }

    .btn-fill,
    .btn-outline {
        padding: 14px 26px;
    }

}


/* Tablet */
@media (max-width:992px) {

    .nav-container {
        padding: 14px 0;
    }

    .logo img {
        height: 54px;
    }

    .logo-text h2 {
        font-size: 20px;
    }

    .logo-text span {
        font-size: 13px;
    }

    /* Mobile Navigation */

    #primaryNav {

        position: fixed;

        top: 88px;

        left: 0;

        width: 100%;

        background: rgba(255, 255, 255, .96);

        backdrop-filter: blur(18px);

        border-top: 1px solid rgba(0, 0, 0, .05);

        box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

        padding: 35px 0;

        transform: translateY(-120%);

        opacity: 0;

        visibility: hidden;

        transition: .35s ease;

    }

    #primaryNav.active {

        transform: translateY(0);

        opacity: 1;

        visibility: visible;

    }

    .nav-links {

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 24px;

    }

    .nav-links li a {

        font-size: 18px;

        font-weight: 600;

    }

    .nav-btn {

        display: none;

    }

    .mobile-menu-toggle {

        display: flex;

        justify-content: center;

        align-items: center;

    }

    /* Optional */

    .mobile-nav-btn {

        display: flex;

        justify-content: center;

        margin-top: 35px;

    }

}


/* Tablet Small */
@media (max-width:768px) {

    .nav-container {

        padding: 12px 0;

    }

    .logo img {

        height: 48px;

    }

    .logo-text h2 {

        font-size: 18px;

    }

    .logo-text span {

        font-size: 12px;

    }

    #primaryNav {

        top: 82px;

        padding: 30px 0;

    }

    .nav-links {

        gap: 22px;

    }

    .nav-links li a {

        font-size: 17px;

    }

}


/* Mobile */
@media (max-width:576px) {

    .nav-container {

        padding: 12px 0;

    }

    .logo a {

        gap: 10px;

    }

    .logo img {

        height: 42px;

    }

    .logo-text h2 {

        font-size: 17px;

    }

    .logo-text span {

        font-size: 11px;

    }

    #primaryNav {

        top: 76px;

        padding: 28px 0;

    }

    .nav-links {

        gap: 20px;

    }

    .nav-links li a {

        font-size: 16px;

    }

    .mobile-menu-toggle {

        width: 42px;

        height: 42px;

        font-size: 18px;

    }

}


/* Small Mobile */
@media (max-width:400px) {

    .logo img {

        height: 38px;

    }

    .logo-text h2 {

        font-size: 15px;

    }

    .logo-text span {

        font-size: 10px;

    }

    #primaryNav {

        top: 72px;

    }

    .mobile-menu-toggle {

        width: 40px;

        height: 40px;

        font-size: 17px;

    }

}


/* Extra Small Mobile */
@media (max-width:320px) {

    .logo img {

        height: 34px;

    }

    .logo-text h2 {

        font-size: 14px;

    }

    .logo-text span {

        font-size: 9px;

    }

    #primaryNav {

        top: 68px;

    }

    .nav-links li a {

        font-size: 15px;

    }

    .mobile-menu-toggle {

        width: 36px;

        height: 36px;

        font-size: 16px;

    }

}

/*================ HERO SECTION ================*/

/* ---------- Laptop ---------- */
@media (max-width:1200px) {

    .hero {
        padding-top: 80px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-left h1 {
        font-size: 56px;
    }

    .hero-left p {
        font-size: 17px;
    }

    .hero-right img {
        max-width: 500px;
    }

    .floating-card {
        width: 220px;
        padding: 15px;
    }

}


/* ---------- Tablet ---------- */
@media (max-width:992px) {

    .hero {
        padding: 120px 0 70px;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
        gap: 60px;
    }

    .hero-left {
        order: 1;
        padding-bottom: 0;
        width: 100%;
    }

    .hero-right {
        order: 2;
        width: 100%;
    }

    .hero-left h1 {
        font-size: 48px;
    }

    .hero-left p {
        max-width: 650px;
        margin: 0 auto 20px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-right img {
        max-width: 450px;
    }

    /* Floating Cards */

    .card1 {
        top: 5%;
        left: 5%;
    }

    .card2 {
        top: 35%;
        right: 5%;
    }

    .card3 {
        bottom: 5%;
        left: 8%;
    }

}


/* ---------- Small Tablet ---------- */
@media (max-width:768px) {

    .hero-left h1 {
        font-size: 40px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-right img {
        max-width: 380px;
    }

    .floating-card {
        width: 180px;
        padding: 12px;
        gap: 10px;
    }

    .floating-card h3 {
        font-size: 15px;
    }

    .floating-card p {
        font-size: 12px;
    }

}


/* ---------- Mobile ---------- */
@media (max-width:576px) {

    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }

    .hero-container {
        gap: 20px;
        align-items: center;
    }

    .hero-left {
        width: 100%;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .hero-left p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    /* Mobile Image */

    .hero-mobile-image {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        margin: 15px 0 0px;
    }

    .hero-mobile-image img {
        width: 100%;
        max-width: 340px;
        filter: drop-shadow(0 25px 35px rgba(0, 0, 0, .18));
    }

    /* Hide Desktop Image */

    .hero-right {
        display: none;
    }

    /* Hide Floating Cards */

    .floating-card {
        display: none;
    }

    /* Buttons */

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn-fill,
    .hero-buttons .btn-outline {
        width: 220px;
        text-align: center;
    }

    /* Trust Bar */

    .hero-trust {
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

}


/* ---------- Small Mobile ---------- */
@media (max-width:400px) {

    .hero-left h1 {
        font-size: 30px;
    }

    .hero-tag {
        font-size: 13px;
        padding: 8px 16px;
    }

    .hero-left p {
        font-size: 14px;
    }

    .hero-mobile-image img {
        max-width: 300px;
    }

    .mobile-badge {
        padding: 10px 16px;
    }

}


/* ---------- 320px Devices ---------- */
@media (max-width:320px) {

    .hero {
        padding: 90px 0 35px;
    }

    .hero-left h1 {
        font-size: 26px;
    }

    .hero-left p {
        font-size: 13px;
    }

    .hero-mobile-image img {
        max-width: 260px;
    }

    .hero-buttons .btn-fill,
    .hero-buttons .btn-outline {
        width: 100%;
    }

    .mobile-badge {
        width: 90%;
        right: 50%;
        transform: translateX(50%);
    }

}

/*================ ABOUT SECTION ================*/

/* Large Devices */
@media (max-width:1200px) {

    .about-container {
        gap: 70px;
    }

    .about-content h2 {
        font-size: 46px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-image img {
        max-width: 460px;
    }

    .about-shape {
        width: 350px;
        height: 350px;
    }

}


/* Medium Devices */
@media (max-width:992px) {

    .about {
        padding: 70px 0;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .about-image {
        order: 1;
        margin-bottom: 10px;
    }

    .about-content {
        order: 2;
        max-width: 700px;
    }

    .about-content h2 {
        font-size: 40px;
        line-height: 1.15;
    }

    .about-content p {
        max-width: 620px;
        margin: 0 auto 30px;
    }

    .about-features {
        max-width: 600px;
        margin: 0 auto 35px;
    }

    .feature {
        justify-content: center;
    }

    .about-badge {
        right: 0;
    }

}


/* Tablets */
@media (max-width:768px) {

    .about {
        padding: 70px 0;
    }

    .about-container {
        gap: 40px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-image img {
        max-width: 340px;
    }

    .about-shape {
        width: 290px;
        height: 290px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature {
        justify-content: flex-start;
        padding: 16px 20px;
    }

}


/* Mobile */
@media (max-width:576px) {

    .about {
        padding: 60px 0;
    }

    .about-container {
        gap: 35px;
    }

    .about-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .about-content p {
        font-size: 15px;
        max-width: 330px;
        margin: 0 auto 30px;
    }

    .about-image img {
        max-width: 320px;
    }

    .about-shape {
        width: 250px;
        height: 250px;
    }

    .about-badge {
        bottom: -12px;
        right: 10px;
        padding: 12px 18px;
    }

    .about-features {
        gap: 14px;
    }

    .btn-fill {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }

}


/* Small Mobile */
@media (max-width:400px) {

    .section-tag {
        font-size: 13px;
        padding: 8px 16px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-image img {
        max-width: 280px;
    }

    .about-shape {
        width: 220px;
        height: 220px;
    }

    .about-badge {
        padding: 10px 14px;
        gap: 10px;
    }

    .about-badge i {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .about-badge h3 {
        font-size: 16px;
    }

    .about-badge p {
        font-size: 12px;
    }

}


/* Extra Small Mobile */
@media (max-width:320px) {

    .about {
        padding: 50px 0;
    }

    .about-container {
        gap: 30px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-image img {
        max-width: 230px;
    }

    .about-shape {
        width: 190px;
        height: 190px;
    }

    .about-badge {
        padding: 8px 12px;
        gap: 8px;
    }

    .about-badge i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

}

/*================ WHY CHOOSE RESPONSIVE ================*/

/*================ LARGE LAPTOP ================*/

@media (max-width:1200px) {

    .why {
        padding: 5px 0;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
    }

    .why-card {
        min-height: 340px;
        padding: 30px;
    }

    .why-number {
        font-size: 38px;
    }

    .why-content h3 {
        font-size: 28px;
    }

    .why-content p {
        font-size: 16px;
    }

}


/*================ TABLET ================*/

@media (max-width:992px) {

    .why {
        padding: 80px 0;
    }

    .why-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 24px;

    }

    .why-card {

        min-height: 330px;

        padding: 28px;

    }

    .why-icon {

        width: 82px;
        height: 82px;

    }

    .why-icon i {

        font-size: 36px;

    }

    .why-content h3 {

        font-size: 28px;

    }

    .why-content p {

        font-size: 16px;

    }

}


/*================ MOBILE APP ================*/

@media (max-width:768px) {

    .why {

        padding: 70px 0;

    }

    .why .container {

        padding-right: 0;

    }

    .why-grid {

        display: flex;

        gap: 18px;

        overflow-x: auto;

        overflow-y: hidden;

        scroll-snap-type: x mandatory;

        scroll-behavior: smooth;

        padding: 10px 20px 20px;

        scrollbar-width: none;

    }

    .why-grid::-webkit-scrollbar {

        display: none;

    }

    .why-card {

        flex: 0 0 82%;

        max-width: 310px;

        min-height: 300px;

        scroll-snap-align: center;

        padding: 28px;

    }

    .why-number {

        font-size: 34px;

        top: 22px;

        right: 22px;

    }

    .why-icon {

        width: 72px;

        height: 72px;

        border-radius: 22px;

        margin-bottom: 24px;

    }

    .why-icon i {

        font-size: 30px;

    }

    .why-content h3 {

        font-size: 24px;

        margin-bottom: 18px;

    }

    .why-content p {

        font-size: 15px;

        line-height: 1.7;

    }

    .why-arrow {

        width: 60px;

        height: 60px;

    }

    .why-arrow i {

        font-size: 22px;

    }

}


/*================ SMALL MOBILE ================*/

@media (max-width:576px) {

    .why-card {

        flex: 0 0 85%;

    }

}


/*================ EXTRA SMALL ================*/

@media (max-width:400px) {

    .why-card {

        flex: 0 0 90%;

        min-height: 280px;

        padding: 24px;

    }

    .why-content h3 {

        font-size: 22px;

    }

    .why-content p {

        font-size: 14px;

    }

    .why-number {

        font-size: 30px;

    }

    .why-arrow {

        width: 54px;

        height: 54px;

    }

}

/* internship section */
@media (max-width:1200px) {

    .internship-container {
        gap: 60px;
    }

    .internship-content h2 {
        font-size: 44px;
    }

    .internship-content p {
        font-size: 16px;
    }

    .internship-image img {
        max-width: 440px;
    }

    .intern-card {
        padding: 16px 20px;
    }

}

@media (max-width:992px) {

    .internship {
        padding: 25px 0;
    }

    .internship-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .internship-content {
        order: 2;
    }

    .internship-image {
        order: 1;
    }

    .internship-content h2 {
        font-size: 40px;
    }

    .internship-content p {
        max-width: 700px;
        margin: 0 auto 30px;
    }

    .internship-features {
        max-width: 600px;
        margin: 0 auto 35px;
    }

    .internship-item {
        justify-content: center;
    }

    .card-a {
        left: 10px;
    }

    .card-b {
        right: 10px;
    }

}

@media (max-width:768px) {

    .internship-content h2 {
        font-size: 34px;
    }

    .internship-content p {
        font-size: 15px;
    }

    .internship-image img {
        max-width: 360px;
    }

    .internship-features {
        grid-template-columns: 1fr;
    }

    .intern-card {
        padding: 14px 18px;
    }

    .intern-card h3 {
        font-size: 18px;
    }

    .intern-card p {
        font-size: 13px;
    }

    .intern-card i {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

}

/* Mobile */
@media (max-width:576px) {

    .internship {
        padding: 25px 0;
    }

    .internship-container {
        gap: 35px;
    }

    .internship-content h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .internship-content p {
        font-size: 15px;
        max-width: 330px;
        margin: 0 auto 30px;
    }

    .internship-image-wrapper {
        position: relative;
        display: inline-block;
    }

    .internship-image img {
        max-width: 320px;
        border-radius: 20px;
    }

    .internship-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .internship-item {
        justify-content: flex-start;
    }

    /* Floating cards */

    .intern-card {
        position: absolute;
        width: auto;
        margin: 0;
        padding: 10px 14px;
        gap: 10px;
        border-radius: 14px;
    }

    .intern-card i {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .intern-card h3 {
        font-size: 18px;
        margin: 0;
    }

    .intern-card p {
        display: none;
    }

    .card-a {
        top: -12px;
        left: -18px;
    }

    .card-b {
        bottom: -12px;
        right: -18px;
    }

    .btn-fill {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }

}


/* Small Mobile */
@media (max-width:400px) {

    .internship-content h2 {
        font-size: 26px;
    }

    .internship-image img {
        max-width: 280px;
    }

    .intern-card {
        padding: 8px 12px;
        gap: 8px;
    }

    .intern-card i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .intern-card h3 {
        font-size: 16px;
    }

    .card-a {
        top: -10px;
        left: -12px;
    }

    .card-b {
        bottom: -10px;
        right: -12px;
    }
}


/* Extra Small Mobile */
@media (max-width:320px) {

    .internship-content h2 {
        font-size: 24px;
    }

    .internship-image img {
        max-width: 230px;
    }

    .intern-card {
        padding: 6px 10px;
    }

    .intern-card i {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .intern-card h3 {
        font-size: 14px;
    }

    .card-a {
        top: -6px;
        left: -8px;
    }

    .card-b {
        bottom: -6px;
        right: -8px;
    }
}

/*================ COURSES SECTION ================*/

/* Large Laptop */
@media (max-width:1200px) {

    .courses-home {
        padding: 25px 0;
    }

    .course-grid {
        gap: 30px;
    }

    .course-card img {
        height: 220px;
    }

    .course-content {
        padding: 28px;
    }

    .course-content h3 {
        font-size: 28px;
    }

    .course-content p {
        font-size: 15px;
    }

}


/* Tablet Landscape */
@media (max-width:992px) {

    .courses-home {
        padding: 70px 0;
    }

    .course-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .course-card img {
        height: 210px;
    }

    .course-content {
        padding: 25px;
    }

    .course-content h3 {
        font-size: 26px;
    }

    .course-content p {
        font-size: 15px;
    }

    .course-content ul li {
        font-size: 15px;
    }

    .view-all {
        margin-top: 60px;
    }

}


/* Tablet */
@media (max-width:768px) {

    .courses-home {
        padding: 70px 0;
    }

    .course-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 520px;
        margin: auto;
    }

    .course-card img {
        height: 240px;
    }

    .course-content {
        padding: 24px;
    }

    .course-content h3 {
        font-size: 26px;
    }

    .course-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .course-content ul li {
        font-size: 15px;
    }

}


/* Mobile */
@media (max-width:576px) {

    .courses-home {
        padding: 60px 0;
    }

    .course-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .course-card {
        border-radius: 20px;
    }

    .course-card img {
        height: 220px;
    }

    .course-content {
        padding: 22px;
    }

    .badge {
        padding: 7px 16px;
        font-size: 12px;
    }

    .course-content h3 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .course-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .course-content ul {
        margin: 18px 0;
    }

    .course-content ul li {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .course-btn {
        font-size: 16px;
    }

    .view-all {
        margin-top: 40px;
    }

    .view-all .btn-fill {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

}


/* Small Mobile */
@media (max-width:400px) {

    .courses-home {
        padding: 50px 0;
    }

    .course-card img {
        height: 190px;
    }

    .course-content {
        padding: 20px;
    }

    .badge {
        padding: 6px 14px;
        font-size: 11px;
    }

    .course-content h3 {
        font-size: 24px;
    }

    .course-content p {
        font-size: 14px;
    }

    .course-content ul li {
        font-size: 15px;
    }

    .course-btn {
        font-size: 15px;
    }

}


/* Extra Small Mobile */
@media (max-width:320px) {

    .course-card img {
        height: 170px;
    }

    .course-content {
        padding: 18px;
    }

    .course-content h3 {
        font-size: 22px;
    }

    .course-content p {
        font-size: 13px;
    }

    .course-content ul li {
        font-size: 14px;
    }

    .badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .course-btn {
        font-size: 14px;
    }

}

/*================ DIRECTOR RESPONSIVE ================*/

@media(max-width:1200px) {

    .director-container {

        gap: 60px;

    }

    .director-content h2 {

        font-size: 46px;

    }

}

@media(max-width:992px) {

    .director {

        padding: 25px 0;

    }

    .director-container {

        flex-direction: column;

        text-align: center;

        gap: 50px;

    }

    .director-image {

        order: 1;

    }

    .director-content {

        order: 2;

        flex: 1;

        max-width: 700px;

    }

    .director-content p {

        margin: auto auto 10px;

    }

    .director-content blockquote {

        text-align: left;

    }

}

@media(max-width:768px) {

    .director-img {

        max-width: 420px;

    }

    .director-content h2 {

        font-size: 36px;

    }

    .director-content p {

        font-size: 16px;

    }

    .director-card {

        right: 15px;

        bottom: 15px;

        padding: 14px 18px;

    }

    .director-card i {

        width: 50px;

        height: 50px;

        font-size: 20px;

    }

}

@media(max-width:576px) {

    .director {

        padding: 25px 0;

    }

    .director-img {

        max-width: 100%;

    }

    .director-content h2 {

        font-size: 32px;

    }

    .director-content p {

        font-size: 15px;

    }

    .director-card {

        right: 12px;

        bottom: 12px;

        padding: 10px 14px;

        gap: 10px;

    }

    .director-card i {

        width: 42px;

        height: 42px;

        font-size: 18px;

    }

    .director-card-content h3 {

        font-size: 18px;

    }

    .director-card-content p {

        display: none;

    }

}

@media(max-width:400px) {

    .director-content h2 {

        font-size: 28px;

    }

    .director-card {

        right: 10px;

        bottom: 10px;

        padding: 8px 12px;

    }

    .director-card i {

        width: 38px;

        height: 38px;

        font-size: 16px;

    }

    .director-card-content h3 {

        font-size: 16px;

    }

}

@media(max-width:320px) {

    .director-content h2 {

        font-size: 24px;

    }

    .director-card {

        right: 8px;

        bottom: 8px;

    }

}

/*==================================================
    ACHIEVEMENTS - APP STYLE
==================================================*/

/*================ DESKTOP ================*/

@media (max-width:1200px) {

    .achievements {
        padding: 25px 0;
    }

    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .achievement-card {
        padding: 30px;
        min-height: 300px;
    }

    .achievement-number {
        font-size: 42px;
    }

    .achievement-title {
        font-size: 22px;
    }

}


/*================ TABLET ================*/

@media (max-width:991px) {

    .achievements {
        padding: 25px 0;
    }

    .achievements .container {
        padding-right: 0;
    }

    .achievement-grid {

        display: flex;

        gap: 18px;

        overflow-x: auto;

        overflow-y: hidden;

        scroll-snap-type: x mandatory;

        scroll-behavior: smooth;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;

        padding: 10px 20px 20px;

    }

    .achievement-grid::-webkit-scrollbar {

        display: none;

    }

    .achievement-card {

        flex: 0 0 82%;

        max-width: 295px;

        min-height: 250px;

        padding: 28px;

        border-radius: 24px;

        scroll-snap-align: center;

    }

    .achievement-top {

        position: relative;

        margin-bottom: 22px;

    }

    .achievement-icon {

        width: 68px;

        height: 68px;

        margin: 0 auto;

        border-radius: 20px;

    }

    .achievement-icon i {

        font-size: 28px;

    }

    .achievement-index {

        font-size: 34px;

        top: -4px;

        right: 0;

    }

    .achievement-number {

        font-size: 38px;

        margin-bottom: 14px;

    }

    .achievement-title {

        font-size: 22px;

        margin-bottom: 14px;

    }

    .achievement-line {

        width: 42px;

        margin: 0 auto 16px;

    }

    .achievement-desc {

        font-size: 14px;

        line-height: 1.7;

    }

}


/*================ MOBILE ================*/

@media (max-width:576px) {

    .achievement-card {

        flex: 0 0 86%;

        max-width: 275px;

        min-height: 235px;

        padding: 24px;

    }

    .achievement-icon {

        width: 62px;

        height: 62px;

    }

    .achievement-icon i {

        font-size: 24px;

    }

    .achievement-index {

        font-size: 30px;

    }

    .achievement-number {

        font-size: 34px;

    }

    .achievement-title {

        font-size: 20px;

    }

    .achievement-desc {

        font-size: 13px;

    }

}


/*================ EXTRA SMALL ================*/

@media (max-width:400px) {

    .achievement-card {

        flex: 0 0 90%;

    }

}

/*==================================================
    TESTIMONIALS - APP STYLE
==================================================*/

/*============= Desktop =============*/

@media (max-width:1200px) {

    .testimonial-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 26px;

    }

}


/*============= Tablet & Mobile =============*/

@media (max-width:991px) {

    .testimonials {

        padding: 70px 0;

    }

    .testimonials .container {

        padding-right: 0;

    }

    .testimonials .section-title {

        padding: 0 20px;

        margin-bottom: 30px;

    }

    .testimonials .section-title h2 {

        font-size: 34px;

        line-height: 1.2;

    }

    .testimonials .section-title p {

        font-size: 15px;

        line-height: 1.7;

    }

    /* Horizontal Scroll */

    .testimonial-grid {

        display: flex;

        gap: 18px;

        overflow-x: auto;

        overflow-y: hidden;

        scroll-snap-type: x mandatory;

        scroll-behavior: smooth;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;

        padding: 10px 20px 20px;

        margin-top: 0;

    }

    .testimonial-grid::-webkit-scrollbar {

        display: none;

    }

    /* Card */

    .testimonial-card {

        flex: 0 0 82%;

        max-width: 295px;

        min-height: 340px;

        padding: 28px;

        border-radius: 24px;

        scroll-snap-align: center;

    }

    /* Top */

    .testimonial-top {

        margin-bottom: 22px;

    }

    .testimonial-index {

        font-size: 34px;

        top: -4px;

        right: 0;

    }

    .quote-icon {

        width: 68px;

        height: 68px;

        border-radius: 20px;

    }

    .quote-icon i {

        font-size: 26px;

    }

    /* Stars */

    .stars {

        justify-content: center;

        margin-bottom: 14px;

    }

    .stars i {

        font-size: 15px;

    }

    .review-source {

        font-size: 13px;

    }

    .testimonial-line {

        width: 42px;

        margin: 18px auto;

    }

    .testimonial-text {

        font-size: 15px;

        line-height: 1.75;

        text-align: center;

    }

    /* Student */

    .student {

        gap: 12px;

    }

    .student img {

        width: 56px;

        height: 56px;

    }

    .student h4 {

        font-size: 17px;

    }

    .course-badge {

        font-size: 12px;

        padding: 6px 12px;

    }

}


/*============= Mobile =============*/

@media (max-width:576px) {

    .testimonial-card {

        flex: 0 0 86%;

        max-width: 275px;

        min-height: 320px;

        padding: 24px;

    }

    .quote-icon {

        width: 62px;

        height: 62px;

    }

    .quote-icon i {

        font-size: 24px;

    }

    .testimonial-index {

        font-size: 30px;

    }

    .testimonial-text {

        font-size: 14px;

    }

    .student img {

        width: 52px;

        height: 52px;

    }

    .student h4 {

        font-size: 16px;

    }

}


/*============= Small Mobile =============*/

@media (max-width:400px) {

    .testimonial-card {

        flex: 0 0 90%;

    }

    .quote-icon {

        width: 56px;

        height: 56px;

    }

    .quote-icon i {

        font-size: 22px;

    }

    .testimonial-index {

        font-size: 28px;

    }

    .testimonial-text {

        font-size: 13px;

    }

}

/*================ CTA SECTION ================*/

/* Large Laptop */
@media (max-width:1200px) {

    .cta {
        padding: 25px 0;
    }

    .cta-box {
        padding: 70px 50px;
    }

    .cta-box h2 {
        font-size: 48px;
    }

    .cta-box p {
        font-size: 17px;
    }

}

/* Tablet */
@media (max-width:992px) {

    .cta {
        padding: 70px 0;
    }

    .cta-box {
        padding: 60px 40px;
    }

    .cta-box h2 {
        font-size: 42px;
    }

    .cta-box p {
        max-width: 650px;
    }

}

/* Small Tablet */
@media (max-width:768px) {

    .cta {
        padding: 70px 0;
    }

    .cta-box {

        padding: 55px 30px;

        border-radius: 26px;

    }

    .cta-box h2 {

        font-size: 36px;

    }

    .cta-box p {

        font-size: 16px;

    }

    .cta-buttons {

        gap: 15px;

    }

}

/* Mobile */
@media (max-width:576px) {

    .cta {
        padding: 25px 0;
    }

    .cta-box {

        padding: 45px 24px;

        border-radius: 22px;

    }

    .cta-tag {

        font-size: 13px;

        padding: 8px 18px;

    }

    .cta-box h2 {

        font-size: 32px;

    }

    .cta-box p {

        font-size: 15px;

        margin-bottom: 30px;

    }

    .cta-buttons {

        flex-direction: column;

        width: 100%;

    }

    .cta .btn-fill,
    .cta .btn-outline {

        width: 100%;
        max-width: 260px;

    }

}

/* Small Mobile */
@media (max-width:400px) {

    .cta-box {

        padding: 38px 18px;

    }

    .cta-box h2 {

        font-size: 28px;

    }

    .cta-box p {

        font-size: 14px;

    }

}

/* Extra Small */
@media (max-width:320px) {

    .cta-box {

        padding: 30px 16px;

    }

    .cta-box h2 {

        font-size: 24px;

    }

    .cta-box p {

        font-size: 13px;

    }

}

/*================ FOOTER RESPONSIVE ================*/

/* Large Laptop */
@media (max-width:1200px) {

    .footer {
        padding: 35px 0 25px;
    }

    .footer-grid {
        gap: 45px;
    }

    .footer-logo img {
        width: 68px;
    }

    .footer-logo-text h3 {
        font-size: 28px;
    }

    .footer-logo-text span {
        font-size: 18px;
    }

    .footer-col h4 {
        font-size: 21px;
    }

}


/* Tablet */
@media (max-width:992px) {

    .footer {
        padding: 10px 0 25px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-col p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

}


/* Small Tablet */
@media (max-width:768px) {

    .footer-grid {
        gap: 35px;
    }

    .footer-logo img {
        width: 62px;
    }

    .footer-logo-text h3 {
        font-size: 26px;
    }

    .footer-logo-text span {
        font-size: 17px;
    }

    .footer-col h4 {
        font-size: 20px;
    }

    .footer-col p,
    .footer-col ul li,
    .footer-col ul li a {
        font-size: 15px;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

}


/* Mobile */
@media (max-width:576px) {

    .footer {
        padding: 10px 0 20px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-col p {
        margin: 0 auto;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        gap: 12px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

}


/* Small Mobile */
@media (max-width:400px) {

    .footer-logo {
        flex-direction: column;
        gap: 12px;
    }

    .footer-logo img {
        width: 56px;
    }

    .footer-logo-text h3 {
        font-size: 22px;
    }

    .footer-logo-text span {
        font-size: 16px;
    }

    .footer-col h4 {
        font-size: 18px;
    }

    .footer-col p,
    .footer-col ul li,
    .footer-col ul li a {
        font-size: 14px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 13px;
    }

}


/* Extra Small Mobile */
@media (max-width:320px) {

    .footer {
        padding: 5px 0 18px;
    }

    .footer-logo img {
        width: 50px;
    }

    .footer-logo-text h3 {
        font-size: 20px;
    }

    .footer-logo-text span {
        font-size: 15px;
    }

    .footer-col h4 {
        font-size: 17px;
    }

    .footer-col p,
    .footer-col ul li,
    .footer-col ul li a {
        font-size: 13px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 12px;
    }

}

/*================ ABOUT PAGE RESPONSIVE ================*/

/*================ 1200px ================*/
@media (max-width:1200px) {

    .banner-container,
    .about-intro-container {
        gap: 70px;
    }

    .banner-content h1 {
        font-size: 54px;
    }

    .about-right h2 {
        font-size: 46px;
    }

    .banner-image img {
        max-width: 500px;
    }

    .about-left img {
        max-width: 470px;
    }

    .journey-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .mission-grid {
        gap: 25px;
    }

}


/*================ 992px ================*/
@media (max-width:992px) {

    .page-banner,
    .about-intro,
    .mission,
    .journey,
    .why-about {
        padding: 70px 0;
    }

    .banner-container,
    .about-intro-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .banner-image {
        order: 1;
    }

    .banner-content {
        order: 2;
    }

    .about-left {
        order: 1;
    }

    .about-right {
        order: 2;
    }

    .banner-content h1 {
        font-size: 46px;
    }

    .about-right h2 {
        font-size: 40px;
    }

    .banner-content p,
    .about-right p {
        max-width: 700px;
        margin: 0 auto 30px;
    }

    .banner-buttons {
        justify-content: center;
    }

    .about-points {
        max-width: 650px;
        margin: auto;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .journey-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/*================ 768px ================*/
@media (max-width:768px) {

    .banner-container,
    .about-intro-container {
        gap: 40px;
    }

    .banner-content h1 {
        font-size: 38px;
    }

    .about-right h2 {
        font-size: 36px;
    }

    .banner-content p,
    .about-right p {
        font-size: 16px;
        line-height: 1.8;
    }

    .banner-image img {
        max-width: 380px;
    }

    .about-left img {
        max-width: 380px;
    }

    .about-points {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .mission-card {
        padding: 35px 25px;
    }

    .mission-card h3 {
        font-size: 28px;
    }

    .journey-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .journey-card,
    .why-card {
        padding: 30px 22px;
    }

}


/*================ 576px ================*/
@media (max-width:576px) {

    .page-banner,
    .about-intro,
    .mission,
    .journey,
    .why-about {
        padding: 25px 0;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .about-right h2 {
        font-size: 32px;
    }

    .banner-content p,
    .about-right p {
        font-size: 15px;
        max-width: 340px;
        margin: auto auto 30px;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .banner-buttons .btn-fill,
    .banner-buttons .btn-outline {
        width: 220px;
    }

    .banner-image img {
        max-width: 320px;
    }

    .about-left img {
        max-width: 320px;
    }

    .about-points div {
        padding: 14px 16px;
    }

    .mission-card {
        padding: 30px 22px;
    }

    .mission-card i {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .mission-card h3 {
        font-size: 24px;
    }

    .journey-card,
    .why-card {
        padding: 28px 20px;
    }

    .journey-card h3,
    .why-card h3 {
        font-size: 22px;
    }

}


/*================ 400px ================*/
@media (max-width:400px) {

    .banner-content h1 {
        font-size: 28px;
    }

    .about-right h2 {
        font-size: 28px;
    }

    .banner-content p,
    .about-right p {
        font-size: 14px;
    }

    .banner-image img {
        max-width: 270px;
    }

    .about-left img {
        max-width: 270px;
    }

    .about-points {
        font-size: 14px;
    }

    .mission-card {
        padding: 25px 18px;
    }

    .mission-card i {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .mission-card h3 {
        font-size: 22px;
    }

    .journey-card span {
        font-size: 14px;
        padding: 7px 15px;
    }

    .journey-card h3,
    .why-card h3 {
        font-size: 20px;
    }

    .journey-card p,
    .why-card p {
        font-size: 14px;
    }

    .why-card i {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

}


/*================ 320px ================*/
@media (max-width:320px) {

    .banner-content h1 {
        font-size: 24px;
    }

    .about-right h2 {
        font-size: 24px;
    }

    .banner-image img {
        max-width: 230px;
    }

    .about-left img {
        max-width: 230px;
    }

    .mission-card,
    .journey-card,
    .why-card {
        padding: 22px 16px;
    }

    .mission-card h3,
    .journey-card h3,
    .why-card h3 {
        font-size: 18px;
    }

}

/*================ CONTACT PAGE ================*/

/* Large Laptop */
@media (max-width:1200px) {

    .contact-hero h1 {
        font-size: 52px;
    }

    .contact-hero p {
        font-size: 17px;
    }

    .info-grid {
        gap: 24px;
    }

    .contact-container {
        gap: 50px;
    }

    .contact-image img {
        max-width: 460px;
    }

    .contact-form {
        padding: 35px;
    }

    .contact-form h2 {
        font-size: 36px;
    }

}


/* Tablet Landscape */
@media (max-width:992px) {

    .contact-hero {
        padding: 110px 0 50px;
    }

    .contact-hero h1 {
        font-size: 44px;
    }

    .contact-hero p {
        max-width: 650px;
        margin: auto;
    }

    .contact-info {
        padding: 70px 0;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-image {
        order: 1;
    }

    .contact-form {
        order: 2;
        max-width: 700px;
        margin: auto;
    }

    .working-hours {
        text-align: left;
    }

    .contact-social {
        justify-content: center;
    }

}


/* Tablet */
@media (max-width:768px) {

    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .info-card .icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .info-card h3 {
        font-size: 22px;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-form h2 {
        font-size: 32px;
    }

    .contact-image img {
        max-width: 400px;
    }

}


/* Mobile */
@media (max-width:576px) {

    .contact-hero {
        padding: 100px 0 40px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        font-size: 15px;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }

    .banner-buttons .btn-fill,
    .banner-buttons .btn-outline {
        width: 220px;
    }

    .contact-info {
        padding: 60px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 30px 0 60px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-form h2 {
        font-size: 28px;
        text-align: center;
    }

    .contact-form .btn-fill {
        width: 100%;
    }

    .contact-image img {
        max-width: 320px;
    }

    .working-hours {
        text-align: center;
    }

    .support-list li {
        justify-content: center;
    }

    .contact-social {
        justify-content: center;
        flex-wrap: wrap;
    }

}


/* Small Mobile */
@media (max-width:400px) {

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-hero p {
        font-size: 14px;
    }

    .info-card {
        padding: 24px 18px;
    }

    .info-card .icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .info-card h3 {
        font-size: 20px;
    }

    .contact-form {
        padding: 22px 18px;
    }

    .contact-form h2 {
        font-size: 24px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .contact-image img {
        max-width: 280px;
    }

    .working-hours h3 {
        font-size: 22px;
    }

    .support-list li {
        font-size: 14px;
    }

}


/* Extra Small Mobile */
@media (max-width:320px) {

    .contact-hero h1 {
        font-size: 24px;
    }

    .contact-form h2 {
        font-size: 22px;
    }

    .contact-image img {
        max-width: 240px;
    }

    .contact-form {
        padding: 18px 15px;
    }

    .contact-social a {
        width: 42px;
        height: 42px;
    }

}

/* enroll page */
@media (max-width:1200px) {

    .enroll-hero h1 {
        font-size: 54px;
    }

    .enroll-hero p {
        font-size: 17px;
    }

    .enroll-container {
        gap: 60px;
    }

    .enroll-form h2 {
        font-size: 38px;
    }

    .benefit-grid {
        gap: 20px;
    }

}

@media (max-width:992px) {

    .enroll-hero {
        padding: 110px 0 40px;
    }

    .enroll-hero h1 {
        font-size: 46px;
    }

    .enroll-section {
        padding: 50px 0;
    }

    .enroll-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .enroll-image {
        order: 1;
    }

    .enroll-form {
        order: 2;
        width: 100%;
    }

    .enroll-form h2 {
        font-size: 36px;
    }

    .enroll-form button {
        margin: auto;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

}

@media (max-width:768px) {

    .enroll-hero h1 {
        font-size: 38px;
    }

    .enroll-hero p {
        font-size: 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 18px;
    }

    .enroll-form h2 {
        font-size: 32px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-card h3 {
        font-size: 22px;
    }

}

@media (max-width:576px) {

    .enroll-hero {
        padding: 100px 0 30px;
    }

    .enroll-hero h1 {
        font-size: 30px;
    }

    .enroll-hero p {
        font-size: 14px;
    }

    .enroll-section {
        padding: 40px 0;
    }

    .enroll-form h2 {
        font-size: 28px;
        text-align: center;
    }

    .enroll-form button {
        width: 100%;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .enroll-benefits {
        padding: 60px 0;
    }

}

@media (max-width:400px) {

    .enroll-hero h1 {
        font-size: 26px;
    }

    .enroll-hero p {
        font-size: 13px;
    }

    .enroll-form h2 {
        font-size: 24px;
    }

    .enroll-form input,
    .enroll-form select,
    .enroll-form textarea {
        padding: 14px 16px;
        font-size: 15px;
    }

    .benefit-card {
        padding: 25px 18px;
    }

    .benefit-card h3 {
        font-size: 20px;
    }

    .benefit-card p {
        font-size: 14px;
    }

}

@media (max-width:320px) {

    .enroll-hero h1 {
        font-size: 24px;
    }

    .enroll-form h2 {
        font-size: 22px;
    }

}

/*================ COURSE DETAILS ================*/

/* Laptop */
@media (max-width:1200px) {

    .course-overview {
        max-width: 850px;
    }

    .course-overview h2 {
        font-size: 44px;
    }

    .course-description {
        font-size: 16px;
    }

}

/* Tablet Landscape */
@media (max-width:992px) {

    .course-meta {
        justify-content: center;
    }

    .meta-box {
        min-width: 240px;
    }

    .course-overview {
        text-align: center;
    }

    .course-overview .section-tag {
        margin: auto;
    }

    .course-extra {
        text-align: left;
        margin-top: 40px;
    }

    .course-overview .btn-fill {
        margin: 30px auto 0;
    }

}

/* Tablet */
@media (max-width:768px) {

    .breadcrumb {
        justify-content: center;
        text-align: center;
    }

    .course-meta {
        flex-direction: column;
        align-items: center;
    }

    .meta-box {
        width: 100%;
        max-width: 420px;
    }

    .course-overview h2 {
        font-size: 36px;
    }

    .course-description {
        font-size: 15px;
        line-height: 1.9;
    }

    .course-extra h3 {
        font-size: 24px;
    }

}

/* Mobile */
@media (max-width:576px) {

    .breadcrumb {
        gap: 8px;
        font-size: 13px;
    }

    .meta-box {
        padding: 16px;
        gap: 14px;
    }

    .meta-box i {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .meta-box strong {
        font-size: 16px;
    }

    .course-overview h2 {
        font-size: 30px;
    }

    .course-description {
        font-size: 14px;
    }

    .course-extra h3 {
        font-size: 22px;
    }

    .course-extra ul {
        padding-left: 18px;
    }

    .course-overview .btn-fill {
        width: 100%;
    }

}

/* Small Mobile */
@media (max-width:400px) {

    .breadcrumb {
        justify-content: center;
    }

    .meta-box {
        flex-direction: column;
        text-align: center;
    }

    .meta-box i {
        margin-bottom: 5px;
    }

    .course-overview h2 {
        font-size: 26px;
    }

    .course-description {
        font-size: 13px;
    }

    .course-extra h3 {
        font-size: 20px;
    }

    .course-extra ul li {
        font-size: 14px;
    }

}

/* Extra Small Mobile */
@media (max-width:320px) {

    .breadcrumb {
        gap: 6px;
        font-size: 12px;
    }

    .course-meta {
        gap: 12px;
    }

    .meta-box {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .meta-box i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .meta-box small {
        font-size: 11px;
    }

    .meta-box strong {
        font-size: 14px;
    }

    .course-overview h2 {
        font-size: 24px;
    }

    .course-description {
        font-size: 13px;
        line-height: 1.8;
    }

    .course-extra h3 {
        font-size: 18px;
    }

    .course-extra p,
    .course-extra ul li {
        font-size: 13px;
    }

    .course-overview .btn-fill,
    .banner-buttons .btn-fill,
    .banner-buttons .btn-outline {
        width: 100%;
    }

}

/*================ 1200px ================*/

@media (max-width:1200px) {

    .gallery-hero-wrapper {
        gap: 40px;
    }

    .gallery-hero-content h1 {
        font-size: clamp(2.8rem, 5vw, 3.5rem);
    }

    .section-title h2,
    .cta-box h2 {
        font-size: clamp(2.3rem, 4vw, 2.8rem);
    }

    .modal-content {
        max-width: 1000px;
    }

}

/*================ 992px ================*/

@media (max-width:992px) {

    .gallery-hero {
        padding: 110px 0 70px;
    }

    .gallery-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .gallery-hero-content {
        max-width: 100%;
    }

    .gallery-hero-content p {
        margin-inline: auto;
    }

    .gallery-highlights {
        max-width: 650px;
        margin: 35px auto 0;
    }

    .gallery-stats {
        max-width: 650px;
        margin: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    #galleryModal {
        padding: 20px;
    }

    .modal-content {
        max-width: 100%;
    }

    .modal-prev {
        left: 15px;
    }

    .modal-next {
        right: 15px;
    }

    .close-modal {
        top: -50px;
    }

}

/*================ 768px ================*/

@media (max-width:768px) {

    .gallery-hero {
        padding: 100px 0 60px;
    }

    .gallery-hero-content h1 {
        font-size: clamp(2rem, 7vw, 2.6rem);
    }

    .gallery-hero-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .gallery-highlights {
        grid-template-columns: 1fr;
    }

    .gallery-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Premium horizontal scroll filter */

    .gallery-filter {

        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;

    }

    .gallery-filter::-webkit-scrollbar {
        display: none;
    }

    .gallery-filter button {

        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 14px;

    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title h2,
    .cta-box h2 {
        font-size: 34px;
    }

    .cta-box {
        padding: 60px 35px;
    }

    .modal-prev,
    .modal-next {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

}

/*================ 576px ================*/

@media (max-width:576px) {

    .gallery-hero {
        padding: 95px 0 55px;
    }

    .gallery-hero-content h1 {
        font-size: 32px;
    }

    .gallery-hero-content p {
        font-size: 15px;
    }

    .gallery-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        margin-bottom: 45px;
    }

    .section-title h2,
    .cta-box h2 {
        font-size: 30px;
    }

    .cta-box {
        padding: 50px 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn-fill,
    .cta-buttons .btn-outline {
        width: 100%;
        text-align: center;
    }

    .modal-prev,
    .modal-next {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .close-modal {
        width: 45px;
        height: 45px;
    }

    #modalBody iframe {
        height: 300px;
    }

    #modalBody embed {
        height: 330px;
    }

}

/*================ 400px ================*/

@media (max-width:400px) {

    .gallery-hero-content h1 {
        font-size: 28px;
    }

    .gallery-hero-content p {
        font-size: 14px;
    }

    .section-title h2,
    .cta-box h2 {
        font-size: 26px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-card h2 {
        font-size: 28px;
    }

    .gallery-badge {
        width: 42px;
        height: 42px;
    }

    .gallery-badge i {
        font-size: 17px;
    }

    .certificate-info {
        padding: 18px;
    }

    .certificate-info h3 {
        font-size: 18px;
    }

    .certificate-info p {
        font-size: 14px;
    }

}

/*================ 320px ================*/

@media (max-width:320px) {

    .gallery-hero-content h1 {
        font-size: 24px;
    }

    .gallery-hero-content p {
        font-size: 13px;
    }

    .section-tag {
        padding: 7px 14px;
        font-size: 11px;
    }

    .section-title h2,
    .cta-box h2 {
        font-size: 22px;
    }

    .gallery-filter button {
        font-size: 13px;
        padding: 10px 14px;
    }

    .stat-card {
        padding: 18px;
    }

    .stat-card h2 {
        font-size: 24px;
    }

    .stat-card span {
        font-size: 13px;
    }

    .certificate-info h3 {
        font-size: 16px;
    }

    .certificate-info p {
        font-size: 12px;
    }

    .play-icon i {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .gallery-badge {
        width: 36px;
        height: 36px;
    }

    .gallery-badge i {
        font-size: 14px;
    }

    .modal-prev,
    .modal-next,
    .close-modal {
        width: 40px;
        height: 40px;
    }

    #modalBody iframe {
        height: 220px;
    }

    #modalBody embed {
        height: 260px;
    }

}

/*================ ACCESSIBILITY ================*/

.gallery-filter button:focus-visible,
.btn-fill:focus-visible,
.btn-outline:focus-visible,
.close-modal:focus-visible {

    outline: 3px solid #ef902d;
    outline-offset: 4px;

}

/*================ MOBILE TOUCH ================*/

.gallery-card {

    -webkit-tap-highlight-color: transparent;

}

.gallery-card:active {

    transform: scale(.98);

}

/*================ REDUCED MOTION ================*/

@media (prefers-reduced-motion:reduce) {

    * {

        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;

    }

}

/*================ GLOBAL FIXES ================*/

html,
body {

    overflow-x: hidden;

}

img,
video {

    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;

}

@media (max-width:991px) {

    .nav-menu,
    .nav-btn,
    .menu-toggle {

        display: none !important;
    }

}

@media (min-width:992px) {

    .app-nav,
    .app-overlay,
    .fab-menu {

        display: none !important;
    }

}

/*==========================================
    ABOUT PAGE - MOBILE & TABLET
==========================================*/

@media (max-width:991px) {

    /* Hero */

    .banner-container {
        flex-direction: column-reverse;
        gap: 35px;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .banner-content p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.8;
        margin: 20px auto 30px;
    }

    .banner-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .banner-buttons a {
        width: 100%;
        justify-content: center;
    }

    .banner-image img {
        max-width: 360px;
        width: 100%;
    }

    /* About Intro */

    .about-intro-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-right {
        text-align: center;
    }

    .about-right h2 {
        font-size: 2.2rem;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    /* Mission */

    .mission-grid {
        grid-template-columns: 1fr;
    }

    /* Journey */

    .journey-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Why Choose */

    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Director */

    .director-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    /* CTA */

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
        justify-content: center;
    }

}