
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    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-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    background-color: white;
}

.btn-primary-outline-0 {
    border: 0;
    color: var(--bs-white) !important;
}

.btn-light-outline-0 {
    border: 0;
    color: var(--bs-primary) !important;
}

.btn-primary-outline-0:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.btn-light-outline-0:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.sticky-top {
    transition: 0.5s;
    background: var(--bs-white);
}

.topbar {
    padding: 10px 0;
    background: var(--bs-secondary) !important;
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

@media (min-width: 1200px) {
    .navbar .navbar-collapse .border-top {
        border-top: none !important;
    }
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, .6);
}
/*** Navbar End ***/

/*** Carousel Start ***/
.carousel-item {
    position: relative;
    min-height: 100vh
    
}

.carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 380px;
    }
    
    .carousel-item img {
        object-fit: contain;
    }
}

.carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, 0.5)); */
    background-size: cover;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
}

.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
    background: transparent;
}

#carouselId .carousel-indicators {
    padding-bottom: 30px;
}

#carouselId .carousel-indicators li {
    border-top: 10px solid var(--bs-white);
    border-bottom: 10px solid var(--bs-white);
    border-right: 5px solid var(--bs-white);
    border-left: 5px solid var(--bs-white);
    margin-right: 10px;
    border-radius: 10px;
    transition: 0.5s;
}

#carouselId .carousel-indicators li.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    border-right: 15px solid var(--bs-primary);
    border-left: 15px solid var(--bs-primary);
}
/*** Carousel End ***/


.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}





/*** About Start ***/
/*** Youtube Video start ***/
.video {
    position: relative;
    padding-right: 70px; 
    padding-bottom: 70px;
    border-radius: 10px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    margin-left: -35px;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** About End ***/


/*** Appointment  Start ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.appointment .appointment-form {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4));
    object-fit: cover;
    border-radius: 10px;
}

.appointment .appointment-time {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, .2));
    object-fit: cover;
    border-radius: 10px;
}
/*** Appointment End ***/

/*** Counter Start ***/
.counter-section .counter-item .counter-content {
    position: relative;
    margin-bottom: 60px;
    background-image: linear-gradient(rgba(252, 152, 195, 0.3), rgba(255, 255, 255, 0.3), rgba(136, 76, 210, 0.3));
    border-radius: 10px;
    z-index: 9;
}

.counter-section .counter-item {
    text-align: center;
    background: rgba(255, 255, 255, .5) !important;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    object-fit: cover;
    border-radius: 0 25% 0 25%;
}

.counter-section .counter-item .counter-content .svg-img {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    margin-bottom: -50px; 
    margin-left: -45px; 
    transform: rotate(180deg);
}

.counter-section .counter-item .counter-quantity {
    width: 110px;
    height: 110px;
    border-radius: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
}
/*** Counter End ***/


/*** Events Start ***/
.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.gallery .gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-img img {
    transition: 0.5s;
}

.gallery .gallery-img:hover img {
    transform: scale(1.3);
}

.gallery .gallery-img .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.gallery .gallery-img .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 2;
    
}

.gallery .gallery-img:hover .gallery-overlay,
.gallery .gallery-img:hover .search-icon {
    opacity: 1;
}
/*** Events End ***/


/*** Pricing Start ***/
.pricing {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pricing .pricing-item {
    color: var(--bs-white);
}

.pricing .pricing-item .pricing-content {
    background: rgba(255, 255, 255, 0.4);
}

.pricing .owl-carousel.pricing-carousel {
    position: relative;
}

.pricing .owl-carousel.pricing-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);

}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev:hover,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** Pricing End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.team .team-item .team-text {
    background: var(--bs-primary);
}

