/********** Template CSS **********/
:root {
    --bs-tertiary: #797e88;
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #171717;
    --accent-color: #dd3209;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --bg-section: #F0DCD1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    transition: 0.5s;
}

.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;
}

/*** Top Bar ***/
/*.top-bar {*/
/*    height: 90px;*/
/*    padding: 0 90px;*/
/*}*/

/*.top-bar h6 {*/
/*    letter-spacing: 1px;*/
/*}*/

/*** Nav Bar ***/
/*.nav-bar {*/
/*    padding: 0 90px;*/
/*    transition: 0.5s;*/
/*}*/

/*.navbar .navbar-nav .nav-link {*/
/*    margin-right: 30px;*/
/*    padding: 20px 0;*/
/*    color: var(--bs-dark);*/
/*    font-size: 18px;*/
/*    outline: none;*/
/*}*/

/*.navbar .navbar-nav .nav-link:hover,*/
/*.navbar .navbar-nav .nav-link.active {*/
/*    color: var(--bs-secondary);*/
/*}*/

/*.navbar .dropdown-toggle::after {*/
/*    border: none;*/
/*    content: "\f107";*/
/*    font-family: "Font Awesome 5 Free";*/
/*    font-weight: 900;*/
/*    vertical-align: middle;*/
/*    margin-left: 8px;*/
/*}*/

/*@media (max-width: 991.98px) {*/
/*    .navbar .navbar-nav .nav-link {*/
/*        margin-right: 0;*/
/*        padding: 10px 0;*/
/*    }*/

/*    .navbar .navbar-nav {*/
/*        margin-top: 20px;*/
/*        border-top: 1px solid var(--bs-white);*/
/*    }*/
/*    .navbar .navbar-nav .nav-link {*/
/*        margin-right: 0;*/
/*        padding: 10px 0;*/
/*    }*/

/*    .navbar .navbar-nav {*/
/*        margin-top: 20px;*/
/*        border-top: 1px solid var(--bs-white);*/
/*    }*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .navbar .nav-item .dropdown-menu {*/
/*        display: block;*/
/*        border: none;*/
/*        margin-top: 0;*/
/*        top: 150%;*/
/*        opacity: 0;*/
/*        visibility: hidden;*/
/*        transition: 0.5s;*/
/*    }*/

/*    .navbar .nav-item:hover .dropdown-menu {*/
/*        top: 100%;*/
/*        visibility: visible;*/
/*        transition: 0.5s;*/
/*        opacity: 1;*/
/*    }*/
/*}*/

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 20px;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 55px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
    text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--bs-secondary);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--bs-secondary), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

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

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--bs-gray-dark);
        padding: 18px 15px;
        font-size: 15px;
        font-family: "Poppins",  sans-serif;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

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

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--bs-secondary);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--bs-white);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

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

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--bs-gray-dark);
    }

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

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--bs-secondary);
    }

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

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--bs-gray-dark);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--bs-white);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--bs-gray-dark);
        padding: 10px 20px;
        font-family: "Poppins",  sans-serif;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--bs-secondary);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--bs-white);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Header END
--------------------------------------------------------------*/

#carouselHome .carousel-item img {
    height: 700px; /* adjust as needed */
    object-fit: cover; /* keeps aspect ratio and fills area */
}
/* Dark overlay for carousel images */
#carouselHome .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Adjust darkness: 0.3 lighter, 0.7 darker */
    z-index: 1;
}

/* Make sure caption stays above overlay */
#carouselHome .carousel-caption {
    z-index: 2;
}

#carouselHome .carousel-caption h1{
    letter-spacing: 5px;
    font-size: 4em;
}

@media (max-width: 768px) {
    #carouselHome .carousel-item img {
        height: 400px; /* adjust as needed */
        object-fit: cover; /* keeps aspect ratio and fills area */
    }
    /* Dark overlay for carousel images */

    #carouselHome .carousel-caption h1{
        letter-spacing: 4px;
        font-size: 2em;
    }
}

