@keyframes marquee-track-scroll {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

:root {
    --primary-color: #1e40af;
    --secondary-color: #2563eb;
    --accent-color: #3b82f6;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --white: #ffffff;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.bonus-text,
.btn,
.cta-text,
.features-grid,
.info-content,
.package-features,
.pricing-content,
.pricing-text,
.program-content,
.section-header h2,
.section-title,
.students .section-title,
.trial-class-text,
.vision-text,
.why-choose-text,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", Arial, sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

a {
    text-decoration: none;
    transition: var(--transition)
}

a:hover {
    color: var(--accent-color)
}

ul {
    list-style: none
}

.hero-image img,
img {
    max-width: 100%;
    object-fit: contain
}

.container {
    width: 100%;
    max-width: 1000px;
    padding: 0 15px;
    margin: 0 auto
}

.section {
    padding: 20px 0
}

.section-header {
    text-align: center
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color)
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .8rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 0
}

.btn,
.btn-primary {
    background-color: #e86a33;
    color: #fff
}

.btn-primary:hover,
.btn:hover {
    background-color: #d55a2b;
    color: #fff
}

.btn-large {
    padding: 12px 20px;
    font-size: 1rem
}

.btn-block {
    display: block;
    width: 100%
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 100;
    box-shadow: var(--box-shadow);
    transition: var(--transition)
}

.header.scrolled {
    padding: 10px 0
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .6rem 0 .1rem 0;
    position: relative
}

.logo img {
    height: 50px;
    width: auto
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2rem
}

.nav-menu li {
    position: relative
}

.nav-menu a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    padding: .5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .5rem
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e86a33;
    background-color: rgb(232 106 51 / .1)
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: .5rem 0
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown.active:hover .dropdown-menu,
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-item {
    position: relative
}

.sub-dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: .5rem 0
}

.dropdown-item:hover .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0)
}

.dropdown-item.active:hover .sub-dropdown-menu,
.dropdown-item:hover .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0)
}

.dropdown.active:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    z-index: 1000 !important
}

.tni-preparation {
    background-color: var(--white);
    padding: 80px 0
}

.tni-preparation-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto
}

.left-section {
    text-align: left
}

.tni-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e86a33;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase
}

.tni-headline::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #e86a33;
    margin-top: 15px
}

.tni-subheadline {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 40px;
    line-height: 1.3
}

.tni-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.logo-item {
    text-align: center;
    padding: 15px;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: transform 0.3s ease
}

.logo-item:hover {
    transform: translateY(-5px)
}

.logo-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px
}

.logo-item p {
    font-size: .9rem;
    color: var(--gray);
    font-weight: 600;
    margin: 0
}

.right-section {
    padding-left: 20px
}

.tni-question {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    line-height: 1.3
}

.tni-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
    text-align: justify
}

.tni-content p strong {
    color: var(--dark-color);
    font-weight: 700
}

@media screen and (max-width:991px) {
    .tni-preparation-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px
    }

    .left-section {
        text-align: center
    }

    .tni-headline {
        font-size: 2.2rem
    }

    .tni-subheadline {
        font-size: 1.6rem
    }

    .right-section {
        padding-left: 0
    }

    .tni-question {
        font-size: 1.8rem;
        text-align: center
    }
}

@media screen and (max-width:768px) {
    .tni-preparation {
        padding: 60px 0
    }

    .tni-headline {
        font-size: 2rem
    }

    .tni-subheadline {
        font-size: 1.4rem
    }

    .tni-question {
        font-size: 1.6rem
    }

    .tni-content p {
        font-size: .95rem
    }

    .tni-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px
    }

    .logo-item img {
        width: 60px;
        height: 60px
    }

    .logo-item p {
        font-size: .8rem
    }
}

@media screen and (max-width:576px) {
    .tni-headline {
        font-size: 1.8rem
    }

    .tni-subheadline {
        font-size: 1.3rem
    }

    .tni-question {
        font-size: 1.5rem
    }

    .tni-content p {
        font-size: .9rem
    }

    .logo-item img {
        width: 50px;
        height: 50px
    }

    .logo-item p {
        font-size: .75rem
    }
}

.dropdown-menu li a,
.sub-dropdown-menu li a {
    display: block;
    padding: .75rem 1.5rem;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 0;
    background: none
}

.dropdown-menu li a:hover,
.sub-dropdown-menu li a:hover,
.dropdown-menu li a.active,
.sub-dropdown-menu li a.active {
    background-color: #e86a33;
    color: var(--white)
}

.dropdown-toggle {
    cursor: pointer
}

.dropdown-toggle i {
    transition: transform 0.3s ease
}

.dropdown-item:hover .dropdown-toggle i {
    transform: rotate(90deg)
}

.contact-btn .btn {
    background: #e86a33;
    color: var(--white);
    padding: .75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition)
}

.contact-btn .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px)
}

.navbar .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative
}

.navbar .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
    border-radius: 2px
}