.team .team-item .team-social {
    position: absolute;
    top: -180px; 
    left: 20px; 
    opacity: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-social {
    top: 20px; 
    left: 20px;
    opacity: 1;
}

.team .team-item .team-img {
    position: relative;
    width: 100%;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.team .team-item:hover .team-img::after {
    bottom: 0;
    height: 100%;
}

.team .team-item .team-text {
    transition: 0.5s;
}

.team .team-item:hover .team-text {
    background: var(--bs-secondary);
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial {
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/testimonial-bg.jpg); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .testimonial-item {
    background: rgba(0, 0, 0, 0.4);
}

.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}

/*** Contact Start ***/

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}

.map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.contact .contact-form {
    background: rgba(139, 138, 138, 0.6);
}

@media (max-width: 991px) {
    .contact .col-lg-6 {
        margin-bottom: 30px;
    }
    
    .map-container {
        padding-bottom: 60%;
    }
}

@media (max-width: 576px) {
    .map-container {
        padding-bottom: 55%;
    }
}

/*** Contact End ***/

/*** footer start ***/
.footer {
    background: #716c76;
}

.footer .footer-item a,
.footer .footer-item p {
    color: var(--bs-white);
    line-height: 40px;
    font-size: 17px;
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #716c76 !important;
}
/*** copyright end ***/

/*** Fixed Contact Buttons Start ***/
.fixed-contact-btn {
    display: flex;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 97;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.fixed-contact-btn .contact-btn-left,
.fixed-contact-btn .contact-btn-right {
    display: flex;
    gap: 12px;
    pointer-events: auto;
}

.contact-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phone-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.instagram-btn {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(224, 148, 51, 0.4);
}

.contact-btn:active {
    transform: scale(0.95);
}

@media (min-width: 769px) {
    .fixed-contact-btn {
        display: none !important;
    }
}
/*** Fixed Contact Buttons End ***/

/*** Appointment Modal Start ***/
.modal-content {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.1) !important;
}

.modal-header {
 background: linear-gradient(135deg, #a09aa5 0%, #716c76 100%);
    color: white;
    /* border-radius: 15px 15px 0 0 !important; */
    padding: 25px !important;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
}

.btn-close-custom {
    background-color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.btn-close-custom:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px !important;
}

.form-label {
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control {
    border-width: 2px;
    border-color: #e0e0e0;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-control::placeholder {
    color: #999;
}

.modal-body .btn-primary {
    font-size: 16px;
    letter-spacing: 0.5px;
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-header {
        padding: 20px !important;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px !important;
    }
}
/*** Appointment Modal End ***/

/* blogs */

        /* Blog Page Styles */
        .blog-header {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(img/appointment-background.jpg);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            padding: 6rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }

        .blog-header h1 {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .blog-header p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        /* Blog Card */
        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .blog-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-image {
            transform: scale(1.05);
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-date {
            color: var(--bs-primary);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .blog-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .blog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        .blog-author {
            font-size: 0.9rem;
            color: #999;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .read-more-btn {
            display: inline-block;
            padding: 0.6rem 1.2rem;
            background: var(--bs-primary);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            background: var(--bs-secondary);
            color: white;
            text-decoration: none;
        }

        .blog-category {
            display: inline-block;
            background: rgba(102, 126, 234, 0.1);
            color: var(--bs-primary);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }

        /* Sidebar */
        .blog-sidebar {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: fit-content;
        }

        .sidebar-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .search-form {
            margin-bottom: 2rem;
        }

        .search-form input {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-size: 0.95rem;
        }

        .search-form input:focus {
            border-color: var(--bs-primary);
            outline: none;
        }

        .categories-list {
            list-style: none;
            padding: 0;
        }

        .categories-list li {
            padding: 0.7rem 0;
            border-bottom: 1px solid #eee;
        }

        .categories-list a {
            color: #666;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .categories-list a:hover {
            color: var(--bs-primary);
            padding-left: 0.5rem;
        }

        .category-count {
            background: var(--bs-primary);
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 3px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .recent-posts {
            list-style: none;
            padding: 0;
        }

        .recent-posts li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
        }

        .recent-posts a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: block;
        }

        .recent-posts a:hover {
            color: var(--bs-primary);
        }

        .post-date {
            font-size: 0.85rem;
            color: #999;
            margin-top: 0.3rem;
        }

        @media (max-width: 768px) {
            .blog-header h1 {
                font-size: 2rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }
        }
   


        /* blogs details */
         /* Blog Details Styles */
        .blog-detail-header {
       background: linear-gradient(135deg, #a8aab2 0%, #716c76 100%);
            padding: 5rem 2rem;
            margin-bottom: 3rem;
        }

        .blog-category-badge {
            display: inline-block;
            background: #ffc107;
            color: #333;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .blog-detail-header h1 {
            font-size: 2.8rem;
            color: white;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .blog-meta {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Article Content */
        .article-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .article-content {
            background: white;
            /* padding: 2rem; */
            border-radius: 10px;
            /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
        }

        .featured-image {
            width: 100%;
            max-height: 400px;
            /* object-fit: cover; */
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        .article-body {
            color: #333;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .article-body h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .article-body h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            color: #555;
        }

        .article-body p {
            margin-bottom: 1.2rem;
        }

        .article-body ul,
        .article-body ol {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }

        .article-body ul li,
        .article-body ol li {
            margin-bottom: 0.8rem;
        }

        .article-body strong {
            font-weight: 700;
            color: #222;
        }

        .article-body em {
            font-style: italic;
            color: #666;
        }

        .article-highlight {
            background: rgba(102, 126, 234, 0.1);
            border-left: 4px solid var(--bs-primary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 5px;
        }

        .article-highlight strong {
            color: var(--bs-primary);
        }

        /* Tags and Share */
        .article-footer {
            border-top: 2px solid #eee;
            padding-top: 2rem;
            margin-top: 2rem;
        }

        .tags {
            margin-bottom: 1.5rem;
        }

        .tags h5 {
            margin-bottom: 1rem;
            font-weight: 700;
            color: #333;
        }

        .tag {
            display: inline-block;
            background: rgba(102, 126, 234, 0.1);
            color: var(--bs-primary);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: var(--bs-primary);
            color: white;
        }

        .share-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .share-facebook {
            background: #3b5998;
        }

        .share-facebook:hover {
            background: #2d4373;
        }

        .share-twitter {
            background: #1da1f2;
        }

        .share-twitter:hover {
            background: #1a8cd8;
        }

        .share-linkedin {
            background: #0077b5;
        }

        .share-linkedin:hover {
            background: #005885;
        }

        .share-whatsapp {
            background: #25d366;
        }

        .share-whatsapp:hover {
            background: #1fae4f;
        }

        /* Sidebar */
        .article-sidebar {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: fit-content;
            position: sticky;
            top: 20px;
        }

        .sidebar-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .author-box {
            text-align: center;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            margin-bottom: 1.5rem;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
        }

        .author-name {
            font-weight: 700;
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 0.3rem;
        }

        .author-title {
            font-size: 0.9rem;
            color: #999;
        }

        .author-bio {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
            margin-top: 1rem;
        }

        /* Related Posts */
        .related-posts {
            list-style: none;
            padding: 0;
        }

        .related-posts li {
            padding: 1rem;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }

        .related-posts li:last-child {
            border-bottom: none;
        }

        .related-posts li:hover {
            background: rgba(102, 126, 234, 0.05);
            padding-left: 1.5rem;
        }

        .related-posts a {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .related-posts a:hover {
            color: var(--bs-primary);
        }

        .related-date {
            font-size: 0.8rem;
            color: #999;
            margin-top: 0.3rem;
        }

        /* Navigation */
        .post-navigation {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .nav-post {
            padding: 1.5rem;
            border-radius: 10px;
            background: #f8f9ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .nav-post:hover {
            background: rgba(102, 126, 234, 0.2);
        }

        .nav-label {
            font-size: 0.85rem;
            color: #999;
            margin-bottom: 0.5rem;
            display: block;
        }

        .nav-title {
            color: #333;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .nav-post:hover .nav-title {
            color: var(--bs-primary);
        }

        .nav-prev .nav-label::before {
            content: "← ";
        }

        .nav-next {
            text-align: right;
        }

        .nav-next .nav-label::after {
            content: " →";
        }

        /* Comments Section */
        .comments-section {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-top: 3rem;
        }

        .comments-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #333;
        }

        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-family: inherit;
        }

        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: var(--bs-primary);
            outline: none;
        }

        .comment-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-comment {
            background: var(--bs-primary);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-comment:hover {
            background: var(--bs-secondary);
        }

        @media (max-width: 768px) {
            .article-container {
                grid-template-columns: 1fr;
            }

            .blog-detail-header h1 {
                font-size: 1.8rem;
            }

            .blog-meta {
                gap: 1rem;
                flex-direction: column;
            }

            .post-navigation {
                grid-template-columns: 1fr;
            }

            .article-sidebar {
                position: relative;
                top: auto;
            }
        }

        
.reel-wrapper {
  display: flex;
  gap: 12px;
 justify-content: center;
}

.reel-box {
  width: 257px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}

.reel-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 40px;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

/* BOX */
.ba-box {
  background: #fff;
  padding: 12px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* IMAGE WRAP */
.img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
}

.img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* AFTER IMAGE */
.after {
  clip-path: inset(0 50% 0 0);
}

/* DIVIDER LINE */
.divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #c89b3c;
  transform: translateX(-50%);
  pointer-events: none;
}

/* HANDLE */
.handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #c89b3c;
  color: #fff;
  font-size: 14px;
  padding: 8px;
  border-radius: 50%;
}

/* RANGE */
.ba-box input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}