/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');


body {
    font-family: "Open Sans", sans-serif;
}

a {
    color: #fcfcfc;
    text-decoration: none;
}

    a:hover {
        color: #a9aeb2;
        text-decoration: none;
    }

h1,
h4,
h5,
h6 {
    font-family: 'Alegreya Sans SC', sans-serif;
}

h2,
h3 {
    font-family: 'Alegreya Sans SC', sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 50;
    width: 40px;
    height: 40px;
    border-radius: 5%;
    transition: all 0.4s;
    background: white;
    color: #0c265e;
    border: 2px solid #0c265e;
    border-radius: 50%;
}

    .back-to-top i {
        font-size: 28px;
        color: #346284;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #346284;
        color: white;
        border: 2px solid #346284;
        border-radius: 50%;
    }

    .back-to-top i:hover {
        color: white;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Side Bar
--------------------------------------------------------------*/
#sidebar {
    height: 100vh;
    width: 10vh;
    font-size: 22px;
    transition: all 0.5s;
    z-index: 996;
    color: #ffffff;
    background-color: #d6eaf8;
    box-shadow: 0px 2px 15px rgb(52 98 132 / 67%);
}


    #sidebar .contact-info i {
        color: #623557;
    }

        #sidebar .contact-info i span {
            padding-left: 5px;
            color: #623557;
        }

    #sidebar .social-bar ul {
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        color: #cda45e;
    }

        #sidebar .social-bar ul a {
            color: #1d4868;
        }

            #sidebar .social-bar ul a:hover {
                cursor: pointer;
                color: #a973ab;
            }

        #sidebar .social-bar ul li:hover {
            transform: scale(1.5);
            animation: rotateIcon 1s ease-in-out;
            /* Apply rotation animation */
        }

        #sidebar .social-bar ul li {
            padding: 10px;
            text-align: center;
            transition: transform 0.3s ease-in-out;
            /* Smooth transition for scale */
        }

            #sidebar .social-bar ul li::before {
                display: inline-block;
                padding-right: 10px;
                color: rgba(255, 255, 255, 0.5);
            }

/* Animation for 360 degree rotation */
@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# for the sidebar contact form
--------------------------------------------------------------*/

.mail-box-hidden {
    display: none;
}

.contact-expand .social-bar ul a {
    color: white;
}

.cross-bar {
    display: none;
}

/*--------------------------------------------------------------
# for the sidebar contact form, to expand it when the user clicks on the mail icon
--------------------------------------------------------------*/

.contact-expand {
    width: 100% !important;
    background-color: #fafafa;
}

/*--------------------------------------------------------------
# for the sidebar contact form, to hide it when the user clicks on the cross icon
--------------------------------------------------------------*/


.contact-expand-hidden {
    display: none;
}