@media (max-width:768px) {
    .navbar .menu-toggle {
        display: flex
    }

    .nav-menu {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px rgb(0 0 0 / .1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        gap: 1rem
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible
    }

    .nav-menu li {
        width: 100%
    }

    .nav-menu a {
        width: 100%;
        padding: 1rem;
        border-radius: 8px;
        justify-content: space-between
    }

    .dropdown-menu,
    .sub-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--gray-light);
        margin-top: .5rem;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
        width: 100%;
        display: block;
        left: auto;
        top: auto;
        min-width: auto
    }

    .dropdown.active .dropdown-menu,
    .dropdown-item.active .sub-dropdown-menu {
        max-height: 800px;
        padding: .5rem 0;
        opacity: 1;
        visibility: visible;
        overflow: visible
    }

    .dropdown-item .sub-dropdown-menu {
        margin-left: 1rem;
        margin-top: .5rem;
        background: rgb(255 255 255 / .3);
        border-left: 3px solid var(--primary-color);
        position: static;
        left: auto;
        top: auto;
        transform: none;
        box-shadow: none;
        border: none;
        min-width: auto;
        width: 100%
    }

    .dropdown-menu li a,
    .sub-dropdown-menu li a {
        padding: .75rem 1rem;
        border-radius: 0;
        background: rgb(255 255 255 / .5);
        margin: .25rem .5rem;
        position: relative
    }

    .dropdown-toggle::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 5px solid #fff0;
        border-right: 5px solid #fff0;
        border-top: 5px solid var(--dark-color);
        margin-left: auto;
        transition: transform 0.3s ease
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg)
    }

    .dropdown-item .dropdown-toggle::after {
        border-left: 5px solid var(--dark-color);
        border-right: none;
        border-top: 5px solid #fff0;
        border-bottom: 5px solid #fff0
    }

    .dropdown-item.active .dropdown-toggle::after {
        transform: rotate(90deg)
    }

    .dropdown-item.active>.sub-dropdown-menu {
        max-height: 800px;
        opacity: 1;
        visibility: visible;
        overflow: visible;
        background: rgb(255 255 255 / .3);
        border-left: 3px solid var(--primary-color)
    }

    .contact-btn {
        display: none
    }

    .navbar .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px)
    }

    .navbar .menu-toggle.active .bar:nth-child(2) {
        opacity: 0
    }

    .navbar .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px)
    }

    .dropdown-item .sub-dropdown-menu {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease
    }

    .dropdown-item.active .sub-dropdown-menu {
        max-height: 800px;
        overflow: visible;
        opacity: 1;
        visibility: visible;
        display: block
    }

    .nav-menu .dropdown-item.active .sub-dropdown-menu {
        max-height: 800px;
        opacity: 1;
        visibility: visible;
        overflow: visible;
        display: block;
        background: rgb(255 255 255 / .3);
        border-left: 3px solid var(--primary-color)
    }
}

.header.scrolled {
    background: rgb(255 255 255 / .95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgb(0 0 0 / .1)
}

.hero,
.hero-flex {
    display: flex;
    align-items: center
}

.hero {
    background: url(../images/hero-bg.webp);
    background-color: #002b5b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    color: var(--white);
    padding: 90px 0 30px;
    will-change: transform
}

.hero-flex {
    justify-content: space-between;
    gap: 40px
}

.hero-content {
    flex: 1 1 0%;
    max-width: 600px
}

.hero-image {
    flex: 1 1 0%;
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.hero-image img {
    height: auto;
    display: block;
    min-width: 300px;
    max-height: 500px;
    background: 0 0
}

@media (max-width:900px) {
    .hero-flex {
        flex-direction: column;
        text-align: center
    }

    .hero-image {
        margin-top: 30px;
        justify-content: center
    }

    .hero-content {
        max-width: 100%
    }
}

.video-info {
    padding: 60px 0
}

.video-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px
}

.info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 15px
}

.institutions {
    background-color: var(--light-color);
    padding: 40px 0
}

.institutions-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center
}

.institution-item,
.vision {
    text-align: center
}

.institution-item img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin: 0 auto 10px
}

.institution-item p {
    font-size: .8rem;
    color: var(--gray)
}

.vision {
    background-color: #002b5b;
    color: var(--white);
    padding: 20px 0 10px;
    overflow: hidden
}

.vision-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden
}

.vision-flex,
.vision-slide {
    display: flex;
    align-items: center
}

.vision-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    padding: 20px 0;
    justify-content: center
}

.vision-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible
}

.vision-flex {
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto
}

.vision-text {
    flex: 1;
    text-align: left;
    padding: 20px
}

.vision-image {
    flex: 1;
    max-width: 500px
}

.vision-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / .2)
}

.vision-text p {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 600;
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s
}

.dropdown:hover .dropdown-menu,
.vision-slide.active .btn,
.vision-slide.active .vision-logo {
    opacity: 1;
    transform: translateY(0)
}

.vision .btn,
.vision-logo {
    opacity: 0;
    transform: translateY(20px)
}

.vision-logo {
    max-width: 200px;
    margin-bottom: 30px;
    transition: opacity 0.5s ease 0.6s, transform 0.5s ease 0.6s
}

.vision-logo img {
    width: 100%
}

.vision .btn {
    transition: opacity 0.5s ease 0.8s, transform 0.5s ease 0.8s
}

.trial-class {
    background: linear-gradient(135deg, #1e40af 0, #3b82f6 100%);
    color: var(--white);
    padding: 40px 0 60px
}

.trial-class-header {
    text-align: center;
    margin-bottom: 40px
}

.trial-class-header h1 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600
}

.trial-class-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto
}

