body {
    font-family: Arial, sans-serif;
}


.josefin-sans {
    font-family: "Josefin Sans", sans-serif;
    /* font-size: 14px; */
  }

p{
    font-family: "Josefin Sans", sans-serif;
}
/* Top Bar */
.top-bar {
    background: #12b89a;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    padding: 0 10px;
}

/* Navbar */
.navbar {
    padding: 8px 0;
}

.navbar-brand img {
    width: 50px;
}

.school-name {
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
}

.school-sub {
    letter-spacing: 3px;
    font-size: 12px;
}

.admission-btn {
    background: #6c4df6;
    color: #fff;
    border-radius: 30px;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 500;
}

.admission-btn:hover {
    background: #5638e5;
    color: #fff;
}

/* Hero Section */
.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.carousel-item {
    position: relative;
    width: 100%;
}

.carousel-item img {
    height: 550px;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, .45),
            rgba(255, 255, 255, .15),
            transparent);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.85),
            rgba(255, 255, 255, 0.2),
            transparent);
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 400px;
}

.slide-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f2b6d;
}

.slide-content-1 {
    position: absolute;
    top: 70%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.slide-content-1 h1 {
    margin-top: 10%;
    font-size: 2rem;
    font-weight: 800;
    color: #0f2b6d;
}



.slide-content span {
    color: #ff6b92;
}

.slide-content p {
    margin-top: 20px;
    font-size: 18px;
    color: #444;
}

.know-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    border-radius: 50px;
    background: #fff;
    color: #0f2b6d;
    text-decoration: none;
    font-weight: 700;
}

.custom-arrow {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.custom-arrow i {
    color: #000;
    font-size: 22px;
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

/* Indicators */
.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
}

/* Responsive */
@media(max-width:991px) {

    .hero-overlay {
        width: 100%;
        background: rgba(255, 255, 255, .75);
    }

    .slide-content {
        left: 30px;
        right: 30px;
        max-width: 100%;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .carousel-item img {
        height: 500px;
    }
}

@media(max-width:576px) {

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .carousel-item img {
        height: 400px;
    }

    .school-name {
        font-size: 22px;
    }

    .slide-overlay {
        background: rgba(255, 255, 255, .70);
    }

    .slide-content {
        left: 20px;
        right: 20px;
        max-width: 100%;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .custom-arrow {
        width: 40px;
        height: 40px;
    }
}


/* ABOUT SECTION */
.about-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* IMAGE AREA */
.about-img-wrapper {
    position: relative;
    width: fit-content;
    margin: auto;
}

/* MAIN IMAGE */
.about-img {
    width: 100%;
    max-width: 330px;
    border-radius: 120px 120px 10px 10px;
    position: relative;
    z-index: 5;
}

/* SHAPES */
.yellow-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #f7c948;
    left: -30px;
    bottom: 70px;
    border-radius: 0 0 0 40px;
    z-index: 1;
}

.purple-shape {
    position: absolute;
    width: 150px;
    height: 200px;
    background: #7c4dff;
    right: -60px;
    bottom: 30px;
    border-radius: 65px 65px 0 0;
    z-index: 1;
}

.pink-shape {
    position: absolute;
    width: 100px;
    height: 50px;
    background: #f7a8c4;
    bottom: -20px;
    right: 12px;
    border-radius: 30px 0 30px 30px;
    z-index: 6;
}

/* DOTS */
.dot-pattern {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50px;
    right: -60px;
    background-image: radial-gradient(#ddd 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 1;
}

/* CONTENT */
.about-content {
    padding-left: 20px;
}

.about-tag {
    color: #39b54a;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    margin-top: 10px;
}

.about-content h2 span {
    color: #48c128;
}

.about-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
}

/* DASH LINE */
.dash-line {
    width: 240px;
    border-top: 2px dashed #5da9ff;
    margin: 25px 0;
}

/* FEATURE BOX */
.feature-box {
    padding-right: 20px;
    border-right: 1px solid #ddd;
    height: 100%;
}

/* ICON */
.feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-icon i {
    font-size: 22px;
}

.feature-icon.pink {
    background: #ffe2ef;
    color: #ff4f9a;
}

.feature-icon.yellow {
    background: #fff3d6;
    color: #d7a000;
}

.feature-icon.purple {
    background: #efe7ff;
    color: #7c4dff;
}

.feature-box h5 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.feature-box p {
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.7;
}

/* RESPONSIVE */
@media(max-width:991px) {

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .dash-line {
        margin: 25px auto;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .feature-box {
        border-right: 0;
        padding-right: 0;
    }

    .about-img-wrapper {
        margin-bottom: 30px;
    }
}

@media(max-width:576px) {

    .about-content h2 {
        font-size: 28px;
    }

    .about-img {
        max-width: 280px;
    }

    .yellow-shape {
        width: 90px;
        height: 90px;
    }

    .purple-shape {
        width: 90px;
        height: 90px;
    }

    .feature-box {
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 15px;
    }
}


/* PROGRAM SECTION */
.program-section {
    background: #f8f8f8;
}

/* TITLE */
.section-title span {
    color: #ff6b57;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    margin-top: 10px;
    background: linear-gradient(to right, #ff66c4, #5f5fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CARD */
.program-card {
    position: relative;
    border-radius: 18px;
    padding: 35px 20px 25px;
    text-align: center;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-8px);
}

/* TOP WAVE */
.wave-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    border-radius: 0 0 50% 50%;
}

/* CARD COLORS */
.pink-card {
    background: #ffe2e2;
}

.pink-card .wave-shape,
.pink-card .arrow-btn {
    background: #ff7676;
}

.blue-card {
    background: #dff1fb;
}

.blue-card .wave-shape,
.blue-card .arrow-btn {
    background: #4ea3ff;
}

.yellow-card {
    background: #fff0c7;
}

.yellow-card .wave-shape,
.yellow-card .arrow-btn {
    background: #f5bf1d;
}

.green-card {
    background: #dff5dd;
}

.green-card .wave-shape,
.green-card .arrow-btn {
    background: #3bc255;
}

.purple-card {
    background: #eedcff;
}

.purple-card .wave-shape,
.purple-card .arrow-btn {
    background: #b15cff;
}

/* IMAGE */
.program-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    position: relative;
    z-index: 5;
    margin-bottom: 15px;
}

/* TEXT */
.program-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    min-height: 50px;
}

/* BUTTON */
.arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 10px;
    text-decoration: none;
}