/*--------------------------------------------------------------
# disable sidebar in mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 1025px) {
    #sidebar {
        width: 0vh;
        box-shadow: 0px 0px 0px rgba(127, 137, 161, 0.25);
    }

        #sidebar .social-bar {
            display: none !important;
        }


    #side-bar-closer i {
        position: absolute;
        top: 15px;
        right: 15px;
        color: #00000096;
    }

    .side-bar-closer i {
        display: none;
    }


    #header {
        top: 0px !important;
    }
}

@media screen and (min-width: 1000px) {
    #side-bar-closer i {
        display: none;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    z-index: 99;
    transition: all 0.5s;
    padding: 22px 0;
    background-color: #ffffff00;
}

    #header.header-scrolled {
        padding: 12px 0;
        top: 0;
    }

    #header .logo h1 {
        font-size: 25px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 100;
        letter-spacing: 1px;
        font-family: 'Chango', cursive;
    }

        #header .logo h1 a,
        #header .logo h1 a:hover {
            color: #0e2953;
            text-decoration: none;
        }

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 43px;
    }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        font-family: 'Alegreya Sans SC', sans-serif;
        /* Fun, comic-like font */
        display: inline-block;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-size: 22px;
        font-weight: 400;
        color: #0c265e;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #5e1d62;
            transform: scale(1.1)
        }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        background: #ffffff54;
        padding: 8px 25px;
        margin-left: 30px;
        border-radius: 50px;
        color: #0c265e;
        border: 2px solid #0c265e;
        cursor: pointer;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: white;
            background: #346284;
            border: 2px solid #0c265e;
            transform: scale(1.01);
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 30px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #3498db;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #000000;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        padding: 10px;
        border-radius: 8px;
        background-color: #856a7e;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        text-align: center;
        font-size: 30px;
        color: #ffffff;
    }

    .navbar-mobile ul.list-border li {
        border-bottom: 1px solid rgb(255 255 255 / 11%);
        padding: 8px 0px;
        margin: 18px 18px;
    }

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: #d7efff;
    }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 0px;
        background: transparent;
        color: white;
        border: transparent;
    }

        .navbar-mobile .getstarted:hover {
            background: transparent;
            border: transparent;
            color: #d7efff;
            font-size: 30px;
        }


    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #3498db;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../img/hero-image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    z-index: 0;
    filter: brightness(1.2);
}

    #hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.1);
        z-index: 1;
    }

    #hero .container {
        z-index: 2;
        position: relative;
        padding: 20px 140px;
        width: 90%;
    }


    #hero h1 {
        font-size: 55px;
        font-weight: 700;
        line-height: 60px;
        color: #37578b;
        font-family: 'Chango', cursive;
        text-transform: uppercase;
        margin: 0 0 30px 0;
        letter-spacing: 2px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
        position: relative;
        animation: textColorChange 10s ease-in-out infinite;
    }

/* Keyframes for the text color change */
@keyframes textColorChange {
    0% {
        color: #365585;
    }

    50% {
        transform: scale(0.7);
        color: #396b8f;
    }

    100% {
        transform: scale(1);
        color: #3a5b8c;
    }
}


#hero h2 {
    font-size: 29px;
    color: #0e2953;
    font-family: 'Alegreya Sans SC', sans-serif;
    margin-bottom: 30px;
    line-height: 28px;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    color: #fff;
    background-color: #2b526e;
    border: 2px solid #012358;
    text-transform: uppercase;
    margin: 15px;
    position: relative;
    overflow: hidden;
}

    /* Hover Effects */
    #hero .btn-get-started:hover {
        background-color: #fff;
        color: #56086e;
        border: 2px solid #052352;
        transform: scale(1.05);
        margin-top: 20px;
    }

    #hero .btn-get-started:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.7s ease-out;
        z-index: -1;
    }

    #hero .btn-get-started:hover:before {
        transform: scaleX(1);
    }

    #hero .btn-get-started:active {
        transform: scale(1);
        box-shadow: 0 2px 5px rgb(0 0 0 / 34%);
    }

    #hero .btn-get-started:hover {
        animation: jump 0.5s ease-in-out;
    }

/* Keyframes for the jump animation */
@keyframes jump {
    0% {
        transform: translateY(0);
    }

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

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


/* Floating objects */
.background-objects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

    .background-objects .circle-1,
    .background-objects .circle-2,
    .background-objects .circle-3 {
        position: absolute;
        background-color: rgb(255 255 255 / 16%);
        border-radius: 50%;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        animation: float 10s ease-in-out infinite;
    }

    .background-objects .circle-1 {
        width: 250px;
        height: 250px;
        top: 10%;
        left: 10%;
        animation-delay: -3s;
    }

    .background-objects .circle-2 {
        width: 250px;
        height: 250px;
        top: 60%;
        left: 75%;
        animation-delay: -5s;
    }

    .background-objects .circle-3 {
        width: 200px;
        height: 200px;
        top: 80%;
        left: 45%;
        animation-delay: -7s;
    }

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: translateY(-60px) rotate(30deg);
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
    }

    100% {
        transform: translateY(0) rotate(0deg);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .background-objects .circle-1 {
        width: 160px;
        height: 160px;
    }

    .background-objects .circle-2 {
        width: 200px;
        height: 200px;
    }

    .background-objects .circle-3 {
        width: 140px;
        height: 140px;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    #hero h1 {
        font-size: 36px;
    }

    #hero h2 {
        font-size: 18px;
    }

    #hero .btn-get-started {
        padding: 12px 30px;
    }

    #hero .container {
        z-index: 2;
        position: relative;
        width: 80%;
        padding: 20px 0px;
    }

    .background-objects .circle-1 {
        width: 120px;
        height: 120px;
    }

    .background-objects .circle-2 {
        width: 90px;
        height: 90px;
    }

    .background-objects .circle-3 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 33px;
    }

    #hero h2 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    #hero h1 {
        font-size: 27px;
    }

    #hero h2 {
        font-size: 22px;
    }


    #hero .btn-get-started {
        font-weight: 300;
        font-size: 13px;
        padding: 10px 16px;
        margin: 6px;
    }
}