.trial-class-text {
    padding-right: 20px
}

.trial-class-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1)
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    margin-bottom: 8px
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    font-size: 1rem
}

.form-group input::placeholder {
    color: #9ca3af
}

.trial-class-form .btn-block {
    margin-top: 10px;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 1px
}

.activities {
    padding: 60px 0
}

.activities-slider {
    position: relative;
    margin-top: 30px
}

.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 10px
}

.slider-container::-webkit-scrollbar,
.testimonials-slider .slider-container::-webkit-scrollbar {
    display: none
}

.slider-item {
    flex: 0 0 auto;
    width: 300px;
    border-radius: 10px;
    overflow: hidden
}

.slider-item img {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.slider-next,
.slider-prev {
    background-color: var(--primary-color);
    margin: 0 5px;
    transition: var(--transition)
}

.footer .social-icons a:hover,
.slider-next:hover,
.slider-prev:hover {
    background-color: var(--accent-color)
}

.pricing {
    background: linear-gradient(to right, #2a2f4f, #1e40af);
    color: var(--white);
    padding: 60px 0
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.feature-back p,
.pricing-cta {
    text-align: center
}

.features {
    padding: 50px 0;
    background-color: var(--light-color)
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px
}

.feature-card {
    position: relative;
    height: 250px;
    perspective: 300px;
    border-radius: 10px;
    overflow: hidden
}

.feature-back,
.feature-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    border-radius: 10px
}

.feature-front {
    background-color: var(--white);
    padding: 30px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column
}

.feature-back {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.feature-back,
.feature-card:hover .feature-front {
    transform: rotateY(180deg)
}

.feature-card:hover .feature-back {
    transform: rotateY(0)
}

.feature-image {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.feature-back p {
    font-size: 1.5rem
}

.dormitory {
    padding: 60px 0;
    background-color: var(--white)
}

.dormitory-slider {
    margin: 30px 0
}

.dormitory-video {
    margin-top: 40px;
    text-align: center
}

.dormitory-video iframe {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow)
}

.program {
    background-color: #002b5b;
    color: var(--white);
    padding: 80px 0
}

.bonus-text span,
.packages-description span,
.program-description span {
    color: #e86a33;
    font-weight: 600
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto
}

.program-card {
    background-color: rgb(255 255 255 / .05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease
}

.program-card:hover {
    transform: translateY(-10px)
}

.program-image {
    position: relative;
    overflow: hidden
}

.program-image img {
    width: 100%;
    height: auto;
    display: block
}

.program-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgb(0 0 0 / .5), transparent)
}

.program-content {
    padding: 30px;
    text-align: center
}

.program-card .btn {
    background-color: #e86a33;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block
}

.program-card .btn:hover {
    background-color: #d55a2b;
    transform: translateY(-2px)
}

@media screen and (max-width:991px) {
    .program-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px
    }

    .program-title {
        font-size: 2.2rem;
        padding: 0 20px
    }

    .program-description {
        padding: 0 20px
    }

    .program-card {
        max-width: 500px;
        margin: 0 auto
    }
}

.read-more {
    font-weight: 600;
    color: var(--primary-color)
}

.footer-contact p i,
.read-more:hover {
    color: var(--accent-color)
}

.testimonials {
    background-color: #002b5b
}

.testimonials .section-title {
    color: var(--white);
    margin-bottom: 50px
}

.testimonials-slider {
    position: relative;
    margin-bottom: 80px
}

.testimonials-slider .slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 10px
}

.testimonials-slider .slider-item {
    flex: 0 0 auto;
    width: 300px
}

.alumni-card {
    background: linear-gradient(135deg, rgb(255 255 255 / .1), rgb(255 255 255 / .05));
    border-radius: 20px;
    overflow: hidden;
    position: relative
}

.alumni-card img,
.pembina-image img {
    width: 100%;
    height: 400px;
    object-fit: cover
}

.alumni-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgb(0 0 0 / .8), transparent);
    color: var(--white);
    text-align: center
}

.alumni-info h3,
.pembina-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px
}

.alumni-info .institution {
    color: #e6b325;
    font-weight: 600
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px
}

.slider-next,
.slider-prev {
    background-color: #e86a33;
    color: var(--white);
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease
}

.slider-next:hover,
.slider-prev:hover {
    background-color: #d55a2b;
    transform: scale(1.1)
}

.pembina-section {
    max-width: 800px;
    margin: 0 auto
}

.pembina-image {
    width: 60%;
    height: 60%;
    border-radius: 20px;
    border: 3px solid #e6b325;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0 auto
}

.pembina-image img {
    height: 100%
}

.pembina-info {
    color: var(--white);
    text-align: center
}

.pembina-info h3 {
    color: #e6b325
}

.pembina-info h2 {
    font-size: 2rem
}

.pembina-info .pembina-title {
    font-size: 1.2rem;
    margin-bottom: 5px
}

.pembina-info .pembina-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e6b325
}

@media screen and (max-width:768px) {
    .pembina-card {
        flex-direction: column;
        text-align: center;
        gap: 20px
    }

    .pembina-image {
        width: 280px;
        height: 350px;
        margin: 0 auto
    }

    .testimonials-slider .slider-item {
        width: 280px
    }

    .alumni-card img {
        height: 350px
    }
}

