#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: 44px;
    height: 44px;
}

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

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

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

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

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

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

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

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

.btn.btn-madrass {
    background-color: #0d6efd;
    color: var(--bs-white);
    border: none;
}
.btn.btn-madrass:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/*** Topbar Start ***/
.topbar {
    background: #FCF7F2;
}
.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);
}

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

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


/*** Navbar Start ***/
.nav-bar {
    background: #FCF7F2;
    transition: 1s;
}

.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 .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
    white-space: nowrap;
}

.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: 20px;
        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;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .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: 8px;
}

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

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

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 1px solid;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 25px;
        background: var(--bs-light);
        border-color: #c3c3c3;
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    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: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    /* box-shadow: inset 0 0 100px 0 var(--bs-secondary); */
    background: var(--bs-dark);
    color: var(--bs-white);
}

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

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

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}

.calrousel-img img{
	border-radius: 10px;
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

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

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item img{
	border-radius: 10px;
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

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

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

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

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

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

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

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-body);
    background: var(--bs-light);
    font-size: 18px;
}

/* .faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
} */
/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border: 1px solid #dee2e6;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

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

.blog .blog-item .blog-img .blog-category {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.h4 {
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--bs-dark);
    line-height: 1.2;
    min-height: calc(1.2em * 4);
}

.blog .blog-item .blog-content a:hover {
    color: var(--bs-primary);
}

.blog .blog-item .blog-content.blog-primary {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    color: var(--bs-white);
}

.blog .blog-item .blog-content.blog-primary a {
    color: var(--bs-white);
}

.blog .blog-item:hover .blog-content.blog-primary a:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/

.blog-img-fallback {
    height: 250px;
    background-color: #f8f9fa;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-fallback img {
    max-width: 80%;
    max-height: 150px;
    height: auto;
    object-fit: contain;
    opacity: 0.6;
}


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.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::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

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

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


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

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/


/*** Footer Start ***/

.bg-footer {
    background-color: #463F3A;
}

.bg-gradient-putego {
    background-image: linear-gradient(239deg, rgba(128, 0, 128, 0.08), rgba(34, 193, 195, 0.07) 50%, rgba(253, 187, 45, 0.07));

}

.bg-gradient-banner {
/* background-image: linear-gradient(135deg, rgba(32, 32, 72, 0.9), rgba(72, 16, 96, 0.85) 50%, rgba(255, 94, 0, 0.8)); */
background-image: linear-gradient(300deg, rgba(255, 255, 255, 0.9), rgba(255, 94, 0, 0.8));
}

.bg-gradient-skyline {
    background-image: linear-gradient(160deg, rgba(0, 108, 255, 0.9), rgba(0, 200, 150, 0.85) 50%, rgba(255, 220, 0, 0.8));
}

.footer {
    color: #FFF4EC;
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

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

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

.footer .footer-item a:not(.btn) {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.25;
    padding: 6px 0;
    white-space: normal;
    text-align: left;
}

.footer .footer-item a:not(.btn) i {
    flex: 0 0 18px; /* fixed icon column so text aligns */
    width: 18px;
    margin-top: 2px;
}

@media (max-width: 767px) {
    /* Bootstrap `ps-5` makes footer columns too narrow on mobile */
    .footer .ps-5 {
        padding-left: 0 !important;
    }
}

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

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

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

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


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    /* background-image: linear-gradient(239deg, rgba(253, 187, 45, 0.07) , rgba(34, 193, 195, 0.07) 50%,rgba(128, 0, 128, 0.08)); */
    background-color: #463F3A;
    border-top: 1px solid var(--bs-secondary);
    color: #FFF4EC;
}
.copyright a{
	/* color: rgb(22, 36, 61); */
    color: var(--bs-white);
    transition: 0.5s;
}
/*** copyright end ***/


/** Navtab Start **/
.nav-tabs .nav-link {
    font-weight: 600;
    color: var(--bs-secondary);
    border-radius: 0;
}

.nav-tabs .nav-link.active {
    color: var(--bs-body);
    background: var(--bs-light);
    border-radius: 10px;
    border-radius: 0;
}

.nav-tabs .nav-link:hover {
    background-color: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.3s;
}
/*** Navtab End ***/

/*** Pemrakarsa Start ***/
.pemrakarsa-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.pemrakarsa .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.pemrakarsa .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.pemrakarsa .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.pemrakarsa .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Pemrakarsa End ***/

/*** Youtube Playlist Start ***/
.youtube_playlist .playlist-item {
    cursor: pointer;
    transition: background 0.3s;
}
.youtube_playlist .playlist-item:hover {
    background-color: #f0f0f0;
}
.youtube_playlist .playlist-thumb {
    width: 100px;
    height: auto;
}
.youtube_playlist .playlist-title {
    font-size: 0.9rem;
    margin-left: 10px;
}
.youtube_playlist .list-group-item {
    border: none !important;
    padding: 0.5rem 0;
}

.youtube_playlist .list-group-item:hover {
    background-color: var(--bs-light);
}