/*--------------------------------------------------------------
# Programs
--------------------------------------------------------------*/

.programs {
    padding: 30px 0;
    background-color: #f0d9ff;
}

.programs-header {
    margin-bottom: 20px;
}

    .programs-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: #201f1f;
        font-family: 'Chango', cursive;
    }

    .programs-header p {
        font-size: 36px;
        font-weight: 700;
        color: #494747;
        margin-bottom: 30px;
    }

.program-container .row {
    gap: 30px;
}


.program-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 15px;
}

.filter-container {
    background-color: #d6eaf8;
    padding: 20x;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 30%);
    height: 50vh;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: auto;
}

/* Filter Buttons */
#program-flters {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

    #program-flters li {
        display: block;
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
        background-color: #346284;
        border-radius: 50px;
        cursor: pointer;
        margin-bottom: 15px;
        border: 2px solid #253c61;
        position: relative;
        transition: all 0.3s ease;
        text-align: center;
        margin: 12px 6px;
    }

        #program-flters li.filter-active {
            background-color: #32497200;
            color: #18315a;
            border: 2px solid #435a7c;
            box-shadow: 0px 5px 15px rgb(48 89 143 / 66%);
        }

        #program-flters li:hover {
            margin-bottom: 25px;
            transform: translateX(5px);
            background-color: #34628496;
            color: #18167a;
            border: 2px solid #000000;
            box-shadow: 0px 5px 15px rgba(26, 115, 232, 0.2);
        }

        #program-flters li:active {
            margin-bottom: 25px;
            transform: translateX(5px);
            background-color: #ffffff;
            color: #100f0f;
            border: 2px solid #000000;
            box-shadow: 0px 5px 15px rgba(26, 115, 232, 0.2);
        }

/* Program Boxes */
.program-item {
    margin-bottom: 30px;
}