.location {
    padding: 60px 0;
    background-color: #f0f9ff
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.location-map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.location-info {
    padding: 20px
}

.location-info h2,
.pembina-info h2 {
    margin-bottom: 20px
}

.social {
    padding: 40px 0;
    background-color: var(--white);
    text-align: center
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px
}

.footer .social-icons a,
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition)
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    color: var(--primary-color);
    font-size: 1.5rem
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px)
}

.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 0
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px
}

.footer h3,
.footer-logo {
    margin-bottom: 20px
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 15px
}

.footer h3::after,
.students .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color)
}

.footer-links ul li {
    margin-bottom: 10px
}

.footer-links ul li a {
    color: var(--gray-light);
    transition: var(--transition);
    font-size: .9rem
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px
}

.footer-contact p i {
    margin-right: 10px
}

.footer .social-icons {
    display: flex;
    margin-top: 20px;
    justify-content: flex-start
}

.footer .social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgb(255 255 255 / .1);
    margin-right: 10px;
    color: var(--white)
}

.footer .social-icons a:hover {
    transform: translateY(-5px)
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgb(255 255 255 / .1)
}

@media screen and (max-width:991px) {
    .hero-title {
        font-size: 2.5rem
    }

    .hero-title .highlight {
        font-size: 3rem
    }

    .hero-title .subtitle {
        font-size: 1.8rem
    }

    .location-content,
    .pricing-content,
    .trial-class-content,
    .video-info-content {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .video-container {
        padding-bottom: 50%
    }

    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))
    }

    .vision-flex {
        flex-direction: column;
        gap: 30px
    }

    .vision-text {
        text-align: center;
        padding: 0 20px
    }

    .vision-text p {
        font-size: 1.1rem;
    }

    .vision-carousel {
        height: 900px
    }

    .vision-logo {
        margin-left: auto;
        margin-right: auto
    }

    .vision-image {
        max-width: 100%;
        padding: 0 20px
    }
}

@media screen and (max-width:768px) {
    .hero-content {
        text-align: center;
        margin: 0 auto
    }

    .hero-description {
        margin: 0 auto 30px
    }

    .section {
        padding: 20px 0
    }

    .institutions-gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr))
    }

    .blog-grid,
    .trial-class-content {
        grid-template-columns: 1fr
    }

    .trial-class-content {
        gap: 30px;
        padding: 0 20px
    }

    .trial-class-text {
        text-align: center;
        padding-right: 0
    }

    .trial-class-text h1 {
        font-size: 2rem
    }

    .trial-class-text h2 {
        font-size: 1.1rem
    }

    .cta-text h2 {
        font-size: 2rem;
        line-height: 1.2
    }

    .cta-text p {
        font-size: 1rem
    }
}

@media screen and (max-width:576px) {

    .hero-title,
    .hero-title .highlight,
    .section-title {
        font-size: 1.6rem
    }

    .cta-text h2,
    .pricing-cta h1,
    .pricing-text h1,
    .trial-class-text h1 {
        font-size: 1.8rem
    }

    .vision-text .title {
        font-size: 1rem
    }

    .vision-carousel {
        height: 900px
    }

    .slider-item {
        width: 200px;
        min-width: 200px
    }

    .feature-card,
    .feature-image {
        height: 200px
    }

    .contact-btn {
        display: none
    }

    .cta-text p {
        font-size: .95rem
    }
}

.features-highlight,
.why-choose .btn {
    background-color: #002b5b;
    color: var(--white);
    padding: 30px 0
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto
}

.highlight-card {
    text-align: center
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background-color: #e86a33;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px
}

.highlight-icon i {
    font-size: 2.5rem;
    color: var(--white)
}

.features-highlight .highlight-subtitle {
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

@media screen and (max-width:991px) {
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px
    }

    .highlight-title {
        font-size: 2.2rem;
        padding: 0 20px
    }

    .highlight-description {
        padding: 0 20px;
        margin-bottom: 40px
    }
}

.why-choose {
    padding: 20px 0;
    background-color: var(--white)
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.why-choose-image {
    position: relative;
    padding: 20px
}

.bonus-image img,
.officer-image {
    width: 100%;
    height: auto;
    border-radius: 20px
}

.officer-image {
    position: relative;
    z-index: 1
}

.circle-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #e86a33;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: 0
}