.page-header {
    background: #CAD6ED center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item.active {
    color: var(--bs-secondary);
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

/*.section-title::before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    width: calc(100% + 80px);*/
/*    height: 0px;*/
/*    top: 5px;*/
/*    left: -40px;*/
/*    border-top: 2px solid var(--bs-secondary);*/
/*    z-index: 0;*/
/*}*/

/*.section-title::after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    width: calc(100% + 120px);*/
/*    height: 0px;*/
/*    bottom: 6px;*/
/*    left: -60px;*/
/*    border-bottom: 2px solid var(--bs-secondary);*/
/*    z-index: 0;*/
/*}*/

/* left side top line */
.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 2px;
    background: var(--bs-secondary);
}

/* Left side */
.section-title::before {
    width: 40px;         /* shorter */
    left: -40px;         /* shifted right so both end align */
    top: 30%;            /* adjust vertical placement */
}

.section-title::after {
    width: 60px;         /* longer */
    left: -60px;         /* starts earlier */
    top: 50%;            /* adjust vertical placement */
}

/* Right side: use span pseudo-elements */
.section-title span::before,
.section-title span::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 2px;
    background: var(--bs-secondary);
}

/* right top (shorter, ends same as bottom) */
.section-title span::before {
    width: 40px;
    right: -40px;
    top: 30%;
}

/* right bottom (longer, starts earlier) */
.section-title span::after {
    width: 60px;
    right: -60px;
    top: 50%;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

/*** About ***/
.about-img {
    position: relative;
}

.about-img::before,
.about-img::after {
    position: absolute;
    content: "";
    width: 33%;
    height: 90px;
    background: var(--bs-white);
}

.about-img::before {
    top: 0px;
    left: 0px;
}

.about-img::after {
    right: 0px;
    bottom: 0px;
}

/*** Service ***/
.service-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.service-item {
    overflow: hidden;
}

.service-item .btn-square {
    width: 65px;
    height: 65px;
}

.service-item a {
    position: relative;
    padding: 0;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    transition: 0.5s;
}

.service-item a::after {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    left: 100%;
    bottom: 3px;
    margin-left: 10px;
    border-bottom: 2px solid var(--bs-white);
}

/*** Donation ***/
.donation-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    transition: 0.5s;
}

.donation-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.donation-item .donation-progress {
    width: 80px;
}

.donation-item .progress .progress-bar {
    height: 20px;
    overflow: visible;
    transition: 3s;
}

/*** Banner ***/
.banner .banner-inner {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.banner .banner-inner::before,
.banner .banner-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.banner .banner-inner::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.banner .banner-inner::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}

/*** Event ***/
.event-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    transition: 0.5s;
}

.event-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/*** Donate ***/
.donate .donate-text {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.donate .donate-text::before,
.donate .donate-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.donate .donate-text::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.donate .donate-text::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}

.donate .donate-form .form-control {
    border: none;
    background: rgba(255, 255, 255, 0.5);
}

.donate .donate-form .btn-group {
    display: flex;
}

.donate .donate-form .btn-group .btn {
    margin: 0;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--bs-tertiary);
    background: rgba(255, 255, 255, 0.5);
}

.donate .donate-form .btn-group .btn-check:checked + .btn {
    border: none;
    background: var(--bs-white);
}

/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    transition: 0.5s;
}

.team-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.team-item .team-detail span {
    letter-spacing: 2px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    overflow: hidden;
}

.testimonials .critic-reviews {
    margin-bottom: 60px;
}

.testimonials .critic-reviews .critic-review {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonials .critic-reviews .critic-review .review-quote {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--bs-secondary);
    opacity: 0.2;
    line-height: 1;
}

.testimonials .critic-reviews .critic-review .stars {
    margin-bottom: 15px;
    display: flex;
}

.testimonials .critic-reviews .critic-review .stars i {
    color: #FFD700;
    margin-right: 3px;
    font-size: 18px;
}