.program-box {
    background-color: #cd8bd49c;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 25%);
    transition: all 0.3s ease;
    text-align: center;
    padding: 20px;
    position: relative;
}

    .program-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 45px rgb(0 0 0 / 9%);
    }

    .program-box .image img {
        width: 100%;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

        .program-box .image img:hover {
            transform: scale(1.1);
        }

    .program-box .title {
        font-size: 22px;
        font-weight: 600;
        margin-top: 20px;
    }

        .program-box .title a {
            text-decoration: none;
            color: inherit;
            color: #312e2e;
        }

    .program-box .description {
        font-size: 16px;
        color: #262525;
        margin-top: 15px;
    }

    .program-box p {
        font-size: 14px;
        color: #c7c6d3;
        margin-top: 20px;
    }

        .program-box p span {
            padding-right: 15px;
        }

            .program-box p span + span {
                border-left: 2px solid #ddd;
                padding-left: 15px;
            }

@media (max-width: 1024px) {

    .programs-header h2 {
        font-size: 32px;
    }

    .programs-header p {
        font-size: 30px;
    }

    .program-container .row {
        gap: 0px;
    }

    .filter-container {
        background-color: #ffffff1a;
        height: 100%;
        box-shadow: 0 10px 30px rgb(0 0 0 / 0%);
    }

    /* Filter Buttons */
    #program-flters {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* Responsive Styles */
@media screen and (max-width: 768px) {

    .programs-header h2 {
        font-size: 28px;
    }

    .programs-header p {
        font-size: 26px;
    }


    .program-box {
        margin: 0 10px 20px;
    }


    .program-container .row {
        gap: 0px;
    }


    .program-box .title {
        font-size: 20px;
    }

    .program-box .description {
        font-size: 14px;
    }

    .program-box p {
        font-size: 12px;
    }


    /* Filter Buttons */
    #program-flters {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-container {
        background-color: #ffffff1a;
        height: 100%;
        box-shadow: 0 10px 30px rgb(0 0 0 / 0%);
    }
}


@media screen and (max-width: 576px) {
    .program-box .title {
        font-size: 18px;
    }

    .program-box .description {
        font-size: 13px;
    }

    .programs-header h2 {
        font-size: 25px;
    }

    .programs-header p {
        font-size: 20px;
    }


    .filter-container {
        margin-top: 10px;
        margin-bottom: 20px;
    }
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

/* General Section Styling */
#about {
    position: relative;
    padding: 0;
    margin: 0;
    height: 100vh;
    background-color: #f4f4f4;
    overflow: hidden;
}


    #about .container-fluid {
        padding: 0;
        margin: 0;
        height: 100%;
    }

    #about .row {
        display: flex;
        align-items: stretch;
        margin: 0;
        height: 100%;
    }

    #about .image-col {
        position: relative;
        height: 100%;
        padding: 0;
        overflow: hidden;
    }

    #about .image-wrapper {
        height: 100%;
        width: 100%;
    }

    #about .image-col img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: transform 1s ease-in-out;
    }

    #about .image-col:hover img {
        transform: scale(1.1);
    }

    #about .content-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 50px 30px;
        height: 100%;
        background-color: #D6EAF8;
        color: #000000;
        position: relative;
    }

    #about .content-wrapper {
        z-index: 1;
    }

        #about .content-wrapper h4 {
            font-size: 25px;
            font-weight: 700;
            color: #000000;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin: 0;
            font-family: 'Chango', cursive;
        }

        #about .content-wrapper h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            letter-spacing: 2px;
            margin-top: 10px;
        }

        #about .content-wrapper h3 {
            font-size: 26px;
            font-weight: 400;
            font-family: 'Alegreya Sans SC', sans-serif;
            color: #000000;
            line-height: 1.5;
            margin: 15px 0;
        }

        #about .content-wrapper p {
            font-size: 19px;
            color: #000000;
            line-height: 1.8;
            margin-bottom: 20px;
            font-family: 'Alegreya Sans SC', sans-serif;
        }

        #about .content-wrapper ul {
            list-style: none;
            padding: 0;
        }

            #about .content-wrapper ul li {
                position: relative;
                font-size: 20px;
                color: #000000;
                margin-bottom: 12px;
                padding-left: 30px;
                font-family: 'Alegreya Sans SC', sans-serif;
            }

                #about .content-wrapper ul li i {
                    position: absolute;
                    left: 0;
                    top: 3px;
                    font-size: 20px;
                    color: #af74a0;
                }

    #about .btn-learn-more {
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 32px;
        border-radius: 50px;
        color: #062b45;
        background-color: #e8a8d9;
        border: 2px solid #c791ea;
        margin-top: 10px;
        transition: all 0.3s ease-in-out;
    }

        #about .btn-learn-more:hover {
            background-color: #fff;
            color: #23388a;
            transform: translateY(-5px);
            box-shadow: 0px 5px 15px rgba(38, 40, 156, 0.3);
        }

    #about .floating-object {
        position: absolute;
        background-color: #d9b7ef;
        box-shadow: 0px 5px 15px rgb(132 75 169);
        border-radius: 50%;
        opacity: 0.4;
        animation: floatAnimation 5s infinite ease-in-out;
    }

    #about #floating-object-1 {
        width: 190px;
        height: 190px;
        top: 75%;
        right: 50%;
        animation-delay: 0s;
    }

    #about #floating-object-2 {
        width: 250px;
        height: 250px;
        top: 70%;
        right: 10%;
        animation-delay: 4s;
    }