.dots-decoration {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 120px;
    background-image: radial-gradient(#e86a33 2px, transparent 2.5px);
    background-size: 10px 10px
}

.why-choose-text {
    padding-right: 40px
}

.benefits-accordion {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.benefit-item {
    border: 1px solid #e9ecef;
    border-radius: 4px;
    overflow: hidden
}

.benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff;
    cursor: pointer
}

.benefit-header h4 {
    margin: 0;
    color: #002B5B;
    font-size: 1.1rem
}

.benefit-header i {
    color: #002B5B;
    transition: transform 0.3s ease
}

.benefit-content {
    display: none;
    padding: 1rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef
}

.benefit-content p,
.benefit-content ul {
    color: #666;
    margin: 0
}

.benefit-content ul {
    padding-left: 1.2rem
}

.benefit-item.active .benefit-header i {
    transform: rotate(180deg)
}

.benefit-item.active .benefit-content {
    display: block
}

@media screen and (max-width:991px) {
    .section-content {
        flex-direction: column;
        gap: 2rem
    }

    .left-content {
        text-align: center
    }

    .left-content h2 {
        font-size: 1.8rem
    }

    .left-content h3 {
        font-size: 1.4rem
    }

    .logo-container {
        justify-content: center
    }

    .logo-container img {
        max-width: 150px
    }
}

@media screen and (max-width:768px) {
    .benefits-accordion {
        gap: .3rem
    }

    .benefit-header {
        padding: .8rem
    }

    .benefit-header h4 {
        font-size: 1rem;
        line-height: 1.4
    }

    .benefit-content {
        padding: .8rem
    }

    .benefit-content p,
    .benefit-content ul {
        font-size: .9rem
    }

    .left-content h2 {
        font-size: 1.6rem
    }

    .left-content h3 {
        font-size: 1.2rem
    }
}

@media screen and (max-width:576px) {
    .section {
        padding: 40px 0
    }

    .benefits-accordion {
        gap: .25rem
    }

    .benefit-header {
        padding: .7rem
    }

    .benefit-header h4 {
        font-size: .9rem
    }

    .benefit-content {
        padding: .7rem
    }

    .benefit-content p,
    .benefit-content ul {
        font-size: .85rem
    }

    .left-content h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem
    }

    .left-content h3 {
        font-size: 1.1rem
    }

    .logo-container img {
        max-width: 120px
    }
}

.competition-info {
    background-color: #002B5B;
    color: #fff;
    padding: 60px 0
}

.competition-info .container>div {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center
}

.competition-info .highlight-box {
    border: 2px solid #E86A33;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px
}

.competition-info h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 600
}

.competition-info li {
    text-align: left
}

.competition-info .content {
    margin-bottom: 30px
}

.competition-info p {
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e2e8f0
}

.competition-info p strong {
    color: #fff
}

.competition-info p:last-child {
    margin-bottom: 0
}

.competition-info .btn {
    font-size: .95rem;
    padding: 12px 25px
}

@media screen and (max-width:768px) {
    .competition-info h2 {
        font-size: 1.2rem
    }

    .competition-info p {
        font-size: .9rem
    }

    .competition-info .btn {
        font-size: .9rem;
        padding: 10px 20px
    }
}

@media screen and (max-width:576px) {
    .competition-info h2 {
        font-size: 1.1rem
    }

    .competition-info p {
        font-size: .85rem
    }

    .competition-info .highlight-box {
        padding: 15px
    }
}

.program-overview {
    background-color: #002B5B;
    color: #fff;
    padding: 60px 0
}

.program-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto
}

.program-overview-item {
    text-align: center;
    padding: 30px;
    background: rgb(255 255 255 / .05);
    border-radius: 10px;
    transition: transform 0.3s ease
}

.program-overview-item:hover {
    transform: translateY(-5px)
}

.program-overview-item h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #E86A33
}

.program-overview-item p {
    font-size: .95rem;
    line-height: 1.6;
    color: #e2e8f0
}

@media screen and (max-width:991px) {
    .program-overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px
    }

    .program-overview-item {
        padding: 25px
    }

    .program-overview-item h2 {
        font-size: 1.8rem
    }
}

@media screen and (max-width:576px) {
    .program-overview-item {
        padding: 20px
    }

    .program-overview-item h2 {
        font-size: 1.6rem;
        margin-bottom: 15px
    }

    .program-overview-item p {
        font-size: .9rem
    }
}

.benefits-list {
    margin-bottom: 30px
}

.arrow-icon {
    color: #e86a33;
    font-size: 1.2rem;
    margin-right: 10px;
    flex-shrink: 0
}

.why-choose .btn {
    display: grid;
    padding: 12px 30px;
    background-color: #e86a33;
    border-radius: 5px;
    transition: all 0.3s ease
}

.alumni-cta .btn:hover,
.bonus-text .btn:hover,
.package-card .btn:hover,
.why-choose .btn:hover {
    background-color: #d55a2b;
    transform: translateY(-2px)
}

@media screen and (max-width:991px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .why-choose-text {
        padding: 0 20px
    }

    .why-choose-text h3 {
        font-size: 2rem;
        text-align: center
    }

    .image-placeholder {
        height: 400px;
        margin: 0 20px
    }

    .circle-decoration,
    .dots-decoration {
        display: none
    }
}

.program-packages {
    background-color: #002b5b;
    color: var(--white);
    padding: 20px 0
}

.packages-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 20px;
    border: 2px solid #CE9A03;
    border-radius: 5px
}

.packages-description p {
    line-height: 1.6;
    color: #e2e8f0
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.package-card {
    background-color: rgb(255 255 255 / .05);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease
}

.package-card:hover {
    transform: translateY(-10px)
}

.package-card.featured {
    border: 2px solid #e86a33;
    background-color: rgb(232 106 51 / .1)
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(255 255 255 / .1)
}

.package-subtitle {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 15px
}

.package-price {
    margin-top: 15px
}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 5px
}

.new-price {
    color: #e86a33;
    font-size: 1.8rem;
    font-weight: 700
}

.package-features {
    margin-bottom: 30px
}

.package-features li {
    color: #e2e8f0;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    font-size: .85rem
}

.package-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e86a33;
    font-size: 1.2rem
}

