/********** Template CSS **********/
:root {
    --primary: #ffac2e;
    --light: #FFF5F3;
    --dark: #103741;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Lobster Two', cursive;
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Heebo', sans-serif;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #01360a !important;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

padding: 30px;
border-radius: 100%;
display: flex;
text-align: center;
justify-content: center;
flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*** Custom Hero Section Redesign ***/
.hero-header {
    min-height: 550px;
    background-color: #fdf5f3;
    position: relative;
    padding-bottom: 50px;
}

.cloud-border-top {
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 19px;
    background: url('../img/bg-header-top.png') center top repeat-x;
    z-index: 5;
}

.hero-left-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fdf5f3;
    background-image: url('../Photos/gallery/bg.png');
    background-repeat: no-repeat;
    background-position: center -30px;
    background-size: cover;
    z-index: 0;
}

.hero-right-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../Photos/gallery/boy.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
    border-bottom-left-radius: 45% 80%;
    border-top-left-radius: 40% 60%;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.hero-green-blob {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1a4f32;
    border-radius: 61% 39% 36% 64% / 49% 51% 49% 51%;
    padding: 30px 30px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.features-bar {
    z-index: 10;
}

.hero-row {
    min-height: 450px;
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        background-color: #1a4f32 !important;
        border: none;
        padding: 8px 10px;
        border-radius: 8px;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .border-end-lg {
        border-right: none !important;
        border-bottom: none !important;
        padding-bottom: 0;
    }

    .hero-header {
        min-height: auto;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-left-bg {
        width: 100%;
        height: 100%;
        border-radius: 0;
        background-color: #fdf5f3;
        background-image: url('../Photos/gallery/bg.png');
        background-position: top center;
        background-size: 100% auto;
        background-repeat: no-repeat;
    }

    .hero-right-bg {
        display: none;
    }

    .hero-image-col {
        height: 360px;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .mobile-boy {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 85%;
        height: 100%;
        object-fit: cover;
        object-position: center 10%;
        border-radius: 120px 0 0 0;
        z-index: 1;
    }

    .hero-green-blob {
        position: absolute !important;
        bottom: 20px !important;
        left: 0 !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 0 !important;
        width: 200px !important;
        min-width: 0 !important;
        padding: 40px 20px !important;
        z-index: 5 !important;
        border-radius: 50% 60% 40% 50% / 60% 50% 50% 60% !important;
        background-color: #1a4f32 !important;
    }

    .hero-green-blob h4 {
        font-size: 1.4rem !important;
    }

    .features-bar {
        margin-top: -20px !important;
        margin-bottom: 40px !important;
        position: relative;
        z-index: 10;
    }

    .feature-card {
        padding: 1.5rem 1rem !important;
    }

    .feature-card h6 {
        font-size: 0.85rem;
    }

    .feature-card small {
        font-size: 0.75rem;
    }

    .feature-card .icon-box {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
    }

    .feature-card .icon-box i {
        font-size: 1.3rem;
    }
}

@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid #dee2e6 !important;
    }
}

/*** About Section (Cultural Activities) ***/
.about-img-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 95%;
    /* Aspect Ratio container */
}

.about-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    border: 8px solid #F8B124;
    /* Orange border */
    object-fit: cover;
    z-index: 1;
}

