@font-face {
    font-family: "Montserrat-Light";
    src: url(../fonts/montserrat/Montserrat-Light.ttf);
}

@font-face {
    font-family: "Montserrat-Regular";
    src: url(../fonts/montserrat/Montserrat-Regular.ttf);
}

@font-face {
    font-family: "Montserrat-Medium";
    src: url(../fonts/montserrat/Montserrat-Medium.ttf);
}

@font-face {
    font-family: "Montserrat-Bold";
    src: url(../fonts/montserrat/Montserrat-Bold.ttf);
}

@font-face {
    font-family: "Montserrat-ExtraBold";
    src: url(../fonts/montserrat/Montserrat-ExtraBold.ttf);
}

@font-face {
    font-family: "Montserrat-Black";
    src: url(../fonts/montserrat/Montserrat-Black.ttf);
}

@font-face {
    font-family: "Unbounded-Black";
    src: url(../fonts/unbounded/unbounded-black.ttf);
}

@font-face {
    font-family: "Unbounded-Bold";
    src: url(../fonts/unbounded/unbounded-bold.ttf);
}

@font-face {
    font-family: "Unbounded-ExtraBold";
    src: url(../fonts/unbounded/unbounded-extra-bold.ttf);
}

@font-face {
    font-family: "Unbounded-ExtraLight";
    src: url(../fonts/unbounded/unbounded-extra-light.ttf);
}

@font-face {
    font-family: "Unbounded-Light";
    src: url(../fonts/unbounded/unbounded-light.ttf);
}

@font-face {
    font-family: "Unbounded-Medium";
    src: url(../fonts/unbounded/unbounded-medium.ttf);
}

@font-face {
    font-family: "Unbounded";
    src: url(../fonts/unbounded/unbounded-medium.ttf);
}

@font-face {
    font-family: "Unbounded-Regular";
    src: url(../fonts/unbounded/unbounded-regular.ttf);
}

@font-face {
    font-family: "Unbounded-SemiBold";
    src: url(../fonts/unbounded/unbounded-semi-bold.ttf);
}



:root {
    --primary-color: #6EC1E4;
    --secondary-color: #54595F;
    --text-color: #7A7A7A;
    --accent-color: #61CE70;
    --dark-color: #303030;
    --light-color: #FFFFFF;
    --gray-color: #EEEEEE;
}

body {
    font-family: 'Montserrat-Regular', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: var(--gray-color);
}