.bonus-text .btn,
.package-card .btn {
    background-color: #e86a33;
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease
}

.package-card .btn {
    width: 100%;
    text-align: center;
    padding: 12px
}

@media screen and (max-width:991px) {
    .packages-grid {
        grid-template-columns: 1fr
    }

    .packages-title {
        font-size: 2.2rem;
        padding: 0 20px
    }

    .package-card {
        max-width: 600px;
        margin: 0 auto
    }
}

.bonus {
    background-color: #f8f9fa;
    padding: 20px 0
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto
}

.bonus-text {
    padding-right: 40px
}

.bonus-text .btn {
    padding: 15px 30px;
    font-size: .8rem
}

.bonus-image {
    position: relative
}

.bonus-image img {
    box-shadow: 0 10px 30px rgb(0 0 0 / .1)
}

@media screen and (max-width:991px) {
    .bonus-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px
    }

    .bonus-text {
        text-align: center;
        padding-right: 0
    }

    .bonus-text .title {
        font-size: 2.5rem
    }

    .bonus-text p {
        font-size: 1.1rem
    }

    .bonus-image {
        max-width: 600px;
        margin: 0 auto
    }
}

.alumni,
.alumni-cta .btn {
    background-color: #002b5b;
    padding: 60px 0;
    color: var(--white)
}

.alumni-gallery {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / .2)
}

.alumni-gallery img,
.student-card img {
    width: 100%;
    height: auto;
    display: block
}

.alumni-cta {
    text-align: center
}

.alumni-cta .btn {
    background-color: #e86a33;
    padding: 10px 20px;
    font-size: .8 rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease
}

@media screen and (max-width:768px) {
    .alumni-header {
        gap: 20px;
        text-align: center
    }

    .alumni-contact,
    .alumni-header,
    .alumni-logo {
        flex-direction: column
    }

    .alumni-contact {
        align-items: center;
        gap: 15px
    }

    .alumni-gallery {
        margin: 0 0 40px;
        border-radius: 0;
        width: 100%;
        overflow: hidden
    }
}

.students {
    background-color: #002b5b;
    padding: 20px 0
}

.students .section-header {
    text-align: center;
    margin-bottom: 50px
}

.students .section-title span {
    display: block;
    margin-top: 5px
}

.students .section-title::after {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px
}

.students-slider {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 40px
}

.students-slider .slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 20px 0;
    justify-content: center
}

.students-slider .slider-container::-webkit-scrollbar {
    display: none
}

.students-slider .slider-item {
    flex: 0 0 auto;
    width: 260px
}

.student-card {
    width: 100%
}

.students-slider .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none
}

.students-slider .slider-next,
.students-slider .slider-prev {
    background-color: #e86a33;
    color: var(--white);
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 10
}

.students-slider .slider-next:hover,
.students-slider .slider-prev:hover {
    background-color: #d55a2b;
    transform: scale(1.1)
}

@media screen and (max-width:768px) {
    .students .section-title {
        font-size: 2rem;
        padding: 0 20px
    }

    .students-slider {
        padding: 0 20px
    }

    .students-slider .slider-item {
        width: 220px
    }
}

.featured-products {
    background-color: #002b5b;
    padding: 20px 0;
    color: var(--white)
}

.featured-products .section-title {
    color: var(--white);
    margin-bottom: 50px
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto
}

.product-card {
    background-color: rgb(255 255 255 / .05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgb(255 255 255 / .1);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgb(0 0 0 / .2)
}

.product-card .title {
    color: var(--white)
}

.product-card ul {
    list-style: none;
    padding: 0
}

.product-card ul li {
    color: #e2e8f0;
    padding: 6px 0;
    border-bottom: 1px solid rgb(255 255 255 / .1);
    font-size: .85rem;
    line-height: 1.4
}

.product-card ul li:last-child {
    border-bottom: none
}

.product-card ul li:before {
    content: "•";
    color: #e86a33;
    font-weight: 700;
    margin-right: 10px
}

@media (max-width:991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px
    }
}

@media (max-width:768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px
    }

    .product-card {
        padding: 25px
    }

    .product-card .title {
        font-size: 1.2rem
    }
}

.cta-join {
    background-color: var(--white);
    padding: 20px 0
}

.cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.cta-text {
    flex: 1 1 0%;
    max-width: 600px;
    text-align: left
}

.cta-text .btn {
    background-color: #e86a33;
    color: var(--white);
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block
}

.cta-text .btn:hover {
    background-color: #d55a2b;
    transform: translateY(-2px)
}

.cta-image {
    flex: 1 1 0%;
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.cta-image img {
    max-width: 100%;
    height: auto;
    display: block;
    min-width: 300px;
    max-height: 500px;
    object-fit: contain;
    background: 0 0
}

@media (max-width:900px) {
    .cta-flex {
        flex-direction: column;
        text-align: center
    }

    .cta-text {
        text-align: center;
        margin: 0 auto;
        max-width: 100%
    }

    .cta-image {
        margin-top: 30px;
        justify-content: center
    }
}

.benefits-list,
.bonus-text p,
.cta-text p,
.features-grid p,
.info-content p,
.package-features,
.pricing-content p,
.program-content p,
.section p,
.features-highlight p,
.trial-class-text {
    text-align: justify
}

.slider-container.marquee {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0
}

.slider-track {
    display: flex;
    gap: 30px;
    animation: marquee-track-scroll 30s linear infinite;
    will-change: transform
}

.slider-container.marquee:hover .slider-track {
    animation-play-state: paused
}

.slider-nav.marquee-nav {
    display: none
}

body {
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark-color);
    overflow-x: hidden
}

