:root {
    --font-noto: "Noto Sans", "Noto", sans-serif;
    --font-serif: "Playfair Display", Georgia, serif;
    --section-max-width: 1300px;
    --section-padding: 80px 20px;
    --container-padding: 20px;
    --color-orange: #f05a28;
    --color-blue: #1c4b82;
    --color-plane: #3d7ed0;
    --color-text: #666666;
    --color-bg: #fdfdfd;
    --color-bg-alt: #f4eee8;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-noto);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

@media all and (max-width: 900px) {
    :root {
        --section-padding: 60px 15px;
        --container-padding: 15px;
    }
}

/* --- Features Section --- */
.features-section {
    padding: var(--section-padding);
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Subtle elegant background swoosh effect resembling the original design */
.features-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translate(-50%, -50%);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(240, 90, 40, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(28, 75, 130, 0.02) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.features-bg-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/Untitled-2.png");
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    opacity: 1 !important;
    mix-blend-mode: multiply;
}

.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/Untitled-2.png");
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.features-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-eyebrow {
    display: inline-block;
    color: var(--color-orange);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.features-heading {
    color: var(--color-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}

.features-subheading {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.features-subheading strong {
    color: var(--color-blue);
    font-weight: 600;
}

.features-container {
    max-width: var(--section-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.features-card-wrapper {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.features-card-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(28, 75, 130, 0.05);
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(28, 75, 130, 0.08);
}

.features-icon-wrapper {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    color: var(--color-orange);
}

.features-icon-wrapper img {
    max-width: 65px;
    max-height: 65px;
    object-fit: contain;
}

.features-title {
    color: var(--color-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

.features-desc {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .features-container {
        gap: 20px;
    }

    .features-card {
        padding: 40px 25px;
    }

    .features-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 900px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .features-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .features-heading {
        font-size: 1.8rem;
    }

    .features-card {
        padding: 22px 18px;
    }

    .features-icon-wrapper {
        height: 56px;
        margin-bottom: 12px;
    }

    .features-icon-wrapper img {
        max-width: 48px;
        max-height: 48px;
    }

    .features-title {
        margin-bottom: 8px;
        font-size: 1.1rem;
    }

    .features-desc {
        font-size: 0.88rem;
        line-height: 1.45;
    }
}

/* --- Awards Section --- */
:root {
    --color-bg-alt: #f4eee8;
}

.awards-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-alt);
    text-align: center;
}

.awards-container {
    max-width: var(--section-max-width);
    margin: 0 auto;
}

.awards-header {
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.awards-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.awards-eyebrow {
    display: inline-block;
    background-color: var(--color-blue);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.awards-heading {
    color: var(--color-orange);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}

.awards-subheading {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.awards-swiper {
    padding: 20px 0;
}

.award-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.award-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.award-card:hover img {
    transform: scale(1.05);
}

.award-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    text-align: center;
}

.award-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.award-content p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Swiper Navigation Customization */
.awards-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.awards-prev,
.awards-next {
    width: 45px;
    height: 45px;
    background-color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 1.2rem;
}

.awards-prev:hover,
.awards-next:hover {
    background-color: #d14a1e;
    transform: translateY(-2px);
}

/* Swiper default nav icon override */
.awards-prev::after,
.awards-next::after {
    display: none;
}

/* Responsive */
@media (max-width: 900px) {
    .awards-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .awards-heading {
        font-size: 1.8rem;
    }
}

/* --- Stages + Process shared background --- */
.stages-process-wrap {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.stages-process-bg {
    position: absolute;
    left: 50%;
    top: 52%;
    width: 130%;
    height: 78%;
    transform: translate(-50%, -50%);
    background-image: url("images/Untitled-2.png");
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}

/* --- Stages Section --- */
.stages-section {
    padding: var(--section-padding);
    padding-bottom: 20px;
    background-color: transparent;
    position: relative;
    overflow: visible;
}

.stages-container {
    max-width: var(--section-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stages-header {
    margin-bottom: 50px;
    max-width: 900px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    text-align: left;
}

.stages-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.stages-eyebrow {
    display: inline-block;
    background-color: var(--color-blue);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.stages-heading {
    color: var(--color-orange);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}

.stages-subheading {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.stages-subheading strong {
    color: var(--color-blue);
    font-weight: 600;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stage-card-wrapper {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
}

.stage-card-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.stage-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(28, 75, 130, 0.08);
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(28, 75, 130, 0.1);
}

.stage-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.stage-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stage-card:hover .stage-img-wrapper img {
    transform: scale(1.05);
}

.stage-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.stage-title {
    color: var(--color-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stage-subtitle {
    color: var(--color-blue);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.stage-desc {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stage-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.stage-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.4;
}

.stage-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-orange);
    font-size: 1.1rem;
}

.stage-btn {
    display: inline-block;
    width: 100%;
    background-color: var(--color-orange);
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.stage-btn:hover {
    background-color: #d14a1e;
}

/* Responsive Styles for Stages Section */
@media (max-width: 1024px) {
    .stages-grid {
        gap: 20px;
    }

    .stage-content {
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .stages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stages-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .stages-grid {
        grid-template-columns: 1fr;
    }

    .stages-heading {
        font-size: 2rem;
    }
}

/* --- Process Section --- */
.process-section {
    padding: var(--section-padding);
    padding-top: 50px;
    position: relative;
    overflow: visible;
    background-color: transparent;
}

.process-container {
    max-width: var(--section-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-header {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.process-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-eyebrow {
    display: inline-block;
    background-color: var(--color-blue);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.process-heading {
    color: var(--color-orange);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}

.process-subheading {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.process-flow {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 15px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.visible,
.process-chevron.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    /* Aligns with circles */
    color: #cbd5e1;
    font-size: 2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-icon-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 10px;
    /* For the outer ring effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .process-icon-ring {
    transform: translateY(-8px);
}

.process-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #fff;
    box-shadow: inset 0 -4px 10px rgba(0, 0, 0, 0.15);
}

.process-icon img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

.color-orange.process-icon-ring {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, #fff1ec 100%);
    box-shadow: 0 10px 20px rgba(240, 90, 40, 0.12), inset 0 2px 5px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(240, 90, 40, 0.15);
}

.color-blue.process-icon-ring {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, #edf3fc 100%);
    box-shadow: 0 10px 20px rgba(28, 75, 130, 0.12), inset 0 2px 5px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(28, 75, 130, 0.15);
}

.color-orange .process-icon {
    background: radial-gradient(circle at 35% 35%, #f78459, var(--color-orange));
}

.color-blue .process-icon {
    background: radial-gradient(circle at 35% 35%, #3065b3, var(--color-blue));
}

.process-step:hover .color-orange.process-icon-ring {
    box-shadow: 0 15px 30px rgba(240, 90, 40, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.8);
}

.process-step:hover .color-blue.process-icon-ring {
    box-shadow: 0 15px 30px rgba(28, 75, 130, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.8);
}

.process-content {
    background: #fdfdfd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 0 10px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    flex-grow: 1;
}

.process-content h4 {
    color: var(--color-blue);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.process-content p {
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .process-icon-ring {
        width: 110px;
        height: 110px;
    }

    .process-icon {
        font-size: 2.5rem;
    }

    .process-chevron {
        height: 110px;
        font-size: 1.5rem;
    }
}

@media (max-width: 900px) {
    .process-flow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .process-step {
        flex: 0 0 calc(33.33% - 20px);
    }

    .process-chevron {
        display: none;
    }
}

@media (max-width: 600px) {
    .process-step {
        flex: 0 0 calc(100% - 20px);
    }

    .process-heading {
        font-size: 2rem;
    }
}

/* --- Spaces Section --- */
.spaces-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-alt);
    /* Light beige background */
    position: relative;
    overflow: hidden;
}

.spaces-container {
    max-width: var(--section-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.spaces-header {
    margin-bottom: 50px;
    max-width: 900px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.spaces-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.spaces-eyebrow {
    display: inline-block;
    background-color: var(--color-blue);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.spaces-heading {
    color: var(--color-orange);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}

.spaces-subheading {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Swiper overrides for spaces */
.spaces-swiper {
    padding: 20px 10px 40px !important;
    /* give room for shadow */
}

.spaces-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.space-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 5px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.space-card:hover {
    box-shadow: 0 15px 35px rgba(28, 75, 130, 0.15);
    border-bottom: 5px solid var(--color-blue);
}

.space-img-wrapper {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.space-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.space-card:hover .space-img-wrapper img {
    transform: scale(1.05);
}

.space-content {
    padding: 20px 30px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.space-title {
    color: var(--color-orange);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.space-desc {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Navigation Arrows */
.spaces-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.spaces-prev,
.spaces-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-orange);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.spaces-prev:hover,
.spaces-next:hover {
    background-color: #d14a1e;
    transform: scale(1.1);
}

.spaces-prev.swiper-button-disabled,
.spaces-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 600px) {
    .spaces-heading {
        font-size: 2rem;
    }
}

/* --- Testimonials + Admission shared background --- */
.testimonials-admission-wrap {
    position: relative;
    overflow: hidden;
}

.testimonials-admission-bg {
    position: absolute;
    left: 50%;
    top: 52%;
    width: 130%;
    height: 78%;
    transform: translate(-50%, -50%);
    background-image: url("images/Untitled-2.png");
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: var(--section-padding);
    padding-bottom: 40px;
    background-color: #ffffff;
    position: relative;
    overflow: visible;
    z-index: 0;
}

.testimonials-container {
    max-width: var(--section-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    margin-bottom: 50px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonials-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-eyebrow {
    display: inline-block;
    background-color: var(--color-blue);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.testimonials-heading {
    color: var(--color-orange);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.25;
}

.testimonials-subheading {
    color: var(--color-text);
    font-size: 1.15rem;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card-wrapper {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(28, 75, 130, 0.2);
}

.testimonial-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-heading {
        font-size: 2rem;
    }
}

/* --- Admission Section --- */
.admission-section {
    padding: var(--section-padding);
    padding-top: 50px;
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: visible;
    z-index: 0;
}

.admission-container {
    max-width: var(--section-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.admission-header {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.admission-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.admission-eyebrow {
    display: inline-block;
    background-color: var(--color-blue);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.admission-heading {
    color: var(--color-orange);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}

.admission-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* for mobile */
    margin-top: 50px;
}

.admission-step-wrapper {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    margin-right: 65px;
    /* 45px arrow + 20px gap */
    margin-bottom: 10px;
}

.admission-step-wrapper:last-child {
    margin-right: 0;
}

.admission-step-wrapper.visible,
.admission-cta-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.admission-step {
    width: 170px;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    position: relative;
    background-color: var(--color-orange);
    /* default fallback */
}

.admission-step.color-orange {
    background-color: var(--color-orange);
}

.admission-step.color-blue {
    background-color: var(--color-blue);
}

.step-num {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.step-title {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.25;
}

.step-arrow {
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 70px;
    z-index: 2;
}

.step-arrow.color-orange::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 34px;
    background-color: var(--color-orange);
}

.step-arrow.color-orange::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-left: 25px solid var(--color-orange);
}

.step-arrow.color-blue::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 34px;
    background-color: var(--color-blue);
}

.step-arrow.color-blue::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-left: 25px solid var(--color-blue);
}

.step-shadow {
    width: 120px;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    margin: 20px auto 0;
    border-radius: 50%;
}

.admission-cta-wrapper {
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

@media (max-width: 1024px) {
    .admission-step-wrapper {
        margin-right: 45px;
        /* 30px arrow + 15px gap */
    }

    .admission-step-wrapper:last-child {
        margin-right: 0;
    }

    .admission-step {
        width: 150px;
        height: 150px;
    }

    .step-arrow {
        right: -30px;
        width: 30px;
        height: 50px;
    }

    .step-arrow.color-orange::before,
    .step-arrow.color-blue::before {
        width: 10px;
        height: 20px;
    }

    .step-arrow.color-orange::after,
    .step-arrow.color-blue::after {
        left: 10px;
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-left-width: 20px;
    }
}

@media (max-width: 768px) {
    .admission-steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .admission-step-wrapper {
        margin-right: 0;
        margin-bottom: 35px;
    }

    .admission-step-wrapper:last-child {
        margin-bottom: 0;
    }

    .admission-step-wrapper .step-shadow {
        display: none;
    }

    .step-arrow {
        right: 50%;
        top: auto;
        bottom: -35px;
        transform: translateX(50%);
        width: 40px;
        height: 35px;
    }

    /* Mobile arrows pointing down */
    .step-arrow.color-orange::before,
    .step-arrow.color-blue::before {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 20px;
        height: 15px;
    }

    .step-arrow.color-orange::after,
    .step-arrow.color-blue::after {
        left: 50%;
        top: 15px;
        transform: translateX(-50%);
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: none;
    }

    .step-arrow.color-orange::after {
        border-top: 20px solid var(--color-orange);
        border-left-color: transparent !important;
    }

    .step-arrow.color-blue::after {
        border-top: 20px solid var(--color-blue);
        border-left-color: transparent !important;
    }

    .admission-heading {
        font-size: 2rem;
    }
}

/* --- FAQ + CTA shared background --- */
.faq-cta-wrap {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.faq-cta-bg {
    position: absolute;
    left: 50%;
    top: 58%;
    width: 130%;
    height: 78%;
    transform: translate(-50%, -50%);
    background-image: url("images/Untitled-2.png");
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}

/* --- FAQ Section --- */
.faq-section {
    padding: var(--section-padding);
    padding-bottom: 20px;
    background-color: transparent;
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-eyebrow {
    display: inline-block;
    background-color: var(--color-blue);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.faq-heading {
    color: var(--color-orange);
    font-size: 2.5rem;
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    text-align: left;
    background-color: #f4f7fb;
    color: var(--color-blue);
    padding: 16px 25px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 500;
    font-family: inherit;
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: var(--color-blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-blue);
    color: #ffffff;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 20px 25px 25px 25px;
    font-size: 1.05rem;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .faq-heading {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .faq-answer-inner {
        padding: 15px 20px 20px 20px;
        font-size: 0.95rem;
    }
}

/* --- Get In Touch Section --- */
.get-in-touch-section {
    padding: var(--section-padding);
    padding-top: 40px;
    background-color: transparent;
    position: relative;
    overflow: visible;
}

.get-in-touch-container {
    max-width: var(--section-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.get-in-touch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.get-in-touch-img-wrapper {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.get-in-touch-img-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.get-in-touch-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
}

.get-in-touch-content {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.get-in-touch-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.get-in-touch-eyebrow {
    display: inline-block;
    background-color: var(--color-blue);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.get-in-touch-heading {
    color: var(--color-orange);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}

.get-in-touch-desc {
    color: var(--color-text);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.get-in-touch-desc strong {
    color: var(--color-text);
    font-weight: 700;
}

.btn-callback {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-blue);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 12px 30px 12px 20px;
    position: relative;
    transition: background-color 0.3s ease;
}

.btn-callback:hover {
    background-color: #12365e;
}

.btn-callback .btn-icon {
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-orange);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-callback:hover .btn-icon {
    transform: translateY(-50%) translateX(3px);
}

@media (max-width: 900px) {
    .get-in-touch-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .get-in-touch-content {
        order: -1;
    }
}

@media (max-width: 600px) {
    .get-in-touch-heading {
        font-size: 2rem;
    }
}

/* --- Footer Section --- */
.footer-section {
    background-color: var(--color-blue);
    color: #ffffff;
    padding-top: 60px;
    position: relative;
    font-family: inherit;
}

.footer-container {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer-line {
    width: 30px;
    height: 2px;
    background-color: var(--color-orange);
    margin-bottom: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: #ffffff;
    font-size: 1.25rem;
    opacity: 0.9;
}

.footer-contact-item a {
    color: #ffffff;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
}

.footer-subtext {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 10px;
    opacity: 0.8;
}

.footer-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    pointer-events: none;
    cursor: default;
}

.footer-social-link i {
    color: var(--color-orange);
    font-size: 1.2rem;
}

.footer-bottom {
    background-color: #173e6a;
    /* slightly darker blue */
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-container {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-orange);
    color: #ffffff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #d64a1c;
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-social-grid {
        grid-template-columns: 1fr;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
    }
}

/* --- Hero Section & CRM Form --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 760px;
    height: 88vh;
    max-height: 900px;
    display: flex;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    background-color: #ffffff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url("images/hero-section.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 58% 30%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(255, 255, 255, 0.88) 18%,
            rgba(255, 255, 255, 0.35) 34%,
            rgba(255, 255, 255, 0.08) 48%,
            rgba(255, 255, 255, 0) 62%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 28px 28px 110px;
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(240px, 1fr) 370px;
    position: relative;
    z-index: 10;
    gap: 12px;
    align-items: center;
}

.hero-content {
    max-width: 380px;
    position: relative;
    z-index: 3;
    padding-top: 86px;
}

.hero-logo-box {
    position: absolute;
    top: 0;
    left: max(28px, calc((100% - 1320px) / 2 + 28px));
    background-color: var(--color-blue);
    padding: 12px 12px 16px;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    z-index: 20;
    text-align: center;
}

.hero-logo {
    width: 84px;
    height: auto;
    display: block;
}

.hero-mobile-admit {
    display: none;
}

.hero-affiliation {
    display: inline-block;
    background-color: var(--color-blue);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 5px 10px;
    margin-bottom: 14px;
}

.hero-heading {
    margin-bottom: 16px;
    line-height: 0;
}

.hero-heading img {
    display: block;
    width: 100%;
    max-width: 380px;
    height: auto;
}

.hero-subheading {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 360px;
}

.hero-subheading strong {
    color: #444444;
    font-weight: 700;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-blue);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 11px 18px 11px 22px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #12365e;
}

.hero-btn .btn-icon {
    margin-left: 14px;
    background-color: var(--color-orange);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
}

.hero-image-center {
    position: relative;
    height: 100%;
    min-height: 280px;
    pointer-events: none;
}

.hero-plane-wrap {
    position: absolute;
    top: 58px;
    left: 17%;
    width: 400px;
    height: 280px;
    z-index: 4;
    pointer-events: none;
    animation: floatAirplane 6s ease-in-out infinite;
}

.hero-plane-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

@keyframes floatAirplane {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* CRM Form Mockup */
.hero-form-wrapper {
    width: 100%;
    position: relative;
    z-index: 5;
    align-self: center;
    margin-top: 18px;
    scroll-margin-top: 16px;
}

.crm-form-box {
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    border: 1px solid #ececec;
}

.crm-form-header {
    background-color: var(--color-orange);
    color: #fff;
    text-align: center;
    padding: 9px 10px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.4px;
}

.crm-form-body {
    padding: 0;
}

.npf_wgts,
.npf_wgts iframe {
    display: block;
    width: 100% !important;
    min-height: 610px;
    height: 610px !important;
    border: 0;
}

.crm-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.crm-tab {
    background: none;
    border: none;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-blue);
    cursor: pointer;
    padding: 4px 12px;
    font-family: inherit;
}

.crm-tab.active {
    background-color: var(--color-orange);
    color: #fff;
}

.crm-form {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.crm-group {
    width: 100%;
}

.crm-row {
    display: flex;
    gap: 8px;
}

.crm-half {
    flex: 1;
    min-width: 0;
}

.crm-input,
.crm-select {
    width: 100%;
    padding: 7px 9px;
    border: 1px solid #cfcfcf;
    font-size: 0.72rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #fff;
    height: 32px;
}

.crm-input:focus,
.crm-select:focus {
    border-color: var(--color-orange);
}

.crm-phone-group {
    display: flex;
    gap: 0;
}

.crm-country-code {
    width: 62px;
    border-right: none;
    background-color: #f9f9f9;
    flex: 0 0 62px;
}

.crm-phone-group .crm-input {
    flex: 1;
}

.crm-captcha-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.crm-captcha-img {
    background: #e8e8e8;
    padding: 5px 10px;
    font-family: monospace;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    font-weight: bold;
    color: #555;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px);
    white-space: nowrap;
}

.crm-captcha-reload {
    background: none;
    border: none;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
}

.crm-captcha-input {
    flex: 1;
}

.crm-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 2px;
}

.crm-checkbox-group input {
    margin-top: 2px;
    flex-shrink: 0;
}

.crm-checkbox-group label {
    font-size: 0.58rem;
    line-height: 1.3;
    color: #666;
}

.crm-submit-btn {
    background-color: var(--color-orange);
    color: #fff;
    border: none;
    padding: 9px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 2px;
    width: 100%;
}

.crm-submit-btn:hover {
    background-color: #d64a1c;
}

@media (max-width: 1200px) {
    .hero-section {
        height: auto;
        max-height: none;
        min-height: 0;
    }

    .hero-container {
        grid-template-columns: 1fr 370px;
        justify-content: space-between;
        padding: 90px 24px 100px;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-image-center {
        display: none;
    }

    .hero-plane-wrap {
        display: none;
    }

    .hero-bg {
        background-position: 60% 30%;
    }
}

@media (max-width: 900px) {
    .hero-section {
        min-height: auto;
        height: auto;
        max-height: none;
        padding: 0;
        align-items: flex-start;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 110px 16px 32px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding-top: 0;
        margin: 0 auto;
    }

    .hero-logo-box {
        left: 16px;
        top: 0;
        padding: 10px 10px 14px;
    }

    .hero-mobile-admit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 22px;
        right: 16px;
        z-index: 21;
        background-color: var(--color-orange);
        color: #ffffff;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.95rem;
        padding: 12px 22px;
        border-radius: 10px;
        box-shadow: 0 6px 16px rgba(240, 90, 40, 0.28);
    }

    .hero-heading {
        margin-bottom: 14px;
    }

    .hero-heading img {
        max-width: min(420px, 100%);
        margin: 0 auto;
        filter: brightness(0) invert(1);
    }

    .hero-subheading {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        font-size: 1rem;
        background: #1c4b82c2;
        color: #ffffff;
        padding: 12px 16px;
        border-radius: 10px;
    }

    .hero-subheading strong {
        color: #ffffff;
    }

    .hero-btn {
        display: none;
    }

    .hero-image-center {
        display: block;
        width: 100%;
        min-height: clamp(280px, 45vh, 420px);
        pointer-events: none;
    }

    .hero-plane-wrap {
        display: none;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 500px;
        margin: 20px auto 0;
    }

    .crm-form-box {
        overflow: visible;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .npf_wgts,
    .npf_wgts iframe {
        min-height: 610px !important;
        height: 650px !important;
    }

    .hero-section::before {
        background: transparent;
    }

    .hero-bg {
        background-image: linear-gradient(180deg, #665757 0%, transparent 50%), url("images/hero-section.jpg");
        background-position: 56% 18%;
        height: 69%;
        margin-top: 96px;
    }
}

@media (max-width: 576px) {
    .hero-container {
        padding: 96px 16px 28px;
    }

    .hero-logo-box {
        left: 12px;
        padding: 8px 8px 12px;
    }

    .hero-logo {
        width: 58px;
    }

    .hero-mobile-admit {
        top: 18px;
        right: 12px;
        font-size: 0.85rem;
        padding: 10px 16px;
        border-radius: 8px;
    }

    .hero-affiliation {
        font-size: 0.68rem;
        margin-bottom: 10px;
    }

    .hero-heading img {
        max-width: 100%;
    }

    .hero-subheading {
        font-size: 0.92rem;
    }

    .hero-form-wrapper {
        max-width: 100%;
    }

    .crm-row {
        flex-direction: column;
        gap: 7px;
    }
}

/* --- About KTGS Section --- */
.about-ktgs-section {
    padding: 0 0 var(--section-padding) 0;
    background-color: #fcf2e8;
    overflow: visible;
}

.about-ktgs-container {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    overflow: visible;
}

.about-ktgs-box {
    background-color: var(--color-blue);
    border-radius: 80px 80px 0 0;
    display: flex;
    position: relative;
    padding: 60px 40px 0;
    align-items: center;
    gap: 60px;
    margin-top: -100px;
    z-index: 2;
    overflow: visible;
}

.about-ktgs-image {
    flex: 1;
    position: relative;
    z-index: 5;
    align-self: flex-end;
}

.about-ktgs-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-ktgs-content {
    flex: 1;
    color: #ffffff;
    z-index: 2;
    padding-right: 20px;
    padding-bottom: 48px;
}

.about-ktgs-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-ktgs-heading .highlight {
    color: var(--color-orange);
}

.about-ktgs-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.about-ktgs-decor {
    position: absolute;
    z-index: 6;
    pointer-events: none;
}

.about-ktgs-decor img {
    display: block;
    width: 100%;
    height: auto;
}

.about-ktgs-decor.top-decor {
    top: 18px;
    left: 42%;
    width: 140px;
}

.about-ktgs-decor.bottom-decor {
    bottom: 12px;
    right: 24px;
    width: 150px;
}

@media (max-width: 900px) {
    .about-ktgs-box {
        flex-direction: column;
        border-radius: 80px 80px 0 0;
        padding: 50px 16px 0;
        gap: 30px;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .about-ktgs-image {
        top: 0;
        margin-bottom: 0;
        order: 2;
        width: 100%;
    }

    .about-ktgs-content {
        padding-right: 0;
        text-align: center;
        order: 1;
    }

    .about-ktgs-heading {
        font-size: 2rem;
    }

    .about-ktgs-decor.top-decor {
        top: 8px;
        left: auto;
        right: 16px;
        width: 72px;
    }

    .about-ktgs-decor.bottom-decor {
        bottom: 8px;
        right: 12px;
        width: 80px;
    }
}