.growth-framework {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 100px;
}

.growthSwiper {
    width: 100%;
    height: 720px;
}

.growthSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomBg 12s linear infinite alternate;
}

@keyframes zoomBg {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}

.slide-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .15) 20%,
            rgba(0, 0, 0, .05) 45%,
            rgba(255, 255, 255, .15) 100%);
}

.content-box {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    padding: 70px 55px;
    border-radius: 25px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
    z-index: 5;
    opacity: 0.80;
}

.yellow {
    background: #FFE85C;
}

.blue {
    background: #D9F2FF;
}

.green {
    background: #DDF8D9;
}

.big-letter {
    position: absolute;
    left: -35px;
    top: -40px;
    font-size: 180px;
    line-height: 1;
    font-weight: 900;
    opacity: .38;
    font-family: sans-serif;
}

.yellow .big-letter {
    color: #72b500;
}

.blue .big-letter {
    color: #1f88ff;
}

.green .big-letter {
    color: #2ca44d;
}

.small-title {
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-box h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 700;
}

.content-box p {
    color: #444;
    line-height: 32px;
    font-size: 17px;
    margin-bottom: 25px;
}

.content-box h5 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.content-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.content-box ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #444;
    font-size: 16px;
}

.content-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b00;
    font-weight: bold;
}

.content-box a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    transition: .35s;
    font-weight: 600;
}

.content-box a:hover {
    background: #222;
    color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, .9);
    border-radius: 50%;
    color: #222;
    transition: .3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #ff6b00;
    color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-pagination {
    bottom: 35px !important;
}

.swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background: #fff;
    opacity: .6;
}

.swiper-pagination-bullet-active {
    background: #ff6b00;
    opacity: 1;
}

.swiper-slide-active .content-box {
    animation: slideUp .8s ease;
}

@keyframes slideUp {

    from {
        transform: translateY(-35%);
        opacity: 0;
    }

    to {
        transform: translateY(-50%);
        opacity: 1;
    }

}

@media(max-width:1400px) {
    .growthSwiper {
        height: 650px;
    }

    .content-box {
        width: 480px;
        right: 6%;
        padding: 60px 45px;
    }

    .content-box h2 {
        font-size: 42px;
    }

    .big-letter {
        font-size: 160px;
    }
}

@media(max-width:1200px) {
    .growthSwiper {
        height: 600px;
    }

    .content-box {
        width: 430px;
        right: 5%;
        padding: 45px 35px;
    }

    .content-box h2 {
        font-size: 36px;
    }

    .content-box p {
        font-size: 16px;
        line-height: 28px;
    }

    .big-letter {
        font-size: 130px;
        left: -15px;
        top: -15px;
    }
}

@media(max-width:991px) {
    .growthSwiper {
        height: 760px;
    }

    .slide-bg img {
        object-position: center;
    }

    .content-box {
        width: 92%;
        left: 4%;
        right: 4%;
        bottom: 40px;
        top: auto;
        transform: none;
        padding: 35px;
        border-radius: 20px;
    }

    .swiper-slide-active .content-box {
        animation: none;
    }

    .content-box h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .content-box p {
        font-size: 16px;
        line-height: 28px;
    }

    .content-box ul li {
        font-size: 15px;
    }

    .big-letter {
        font-size: 120px;
        left: -10px;
        top: -10px;
    }
}

