/*** Spinner Start ***/
#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;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
    background: linear-gradient(90deg, #FF6900 0%, #FE9A00 50%, #F54900 100%);
}

.btn.btn-primary:hover {
    color: var(--bs-white);
    background: linear-gradient(90deg, #e85f00 0%, #ee9400 50%, #d44400 100%);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Navbar Start ***/
.header-top .topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.header-top .topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 12px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

.header-top {
    height: 125px;
    position: relative;
}

.header-top::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bs-dark);
    z-index: 1;
}

.header-top .container {
    position: relative;
    z-index: 999;
}

@media (min-width: 992px) {
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: var(--bs-dark);
        z-index: -1;
    }

    .navbar-brand-2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-top {
        max-height: 80px;
    }

    .navbar {
        justify-content: space-between;
    }

    .header-top .container {
        max-height: 80px;
    }

    .navbar-brand {
        display: none;
    }

    .navbar-brand-2 {
        position: relative;
        overflow: hidden;
        width: 200px;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        z-index: 99;
    }

    .navbar-brand-2::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-dark);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar-brand-2::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 5px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-primary);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }

    .navbar .navbar-collapse {
        margin-top: -20px;
    }

}

.nav-bar .navbar {
    height: 100%;
    background: var(--bs-white);
    position: relative;
    z-index: 9;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        /* padding: 12px; */
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        margin-left: 50px;
        background: var(--bs-light);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 0px !important;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

/*** Navbar End ***/

/*** Floating Navigation Overlay Start ***/
.floating-navbar-overlay {
    position: absolute;
    top: 20px;
    left: 2%;
    right: 2%;
    z-index: 1000;
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-navbar-container {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}

.floating-logo {
    background: rgba(180, 200, 210, 0.6) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.floating-logo a {
    display: block;
    text-decoration: none;
}

.floating-logo .logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.floating-nav-menu {
    background: rgba(180, 200, 210, 0.6) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    gap: 0;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.floating-nav-menu .nav-link {
    color: #3d4852 !important;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 20px !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 20px;
    margin: 0 2px;
    white-space: nowrap;
}

.floating-nav-menu .nav-link:hover {
    color: #2d3748 !important;
    background: rgba(255, 255, 255, 0.2);
}

.floating-nav-menu .nav-link.active {
    color: #2d3748 !important;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    text-decoration-color: #2d3748;
    font-weight: 600;
    background: transparent;
}

.floating-nav-menu .nav-item {
    display: flex;
    align-items: center;
}

.floating-nav-menu .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 5px;
    color: #3d4852;
}

.floating-nav-menu .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
    padding: 8px 0;
}

.floating-nav-menu .dropdown-item {
    color: #3d4852;
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.floating-nav-menu .dropdown-item:hover {
    background: rgba(180, 200, 210, 0.3);
    color: #2d3748;
}

.floating-nav-menu .nav-btn {
    margin-left: 5px;
}

.floating-nav-menu .nav-btn .btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
}

.floating-navbar-overlay .navbar-toggler {
    background: rgba(180, 200, 210, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    color: #3d4852;
}

.floating-navbar-overlay .navbar-toggler:focus {
    box-shadow: none;
}

.header-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.header-carousel.owl-carousel {
    height: 100vh;
    min-height: 600px;
}

@media (max-width: 991px) {
    .floating-navbar-overlay {
        top: 15px;
        right: 15px;
        left: 15px;
        flex-direction: column;
        align-items: stretch;
    }

    .floating-navbar-container {
        flex-direction: column;
        gap: 10px;
    }

    .floating-logo {
        align-self: center;
        padding: 8px 15px;
    }

    .floating-logo .logo-img {
        height: 40px;
    }

    .floating-nav-menu {
        flex-direction: column;
        padding: 12px;
        border-radius: 15px;
    }

    .floating-nav-menu .nav-link {
        padding: 8px 12px !important;
        margin: 2px 0;
        font-size: 13px;
    }

    .floating-nav-menu .nav-item {
        width: 100%;
    }

    .floating-nav-menu .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.3);
        margin-top: 5px;
        margin-left: 15px;
    }

    .floating-nav-menu .nav-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
    }

    .floating-nav-menu .nav-btn .btn {
        width: 100%;
    }

    .header-carousel,
    .header-carousel.owl-carousel {
        height: 100vh;
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .floating-navbar-overlay {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .floating-nav-menu {
        padding: 10px;
        border-radius: 12px;
    }

    .floating-nav-menu .nav-link {
        padding: 8px 10px !important;
        font-size: 12px;
    }

    .header-carousel,
    .header-carousel.owl-carousel {
        height: 100vh;
        min-height: 400px;
    }
}

/*** Floating Navigation Overlay End ***/


/*** Carousel Hero Header Start ***/
.hero-section {
    background-image: url(../img/banner-2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bg-half-1 {
    background-image: url(../img/mohol-banner-1.png);
    clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(10%);
    /* base scale and enable smooth transition; original transform value was invalid */
    transform: scale(1) translateZ(0);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 58%;
    height: 650px;
    right: 0;
    bottom: 0;
    top: auto;
    transition: transform 900ms cubic-bezier(.2,.9,.2,1), filter 900ms ease;
}

/* When AOS triggers, it adds the aos-animate class — scale image slightly larger for a zoom effect */
.hero-bg-half-1[data-aos][data-aos="zoom-in"].aos-animate,
.hero-bg-half-1[data-aos="zoom-in"].aos-animate {
    transform: scale(1.06) translateZ(0);
    filter: grayscale(0%);
}

.hero-bg-half-2 {
    background-image: url(../img/mohol-banner-2.png);
    clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(10%);
    transform: scale(100% - 50%);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 58%;
    height: 650px;
    right: 0;
    bottom: 0;
    top: auto;
}

.hero-shape-1 {
    background-color: var(--bs-primary);
    width: 150px;
    height: 50%;
    position: absolute;
    left: 54%;
    top: 0;
    transform: translateY(-50%) skew(-26deg, 0deg);
    position: relative;
}

.hero-shape-1:before {
    background-color: var(--bs-dark);
    content: "";
    width: 50%;
    height: 80%;
    position: absolute;
    right: 0;
    top: 0;
}

.hero-shape-2 {
    background-color: var(--bs-dark);
    width: 150px;
    height: 50%;
    position: absolute;
    right: -43%;
    bottom: 0;
    transform: translateY(50%) skew(-25deg, 0deg);
    position: relative;
    z-index: 1;
}

.hero-shape-2::after {
    background-color: var(--bs-primary);
    content: "";
    width: 75px;
    height: 80%;
    position: absolute;
    right: 0;
    bottom: 0;
}

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 100vh;
    min-height: 600px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bs-white);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 0;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 0;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 65px 0 var(--bs-primary);
    color: var(--bs-dark);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    z-index: 9;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height: 100vh;
        min-height: 500px;
    }

    .hero-section {
        height: 100vh;
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 100vh;
        min-height: 400px;
    }

    .hero-section {
        height: 100vh;
        min-height: 400px;
    }
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb-about {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/banner-2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 50px 0;
    transition: 0.5s;
}

.bg-breadcrumb-about .breadcrumb {
    position: relative;
}

.bg-breadcrumb-about .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Service Start ***/
.service .nav .nav-item {
    width: 75%;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
}

.service .nav .nav-item a {
    display: flex;
    justify-content: center;
}

.service-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.service-item .border {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-item .border p {
    flex: 1;
}

.owl-stage-outer {
    margin-right: -1px;
}

.service .nav-item a.active {
    background: var(--bs-primary);
}

.service .nav-item a span {
    color: var(--bs-dark);
}

.service .nav-item a.active span {
    color: var(--bs-white);
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    position: absolute;
    padding: 10px 35px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    background: var(--bs-light);
    transition: 0.5s;
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .service-carousel .owl-nav .owl-prev {
        top: 0;
        left: -115px;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: 0;
        left: -115px;
    }
}

@media (max-width: 991px) {
    .owl-stage-outer {
        margin-bottom: 70px;
    }

    .service-carousel .owl-nav .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: -70px;
        right: 0;
    }

    .service .nav {
        display: flex;
        justify-content: center;
    }
}

/* Gallery Grid */
.gallery {
    background: #fbfbfb;
}

.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 220px;
}

.gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery .gallery-item:hover img {
    transform: scale(1.02);
}

.gallery .search-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.gallery .gallery-item:hover .search-icon {
    opacity: 1;
}

.gallery .gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.gallery .gallery-inner a {
    text-decoration: none;
}

.gallery .gallery-inner p {
    margin: 0;
}

.gallery .row.g-0 {
    gap: 16px;
}

@media (max-width: 991px) {
    .gallery .gallery-item {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .gallery .gallery-item {
        height: 180px;
    }
}

.gallery-feature-large {
    height: 360px;
}

.gallery-feature-small {
    height: 175px;
}

@media (max-width: 991px) {
    .gallery-feature-large {
        height: 300px;
    }

    .gallery-feature-small {
        height: 165px;
    }
}

@media (max-width: 767px) {
    .gallery-feature-large {
        height: 240px;
    }

    .gallery-feature-small {
        height: 150px;
    }
}

/*** Service End ***/

/*** Team Start ***/
.team .row {
    display: flex;
    flex-wrap: wrap;
}

.team .row>[class*='col-'] {
    display: flex;
    flex-direction: column;
}

.team .team-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: -100%;
    z-index: 9;
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
    right: 25px;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(246, 138, 10, .2);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-content {
    transition: 0.5s;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    margin-bottom: 0.5rem;
}

.team .team-item .team-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

.facebook-feed-container {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook-feed-container .fb-page {
    width: 100% !important;
    min-height: 400px;
}

.facebook-feed-container iframe {
    width: 100% !important;
    border: none;
    min-height: 400px;
}

@media (max-width: 991px) {
    .facebook-feed-container {
        min-height: 350px;
    }

    .facebook-feed-container .fb-page {
        min-height: 350px;
    }

    .facebook-feed-container iframe {
        min-height: 350px;
    }
}

.team .team-item:hover .team-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

/*** Team End ***/

/** About Gradient Background **/
.about-gradient {
    position: relative;
    background: radial-gradient(500px at 22% 42%, rgb(255 175 135 / 26%) 0%, rgb(255 232 219 / 60%) 35%, rgba(255, 215, 190, 0.10) 60%, transparent 78%), radial-gradient(420px at 78% 48%, rgba(255, 195, 160, 0.26) 0%, rgba(255, 210, 185, 0.16) 38%, rgba(255, 225, 205, 0.08) 62%, #00000000 82%), #fffdf9;
    /* background:radial-gradient(500px at 22% 42%, rgb(255 175 135 / 26%) 0%, rgb(255 195 160 / 60%) 35%, rgba(255, 215, 190, 0.10) 60%, transparent 78%), radial-gradient(420px at 78% 48%, rgba(255, 195, 160, 0.26) 0%, rgba(255, 210, 185, 0.16) 38%, rgba(255, 225, 205, 0.08) 62%, #00000000 82%), #fffdf9; */
    overflow: hidden;
}

@media (max-width: 767px) {
    .about-gradient {
        background: radial-gradient(500px at 22% 42%, rgb(255 175 135 / 26%) 0%, rgb(255 232 219 / 60%) 35%, rgba(255, 215, 190, 0.10) 60%, transparent 78%), radial-gradient(420px at 78% 48%, rgba(255, 195, 160, 0.26) 0%, rgba(255, 210, 185, 0.16) 38%, rgba(255, 225, 205, 0.08) 62%, #00000000 82%), #fffdf9;
        /* background:
            radial-gradient(620px at 20% 38%, rgba(255, 175, 135, 0.32) 0%, rgba(255, 195, 160, 0.20) 35%, rgba(255, 215, 190, 0.10) 60%, transparent 78%),
            radial-gradient(320px at 78% 52%, rgba(255, 195, 160, 0.26) 0%, rgba(255, 210, 185, 0.16) 38%, rgba(255, 225, 205, 0.08) 62%, transparent 82%),
            #fffdf9; */
    }
}

/*** Testimonial Start ***/
.event .event-item {
    display: flex;
    flex-direction: column;
    max-height: 530px;
    height: 100%;
}

.event .event-item img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.event .event-item .event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Testimonial Equal Height Cards */
.testimonial-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonial-carousel .owl-item {
    display: flex;
    height: auto !important;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    /* height: 100%; */
    width: 100%;
}

.testimonial .testimonial-item .customer-text {
    border: 1px solid var(--bs-primary);
    border-top: none;
    flex-grow: 1;
}
.testimonial .testimonial-item {
    border: 1px solid var(--bs-primary);
    border-top: none;
    flex-grow: 1;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    color: var(--bs-dark);
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-white);
    flex-shrink: 0;
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px;
    height: 100px;
    border: 2px solid var(--bs-primary);
}

/* .testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
} */

.philosophy-gradient {
    position: relative;
    background:
        radial-gradient(720px at 30% 50%, rgba(255, 143, 67, 0.18) 0%, rgba(255, 143, 67, 0.10) 35%, rgba(255, 143, 67, 0.04) 60%, transparent 78%),
        radial-gradient(680px at 72% 52%, rgba(33, 155, 140, 0.20) 0%, rgba(33, 155, 140, 0.12) 36%, rgba(33, 155, 140, 0.05) 60%, transparent 78%),
        linear-gradient(135deg, #0f172b 0%, #1d293d 50%, #0f172b 100%);
    overflow: hidden;
}

@media (max-width: 767px) {
    .philosophy-gradient {
        background:
            radial-gradient(520px at 25% 48%, rgba(255, 143, 67, 0.20) 0%, rgba(255, 143, 67, 0.12) 36%, rgba(255, 143, 67, 0.05) 60%, transparent 80%),
            radial-gradient(460px at 75% 52%, rgba(33, 155, 140, 0.22) 0%, rgba(33, 155, 140, 0.12) 38%, rgba(33, 155, 140, 0.05) 60%, transparent 80%),
            linear-gradient(135deg, #0f172b 0%, #1d293d 50%, #0f172b 100%);
    }
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

@media (max-width: 991px) {
    .testimonial-carousel .owl-dots .owl-dot {
        margin: 0 10px 0 10px;
    }
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer-hero {
    position: relative;
    background: url('/assets/img/footer-bg.jpg') center center / cover no-repeat;
}

.footer-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 0;
}

.footer-hero .container {
    position: relative;
    z-index: 1;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/

/*** Activity Section Start ***/
.activity-section {
    position: relative;
    background-image: url('/assets/img/banner-1.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 30, 0.75) 25%, rgba(30, 30, 40, 0.8) 50%, rgba(20, 20, 30, 0.75) 75%, rgba(0, 0, 0, 0.85) 100%);
    background-blend-mode: multiply;
    z-index: 1;
}

.activity-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
    opacity: 0.8;
}

.activity-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 30, 0.75) 25%, rgb(122 122 125 / 43%) 50%, rgba(20, 20, 30, 0.75) 75%, rgba(0, 0, 0, 0.85) 100%);
    opacity: 0.6;
}

.activity-section .container-sm{
    z-index: 2;
}

.activity-inner {
    border-radius: 0;
    position: relative;
    background: transparent !important;
}

.activity-card {
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: transparent !important;
}

.activity-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important; */
}

.activity-icon {
    text-align: center;
}

.activity-card h4 {
    color: #fff;
    font-weight: 600;
}

.activity-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.activity-inner h1,
.activity-inner h4,
.activity-inner p {
    color: #fff;
}

@media (max-width: 991px) {
    .activity-section {
        background-attachment: scroll;
        min-height: auto;
    }

    .activity-inner {
        padding: 30px !important;
    }
}

@media (max-width: 767px) {
    .activity-inner {
        padding: 20px !important;
    }

    .activity-card {
        margin-bottom: 20px;
    }
}

/*** Activity Section End ***/
/*** Upcoming Events Start ***/
    .section-title {
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: 30px;
        color: #000;
    }

    .event-card {
        border: none;
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease;
        height: 100%;
    }

    .event-card:hover {
        transform: translateY(-5px);
    }

    .event-card img {
        height: 180px;
        object-fit: cover;
        width: 100%;
    }

    .event-card-body {
        padding: 20px;
    }

    .event-date {
        font-size: 0.85rem;
        color: #888;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
    }

    .event-date i {
        margin-right: 8px;
    }

    .event-title {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #111;
    }

    .event-text {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .events-section {
        background-color: #fcfcfc;
        border-radius: 15px;
    }

    .event-details-about {
        background: #fff;
        padding: 40px;
        border-radius: 12px;
    }

    .text-muted-custom {
        color: #6c757d;
        line-height: 1.6;
    }

    .registration-card {
        background-color: #fffaf0;
        border: none;
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        padding: 25px;
        top: 20px;
    }

    .progress {
        height: 10px;
        background-color: #e9ecef;
    }

    .progress-bar {
        background-color: #f39200;
    }

    .reg-info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .reg-info-item i {
        color: #f39200;
        margin-right: 15px;
        margin-top: 4px;
    }

    .btn-register {
        background-color: #f39200;
        color: white;
        font-weight: bold;
        border-radius: 8px;
        padding: 12px;
        width: 100%;
        border: none;
        transition: 0.3s;
    }

    .btn-register:hover {
        background-color: #d68100;
        color: white;
    }

    .action-buttons .btn-outline-secondary {
        border-color: #dee2e6;
        color: #666;
    }

    .speaker-card {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 15px;
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        border: 1px solid #f1f1f1;
    }

    .speaker-img {
        width: 60px;
        height: 60px;
        border-radius: 10px;
        object-fit: cover;
        margin-right: 15px;
    }

    .speaker-info h6 {
        margin: 0;
        font-weight: bold;
    }

    .speaker-info p {
        margin: 0;
        font-size: 0.85rem;
        color: #777;
    }

    .agenda-header {
        font-size: 28px;
        font-weight: 700;
        color: #000;
        margin-bottom: 30px;
    }

    .agenda-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .agenda-item {
        position: relative;
        padding: 15px 0 15px 30px;
        border-bottom: 1px solid #edf0f2;
    }

    .agenda-item:last-child {
        border-bottom: none;
    }

    .agenda-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 26px;
        width: 10px;
        height: 10px;
        background-color: #f39c12;
        border-radius: 50%;
    }

    .agenda-time {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #f39c12;
        margin-bottom: 4px;
        text-transform: uppercase;
    }

    .agenda-desc {
        display: block;
        font-size: 16px;
        color: #333;
        font-weight: 400;
    }

    .location-card {
        background: #f8f8f8;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        margin-top: 30px;
    }

    .btn-map {
        border: 1px solid #f39200;
        color: #f39200;
        width: 100%;
        border-radius: 8px;
        margin-top: 15px;
    }

    .custom-event-details-banner {
        position: relative;
        background: url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=2070') no-repeat center center;
        background-size: cover;
        min-height: 400px;
        display: flex;
        align-items: flex-end;
        color: #ffffff;
    }

    .custom-event-details-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .custom-event-details-banner .container {
        position: relative;
        z-index: 2;
    }
    .custom-press-details-banner {
        position: relative;
        background: url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=2070') no-repeat center center;
        background-size: cover;
        min-height: 400px;
        display: flex;
        align-items: flex-end;
        color: #ffffff;
    }

    .custom-press-details-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .custom-press-details-banner .container {
        position: relative;
        z-index: 2;
    }

    .back-btn {
        position: absolute;
        color: white;
        text-decoration: none;
        font-size: 0.9rem;
        z-index: 3;
    }

    .badge-tag {
        background-color: #f7941d;
        color: white;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        margin-right: 8px;
        text-transform: capitalize;
    }

    .event-info-icon {
        color: #f7941d;
        margin-right: 8px;
    }
/*** Upcoming Events End ***/
/*** Press Details Start ***/
    /* Dark background container */
    .continue-reading-section {
        background: radial-gradient(circle at center, #1a2a3a 0%, #0d131a 100%);
        padding: 80px 0;
        color: white;
        font-family: 'Inter', sans-serif;
    }

    .section-header h2 {
        font-weight: 800;
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .section-header p {
        opacity: 0.7;
        font-size: 1.1rem;
        margin-bottom: 50px;
    }

    /* Card Styling */
    .press-card {
        background-color: #1e2731;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        overflow: hidden;
        height: 100%;
        transition: transform 0.3s ease;
    }

    .press-card:hover {
        transform: translateY(-10px);
    }

    .card-img-wrapper {
        position: relative;
        height: 220px;
    }

    .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Floating Badge */
    .category-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: white;
        color: black;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
    }

    .press-card-body {
        padding: 25px;
    }

    .press-date {
        font-size: 0.85rem;
        color: #aaa;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
    }

    .press-date i {
        margin-right: 8px;
    }

    .press-card-title {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 15px;
        color: #fff;
    }

    .press-card-excerpt {
        font-size: 0.95rem;
        color: #ccc;
        opacity: 0.8;
        margin-bottom: 25px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Read Article Button */
    .read-link {
        color: #f39c12;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        transition: 0.2s;
    }

    .read-link:hover {
        color: #ffb33b;
    }

    .read-link i {
        margin-left: 8px;
        font-size: 0.8rem;
    }

    .author-container {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }

    .avatar-circle {
        width: 48px;
        height: 48px;
        background-color: #ff5e00;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.1rem;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .author-meta {
        display: flex;
        flex-direction: column;
    }

    .author-name {
        font-weight: 700;
        font-size: 1.1rem;
        margin: 0;
    }

    .author-title {
        font-size: 0.9rem;
        opacity: 0.8;
        margin: 0;
    }

    .post-details {
        display: flex;
        align-items: center;
        margin-left: 20px;
        padding-left: 20px;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        font-size: 0.9rem;
        opacity: 0.9;
    }

    .post-details span {
        margin-right: 20px;
    }

    .post-details i {
        margin-right: 8px;
    }

    .hero-description {
        font-size: 1.25rem;
        line-height: 1.25;
        max-width: 900px;
        font-weight: 400;
        margin: 0;
    }

    /* Mobile adjustment */
    @media (max-width: 768px) {
        .author-container {
            flex-wrap: wrap;
        }

        .post-details {
            border-left: none;
            padding-left: 0;
            margin-left: 0;
            margin-top: 10px;
            width: 100%;
        }
    }

    .intro-text {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }

    /* Orange Quote Card */
    .quote-card {
        background-color: #ff5e00;
        color: white;
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(255, 94, 0, 0.2);
        top: 20px;
        margin-bottom: 30px;
    }

    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        opacity: 0.9;
    }

    .quote-text {
        font-size: 1.25rem;
        font-weight: 600;
        line-height: 1.4;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .quote-author {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    /* Share Box */
    .share-box {
        background: white;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .share-title {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .btn-social {
        font-size: 0.85rem;
        font-weight: 600;
        padding: 10px 15px;
        border-radius: 8px;
        color: #d77b04 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
    }

    .btn-fb {
        background-color: #1877f2;
    }

    .btn-tw {
        background-color: #1da1f2;
    }

    .btn-li {
        background-color: #0a66c2;
    }

    .btn-email {
        background-color: #3b4554;
        width: 100%;
        margin-top: 10px;
    }

    .btn-social i {
        margin-right: 8px;
    }
/*** Press Details End ***/