.testimonials .critic-reviews .critic-review p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--default-color);
    font-style: italic;
}

.testimonials .critic-reviews .critic-review .critic-info .critic-name {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 16px;
}

.testimonials .critic-reviews .critic-review:hover {
    transform: translateY(-10px);
}

.testimonials .testimonials-container {
    margin-bottom: 60px;
}

.testimonials .testimonials-container .swiper-wrapper {
    height: auto !important;
    padding-bottom: 20px;
}

.testimonials .testimonials-container .testimonial-item {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-top: 3px solid var(--bs-secondary);
}

.testimonials .testimonials-container .testimonial-item .stars {
    margin-bottom: 15px;
    display: flex;
}

.testimonials .testimonials-container .testimonial-item .stars i {
    color: #FFD700;
    margin-right: 3px;
    font-size: 16px;
}

.testimonials .testimonials-container .testimonial-item p {
    font-size: 15px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--default-color);
    line-height: 1.6;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile {
    display: flex;
    align-items: center;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid color-mix(in srgb, var(--bs-secondary), transparent 80%);
    margin-right: 15px;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile div h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--heading-color);
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile div h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
    font-weight: normal;
}

.testimonials .testimonials-container .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .testimonials-container .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--bs-secondary), transparent 70%);
    opacity: 1;
}

.testimonials .testimonials-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--bs-secondary);
    width: 20px;
    border-radius: 10px;
}

.testimonials .overall-rating {
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.testimonials .overall-rating .rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 10px;
}

.testimonials .overall-rating .rating-stars {
    margin-bottom: 15px;
}

.testimonials .overall-rating .rating-stars i {
    color: #FFD700;
    font-size: 22px;
    margin: 0 3px;
}

.testimonials .overall-rating p {
    color: var(--default-color);
    font-size: 15px;
    margin-bottom: 15px;
}