.arrow-btn i {
    font-size: 18px;
}

/* RESPONSIVE */
@media(max-width:991px) {

    .section-title h2 {
        font-size: 34px;
    }

    .program-card {
        padding: 30px 18px 22px;
    }
}

@media(max-width:767px) {

    .section-title h2 {
        font-size: 28px;
    }

    .program-img {
        width: 75px;
        height: 75px;
    }

    .program-card h4 {
        font-size: 18px;
    }

    .program-card p {
        font-size: 13px;
    }
}

@media(max-width:576px) {

    .program-section {
        padding: 60px 0;
    }

    .program-card {
        max-width: 300px;
        margin: auto;
    }
}


/* LEADERSHIP SECTION */
.leadership-section {
    background: #fff;
    overflow: hidden;
}

/* WRAPPER */
.leadership-wrapper {
    padding: 60px;
    overflow: hidden;
    background-image: url('../images/bg.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: bottom;

}


/* CONTENT */
.leadership-content {
    position: relative;
    z-index: 5;
}

.leadership-content span {
    color: #6f5cff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.leadership-content h2 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin-top: 12px;
}

.leadership-content h2 span {
    font-size: 58px;
    color: #59a8ff;
}

/* DASH LINE */
.dash-line {
    width: 420px;
    border-top: 2px dashed #3aa7ff;
    margin: 22px 0;
}

/* PARAGRAPH */
.leadership-content p {
    color: #777;
    font-size: 17px;
    line-height: 1.9;
    max-width: 470px;
    font-style: italic;
}

/* RIGHT IMAGE AREA */
.leader-image-wrapper {
    position: relative;
    z-index: 5;
    text-align: center;
}

/* PURPLE BG */
.purple-bg {
    position: absolute;
    top: -40px;
    right: 40px;
    width: 450px;
    height: 450px;
    background: linear-gradient(180deg, #d97cff, #8b5dff);
    border-radius: 40px;
    z-index: 1;
}

/* YELLOW SHAPE */
.yellow-shape {
    position: absolute;
    left: -15%;
    top: 30%;
    width: 220px;
    height: 220px;
    background: #ffd54a;
    border-radius: 0 0 40% 40%;
    z-index: 1;
}

/* IMAGE */
.leadership-img {
    position: relative;
    z-index: 5;
    max-width: 100%;
}

/* DOT PATTERN */
.right-dot-pattern {
    position: absolute;
    right: -40px;
    top: 85px;
    width: 50px;
    height: 200px;
    background-image: radial-gradient(#ddd 2.5px, transparent 2px);
    background-size: 10px 10px;
    z-index: 0;
}

.left-dot-pattern {
    position: absolute;
    left: -40px;
    bottom: 15px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#ddd 2.5px, transparent 2px);
    background-size: 10px 10px;
    z-index: 0;
}

/* PLANES */
.plane {
    position: absolute;
    width: 80px;
    opacity: 0.8;
}

.plane-1 {
    left: 20px;
    bottom: 30px;
}

.plane-2 {
    top: 30px;
    left: 42%;
}

/* RESPONSIVE */
@media(max-width:1199px) {

    .leadership-content h2,
    .leadership-content h2 span {
        font-size: 48px;
    }

    .purple-bg {
        width: 380px;
        height: 380px;
    }
}

@media(max-width:991px) {

    .leadership-wrapper {
        padding: 50px 30px;
        text-align: center;
    }

    .leadership-content {
        margin-bottom: 50px;
    }

    .leadership-content p {
        margin: auto;
    }

    .dash-line {
        margin: 20px auto;
        width: 250px;
    }

    .plane-2 {
        display: none;
    }

    .purple-bg {
        right: 50%;
        transform: translateX(50%);
    }

    .yellow-shape {
        right: 50%;
        transform: translateX(140%);
    }
}

@media(max-width:767px) {

    .leadership-content h2,
    .leadership-content h2 span {
        font-size: 38px;
    }

    .leadership-content p {
        font-size: 15px;
    }

    .purple-bg {
        width: 300px;
        height: 300px;
    }

    .yellow-shape {
        width: 120px;
        height: 200px;
    }

    .plane {
        width: 55px;
    }
}

@media(max-width:576px) {

    .leadership-wrapper {
        padding: 40px 20px;
    }

    .leadership-content h2,
    .leadership-content h2 span {
        font-size: 30px;
    }

    .dash-line {
        width: 180px;
    }

    .purple-bg {
        width: 240px;
        height: 240px;
        top: 0;
    }

    .yellow-shape {
        width: 140px;
        height: 140px;
        left: 10px;
        bottom: 20px;
    }

    .leadership-wrapper::before {
        width: 320px;
        height: 320px;
        left: -120px;
        top: -60px;
    }
}


/* TEAM SECTION */
.team-section {
    background: #fff;
}

/* TITLE */
.team-title span {
    color: #7a5cff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-title h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #111;
    margin-top: 10px;
}

.title-line {
    width: 40px;
    height: 3px;
    background: #f4b400;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* CARD */
.team-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 22px;
    height: 100%;
    min-height: 200px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.team-img {
    flex-shrink: 0;
}

/* IMAGE */
.team-img img {
    width: 130px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.team-content {
    flex: 1;
}

.team-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111;
}

.team-content span {
    color: #6c63ff;
    font-size: 15px;
    font-weight: 600;
}

/* QUOTE */
.quote-icon {
    margin: 10px 0;
}

.quote-icon i {
    font-size: 28px;
    color: #6c63ff;
}

/* TEXT */
.team-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 12px;
}

/* SMALL LINE */
.small-line {
    width: 28px;
    height: 2px;
    background: #6c63ff;
    border-radius: 10px;
}

/* RESPONSIVE */
@media(max-width:1199px) {

    .team-title h2 {
        font-size: 36px;
    }

    .team-content h4 {
        font-size: 22px;
    }
}

@media(max-width:991px) {

    .team-card {
        min-height: auto;
    }

    .team-img img {
        width: 110px;
        height: 110px;
    }

    .team-content h4 {
        font-size: 22px;
    }
}

@media(max-width:767px) {

    .team-title h2 {
        font-size: 30px;
        line-height: 1.4;
    }

    .team-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 22px;
    }

    .small-line {
        margin: auto;
    }

    .team-content p {
        margin-bottom: 18px;
    }

    .team-img img {
        width: 100px;
        height: 100px;
    }

    .small-line {
        margin: auto;
    }
}

@media(max-width:576px) {

    .team-section {
        padding: 60px 0;
    }

    .team-title h2 {
        font-size: 25px;
    }

    .team-img img {
        width: 90px;
        height: 90px;
    }

    .team-content h4 {
        font-size: 20px;
    }

    .team-content p {
        font-size: 14px;
    }
}

/* INSPIRATION SECTION */

.inspiration-section {
    overflow: hidden;
    background-color: #de8798;
}

.quote-box {
    color: #fff;
    min-height: 220px;
    padding: 35px 50px;
    position: relative;
}

/* Curved divider */
/* .quote-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: -70px;
    width: 140px;
    height: 100%;
    background: #dc8a9b;
    border-radius: 0 100% 100% 0;
    z-index: 2;
} */

.inspiration-img{
    border-radius: 300px 0 0 0 ;
}

.quote-box .left-qoute{
    top: 15px;
    left: 5px;
}

.quote-box .right-qoute{
    right: 70px;
    bottom: 20px;
}

.quote-label {
    color: #c54258;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.quote-icon {
    font-size: 40px;
    line-height: 1;
    opacity: 0.6;
}

.quote-text {
    font-size: 22px;
    line-height: 1.6;
    max-width: 500px;
}

.author {
    margin-top: 20px;
    font-size: 14px;
}

.author small {
    display: block;
    opacity: .8;
}

.image-box {
    height: 270px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .quote-box::after {
        display: none;
    }

    .quote-box {
        padding: 30px;
    }

    .quote-text {
        font-size: 18px;
    }
}


.contact-wrapper {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 20px;
}

.contact-card {
    height: 100%;
    min-height: 330px;
    border-radius: 15px;
    padding: 25px;
    overflow: hidden;
    position: relative;
    overflow: visible; 

    background: linear-gradient(90deg,
            #6b4ce6 0%,
            #6f6ef5 35%,
            #64d8e6 100%);
}

/* Decorative Circle */
.contact-card::before {
    content: '';
    position: absolute;
    left: -50px;
    top: -40px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
}

.contact-info {
    font-size: 14px;
    line-height: 1.7;
}

.school-bag{
    position: absolute;
    bottom: -35px;
    left: -90px;
    width: 180px;
    z-index: 5;
}

.form-control {
    border: none;
    border-radius: 8px;
    height: 45px;
}

textarea.form-control {
    height: auto;
}

.send-btn {
    border: none;
    color: #fff;
    padding: 12px;
    border-radius: 8px;

    background: linear-gradient(90deg,
            #a66af7,
            #8a6af2);
}

.map-box {
    height: 330px;
    border-radius: 15px;
    overflow: hidden;
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-section {
    position: relative;
    background-color: #FFFBEB; /* Warm cream/peach background */
    padding-top: 50px;
    /* Space to accommodate the wavy top border */
    /* margin-top: 120px;  */
}

.footer-wave-wrapper {
    position: absolute;
    top: -119px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.footer-wave {
    width: 100%;
    height: 120px;
    display: block;
}

.footer-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

.footer-about-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-top: 15px;
    font-family: inherit;
}

.footer-socials {
    margin-top: 20px;
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none !important;
}

.social-circle:hover {
    transform: scale(1.1);
    opacity: 0.9;
    color: #fff;
}

.fb-bg {
    background-color: #1877F2;
}

.insta-bg {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.yt-bg {
    background-color: #FF0000;
}

.footer-col-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f2b6d; /* Deep blue matching school name */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 1.5px;
    background-color: #888; /* Dark horizontal line */
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: #12b89a; /* Teal color matching the theme */
    padding-left: 6px;
}

/* Pencil decorative styles */
.footer-pencil-box {
    margin-top: 15px;
}

.pencil-svg {
    display: block;
    max-width: 100%;
    height: auto;
}

@media (max-width: 480px) {
    .pencil-svg {
        width: 120px;
        height: 120px;
    }
}

/* Copyright Bar */
.copyright-bar {
    background-color: #12b89a; /* Solid teal/green color */
    color: #ffffff;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}