.about-img-sm-1 {
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 48%;
    height: 48%;
    border-radius: 50%;
    border: 8px solid #ffffff;
    /* White border */
    object-fit: cover;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about-img-sm-2 {
    position: absolute;
    bottom: -5%;
    right: 15%;
    width: 42%;
    height: 42%;
    border-radius: 50%;
    border: 8px solid #ffffff;
    /* White border */
    object-fit: cover;
    z-index: 3;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.wavy-bg {
    width: 80px;
    height: 8px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 10'><path d='M0,5 Q5,0 10,5 T20,5 T30,5 T40,5' fill='none' stroke='%23F8B124' stroke-width='2'/></svg>") repeat-x;
    animation: waveFlow 2s linear infinite;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.d-flex:hover .feature-icon-box {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon-box.green {
    background-color: #eaf1e7;
    color: #1a4f32;
}

.feature-icon-box.orange {
    background-color: #fef5e5;
    color: #F8B124;
}

.btn-read-more {
    background: linear-gradient(90deg, #FF9800 0%, #FFB74D 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
    color: #fff;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes waveFlow {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 0;
    }
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

@keyframes pulseElement {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Image Hover Effects */
.about-img-main,
.about-img-sm-1,
.about-img-sm-2 {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-wrap:hover .about-img-main {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 15px 35px rgba(248, 177, 36, 0.3) !important;
}

.about-img-wrap:hover .about-img-sm-1 {
    transform: scale(1.06) translateX(-15px) translateY(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.about-img-wrap:hover .about-img-sm-2 {
    transform: scale(1.06) translateX(15px) translateY(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Floating Decorative Elements */
.deco-sun {
    position: absolute;
    top: 8%;
    right: 8%;
    font-size: 4rem;
    color: #F8B124;
    opacity: 0.6;
    animation: pulseElement 5s ease-in-out infinite;
    z-index: 0;
}

.deco-leaf-1 {
    position: absolute;
    bottom: 15%;
    left: 5%;
    font-size: 3rem;
    color: #7ca856;
    opacity: 0.25;
    animation: floatElement 6s ease-in-out infinite;
    z-index: 0;
}

.deco-leaf-2 {
    position: absolute;
    top: 40%;
    left: 45%;
    font-size: 2rem;
    color: #7ca856;
    opacity: 0.2;
    animation: floatElement 5s ease-in-out infinite reverse;
    z-index: 0;
}

.deco-dots {
    position: absolute;
    bottom: 20%;
    right: 2%;
    width: 100px;
    height: 120px;
    background-image: radial-gradient(#F8B124 3px, transparent 3px);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: 0;
}

/* Services Page Styles */
.services-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a2a50;
}

.services-hero-title span {
    color: #4CAF50;
}

.service-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-card-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.service-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-card-text {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: auto;
}

.service-dashed-line {
    width: 30px;
    height: 0;
    border-bottom: 2px dashed;
    margin-top: 10px;
}

.service-card-right {
    width: 100%;
    height: 140px;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.services-footer-banner {
    background-color: #eaf3e5;
    border-radius: 20px;
    padding: 20px 40px;
}

/* Custom Mobile UI Updates for Services Page */
@media (max-width: 991.98px) {
    .services-hero-container {
        background: #fdfaf6 !important;
        min-height: auto !important;
        padding-top: 0 !important;
    }
    
    .services-hero-title {
        font-size: 2.2rem !important;
        color: #1a2a50 !important;
    }
    
    .services-hero-title span {
        color: #7ca856 !important;
    }
    
    .hero-desc {
        color: #4a5d51 !important;
        font-size: 0.95rem !important;
        line-height: 1.5;
        padding: 0 15px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem !important;
    }
    
    .wwo-title-wrapper {
        margin-top: -40px !important;
    }
    
    .section-title-text {
        font-size: 28px !important;
        margin-top: 0 !important;
    }
}

@media (min-width: 992px) {
    .lg-title-margin {
        margin-top: -100px !important;
    }
    .wwo-title-wrapper .section-title-text {
        margin-top: -100px !important;
        font-size: 45px !important;
    }
}
/* Custom Read More Button Hover */
.btn-read-more:hover, .btn-primary:hover {
    background-color: #01360a !important;
    border-color: #01360a !important;
    color: #ffffff !important;
}

.btn-read-more {
    background-color: #01360a !important;
    border-color: #01360a !important;
    color: #ffffff !important;
}

@media (max-width: 767.98px) {
    .hero-main-title {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}