.section-title {
    font-size: 2rem;
    color: #000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-align: center
}

.hero-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
    display: block
}

.bonus-text .title,
.hero-title {
    font-weight: 800;
    margin-bottom: 20px
}

.hero-title {
    font-size: 2rem;
    line-height: 1.1;
    text-transform: uppercase
}

.hero-title .highlight {
    font-size: 2rem;
    color: #ffd600;
    display: block;
    margin-top: 10px
}

.hero-description {
    font-size: .9rem;
    margin-bottom: 30px;
    color: #e2e8f0;
    text-transform: uppercase
}

.program-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700
}

.program-description {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
    font-size: .9rem;
    line-height: 1.6;
    color: #e2e8f0
}

.feature-front .title,
.program-content .title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white)
}

.program-content p {
    color: #e2e8f0;
    margin-bottom: 25px;
    font-size: .85rem;
    line-height: 1.6
}

.feature-front .title {
    font-size: 1.1rem;
    color: var(--primary-color)
}

.feature-front p {
    font-size: .8rem;
    color: var(--gray);
    flex-grow: 1
}

.packages-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700
}

.packages-description p {
    font-size: .9rem
}

.package-header .title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
    color: #e86a33
}

.bonus-text .title {
    font-size: 2.8rem;
    color: #1e293b;
    line-height: 1.2;
    text-align: left;
}

.bonus-text p,
.cta-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569
}

.cta-text .title,
.highlight-title {
    font-weight: 700;
    margin-bottom: 20px
}

.cta-text .title {
    font-size: 2rem;
    line-height: 1.3;
    text-align: left;
    color: #1e293b
}

.cta-text p {
    font-size: .9rem;
    margin-bottom: 30px
}

.highlight-title {
    font-size: 2.2rem;
    text-align: center;
    line-height: 1.2
}

.highlight-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: .9rem;
    line-height: 1.6;
    color: #e2e8f0
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 600
}

.highlight-card p {
    color: #e2e8f0;
    line-height: 1.6;
    font-size: .85rem
}

.why-choose-text h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    line-height: 1.2
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: .9rem;
    line-height: 1.5
}

.trial-class-text h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2
}

.trial-class-text h2 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    opacity: .9
}

.info-content p {
    margin-bottom: 15px;
    font-size: .9rem;
    line-height: 1.6
}

.pricing-text .title,
.product-card .title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-text .price {
    font-size: 1.6rem;
    margin: 30px 0;
    color: gold
}

.pricing-cta p {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    color: gold;
}

.students .section-title {
    color: var(--white);
    font-size: 2rem;
    line-height: 1.3;
    display: inline-block;
    position: relative
}

.product-card .title {
    font-size: 1.1rem;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #e86a33;
    text-align: center
}

.location-info .title {
    font-size: 1.6rem;
    font-weight: 600;
    font-family: "Roboto", Arial, sans-serif;
    color: var(--primary-color)
}

.location-info p {
    margin-bottom: 30px;
    color: var(--gray);
    font-size: .9rem
}

.footer h3 {
    font-size: 1rem;
    color: var(--white);
    position: relative;
    padding-bottom: 10px
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: .9rem
}

@media screen and (max-width:768px) {

    .hero-title,
    .hero-title .highlight,
    .section-title {
        font-size: 1.8rem
    }

    .hero-description {
        font-size: .8rem
    }

    .program-title,
    .trial-class-text h1 {
        font-size: 1.8rem
    }

    .program-description {
        font-size: .8rem
    }

    .trial-class-text h2 {
        font-size: .9rem
    }

    .cta-text h2,
    .highlight-title,
    .students .section-title,
    .why-choose-text h3 {
        font-size: 1.8rem
    }

    .cta-text p {
        font-size: .85rem
    }

    .bonus-text .title {
        font-size: 2.2rem
    }

    .bonus-text p {
        font-size: .9rem
    }

    .benefits-list li,
    .highlight-description,
    .info-content p,
    .location-info p,
    .package-features li,
    .packages-description p,
    .product-card ul li {
        font-size: .8rem
    }

    .packages-title {
        font-size: 1.8rem
    }

    .package-header h2 {
        font-size: 1.3rem
    }

    .product-card .title {
        font-size: 1rem
    }

    .info-content h4 {
        font-size: 1.1rem
    }

    .pricing-text .title {
        font-size: 1.6rem
    }

    .location-info h2,
    .pricing-text .title {
        font-size: 1.4rem
    }

    .pricing-cta h1 {
        font-size: 1.8rem
    }

    .btn,
    .btn-primary {
        padding: 10px 20px;
        font-size: .8rem
    }

    .btn-block,
    .btn-large {
        padding: 12px 20px;
        font-size: .8rem
    }
}