/* Floating Animation */
@keyframes floatAnimation {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-180px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    #about {
        height: 100%;
    }

        #about .col-lg-6 {
            width: 100%;
        }

        #about .content-col {
            padding: 30px 20px;
        }

        #about .image-col img {
            max-height: 100%;
        }

        #about .content-wrapper h3 {
            font-size: 22px;
        }

        #about .content-wrapper p {
            font-size: 14px;
        }

        #about #floating-object-1 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 35%;
        }

        #about #floating-object-2 {
            width: 190px;
            height: 190px;
            top: 70%;
            right: 5%;
        }
}

@media (max-width: 667px) {
    #about .image-col {
        height: 100%;
    }

    #about .content-col {
        padding: 20px;
        text-align: center;
    }

    #about .content-wrapper h3 {
        font-size: 20px;
    }

    #about .content-wrapper p {
        font-size: 20px;
    }

    #about #floating-object-1 {
        width: 120px;
        height: 120px;
        top: 85%;
        right: 5%;
    }

    #about #floating-object-2 {
        width: 90px;
        height: 90px;
        top: 80%;
        right: 25%;
    }
}


/*--------------------------------------------------------------
# Process
--------------------------------------------------------------*/

#process {
    background-color: #f0d9ff;
    padding: 60px 0;
}

.process .count-box {
    background: #fffffff7;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgb(0 0 0 / 13%);
    text-align: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

    .process .count-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    }

    .process .count-box i {
        font-size: 40px;
        color: #39074e;
        margin-bottom: 20px;
        transition: all 0.3s ease-in-out;
    }

        .process .count-box i:hover {
            color: #3b3a99;
        }

    .process .count-box span {
        font-weight: 600;
        font-size: 18px;
        color: #0c265e;
        margin-bottom: 15px;
    }

    .process .count-box p {
        font-size: 16px;
        line-height: 1.6;
        color: #0c265e;
        margin-bottom: 0;
    }

@media screen and (max-width: 992px) {
    .process .count-box {
        margin-right: 0;
        align-content: center;
        min-height: 35vh;
    }
}

@media screen and (max-width: 768px) {
    .process .count-box {
        padding: 25px;
    }

        .process .count-box span {
            font-size: 16px;
        }

        .process .count-box p {
            font-size: 14px;
        }
}

@media screen and (max-width: 576px) {
    .process .count-box {
        padding: 20px;
    }

        .process .count-box span {
            font-size: 17px;
        }

        .process .count-box p {
            font-size: 15px;
        }
}


/*--------------------------------------------------------------
#   on mobile
--------------------------------------------------------------*/

@media (min-width: 1024px) {

    .process .mt-lg-9 {
        margin-top: 180px !important;
    }

    .process .mt-lg-7 {
        margin-top: 120px !important;
    }

    .process .mt-lg-4 {
        margin-top: 60px !important;
    }
}

@media (max-width: 1024px) {


    .process .process-box {
        display: flex;
    }
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
/* Updated Testimonials Section with More Animations */
.testimonials {
    background-color: #e0b0ff7a;
    padding: 60px 0;
    overflow: hidden;
}

.testimonials-header h1 {
    font-family: 'Chango', cursive;
    font-size: 40px;
    font-weight: 700;
    color: #191818;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.testimonials-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #494747;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
    /* Delayed fade-in */
}

.testimonials .testimonial-wrap {
    padding: 60px 0px;
    padding-bottom: 30px;
    margin: 30px 0;
    background: #ffffff00;
    border-radius: 15px;
    box-shadow: 5px 10px 15px rgb(0 0 0 / 0%);
    max-width: 380px;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item {
    padding: 10px;
}

    .testimonials .testimonial-item p {
        font-size: 18px;
        color: #393636;
        font-style: italic;
        line-height: 1.6;
        margin: 20px 0;
        text-align: center;
    }

.testimonials .testimonial-img-container {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
}

.testimonials .testimonial-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .testimonials .testimonial-img:hover {
        transform: scale(1.1);
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    }

.testimonials .testimonial-item h3 {
    font-size: 23px;
    color: #191919;
    font-weight: 600;
    margin-top: 15px;
    opacity: 0;
    text-align: center;
    animation: fadeInUp 1s forwards 0.7s;
}

.testimonials .testimonial-item h4 {
    font-size: 17px;
    color: #0b0c0c;
    margin-top: 10px;
    font-style: normal;
    opacity: 0;
    text-align: center;
    animation: fadeInUp 1s forwards 0.8s;
}

.testimonials .quote-icon-left,
.testimonials .quote-icon-right {
    font-size: 28px;
    color: #6e6d6d;
}

.testimonials .swiper-pagination {
    margin-top: 190px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.5s;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #f8f3f9;
        opacity: 1;
        margin: 0 8px;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #be6fc7;
        transform: scale(1.2);
    }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding: 15px;
        margin: 30px 0;
        max-width: 100%;
    }

    .testimonials .testimonial-item {
        padding: 5px;
    }

    .testimonials .testimonial-img {
        width: 100px;
        height: 100px;
    }

    .testimonials .testimonial-item h3 {
        font-size: 20px;
    }

    .testimonials .testimonial-item h4 {
        font-size: 14px;
    }

    .testimonials-header h1 {
        font-size: 25px;
    }

    .testimonials-header h2 {
        font-size: 20px;
    }
}