.bg-gray{
    background-color: var(--gray-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/hero/children-in-park.jpg');
    background-size: cover;
    background-position: center;
    min-height: 650px;
    color: var(--light-color);
    display: flex;
    align-items: flex-end;
    padding-bottom: 150px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.section-details{
    font-size: 16px;
}

.initiative-card {
    background-color: var(--gray-color);
    border-radius: 30px;
    padding: 80px 20px;
    transition: all 0.3s ease;
    /*box-shadow: 0 0 10px rgba(0,0,0,0.1);*/
}

.initiative-card:hover {
    background-color: var(--light-color);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.initiative-image {
    height: 420px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
}

.icon-box {
    border-radius: 20px;
    padding: 20px;
    text-align: left;
}

.icon-box i {
    font-size: 25px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.icon-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-family: 'Montserrat-Regular', sans-serif;
}

.icon-box p {
    font-size: 14px;
    color: var(--dark-color);
    line-height: 1.3;
}

.btn-custom {
    background-color: transparent;
    color: var(--dark-color);
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    padding: 15px 0 0 0;
    border: none;
}

.btn-custom:hover {
    color: var(--primary-color);
}

.footer {
    background-color: #333B4A;
    color: var(--light-color);
    padding: 90px 0 40px 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.footer-section {
    padding: 80px 0;
}

.footer-title {
    font-size: 19px;
    margin-bottom: 20px;
}


/*@media (min-width: 1401px) {*/
/*    .footer-logo-margin{*/
/*        margin-left: 200px;*/
/*    }*/
/*}*/

/*@media (min-width: 1025px) and (max-width: 1400px) {*/
/*    .footer-logo-margin{*/
/*        margin-left: 100px;*/
/*    }*/
/*}*/

/*@media (min-width: 992px) and (max-width: 1024px) {*/
/*    .footer-logo-margin{*/
/*        margin-left: 50px;*/
/*    }*/
/*}*/



.newsletter-form input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--light-color);
    color: var(--light-color);
    padding: 0 0 11px 0;
    width: 100%;
}

.newsletter-form button {
    background-color: var(--dark-color);
    color: var(--light-color);
    border: none;
    padding: 10px 0 0 10px;
    margin: 0 0 1px 10px;
}

.newsletter-form button:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Menu Overlay Styles */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.menu-overlay.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.menu-overlay-content {
    height: 100%;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

.menu-overlay.active .menu-overlay-content {
    opacity: 1;
}

.menu-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease 0.3s;
}

.menu-overlay.active .menu-close-btn {
    opacity: 1;
    transform: translateX(0);
}

.menu-nav {
    padding-top: 60px;
}

/*.menu-nav .nav-link {*/
/*    color: var(--light-color);*/
/*    font-size: 24px;*/
/*    padding: 10px 0;*/
/*    border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
/*    opacity: 0;*/
/*    transform: translateX(-30px);*/
/*    transition: all 0.3s ease;*/
/*}*/

.menu-nav .nav-link {
    color: var(--light-color);
    font-size: 24px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-overlay.active .menu-nav .nav-link {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger the animation for menu items */
.menu-nav .nav-item:nth-child(1) .nav-link { transition-delay: 0.1s; }
.menu-nav .nav-item:nth-child(2) .nav-link { transition-delay: 0.15s; }
.menu-nav .nav-item:nth-child(3) .nav-link { transition-delay: 0.2s; }
.menu-nav .nav-item:nth-child(4) .nav-link { transition-delay: 0.25s; }
.menu-nav .nav-item:nth-child(5) .nav-link { transition-delay: 0.3s; }
.menu-nav .nav-item:nth-child(6) .nav-link { transition-delay: 0.35s; }
.menu-nav .nav-item:nth-child(7) .nav-link { transition-delay: 0.4s; }
.menu-nav .nav-item:nth-child(8) .nav-link { transition-delay: 0.45s; }
.menu-nav .nav-item:nth-child(9) .nav-link { transition-delay: 0.5s; }
.menu-nav .nav-item:nth-child(10) .nav-link { transition-delay: 0.55s; }

.menu-images {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-image {
    height: 45%;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s ease;
}

.menu-overlay.active .menu-image {
    opacity: 1;
    transform: translateX(0);
}

.menu-overlay.active .menu-image:nth-child(1) {
    transition-delay: 0.4s;
}

.menu-overlay.active .menu-image:nth-child(2) {
    transition-delay: 0.5s;
}


/* Sub-menu Styles */
.sub-menu {
    list-style: none;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sub-menu.active {
    max-height: 500px;
}

.sub-menu .nav-link {
    font-size: 18px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-menu-toggle {
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sub-menu-toggle.active .sub-menu-toggle {
    transform: rotate(180deg);
}

/* Menu Button Styles */
.menu-toggle-btn {
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.menu-toggle-btn i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        padding-bottom: 80px;
    }

    .section-title {
        font-size: 30px;
    }

    .initiative-card {
        padding: 40px 20px;
    }


    /* Hide images on small screens */
    .menu-images {
        display: none;
    }

    .menu-nav .nav-link {
        font-size: 20px;
    }
}


/********* Main menu Bar **********/
.nav-link {
    position: relative;
    padding: 0.75rem 1.5rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    color: black;
    font-weight: 500;
    border-radius: 8px;
    z-index: 2;
    font-family: "Unbounded-Medium", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
}

.nav-item.active .nav-link,.nav-link:hover {
    color: var(--primary-color);
    /*transform: translateY(-2px);*/
}

.nav-item {
    position: relative;
}

.dropdown-menu{
    background-color: var(--gray-color);
    padding: 25px;

}

.nav-item .dropdown-menu .dropdown-item{
    background-color: rgba(0, 0, 0, 0);
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
    font-size: 15px;
    font-family: "Unbounded-Medium", sans-serif;
}

.nav-item .dropdown-menu .dropdown-item:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.navbar-nav .dropdown-toggle::after{
    vertical-align: middle;
    font-size: 20px;
}

/*.svg-container {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    pointer-events: none;*/
/*    z-index: 1;*/
/*    border-radius: 8px;*/
/*    overflow: visible;*/
/*}*/

/*.swm-svg--curve {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    opacity: 0;*/
/*    transition: opacity 0.3s ease;*/
/*    stroke: var(--primary-color);*/
/*    stroke-width: 2px;*/
/*    fill: none;*/
/*    stroke-dasharray: 1000;*/
/*    stroke-dashoffset: 1000;*/
/*}*/

/*.nav-item:hover .swm-svg--curve {*/
/*    opacity: 1;*/
/*    animation: drawStroke 0.8s ease-out forwards;*/
/*}*/

.svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    border-radius: 8px;
    overflow: visible;
}

.swm-svg--curve {
    position: absolute;
    /*top: 0;*/
    /*left: 0;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*width: 100%;*/
    width: 80px;
    /*height: 100%;*/
    height: 80px;
    stroke: var(--primary-color);
    stroke-width: 2px;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 0.8s ease-in-out;
}

.nav-item:hover .swm-svg--curve {
    stroke-dashoffset: 0;
}

/*.nav-link:hover, .nav-link.active {*/
/*    color: var(--primary-color);*/
/*    transform: translateY(-2px);*/
/*}*/


.nav-item:hover .swm-svg--curve,
.nav-item.active .swm-svg--curve {
    stroke-dashoffset: 0;
}


@keyframes drawStroke {
    to {
        stroke-dashoffset: 0;
    }
}

.navbar{
    position: sticky;
    top: 0;
    transition: transform 0.5s ease-in-out;
    z-index: 1000;
    background-color: var(--gray-color);
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

/*.navbar {*/
/*    background-color: rgba(255, 255, 255, 0.95);*/
/*    backdrop-filter: blur(10px);*/
/*    border-radius: 12px;*/
/*    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);*/
/*    padding: 1rem 0;*/
/*    margin: 0 auto 3rem;*/
/*    max-width: 90%;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    border: 1px solid rgba(255, 255, 255, 0.8);*/
/*}*/

/*.navbar-nav {*/
/*    position: relative;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    width: 100%;*/
/*}*/

/*.nav-link {*/
/*    position: relative;*/
/*    padding: 0.75rem 1.5rem;*/
/*    margin: 0 0.25rem;*/
/*    transition: all 0.3s ease;*/
/*    color: #333;*/
/*    font-weight: 500;*/
/*    border-radius: 8px;*/
/*    z-index: 2;*/
/*}*/

/*.nav-link:hover {*/
/*    color: var(--primary-color);*/
/*    transform: translateY(-2px);*/
/*}*/

/*.nav-item {*/
/*    position: relative;*/
/*}*/

/*.svg-container {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    pointer-events: none;*/
/*    z-index: 1;*/
/*    border-radius: 8px;*/
/*    overflow: visible;*/
/*}*/

/*.swm-svg--curve {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    opacity: 0;*/
/*    transition: opacity 0.3s ease;*/
/*    stroke: var(--primary-color);*/
/*    stroke-width: 2px;*/
/*    fill: none;*/
/*    stroke-dasharray: 1000;*/
/*    stroke-dashoffset: 1000;*/
/*}*/

/*.nav-item:hover .swm-svg--curve {*/
/*    opacity: 1;*/
/*    animation: drawStroke var(--animation-duration) ease-out forwards;*/
/*}*/

/*@keyframes drawStroke {*/
/*    to {*/
/*        stroke-dashoffset: 0;*/
/*    }*/
/*}*/

/*.navbar-brand {*/
/*    font-weight: 700;*/
/*    color: var(--primary-color);*/
/*    font-size: 1.5rem;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.navbar-brand svg {*/
/*    margin-right: 0.5rem;*/
/*}*/

/*.navbar-toggler {*/
/*    border: none;*/
/*    padding: 0.25rem 0.5rem;*/
/*}*/

/*.navbar-toggler:focus {*/
/*    box-shadow: none;*/
/*}*/

/*@media (max-width: 991.98px) {*/
/*    .navbar-nav {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*    }*/

/*    .nav-item {*/
/*        margin: 0.5rem 0;*/
/*        width: 100%;*/
/*        text-align: center;*/
/*    }*/

/*    .svg-container {*/
/*        width: 100%;*/
/*    }*/
/*}*/

/********* Flower Button **********/
.flower-button {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.flower-button:hover {
    transform: scale(1.08);
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 11px;
    height: 11px;
    background-color: black;
    border-radius: 50%;
    z-index: 5;
    /* box-shadow: 0 0 15px rgba(255, 107, 107, 0.6); */
    transition: all 0.5s ease;
}

.flower-button .center-circle:hover {
    width: 20px;
    height: 20px;
}

.petal {
    position: absolute;
    width: 11px;
    height: 11px;
    border: 1px solid black;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 4;
}

/* Position petals diagonally and connect to center circumference */
.petal-1 {
    top: 0px;
    left: 0px;
}

.petal-2 {
    top: 0px;
    right: 0px;
}

.petal-3 {
    bottom: 0px;
    left: 0px;
}

.petal-4 {
    bottom: 0px;
    right: 0px;
}

/* On hover, petals move to center and merge */
.flower-button:hover .petal {
    width: 11px;
    height: 11px;
    border-width: 0;
    background-color: black;
    opacity: 0.7;
}

.flower-button:hover .petal-1 {
    transform: translate(8px, 8px);
}

.flower-button:hover .petal-2 {
    transform: translate(-8px, 8px);
}

.flower-button:hover .petal-3 {
    transform: translate(8px, -8px);
}

.flower-button:hover .petal-4 {
    transform: translate(-8px, -8px);
}

/********* Pre Loader **********/
.swm-loader-holder {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 999999;
    top: 0;
    left: 0;
    background: var(--gray-color);
}

.swm-loader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.swm-h-lines-loader {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 130px;
    position: relative;
}

.bar {
    width: 50px;
    height: 7px;
    background: #333;
    border-radius: 5px;
    position: absolute;
    left: 0;
    animation: moveBars 2s ease-in-out infinite both;
    transform-origin: center;
}

.bar-1 {
    top: 0;
    animation-delay: 0s;
}

.bar-2 {
    top: 19px;
    animation-delay: 0.15s;
}

.bar-3 {
    top: 38px;
    animation-delay: 0.3s;
}

@keyframes moveBars {
    0% {
        transform: translateX(0) scaleX(1);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    25% {
        transform: translateX(40px) scaleX(1);
        animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }
    50% {
        transform: translateX(80px) scaleX(1);
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    75% {
        transform: translateX(40px) scaleX(1);
        animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }
    100% {
        transform: translateX(0) scaleX(1);
    }
}


/******** Menu Overlay Images **********/
.menu-images .image-container {
    position: relative;
    margin-bottom: 2rem;
}

.menu-images .right-image {
    margin-top: -30px; /* Creates the "lifted" effect */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); /* Enhanced shadow for lifted effect */
}

.menu-images .contact-info {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    width: 270px;
}

.menu-images .image-wrapper {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 350px;
    width: 270px;
    background-color: #0a80ff;
}

.menu-images .image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.menu-images .image-wrapper:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .menu-images .right-image {
        margin-top: 0; /* Remove lift on mobile */
    }
}

/******** About Us Page **********/


.about-us-main .section-padding {
    padding: 40px 0;
}

.about-us-main .section-padding-sm {
    padding: 40px 0;
}

.about-us-main .bg-light-custom {
    /*background-color: var(--light-gray);*/
}

.about-us-main .bg-dark-custom {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.about-us-main .highlight-red {
    color: var(--secondary-color);
}

.about-us-main .rounded-custom {
    border-radius: 15px;
}

.about-us-main .shadow-custom {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

/* Team Section Styles */
.about-us-main .team-section {
    position: relative;
}

.about-us-main .team-bar {
    position: relative;
    background-color: var(--light-color);
    border-radius: 25px;
    padding: 35px 30px;
    /*margin-bottom: 15px;*/
    /*box-shadow: 0 3px 10px rgba(0,0,0,0.08);*/
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    overflow: visible;
    /*z-index: 1;*/
    border: 1px black solid;
}

.about-us-main .team-bar:hover {
    /*transform: translateX(10px);*/
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
    background: black;
    color: white;
}

.about-us-main .team-bar.active {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/*.about-us-main .team-bar::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    height: 100%;*/
/*    width: 5px;*/
/*    background-color: var(--secondary-color);*/
/*    transform: scaleY(0);*/
/*    transition: transform 0.3s ease;*/
/*}*/

/*.about-us-main .team-bar:hover::before,*/
/*.about-us-main .team-bar.active::before {*/
/*    transform: scaleY(1);*/
/*}*/

.about-us-main .team-number {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 20px;
    min-width: 40px;
}

.about-us-main .team-info {
    flex-grow: 1;
}

.about-us-main .team-name {
    /*font-family: 'Unbounded', sans-serif;*/
    font-weight: 500;
    font-size: 25px;
    margin: 0;
    /*margin-bottom: 5px;*/
    font-family: "Unbounded-Medium", sans-serif;
}

.about-us-main .team-position {
    color: black;
    font-size: 16px;
    margin: 0;
}

.about-us-main .team-image {
    position: absolute;
    right: 30px;
    top: -75px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
}

.about-us-main .team-bar:hover .team-image {
    opacity: 1;
    transform: scale(1);
}

.about-us-main .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us-main .mission-vision-box {
    background-color: var(--light-color);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.about-us-main .message-section img {
    border-radius: 25px;
}

.about-us-main .certification-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about-us-main .certification-item:last-child {
    border-bottom: none;
}

.about-us-main .partner-logo {
    max-height: 80px;
    margin: 0 auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.about-us-main .partner-logo:hover {
    filter: grayscale(0%);
}


@media (max-width: 768px) {
    .about-us-main .section-padding {
        padding: 40px 0;
    }

    .about-us-main .team-bar {
        padding: 15px 20px;
    }

    .about-us-main .team-image {
        width: 120px;
        height: 120px;
        top: -60px;
        right: 20px;
    }

    .about-us-main .mission-vision-box {
        padding: 20px;
        margin-bottom: 20px;
    }
}

/***** Homepage HeroBanner *****/
@media (max-width: 768px) {
    .display-4{
        font-size: 18px !important;
    }

    .display-3{
        font-size: 24px !important;
    }
    .section-title{
        font-size: 26px !important;
    }
    .btn-custom{
        font-size: 12px !important;
    }
}

/********* Contact us ***********/
.contact-us-main .section-padding {
    padding: 80px 0;
}

.contact-us-main .section-title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 30px;
}

.contact-us-main .section-title span {
    color: var(--primary-color);
}

.contact-us-main .contact-form .form-control {
    background-color: var(--light-color);
    border: 1px solid rgba(84, 89, 95, 0.2);
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 25px;
}

.contact-us-main .contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.contact-us-main .office-info {
    font-size: 16px;
    line-height: 1.6;
}

.contact-us-main .newsletter-form .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--light-color);
    border-radius: 0;
    color: var(--light-color);
    padding-left: 0;
    padding-right: 0;
}

.contact-us-main .newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-us-main .newsletter-btn {
    background: none;
    border: none;
    color: var(--light-color);
    position: absolute;
    right: 0;
    top: 0;
}

.contact-us-main .image-gallery img {
    border-radius: 20px;
    width: 100%;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contact-us-main .section-padding {
        padding: 60px 0;
    }

    .contact-us-main .section-title {
        font-size: 27px;
    }

}

/********** Media page *************/
/* Blog Post Styles */
.media-main .blog-post {
    margin-bottom: 70px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--dark-color);
}

.media-main .post-image {
    /*height: 500px;*/
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}

.media-main .post-date {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.media-main .post-title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Montserrat-Regular', sans-serif;
}
.media-main .sidebar-widget select{
    border: none;
    background-color: var(--gray-color);
    border-bottom: 1px solid black;
    border-radius: 0;
}

.media-main .sidebar-widget select:focus{
    outline: none;
    box-shadow: none;
}

.media-main .post-excerpt {
    color: var(--text-color);
    margin-bottom: 20px;
}

.media-main .read-more-btn {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.media-main .read-more-btn:hover {
    color: var(--primary-color);
}

/* Date Badge Styles */
.media-main .date-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--gray-color);
    color: black;
    padding: 25px;
    padding-top: 20px;
    padding-right: 20px;
    text-align: center;
    /*border-top-right-radius: 15px;*/
    border-bottom-left-radius: 15px;
    z-index: 1;
    /*width: 80px;*/
    /*height: 80px;*/
    font-size: 18px;
    font-family: 'Montserrat-Regular', sans-serif;
}

.media-main .date-badge::before {
    content: '';
    position: absolute;
    left: -30px;
    bottom: 51px;
    width: calc(2 * 15px);
    height: calc(2 *15px);
    background-color: transparent;
    border-top-right-radius: 15px;
    box-shadow: 15px 0 0 0 var(--gray-color);
}

.media-main .date-badge::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: calc(-2 * 15px);
    width: calc(2 * 15px);
    height: calc(2 *15px);
    background-color: transparent;
    border-top-right-radius: 15px;
    box-shadow: 15px 0 0 0 var(--gray-color);
}

.media-main .date-day {
    font-weight: bold;
    display: block;
    line-height: 1;
}

.media-main .date-month {
    display: block;
    line-height: 1;
}

/* Sidebar Styles */
.media-main .sidebar-widget {
    margin-bottom: 30px;
}

.media-main .widget-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-color);
}

.media-main .recent-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-color);
}

.media-main a.recent-post {
    text-decoration: none;
    color: black;
}

.media-main .recent-post-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 10px;
}

.media-main .recent-post-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: 'Montserrat-Medium', sans-serif;
}

.media-main .recent-post-meta {
    font-size: 12px;
    color: var(--text-color);
}


/* Pagination */
.media-main .pagination .page-link {
    color: var(--dark-color);
    border: none;
    padding: 8px 15px;
}

.media-main .pagination .page-item.active .page-link {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.media-main .pagination .page-link:hover {
    background-color: var(--gray-color);
    color: var(--dark-color);
}

.media-main .news-title-detail{
    font-size: 35px;
    font-family: 'Montserrat-Regular', sans-serif;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .media-main .post-title {
        font-size: 24px;
        font-family: 'Montserrat-Regular', sans-serif;
    }

    .media-main .post-image {
        height: 300px;
    }
}


/*********** Education page *********/
.pofo-education-main .carousel-inner .carousel-item img{
    border-radius: 25px;
}




.pofo-education-main .first-section {
    /*background-color: var(--dark-color);*/
    color: black;
    /*padding: 150px 0 100px;*/
}

.pofo-education-main .first-section-title {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Unbounded', sans-serif;
}

@media (max-width: 768px) {
    .pofo-education-main .first-section-title {
        font-size: 33px;
    }
}

.pofo-education-main .first-section-description {
    font-size: 16px;
    color: black;
    max-width: 80%;
    font-family: 'Montserrat-Regular', sans-serif;

}

.pofo-education-main .accordion-section {
    padding: 80px 0;
}

.pofo-education-main .portfolio-accordion .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pofo-education-main .portfolio-accordion .accordion-button {
    background-color: var(--light-color);
    color: var(--dark-color);
    font-weight: 500;
    font-size: 30px;
    padding: 40px;
    border: none;
    box-shadow: none;
}

.pofo-education-main .portfolio-accordion .accordion-button:not(.collapsed) {
    background-color: var(--light-color);
    color: var(--dark-color);
    box-shadow: none;
}

.pofo-education-main .portfolio-accordion .accordion-button::after{
    display: none;
}

/*.pofo-education-main .portfolio-accordion .accordion-button::after {*/
/*    content: "01";*/
/*    background-image: none;*/
/*    font-weight: 500;*/
/*    font-size: 30px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: auto;*/
/*    height: auto;*/
/*}*/

/*.pofo-education-main .portfolio-accordion .accordion-button.collapsed::after {*/
/*    background-image: linear-gradient(to right, #000000, #000000);*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*}*/

.accord-btn-span{
    color:  #D4D4D4 !important;
    font-size: 30px;
    font-family: "Unbounded-Medium", sans-serif;
    text-shadow:
        -1px -1px 0 #a5a5a5,
        1px -1px 0 #a5a5a5,
        -1px 1px 0 #a5a5a5,
        1px 1px 0 #a5a5a5;
}

.pofo-education-main .portfolio-accordion .accordion-button.collapsed .accord-btn-span{
    color:  black !important;
    font-size: 30px;
    font-family: "Unbounded-Medium", sans-serif;
    text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
}

.pofo-education-main .portfolio-accordion .accordion-body {
    padding: 40px;
}

.pofo-education-main .accordion-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.pofo-education-main .accordion-image {
    flex: 0 0 300px;
}

.pofo-education-main .accordion-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.pofo-education-main .accordion-text {
    flex: 1;
    min-width: 300px;
}

@media (max-width: 768px) {
    .pofo-education-main .portfolio-accordion .accordion-button {
        font-size: 20px;
        padding: 20px;
    }

    .pofo-education-main .portfolio-accordion .accordion-body {
        padding: 20px;
    }

    .pofo-education-main .accordion-content {
        flex-direction: column;
    }

    .pofo-education-main .accordion-image {
        flex: 0 0 auto;
    }
}


/******* Homepage Styling *******/
.weenv{
    font-size: 30px;
}

.strcom{
    font-size: 55px;
}

.homsecone-details{
    font-size: 16px;
}



/******** Go Back To Top ***********/
.swm-btt-btn {
    position: fixed;
    bottom: 30px;
    right: 0;
    width: 35px;
    height: 80px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    /*border-radius: 15px;*/
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999999;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swm-btt-btn.active-progress {
    visibility: visible;
    opacity: 1;
    z-index: 999998;
}

/*.swm-btt-btn:hover {*/
/*    background-color: #333;*/
/*    transform: translateY(-3px);*/
/*    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);*/
/*}*/



/*.swm-btt-btn::before, .swm-btt-btn::after {*/
/*    display: block;*/
/*    content: "";*/
/*    position: absolute;*/
/*    background-color: transparent;*/
/*    bottom: 0;*/
/*    height: 30px;*/
/*    width: 15px;*/
/*}*/

*, ::before, ::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.swm-btt-btn.active-progress {
    visibility: visible;
}

.swm-btt-btn svg {
    transform: rotate(-90deg);
    font-size: 13px;
    width: 20px;
    height: 20px;
    fill: white;
    margin-bottom: 5px;
}

.swm-btt-btn span {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-weight: 400;
    font-size: 12px;
}

.swm-btt-btn::before, .swm-btt-btn::after {
    display: block;
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: 0;
    height: 30px;
    width: 15px;
}

.swm-btt-btn::before {
    right: 0;
    left: initial;
    border-radius: 0;
    border-bottom-right-radius: 0px;
    border-bottom-right-radius: 15px;
    box-shadow: 0 15px 0 0 #1a1a1a;
    top: -30px;
    bottom: initial;
}

.swm-btt-btn::after {
    right: 0;
    left: initial;
    border-radius: 0;
    border-top-right-radius: 0px;
    border-top-right-radius: 15px;
    box-shadow: 0 -15px 0 0 #1a1a1a;
    top: initial;
    mask: none;
    bottom: -30px;
    background: none;
    padding: 0;
}

.swm-svg-btt-btn-arrow{
    width: 15px !important;
}


/******* About Us page *********/
.about-sect1-description{
    color: #969696;
    font-size: 16px;
}

.about-sect1-card{
    background-color: #FFFFFF;
    padding: 80px 35px;
    border-radius: 25px;
}

.about-sect1-card-our{
    color:  #F5F5F5 !important;
    font-size: 70px;
    font-family: "Unbounded-Medium", sans-serif;
    text-shadow:
        -1px -1px 0 #ECECEC,
        1px -1px 0 #ECECEC,
        -1px 1px 0 #ECECEC,
        1px 1px 0 #ECECEC;
}

.about-sect1-card-mission-vision{
    font-size: 35px;
    color: black;
    font-family: "Unbounded-Medium", sans-serif;
    margin-top: -40px;
    margin-left: 65px;
}

.about-section-heading{
    font-size: 40px;
}

.pres-msg h2{
    font-size: 40px;
}

.pres-msg p{
    font-size: 16px;
    color: #969696;
}

.pres-msg h4{
    font-size: 20px;
}

.cert-section h2{
    color: #FFFFFF;
    font-size: 40px;
    font-family: "Unbounded-Medium", sans-serif;
}

.cert-section a,.cert-section h4{
    color: #7A7A7A;
    font-family: 'Montserrat-Bold', sans-serif;
    font-size: 30px !important;
    transition: all 0.3s ease;
}

.cert-section span{
    color: #b1b1b1 !important;
    font-family: 'Montserrat-Regular', sans-serif;
    font-size: 16px !important;
}

.cert-section a:hover,.cert-section h4:hover, .cert-section span:hover{
    color: white !important;
}

.cert-section a:hover {
    padding-left: 25px;
}

.cert-section a:hover::before {
    content: "•";
    /*position: absolute;*/
    left: 8px;
    color: white;
    font-weight: bold;
}

/********* Contact us page *********/
.section-title-contact{
    font-size: 30px;
    font-family: "Unbounded-Medium", sans-serif;
    margin-bottom: 30px;
}

.get-direction-btn{
    font-size: 12px;
    font-family: "Unbounded-Medium", sans-serif;
    border-radius: 35px;
    transition: transform 0.3s ease;
    width: 175px;
    border: 1px solid var(--gray-color);
}

.get-direction-btn:hover{
    font-size: 12px;
    font-family: "Unbounded-Medium", sans-serif;
    border: 1px solid black;
    border-radius: 35px;
    transform: translateX(8px);
}

.get-direction-btn::before {
    content: "•";
    position: absolute;
    left: -5px; /* Start from left border */
    top: 12px;
    color: black;
    font-weight: bold;
    opacity: 0; /* Start invisible */
    transition: all 0.3s ease;
    /*color: black;*/
    font-size: 20px;
    line-height: 5px;
}

.get-direction-btn:hover::before {
    content: "•";
    /*position: absolute;*/
    color: black;
    font-weight: bold;
    /*padding-left: 25px;*/
    transition: all 0.3s ease;
    opacity: 1; /* Fade in */
    left: 0; /* Move to final position */
    padding-left: 8px; /* Adjust spacing as needed */
}

.contact-submit-btn{
    background: white;
    border: 1px solid #cccccc;
    width: 100px;
    border-radius: 10px;
}

.contact-submit-btn:hover{
    background: black;
    color: white;
}


/******** Animation Setting *********/
.animate__fadeInLeft,
.animate__fadeInRight,
.animate__fadeInUp,
.animate__fadeInDown {
    --animate-duration: 2.0s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0); /* Reduced distance */
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0); /* Reduced distance */
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


/********* Driving Change Page *********/
.driving-change-main .heading-hero-section {
    padding-top: 80px;
    padding-bottom: 10px;
}

.driving-change-main .page-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1em;
}

.driving-change-main .portfolio-grid {
    padding: 40px 0 150px;
}

.driving-change-main .portfolio-card {
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.driving-change-main .portfolio-card:hover {
    transform: translateY(-5px);
}

.driving-change-main .portfolio-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.driving-change-main .portfolio-card-body {
    background-color: var(--light-color);
    text-align: center;
    padding: 30px 0 20px;
    border-radius: 0 0 30px 30px;
}

.driving-change-main .portfolio-card-title {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .driving-change-main .page-title {
        font-size: 30px;
    }

    .driving-change-main .portfolio-card-body {
        padding: 15px 0;
    }
}

/*<!-- ===== GALLERY ENHANCEMENT CSS ===== -->*/
     /* gallery trigger cursor */
 img[src*="stories-snimg/show"] {
     cursor: pointer;
     transition: opacity 0.2s;
     display: inline-block;
     max-width: 100%;
 }
img[src*="stories-snimg/show"]:hover {
    opacity: 0.9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* lightbox overlay */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border: 3px solid #fff;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: #111; /* for transparent images */
}
.lightbox-caption {
    display: none;
    color: #eee;
    margin-top: 12px;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(30,30,30,0.7);
    padding: 6px 20px;
    border-radius: 40px;
    max-width: 90%;
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: -10px;
    background: transparent;
    border: none;
    color: white;
    font-size: 2.8rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
    z-index: 10;
    text-shadow: 0 0 10px black;
}
.lightbox-close:hover {
    transform: scale(1.2);
    color: #ffa;
}
/* navigation buttons */
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid rgba(255,255,255,0.3);
}
.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(0,0,0,0.9);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 600px) {
    .lightbox-prev, .lightbox-next {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }
    .lightbox-close { top: 0; right: 5px; font-size: 3rem; }
}