.youtube_playlist .list-group,
.youtube_playlist .list-group-item {
    border-radius: 0;
}

.youtube_playlist .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.youtube_playlist .list-group-item:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
/*** Youtube Playlist End ***/

/*** page detail start ***/
.page-detail-section table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    color: #212529;
}

.page-detail-section table th,
.page-detail-section table td {
    padding: 0.75rem;
    vertical-align: top;
    border: 1px solid #dee2e6;
}

.page-detail-section table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    background-color: #f8f9fa;
    font-weight: bold;
}

.page-detail-section table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.page-detail-section table tbody tr:hover {
    background-color: #f1f1f1;
}

.page-detail-section table tbody tr:nth-child(odd) {
    background-color: #fff;
}
.page-detail-section table p {
    margin: 0;
    padding: 0;
}
/*** page detail end ***/

/*** list videos Start ***/
.list-videos .playlist-item {
    cursor: pointer;
    transition: background 0.3s;
}
.list-videos .playlist-item:hover {
    background-color: #fff;
}
.list-videos .playlist-thumb {
    width: 100px;
    height: auto;
}
.list-videos .playlist-title {
    font-size: 0.9rem;
    margin-left: 10px;
}
.list-videos .list-group-item {
    padding: 0.35rem 0.75rem;
}

.list-videos .list-group-item:hover {
    background-color: var(--bs-light);
}

.list-videos .list-group,
.list-videos .list-group-item {
    border-radius: 0;
}

.list-videos .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.list-videos .list-group-item:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
/*** list videos End ***/

/*** Instagram Feed (list videos block) Start ***/
.list-videos .list-videos__header .h5 {
    letter-spacing: 0.2px;
}

@media (min-width: 992px) {
    .list-videos .list-videos__video-card {
        position: sticky;
        top: 92px; /* below navbar */
        align-self: start;
    }
}

.list-videos #video-playlist {
    max-height: 260px;
    padding-right: 4px;
}

@media (min-width: 992px) {
    .list-videos #video-playlist {
        max-height: 340px;
    }
}

.list-videos #video-playlist::-webkit-scrollbar {
    width: 8px;
}

.list-videos #video-playlist::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 10px;
}

.list-videos #video-playlist:focus-within {
    outline: none;
}

.list-videos .playlist-item {
    border-radius: 10px;
}

.list-videos .playlist-item:focus-visible {
    outline: 2px solid rgba(13, 110, 253, 0.35);
    outline-offset: 2px;
}

.list-videos .playlist-thumb {
    border-radius: 8px;
    flex: 0 0 auto;
    width: 80px;
    height: 48px;
    object-fit: cover;
    background: #f3f4f6;
}

.list-videos .playlist-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Playlist container card styling */
.list-videos .playlist-container {
    padding: 0.35rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.list-videos #video-playlist {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.list-videos .list-group-item {
    background-color: transparent;
    border: 0 !important;
}

.list-videos .list-group-item + .list-group-item {
    border-top: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.list-videos #instagram-feed {
    min-height: 120px;
}

.list-videos .instagram-feed-grid {
    display: grid;
    /* Auto-fit tiles based on available width (works well on homepage column layouts). */
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.5rem;
}

@media (min-width: 576px) {
    .list-videos .instagram-feed-grid {
        grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    }
}

@media (min-width: 992px) {
    .list-videos .instagram-feed-grid {
        grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    }
}

.list-videos .instagram-tile {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background: #f3f4f6;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04) inset;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.list-videos .instagram-tile:hover,
.list-videos .instagram-tile:focus-visible {
    transform: translateY(-1px);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(13, 110, 253, 0.25) inset;
    outline: none;
}

.list-videos .instagram-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.001);
}

.list-videos .instagram-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.18));
    opacity: 0;
    transition: opacity 0.18s ease;
}

.list-videos .instagram-tile:hover .instagram-overlay,
.list-videos .instagram-tile:focus-visible .instagram-overlay {
    opacity: 1;
}

.list-videos .instagram-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 0.75rem;
    line-height: 1;
    padding: 6px 8px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
}

.list-videos .instagram-tile--skeleton {
    background: linear-gradient(90deg, #f3f4f6 0%, #e9edf2 35%, #f3f4f6 70%);
    background-size: 200% 100%;
    animation: instagram-skeleton 1.1s ease-in-out infinite;
}

@keyframes instagram-skeleton {
    0% { background-position: 0% 0%; }
    100% { background-position: -200% 0%; }
}

.list-videos .instagram-feed-empty {
    padding: 0.75rem 0.5rem;
}
/*** Instagram Feed (list videos block) End ***/

/*** submenu ***/
@media all and (min-width: 992px) {
    .dropdown-submenu .submenu{
        display: none;
        position: absolute;
        left:100%; top:-7px;
        background: var(--bs-light);
        border-radius: 10px;
        border-color: #c3c3c3;
        border: 1px solid rgba(0,0,0,.15);
    }
}
/* submenu end */