.testimonials .overall-rating .rating-platforms {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.testimonials .overall-rating .rating-platforms span {
    font-size: 14px;
    color: var(--bs-secondary);
    background-color: color-mix(in srgb, var(--bs-secondary), transparent 90%);
    padding: 5px 15px;
    border-radius: 20px;
}

@media (max-width: 992px) {
    .testimonials .section-header h2 {
        font-size: 28px;
    }

    .testimonials .critic-reviews .critic-review {
        margin-bottom: 30px;
    }

    .testimonials .testimonials-container .testimonial-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

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

    .testimonials .overall-rating {
        padding: 30px;
    }

    .testimonials .overall-rating .rating-number {
        font-size: 36px;
    }

    .testimonials .overall-rating .rating-stars i {
        font-size: 18px;
    }
}

/*.swiper {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

/*.swiper-slide {*/
/*    text-align: center;*/
/*    font-size: 18px;*/
/*    background: #444;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

/*.swiper-slide img {*/
/*    display: block;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*** Footer ***/
.footer {
    color: var(--bs-body);
    background: var(--bs-footer);
    background-size: cover;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-white);
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.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(--bs-secondary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.clients img{
    max-width: 55%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    filter: grayscale(100);
}
.clients img:hover {
    filter: none;
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-container {
    position: relative;
}

.portfolio .portfolio-filters {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 30px;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: var(--bs-dark);
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
    /*background: color-mix(in srgb, var(--surface-color), var(--heading-color) 5%);*/
}

.portfolio .portfolio-filters li:hover {
    color: var(--bs-white);
    background: var(--bs-secondary);
}

.portfolio .portfolio-filters li.filter-active {
    color: var(--bs-white);
    background: var(--bs-secondary);
}

.portfolio .portfolio-wrap {
    aspect-ratio: 4/3;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bs-secondary);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap img {
    transition: 0.3s;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures image fills space, crops if needed */
    display: block;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: var(--bs-white);
    font-weight: 600;
    margin-bottom: 5px;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: var(--bs-white);
    font-size: 14px;
    margin: 0 0 15px 0;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links {
    display: flex;
    gap: 15px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a {
    color: var(--bs-white);
    font-size: 20px;
    transition: 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a:hover {
    background: var(--accent-color);
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #fff !important;
    font-size: 24px !important;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 5px;
    transition: 0.5s;
    padding: 30px;
    height: 100%;
}

@media (max-width: 468px) {
    .team .team-member {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }
}

.team .team-member .pic {
    overflow: hidden;
    width: 150px;
    border-radius: 5px;
    flex-shrink: 0;
}

.team .team-member .pic img {
    transition: ease-in-out 0.3s;
}

.team .team-member:hover {
    transform: translateY(-10px);
}

.team .team-member .member-info {
    padding-left: 30px;
}

@media (max-width: 468px) {
    .team .team-member .member-info {
        padding: 30px 0 0 0;
        text-align: center;
    }
}

.team .team-member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
}

.team .team-member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .team-member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 85%);
    bottom: 0;
    left: 0;
}

@media (max-width: 468px) {
    .team .team-member span::after {
        left: calc(50% - 25px);
    }
}

.team .team-member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .team-member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

@media (max-width: 468px) {
    .team .team-member .social {
        justify-content: center;
    }
}

.team .team-member .social a {
    background: color-mix(in srgb, var(--default-color), transparent 94%);
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 36px;
    height: 36px;
}

.team .team-member .social a i {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 16px;
    margin: 0 2px;
}

.team .team-member .social a:hover {
    background: var(--bs-secondary);
}

.team .team-member .social a:hover i {
    color: var(--contrast-color);
}

.team .team-member .social a+a {
    margin-left: 8px;
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 60px 30px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.services .service-item .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
}

.services .service-item .icon i {
    font-size: 40px;
    transition: 0.5s;
    width: 100px;
    height: 100px;
    color: var(--bs-secondary);
    background-color: var(--surface-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.services .service-item .icon svg {
    position: absolute;
    top: 0;
    left: 0;
}

.services .service-item .icon svg path {
    transition: 0.5s;
    fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item:hover {
    box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.services .service-item:hover .icon i {
    transform: translateY(-10px);
    color: var(--bs-primary);
    background-color: var(--bs-secondary);
}

.services .service-item.item-cyan i {
    color: #0dcaf0;
}

.services .service-item.item-cyan:hover .icon i {
    color: #fff;
}

.services .service-item.item-cyan:hover .icon path {
    fill: #0dcaf0;
}

.services .service-item.item-orange i {
    color: #fd7e14;
}

.services .service-item.item-orange:hover .icon i {
    color: #fff;
}

.services .service-item.item-orange:hover .icon path {
    fill: #fd7e14;
}

.services .service-item.item-teal i {
    color: #20c997;
}

.services .service-item.item-teal:hover .icon i {
    color: #fff;
}

.services .service-item.item-teal:hover .icon path {
    fill: #20c997;
}

.services .service-item.item-red i {
    color: #df1529;
}

.services .service-item.item-red:hover .icon i {
    color: #fff;
}

.services .service-item.item-red:hover .icon path {
    fill: #df1529;
}

.services .service-item.item-indigo i {
    color: #6610f2;
}

.services .service-item.item-indigo:hover .icon i {
    color: #fff;
}

.services .service-item.item-indigo:hover .icon path {
    fill: #6610f2;
}

.services .service-item.item-pink i {
    color: #f3268c;
}

.services .service-item.item-pink:hover .icon i {
    color: #fff;
}

.services .service-item.item-pink:hover .icon path {
    fill: #f3268c;
}
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    padding-top: 30px;
    --tile-radius: 10px;
    --tile-border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    --tile-shadow: 0 2px 0 color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 30px;
}

.stats .stats-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 1200px) {
    .stats .stats-board {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats .stats-board {
        grid-template-columns: 1fr;
    }
}

.stats .stat-tile {
    background: color-mix(in srgb, var(--surface-color), var(--accent-color) 0%);
    border: var(--tile-border);
    border-radius: var(--tile-radius);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 132px;
    box-shadow: var(--tile-shadow);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.stats .stat-tile:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    transform: translateY(-2px);
}

.stats .stat-tile .tile-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.stats .stat-tile .tile-head i {
    font-size: 24px;
    color: var(--accent-color);
}

.stats .stat-tile .tile-head .label .title {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.stats .stat-tile .tile-head .label .hint {
    display: block;
    margin-top: 2px;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-size: 13px;
    line-height: 1.4;
}

.stats .stat-tile .tile-metric {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.stats .stat-tile .tile-metric .metric-number {
    display: inline-block;
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1;
    font-size: 36px;
}

@media (max-width: 576px) {
    .stats .stat-tile .tile-metric .metric-number {
        font-size: 32px;
    }
}

.stats .stat-tile .tile-metric .metric-suffix {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 16px;
    font-weight: 600;
}

.stats .stat-tile:nth-child(1) {
    border-top: 3px solid color-mix(in srgb, var(--accent-color), transparent 30%);
}

.stats .stat-tile:nth-child(2) {
    border-top: 3px solid color-mix(in srgb, #0abf53, transparent 30%);
}

.stats .stat-tile:nth-child(2) .tile-head i {
    color: color-mix(in srgb, #0abf53, transparent 0%);
}

.stats .stat-tile:nth-child(3) {
    border-top: 3px solid color-mix(in srgb, #ff7e00, transparent 30%);
}

.stats .stat-tile:nth-child(3) .tile-head i {
    color: color-mix(in srgb, #ff7e00, transparent 0%);
}

.stats .stat-tile:nth-child(4) {
    border-top: 3px solid color-mix(in srgb, #6f42c1, transparent 30%);
}

.stats .stat-tile:nth-child(4) .tile-head i {
    color: color-mix(in srgb, #6f42c1, transparent 0%);
}

.stats .legend-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    padding: 10px 12px;
    border: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 8px;
    background: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
}

@media (max-width: 576px) {
    .stats .legend-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.stats .legend-row .legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stats .legend-row .legend-item .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.stats .legend-row .legend-item .dot.dot-primary {
    background: var(--accent-color);
}

.stats .legend-row .legend-item .dot.dot-neutral {
    background: color-mix(in srgb, var(--default-color), transparent 40%);
}

.stats .legend-row .legend-item .text {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills {
    background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 30%);
}

.skills .skills-header h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.skills .skills-header p {
    font-size: 1rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
}

.skills .skills-header .certifications {
    display: flex;
    gap: 2rem;
}

.skills .skills-header .certifications .cert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--default-color);
}

.skills .skills-header .certifications .cert-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.skills .skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .skills .skills-grid {
        grid-template-columns: 1fr;
    }
}

.skills .skill-item {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 95%);
    transition: all 0.3s ease;
}

.skills .skill-item:hover {
    box-shadow: 0 4px 8px color-mix(in srgb, var(--default-color), transparent 90%);
    transform: translateY(-2px);
}

.skills .skill-item .skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.skills .skill-item .skill-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0;
}

.skills .skill-item .skill-header .skill-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    font-family: var(--heading-font);
}

.skills .skill-item .skill-bar {
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    height: 6px;
    border-radius: 3px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.skills .skill-item .skill-bar .progress-bar {
    height: 100%;
    background-color: var(--accent-color);
    width: 1px;
    transition: width 0.9s ease;
    border-radius: 3px;
}

.skills .skill-item p {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .skills .row {
        text-align: center;
    }

    .skills .skills-header {
        margin-bottom: 3rem;
    }

    .skills .skills-header .certifications {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .skills {
        padding: 40px 0;
    }

    .skills .skills-header h3 {
        font-size: 1.8rem;
    }

    .skills .skills-header .certifications {
        flex-direction: column;
        gap: 1rem;
    }

    .skills .skill-item {
        padding: 1.25rem;
    }
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
    /*padding: 40px 40px;*/
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.pricing .pricing-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.pricing .pricing-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* image fills while keeping aspect ratio */
    border-radius: 15px; /* matches container */
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    padding-top: 0;
}

.contact .info {
    background-color: var(--surface-color);
    padding: 40px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact .info h3 {
    font-weight: 600;
    font-size: 24px;
}

.contact .info p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 30px;
    font-size: 15px;
}

.contact .info-item+.info-item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
    font-size: 24px;
    color: var(--bs-secondary);
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
}

.contact .info-item h4 {
    padding: 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
    width: 100%;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 0px;
    box-shadow: none;
    font-size: 14px;
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--bs-secondary);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
    height: 48px;
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
    height: 290px;
}

.contact .php-email-form button[type=submit] {
    background: var(--bs-secondary);
    color: var(--contrast-color);
    border: 0;
    padding: 13px 50px;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--bs-secondary) 90%, black 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.faq .section-header .lead {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.6;
}

.faq .faq-wrapper {
    /*max-width: 800px;*/
    margin: 0 auto;
}

.faq .faq-item {
    border-left: 4px solid transparent;
    border-radius: 10px;
    background: var(--surface-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.faq .faq-item.faq-active {
    border-left-color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-icon {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header h4 {
    color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
    display: none;
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
    display: block;
}

.faq .faq-item.faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
    display: block;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
    display: none;
}

.faq .faq-item .faq-header {
    display: flex;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    gap: 20px;
}

.faq .faq-item .faq-header .faq-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 20px;
    transition: all 0.3s ease;
}

.faq .faq-item .faq-header h4 {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    transition: color 0.3s ease;
    line-height: 1.4;
}

.faq .faq-item .faq-header .faq-toggle {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--default-color), transparent 85%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
    position: absolute;
    transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-toggle:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.faq .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
    padding: 0 25px 25px 25px;
    overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    font-size: 0.95rem;
    overflow: hidden;
}

@media (max-width: 768px) {
    .faq .faq-item .faq-header {
        padding: 20px;
        gap: 15px;
    }

    .faq .faq-item .faq-header .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .faq .faq-item .faq-header h4 {
        font-size: 1rem;
    }

    .faq .faq-item .faq-header .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .faq .faq-item .faq-content .content-inner {
        padding: 0 20px;
    }

    .faq .faq-item.faq-active .faq-content .content-inner {
        padding-bottom: 20px;
    }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events{
    position: relative;
    display: block;
    /*margin-bottom: 100px;*/
}
.events .event-card{
    position: relative;
    border-right: 8px;
    margin-bottom: 70px;;
}
.events .event-card .event-content{
    box-shadow: 10px 10px 10px -10px rgba(0, 0, 0, 0.3),
    inset 10px 10px 10px -10px rgba(0, 0, 0, 0.5);
    padding: 20px 10px 10px 10px;
    cursor: pointer;
    background: var(--bs-white) !important;
    margin-top: -60px !important;
    position: absolute;
    left: 20px;
    right: 20px;
    width: auto;
}

.events .event-card .event-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 8px;
}

.events .event-card .event-image img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
}
.events .event-card:hover .event-image img{
    transform: scale(1.1);
}
.events .event-card .event-content a{
    color: var(--bs-dark);
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease;
}
.events .event-card .event-content a:hover{
    transform: scale(1.1);
    color: var(--bs-secondary);
}
.events .event-card .event-content h4{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--bs-secondary);
}
.events .event-card .event-content p{
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
}

/*.event-info h3 {*/
/*    font-size: 16px;*/
/*    font-weight: 700;*/
/*    margin-bottom: 8px;*/
/*}*/

/*.event-info p {*/
/*    font-size: 14px;*/
/*    line-height: 1.4;*/
/*    margin-bottom: 8px;*/
/*}*/

/*.event-info .join-btn {*/
/*    display: inline-block;*/
/*    font-weight: 600;*/
/*    font-size: 14px;*/
/*    color: #007bff;*/
/*    text-decoration: none;*/
/*}*/