@media(max-width:767px) {
    .growthSwiper {
        height: 720px;
    }

    .slide-bg img {
        object-position: left center;
    }

    .content-box {
        width: 90%;
        left: 5%;
        right: 5%;
        padding: 30px 25px;
    }

    .small-title {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .content-box h2 {
        font-size: 28px;
    }

    .content-box p {
        font-size: 15px;
        line-height: 26px;
    }

    .content-box h5 {
        font-size: 17px;
    }

    .content-box ul li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .content-box a {
        padding: 12px 24px;
        font-size: 14px;
        margin-top: 20px;
    }

    .big-letter {
        font-size: 95px;
        left: -5px;
        top: -5px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media(max-width:480px) {
    .growthSwiper {
        height: 700px;
    }

    .content-box {
        width: 92%;
        left: 4%;
        right: 4%;
        bottom: 20px;
        padding: 25px 20px;
    }

    .content-box h2 {
        font-size: 24px;
    }

    .content-box p {
        font-size: 14px;
        line-height: 24px;
    }

    .content-box ul li {
        font-size: 13px;
        padding-left: 22px;
    }

    .content-box a {
        width: 100%;
        text-align: center;
        font-size: 14px;
    }

    .big-letter {
        font-size: 75px;
        left: 0;
        top: 5px;
    }

    .swiper-pagination {
        bottom: 10px !important;
    }
}

@media(max-width:360px) {
    .growthSwiper {
        height: 680px;
    }

    .content-box {
        padding: 20px 18px;
    }

    .content-box h2 {
        font-size: 22px;
    }

    .content-box p {
        font-size: 13px;
        line-height: 22px;
    }
}

.slide-bg img {
    object-fit: cover;
    object-position: center center;
}

.content-box {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, .85);
}

.yellow {
    background: rgba(255, 232, 92, .88);
}

.blue {
    background: rgba(217, 242, 255, .88);
}

.green {
    background: rgba(221, 248, 217, .88);
}

.storybook-section {
    position: relative;
    background: #ffffff;
    padding: 110px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    display: inline-block;
    background: #fefefe;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 50px;
    color: #2D4858;
    margin-bottom: 20px;
}

.section-title p {
    width: 700px;
    max-width: 100%;
    margin: auto;
    color: #666;
    line-height: 30px;
}

.story-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.story-image {
    width: 50%;
}

.book-frame {
    background: #fff;
    padding: 20px;
    border-radius: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
    position: relative;
}

.book-frame::before {
    content: "📖";
    position: absolute;
    top: -25px;
    right: -15px;
    font-size: 55px;
}

.book-frame img {
    width: 100%;
    border-radius: 25px;
}

.story-content {
    width: 50%;
}

.story-content h3 {
    color: #FF7A00;
    margin-bottom: 20px;
    font-size: 34px;
}

.story-content p {
    color: #666;
    line-height: 32px;
    margin-bottom: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}


.feature-card:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 18px;
    color: #ffffff;
}

.story-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 38px;
    background: #FF8F3D;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

.story-btn:hover {
    background: #2D4858;
    color: #fff;
}

.cloud {
    width: 180px;
    height: 80px;
    background: #edf3f8;
    border-radius: 100px;
    position: absolute;
}

.cloud::before,
.cloud::after {
    content: "";
    position: absolute;
    background: #edf3f8;
    border-radius: 50%;
}

.cloud::before {
    width: 70px;
    height: 70px;
    left: 25px;
    top: -30px;
}

.cloud::after {
    width: 90px;
    height: 90px;
    right: 25px;
    top: -45px;
}

.cloud1 {
    left: 40px;
    top: 60px;
}

.cloud2 {
    right: 40px;
    top: 120px;
}

.star {
    position: absolute;
    font-size: 28px;
}

.star1 {
    top: 90px;
    left: 50%;
}

.star2 {
    bottom: 70px;
    right: 10%;
}

.rainbow {
    position: absolute;
    width: 220px;
    height: 110px;
    border-radius: 220px 220px 0 0;
    border: 18px solid #FF9A00;
    border-bottom: none;
    left: -80px;
    bottom: -20px;
    opacity: .3;
}

/*========================
Large Desktop
=========================*/

@media(max-width:1400px) {

    .story-wrapper {
        gap: 50px;
    }

    .section-title h2 {
        font-size: 46px;
    }

    .story-content h3 {
        font-size: 32px;
    }

}

/*========================
Laptop
=========================*/

@media(max-width:1200px) {

    .story-wrapper {
        gap: 40px;
    }

    .section-title h2 {
        font-size: 40px;
    }

    .story-content h3 {
        font-size: 30px;
    }

    .story-content p {
        font-size: 16px;
        line-height: 30px;
    }

    .book-frame {
        padding: 15px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-card h4 {
        font-size: 17px;
    }

    .story-btn {
        padding: 14px 30px;
    }

}

/*========================
Tablet
=========================*/

@media(max-width:991px) {

    .storybook-section {
        padding: 80px 0;
    }

    .story-wrapper {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .story-image,
    .story-content {
        width: 100%;
    }

    .story-image {
        order: 1;
    }

    .story-content {
        order: 2;
        text-align: center;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 36px;
        line-height: 46px;
    }

    .section-title p {
        width: 100%;
    }

    .story-content h3 {
        font-size: 28px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .story-btn {
        margin-top: 30px;
    }

    .cloud1,
    .cloud2,
    .star1,
    .star2,
    .rainbow {
        opacity: .25;
    }

}

/*========================
Mobile
=========================*/

@media(max-width:767px) {

    .storybook-section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .section-title p {
        font-size: 15px;
        line-height: 28px;
    }

    .story-content h3 {
        font-size: 24px;
    }

    .story-content p {
        font-size: 15px;
        line-height: 28px;
    }

    .book-frame {
        padding: 12px;
        border-radius: 20px;
    }

    .book-frame img {
        border-radius: 15px;
    }

    .book-frame::before {
        font-size: 40px;
        right: -10px;
        top: -15px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-card {
        padding: 22px;
    }

    .icon {
        font-size: 36px;
    }

    .story-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .cloud,
    .star,
    .rainbow {
        display: none;
    }

}

/*========================
Small Mobile
=========================*/

@media(max-width:575px) {

    .storybook-section {
        padding: 60px 0;
    }

    .section-title span {
        font-size: 13px;
        padding: 8px 18px;
    }

    .section-title h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .story-content h3 {
        font-size: 22px;
    }

    .story-content p {
        font-size: 14px;
        line-height: 26px;
    }

    .feature-card {
        padding: 20px;
        border-radius: 18px;
    }

    .feature-card h4 {
        font-size: 16px;
    }

    .icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .story-btn {
        font-size: 15px;
    }

}

/*========================
Extra Small
=========================*/

@media(max-width:380px) {

    .storybook-section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .story-content h3 {
        font-size: 20px;
    }

    .story-content p {
        font-size: 13px;
        line-height: 24px;
    }

    .book-frame {
        padding: 10px;
    }

    .feature-card {
        padding: 18px;
    }

    .story-btn {
        padding: 12px;
        font-size: 14px;
    }

}

.growth-journey {
    padding: 100px 0;
    background: #edf3f8;
    overflow: hidden;
}

.journey-heading {
    text-align: center;
    margin-bottom: 70px;
}

.journey-heading span {
    display: inline-block;
    padding: 10px 24px;
    background: #FFEAA7;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.journey-heading h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #243B55;
}

.journey-heading p {
    max-width: 950px;
    margin: auto;
    line-height: 32px;
    color: #666;
}

.journey-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    width: 170px;
    position: relative;
}

.circle {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .4s;
}

.step:hover .circle {
    transform: translateY(-10px);
}

.line {
    height: 5px;
    width: 70px;
    background: #FFD76B;
    border-radius: 20px;
}

.step h4 {
    margin-top: 20px;
    font-size: 24px;
    color: #243B55;
}

.step p {
    margin-top: 8px;
    color: #666;
}

.vm-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.vm-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    flex: 1;
    transition: .4s;
}

.vm-card:hover {
    transform: translateY(-10px);
}

.vision {
    border-top: 8px solid #F7C948;
}

.mission {
    border-top: 8px solid #5EC8E5;
}

.vm-card h3 {
    margin-bottom: 20px;
    font-size: 30px;
}

.vm-card p {
    line-height: 30px;
    color: #666;
}

@media(max-width:991px) {

    .journey-line {
        gap: 25px;
    }

    .line {
        display: none;
    }

    .step {
        width: 45%;
        margin-bottom: 25px;
    }

    .vm-wrapper {
        flex-direction: column;
    }

}

@media(max-width:576px) {

    .step {
        width: 100%;
    }

    .journey-heading h2 {
        font-size: 32px;
    }

    .circle {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .vm-card {
        padding: 25px;
    }

    .vm-card h3 {
        font-size: 24px;
    }

}


:root {
    --primary-blue: #044f7c;
    /* Main primary blue */
    --text-dark: #222222;
    /* Dark title text */
    --text-muted: #666666;
    /* Paragraph text */
    --card-bg: #ffffff;
    /* Card background */
    --card-radius: 28px;
    /* Card corner radius */
    --image-radius: 24px;
    /* Image corner radius */
}

/* Section Wrapper (Clean & Background-Free) */
.welcome-section {
    padding: 90px 0;
    background: #065c8f;
    margin-bottom: 30px;
    /* font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
}

.welcome-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Image Column */
.welcome-image-col {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-portrait {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--image-radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Right Content Card */
.welcome-content-card {
    padding: 50px 55px;
}

.welcome-super-title {
    font-size: 40px;
    font-weight: 800;
    color: rgb(210, 223, 231);
    /* text-transform: uppercase; */
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.welcome-main-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin: 0 0 28px 0;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.welcome-message-body {
    margin-bottom: 32px;
}

.welcome-sub-heading {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.welcome-message-body p {
    font-size: 18px;
    line-height: 1.4;
    color: #fefefe;
    margin: 0;
    text-align: justify;
}

.welcome-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.welcome-author-name {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.welcome-author-title {
    font-size: 14px;
    color: #777777;
    font-weight: 500;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .welcome-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .welcome-portrait {
        height: 380px;
    }

    .welcome-content-card {
        padding: 35px 30px;
    }

    .welcome-super-title {
        font-size: 30px;
    }

    .welcome-main-title {
        font-size: 26px;
    }
}



/* form css start */
.growth-journey {
    width: 100%;
    padding: 80px 0;
    background: #f5f5f5;
}

.growth-journey .container {
    /* max-width: 1140px; */
    margin: 0 auto;
}

.vm-wrapper {
    width: 100%;
}


/* Main Form Box */
.admission-form-wrapper {
    background: #065C8F;
    color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}


/* Heading */
.admission-heading {
    text-align: center;
    margin-bottom: 40px;
}

.admission-heading h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
}

.admission-heading p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}


/* Form Section */
.form-section {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}

.form-section:first-child {
    padding-top: 0;
}

.form-section h3 {
    margin: 0 0 25px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
}


/* Row */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


/* Form Group */
.form-group {
    margin-bottom: 22px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.form-group label span {
    color: #ffffff;
}


/* Input */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"] {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 4px;
    outline: none;
    background: #ffffff;
    color: #222222;
    font-size: 15px;
    box-sizing: border-box;
    transition: 0.3s ease;
}

.form-group input::placeholder {
    color: #777777;
}

.form-group input:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}


/* Radio Buttons */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
    font-size: 15px;
}

.radio-group input[type="radio"] {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: #ffffff;
}


/* Checkbox */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: #ffffff;
}


/* Submit */
.form-submit {
    padding-top: 35px;
    text-align: center;
}

.admission-submit {
    display: inline-block;
    min-width: 170px;
    padding: 14px 35px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    background: #ffffff;
    color: #065C8F;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admission-submit:hover {
    background: transparent;
    color: #ffffff;
}


/* Note */
.admission-note {
    max-width: 850px;
    margin: 30px auto 0;
    padding: 20px;
    border-left: 3px solid #ffffff;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 14px;
    line-height: 1.7;
}


.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    margin-top: 12px;
}

.checkbox-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
    cursor: pointer;
    color: #ffffff;
    font-size: 15px;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #ffffff;
}

.checkbox-item span {
    color: #ffffff;
}


/* Other option */
.checkbox-other {
    flex-wrap: wrap;
}

.checkbox-other input[type="text"] {
    width: 180px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    outline: none;
    background: #ffffff;
    color: #222222;
}




/* RESPONSIVE */

@media (max-width: 767px) {

    .growth-journey {
        padding: 40px 15px;
    }

    .admission-form-wrapper {
        padding: 30px 20px;
        border-radius: 7px;
    }

    .admission-heading {
        margin-bottom: 30px;
    }

    .admission-heading h2 {
        font-size: 25px;
    }

    .admission-heading p {
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-section {
        padding: 25px 0;
    }

    .form-section h3 {
        font-size: 19px;
    }

    .radio-group {
        flex-direction: column;
        gap: 13px;
    }

    .admission-submit {
        width: 100%;
    }

    .admission-note {
        font-size: 13px;
    }
}


/* Mobile */
@media (max-width: 767px) {

    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .checkbox-other input[type="text"] {
        width: 100%;
        margin-top: 5px;
    }
}
/* form css end */