/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq {
    padding: 40px 0;
    background-color: #D6EAF8;
    position: relative;
    overflow: hidden;
}

    .faq .text-center h4 {
        font-size: 30px;
        font-weight: 600;
        color: #212121;
        text-transform: uppercase;
        margin-bottom: 10px;
        font-family: 'Chango', cursive;
    }

    .faq .text-center h2 {
        font-size: 36px;
        font-weight: 700;
        color: #494747;
        margin-bottom: 40px;
    }

.faq-container details {
    background-color: #f0d9ff;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

    .faq-container details:hover {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }

.faq-container summary {
    font-size: 1.25rem;
    font-weight: 600;
    background-color: #ccdfed;
    color: #2d2929;
    padding: 15px;
    margin-bottom: 1rem;
    outline: none;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .faq-container summary:hover {
        background-color: #d6eaf8;
        color: #313031;
        border: 2px solid #6664c0c4;
        box-shadow: 0px 5px 15px rgb(26 115 232 / 62%);
    }

    .faq-container summary i {
        font-size: 1.5rem;
        color: #2a2828de;
        transition: transform 0.3s ease;
    }

.faq-container details[open] summary i {
    transform: rotate(45deg);
}

.faq-container .faq__content ul {
    list-style: none;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #2e2e2e;
    padding-left: 0;
}

.faq-container .faq__content li {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

    .faq-container .faq__content li i {
        color: #534d4d;
        margin-right: 10px;
        font-size: 1.2rem;
    }


/*--------------------------------------------------------------
    Mobile Responsiveness
--------------------------------------------------------------*/
@media (max-width: 991px) {

    .faq .text-center h4 {
        font-size: 26px;
    }

    .faq .text-center h2 {
        font-size: 34px;
    }

    .faq-container details {
        padding: 15px;
    }

    .faq-container summary {
        font-size: 1.1rem;
    }

    .faq-container .faq__content li {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .faq .text-center h4 {
        font-size: 24px;
    }

    .faq .text-center h2 {
        font-size: 20px;
    }

    .faq-container summary {
        font-size: 1rem;
        padding: 12px;
    }

    .faq-container .faq__content li {
        font-size: 0.95rem;
    }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    margin-top: auto;
}

    .contact .contact-about h3 {
        font-size: 28px;
        margin: 0 0 10px 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1px;
        color: #222222;
    }

    .contact .contact-about p {
        font-size: 14px;
        line-height: 24px;
        font-family: "Raleway", sans-serif;
        color: #888;
    }

    .contact .social-links {
        padding-bottom: 0px;
    }

        .contact .social-links a {
            font-size: 0px;
            display: inline-block;
            background: #fff;
            color: #000000;
            line-height: 0;
            margin-right: 20px;
            text-align: center;
            transition: 0.3s;
        }

            .contact .social-links a:hover {
                color: black;
            }

    .contact .info {
        color: #444444;
    }

        .contact .info i {
            font-size: 48px;
            color: #26289c;
            float: left;
            line-height: 1;
        }

        .contact .info h4 {
            padding: 0px 0px 0px 40px;
            margin-left: 40px;
            line-height: 28px;
            font-size: 14px;
        }

        .contact .info p {
            padding: 0px 0px 0px 40px;
            line-height: 28px;
            font-size: 14px;
            margin-left: 40px;
        }

    .contact .info-box {
        border-bottom: 1px solid #b7b7b7;
        margin: 0px 60px 20px 30px;
        padding: 0px 40px 0px 0px;
    }

    .contact .contact-form {
        padding: 0px 40px 0px 40px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form .form-group {
        margin-bottom: 20px;
    }

    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 4px;
        box-shadow: none;
        font-size: 14px;
        padding: 13px 10px;
        box-shadow: 0px 2px 12px rgb(0 0 0 / 7%);
    }

        .contact .php-email-form input:focus,
        .contact .php-email-form textarea:focus {
            border-color: #3498db;
        }

    .contact .php-email-form button[type=submit] {
        background: #ffffff;
        border-radius: 4px;
        padding: 10px 24px;
        color: #0c265e;
        transition: 0.4s;
        font-size: 15px;
        border: 2px solid rgb(0 0 0 / 9%);
    }

        .contact .php-email-form button[type=submit]:hover {
            background: #eddbee;
            border: 2px solid ##000000;
            color: black;
        }

form .button-area {
    margin: 2px 0;
    display: flex;
    align-items: center;
}

    form .button-area button {
        margin-top: 0.25rem;
    }

.button-area span {
    font-size: 17px;
    margin-left: 30px;
    display: none;
}


/*--------------------------------------------------------------
#   on mobile
--------------------------------------------------------------*/


@media (max-width: 600px) {

    form .button-area {
        margin-top: 20px;
        flex-direction: column;
    }

    .button-area button {
        width: 100%;
        padding: 11px 0;
        font-size: 16px;
    }

    .button-area span {
        margin: 20px 0 0;
        text-align: center;
    }
}


@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f8f8f8;
    min-height: 40px;
    margin-top: 86px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 72px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
    margin: 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 992px) {
    .breadcrumbs ol {
        margin-top: 10px;
    }
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

    .breadcrumbs ol li + li::before {
        display: inline-block;
        padding-right: 10px;
        color: #3c3c3c;
        content: "/";
    }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/*--------------------------------------------------------------
# Call to Action of Get in Touch
--------------------------------------------------------------*/

.call-to-action {
    position: relative;
    padding: 100px 0px;
    background-image: url(../img/call-to-action-bg.png);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f4f4f4;
    overflow: hidden;
}

    .call-to-action h1 {
        padding: 30px 0px;
        font-size: 30px;
        color: #0e2953;
        font-weight: bold;
    }

    .call-to-action h3 {
        font-size: 40px;
        font-family: 'Chango', cursive;
        color: #366898;
        margin-bottom: 20px;
    }

    .call-to-action .call-to-action-button {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 18px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 15px 40px;
        border-radius: 10px;
        transition: 0.3s ease-in-out;
        color: #fff;
        background-color: #346284;
        border: 2px solid #0c265e;
        text-transform: uppercase;
        position: relative;
        overflow: hidden;
    }

        .call-to-action .call-to-action-button:hover {
            background-color: #fff;
            color: #0c265e;
            border: 2px solid #0c265e;
            transform: scale(1.05);
        }

        .call-to-action .call-to-action-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.7s ease-out;
            z-index: -1;
        }

        .call-to-action .call-to-action-button:hover:before {
            transform: scaleX(1);
        }

        .call-to-action .call-to-action-button:active {
            transform: scale(1);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }


/* Floating Circles */
.floating-object {
    position: absolute;
    border-radius: 50%;
    animation: floatAnimation 5s infinite ease-in-out;
    opacity: 0.5;
    z-index: 1;
}

.circle-1 {
    top: 50%;
    left: 5%;
    width: 140px;
    height: 140px;
    background-color: #00000000;
    box-shadow: 0px 5px 15px rgb(0 0 0 / 67%);
    animation-delay: 0s;
}

.circle-2 {
    top: 70%;
    left: 20%;
    width: 180px;
    height: 180px;
    background-color: #00000012;
    box-shadow: 0px 5px 15px rgb(0 0 0 / 46%);
    animation-delay: 1s;
}

.circle-3 {
    top: 70%;
    left: 70%;
    width: 200px;
    height: 200px;
    background-color: #00000012;
    box-shadow: 0px 5px 15px rgb(0 0 0 / 49%);
    animation-delay: 2s;
}

.circle-4 {
    bottom: 5%;
    left: 90%;
    width: 250px;
    height: 250px;
    background-color: #00000012;
    box-shadow: 0px 5px 15px rgb(0 0 0 / 39%);
    animation-delay: 3s;
}


/* Add responsiveness for mobile */
@media (max-width: 767px) {
    .call-to-action h1 {
        font-size: 24px;
    }

    .call-to-action h3 {
        font-size: 22px;
    }

    .call-to-action .call-to-action-button {
        font-size: 24px;
        padding: 12px 30px;
    }

    .circle-1 {
        width: 40px;
        height: 40px;
    }

    .circle-2 {
        width: 70px;
        height: 70px;
    }

    .circle-3 {
        width: 80px;
        height: 80px;
    }

    .circle-4 {
        left: 80%;
        width: 50px;
        height: 50px;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background-color: #d6eaf8;
    padding: 40px 0 0px 0;
    color: #000000;
    font-size: 18px;
    font-family: 'Alegreya Sans SC', sans-serif;
}

    #footer .footer-top {
        border-bottom: 1px solid #212121;
        padding: 60px 0 30px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 20px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 300;
                color: #2f2f2f;
                font-weight: 600;
                text-transform: uppercase;
            }

    #footer h1 {
        font-size: 30px;
        font-family: 'Chango', cursive;
    }

    #footer .footer-top p {
        font-size: 18px;
        line-height: 28px;
        color: #000000;
    }

    #footer .footer-top strong {
        font-size: 15px;
        line-height: 28px;
    }

    #footer .footer-top .social-links a {
        font-size: 19px;
        display: inline-block;
        background: #dadada;
        color: #040404;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 50%;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }

        #footer .footer-top .social-links a:hover {
            background: #dadada;
            color: #f9f9f9;
            text-decoration: none;
        }

    #footer .footer-top h4 {
        font-size: 19px;
        font-weight: 600;
        color: #1f1f1f;
        position: relative;
        padding-bottom: 12px;
    }

    #footer .footer-top .footer-links {
        margin-bottom: 30px;
    }

        #footer .footer-top .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            #footer .footer-top .footer-links ul i {
                padding-right: 2px;
                color: #212121;
                font-size: 20px;
                line-height: 1;
            }

            #footer .footer-top .footer-links ul li {
                padding: 10px 0;
                display: flex;
                align-items: center;
            }

                #footer .footer-top .footer-links ul li:first-child {
                    padding-top: 0;
                }

            #footer .footer-top .footer-links ul a {
                color: #242222;
                transition: 0.3s;
                display: inline-block;
                line-height: 1;
            }

                #footer .footer-top .footer-links ul a:hover {
                    color: #6197bc;
                }


    #footer .copyright {
        text-align: center;
        padding: 25px 0px 25px 0px;
    }

    #footer .credits {
        text-align: center;
        font-size: 13px;
        color: #fff;
    }

.footer-menu ul li {
    display: inline-block;
    padding-left: 15px;
}

.footer-menu ul.nav li a {
    background: none;
    color: #111;
    padding: 0;
}

.footer-menu ul li a:hover {
    color: #fff;
}

/*-- Copyright --*/
.copyright {
    background-color: #1b415c;
    color: #fbfcff;
    padding: 15px 15px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    font-size: 20px;
}

@media (max-width: 768px) {

    .copyright {
        font-weight: 500;
        font-size: 11px;
    }
}
}