@media screen and (max-width:576px) {
    .bonus-text .title {
        font-size: 1.8rem
    }

    .cta-text h2,
    .hero-title,
    .hero-title .highlight,
    .highlight-title,
    .packages-title,
    .program-title,
    .section-title,
    .students .section-title,
    .trial-class-text h1,
    .why-choose-text h3 {
        font-size: 1.6rem
    }

    .cta-text p {
        font-size: .8rem
    }

    .bonus-text p {
        font-size: 1rem;
        padding-bottom: 20px
    }

    .benefits-list li,
    .highlight-description,
    .info-content p,
    .location-info p,
    .package-features li,
    .packages-description p,
    .product-card ul li,
    .program-description {
        font-size: .75rem
    }

    .btn,
    .btn-primary {
        padding: 8px 20px;
        font-size: .5rem
    }

    .btn-primary {
        font-size: .8rem
    }

    .btn-block,
    .btn-large {
        padding: 10px 25px;
        font-size: .7rem
    }

    .btn-block {
        padding: 10px 15px
    }
}

@media screen and (max-width:480px) {
    .slider-item {
        width: 180px;
        min-width: 180px
    }

    .testimonials-slider .slider-item {
        width: 180px
    }

    .students-slider .slider-item {
        width: 160px
    }

    .container {
        padding: 0 10px
    }
}

/* Section button WA */
.button-wa {
    position: fixed;
    bottom: 10%;
    right: 5%;
    z-index: 99999999;
}

.button-wa a {
    display: inline-flex;
    align-items: center;
    background-color: #002B5B;
    padding: 8px 12px 8px 20px;
    /* ruang kiri lebih lebar */
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    position: relative;
}

.button-wa .text-label {
    margin-right: 40px;
    /* ruang kosong agar logo muat di kanan */
    white-space: nowrap;
}

.button-wa img {
    width: 70px;
    position: absolute;
    right: -20px;
    /* biar nempel keluar dari oval */
    top: 50%;
    transform: translateY(-50%);
}

.section-intro {
    margin-top: 50px;
}

/* Responsif */
@media only screen and (max-width: 767px) {
    .button-wa a {
        font-size: 12px;
        padding: 3px 5px 3px 16px;
    }

    .button-wa img {
        width: 45px;
        right: -12px;
        right: -10px;
    }

    .institution-item img {
        width: 80px;
        height: 80px;
    }
}

.perwira-tni {
    background-color: #002b5b;
    color: var(--white);
    padding: 60px 0;
    position: relative
}

.perwira-tni-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.perwira-tni-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase
}

.perwira-tni-text h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #e86a33;
    text-transform: uppercase
}

.perwira-tni-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--white)
}

.perwira-tni-text strong {
    color: #e86a33;
    font-weight: 600
}

.perwira-tni-text .test-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.perwira-tni-text .test-list li {
    background-color: rgb(255 255 255 / .1);
    margin-bottom: .8rem;
    padding: .8rem 1.2rem;
    border-radius: 8px;
    border-left: 4px solid #e86a33;
    transition: all 0.3s ease
}

.perwira-tni-text .test-list li:hover {
    background-color: rgb(255 255 255 / .15);
    transform: translateX(5px)
}

.perwira-tni-text .test-list li:last-child {
    margin-bottom: 0
}

.why-choose-text span {
    text-align: left;
}

.program-content .title {
    font-weight: 600;
    text-align: center;
}

.location .title {
    text-align: left;
}

.pricing-text .title {
    font-size: 24px;
    text-align: left;
}

.pricing-text .price {
    font-weight: 600;
    font-size: 30px;
}

/* Section list kota */
.list-kota {
    margin: 20px 0;
}

.list-kota .container h3 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.list-kota .container {
    box-shadow: 1px 1px 3px #aaa;
    padding: 30px;
    border-radius: 10px;
}

.list-kota .container .d-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 10px;
}

.list-kota .container .d-grid a {
    color: #002B5B;
}

.program .program-packages-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center
}

.program-packages-grid img {
    border-radius: 20px;
}

.bonus-desktop {
    display: block;
}

.bonus .bonus-content {
    display: none;
}

@media (max-width:768px) {
    .list-kota .container .d-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .list-kota .container h3 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .list-kota {
        padding: 0 10px;
    }

    .pricing-text .title {
        font-size: 16px;
        text-align: center;
        line-height: 1px;
    }

    .pricing-text .price {
        font-size: 18px;
        text-align: center;
    }

    .pricing-cta p {
        font-size: 14px;
        margin-top: -20px;
    }
}

/* Akhir section list kota */

@media (max-width:768px) {
    .perwira-tni {
        padding: 40px 0
    }

    .perwira-tni-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem
    }

    .perwira-tni-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 .8rem 0
    }

    .perwira-tni-text p {
        font-size: .95rem;
        line-height: 1.5
    }

    .bonus-desktop {
        display: none;
    }

    .bonus .bonus-content {
        display: block;
    }

}

@media (max-width:480px) {
    .perwira-tni {
        padding: 30px 0
    }

    .perwira-tni-text h2 {
        font-size: 1.6rem
    }

    .perwira-tni-text h3 {
        font-size: 1.2rem
    }

    .perwira-tni-text p {
        font-size: .9rem
    }

    .btn {
        font-size: 12px;
    }

    .program .program-packages-grid {
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 5px;
    }

    .program .program-packages-grid img {
        margin-top: 15px;
    }

    .bonus-desktop {
        display: none;
    }

    .bonus .bonus-content {
        display: block;
    }
}