/* gallery lightbox overlay */
.gallery-gallery-lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}
.gallery-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gallery-lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border: 3px solid #fff;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: #111; /* for transparent images */
}
.gallery-lightbox-caption {
    display: none;
    color: #eee;
    margin-top: 12px;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(30,30,30,0.7);
    padding: 6px 20px;
    border-radius: 40px;
    max-width: 90%;
}
.gallery-lightbox-close {
    position: absolute;
    top: -40px;
    right: -10px;
    background: transparent;
    border: none;
    color: white;
    font-size: 2.8rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
    z-index: 10;
    text-shadow: 0 0 10px black;
}
.gallery-lightbox-close:hover {
    transform: scale(1.2);
    color: #ffa;
}
/* navigation buttons */
.gallery-lightbox-prev, .gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid rgba(255,255,255,0.3);
}
.gallery-lightbox-prev:hover, .gallery-lightbox-next:hover {
    background: rgba(0,0,0,0.9);
}
.gallery-lightbox-prev { left: 20px; }
.gallery-lightbox-next { right: 20px; }
@media (max-width: 600px) {
    .gallery-lightbox-prev, .gallery-lightbox-next {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }
    .gallery-lightbox-close { top: 0; right: 5px; font-size: 3rem; }
}
#galleryCarousel .owl-dots {
    display: none !important;
}
