/* Duplicate list reset removed — list styles are already normalized earlier in the file */

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 635px;
    text-align: center;
    padding: 3rem;
    display: flex;
    justify-content: center;
    overflow: hidden;

    /* important fix */
    display: block;
    color: inherit;
    text-decoration: none;
}

/* Remove default <a> tag behavior */
.hero-section:hover,
.hero-section:focus,
.hero-section:active {
    text-decoration: none;
    color: inherit;
}

/* Overlay effect */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.137), rgba(0, 0, 0, 0.027));
    z-index: 1;
}

/* Text area */
.img-content {
    position: relative;
    z-index: 2;
    color: gray;
    text-align: center;
    max-width: 700px;
    margin: auto;
}

/* Headings */
.img-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
}

.img-content p {
    font-size: 16px;
    color: #000000d9;
}

.img-content .tagline {
    font-size: 12px;
    color: #00000073;
}

/* Link Box */
.link-box {
    display: inline-flex;
    align-items: center;
    color: #000000d9;
    text-decoration: none;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.link-box .text {
    font-size: 16px;
    line-height: 24px;
}

.link-box .icon {
    margin-left: 5px;
    font-size: 16px;
    line-height: 24px;
}

.link-box:hover .text {
    text-decoration: underline;
    color: #000000d9;
}

.link-box:hover .icon {
    color: #000000d9;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-section {
        width: 100%;
        min-height: 500px;
        padding: 2rem;
    }

    .img-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        padding: 1.5rem;
    }

    .img-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 320px;
        padding: 1rem;
    }

    .img-content h3 {
        font-size: 1.4rem;
    }

    .link-box {
        margin: 0 10px;
        font-size: 0.9rem;
    }
}




.video-slider-section {
    padding: 40px 0;
    background: #fff;
}

.video-slide {
    position: relative;
    overflow: hidden;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
}

.video-info h3 {
    margin: 5px 0;
    font-size: 1.3rem;
    color: #fff;
}

.video-info .actions a {
    margin-right: 10px;
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}



.stories-module-item {
    width: 100%;
    max-width: 635px;
    aspect-ratio: 603 / 590;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}


.stories-module-text {
    position: absolute;
    top: 48px;
    width: 100%;
    padding: 0 48px;
    text-align: center;
}

.stories-module-item a.banner-link {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
    width: 100%;
    z-index: 300;
    cursor: pointer;
}

.stories-module-item .stories-module-text .eyebrow-text {
    font-size: 16px;
    line-height: 20px;
    color: rgba(0, 0, 0, .45);
}

.stories-module-item .stories-module-text .headline {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    color: rgba(0, 0, 0, .85);
}

.stories-module-item .stories-module-text .link-box {
    position: relative;
    z-index: 400;
    text-align: center;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    transition: all .3s ease;
    cursor: pointer;
}

.stories-module-item .stories-module-text .link-box .text {
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, .85);
}

.stories-module-item .stories-module-text .link-box .icon {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: rgba(0, 0, 0, .85);
}

.title {
    font-size: 40px;
    line-height: 44px;
    font-weight: 500;
    color: rgba(0, 0, 0, .85);
    text-align: center;
}

/* production and video */
.child-module-list {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.child-module-list .child-module-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.child-module-list .grid-compact {
    width: 400px;
    height: 512px;
    display: block;
}

.child-module-list .child-module-item .grid-img {
    transition: all .6s ease;
}

.child-module-list .child-module-item .text-box {
    padding: 0 48px;
    position: absolute;
    top: 48px;
    width: 100%;
    text-align: center;
}

.child-module-list .child-module-item .headline {
    font-size: 32px;
    line-height: 36px;
    font-weight: 500;
    text-align: center;
    color: #fff;
}

.child-module-list .child-module-item .desc {
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
    text-align: center;
    color: #fff;
}

.child-module-list .child-module-item .link-box {
    position: relative;
    z-index: 400;
    text-align: center;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    transition: all .3s ease;
    cursor: pointer;
    margin-left: 8px;
}

.child-module-list .child-module-item .link-box .text {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.child-module-list .child-module-item .link-box .icon {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #fff;
}

.child-module-list .child-module-item:hover .grid-img {
    transform: scale(1.1);
}

/* Explore Section */
.explore-section {
    background-color: #f8f9fa;
}

.explore-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
}

.explore-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.explore-card {
    position: relative;
    flex: 1 1 calc(33.333% - 24px);
    height: 500px;
    background-size: cover;
    background-position: center;
    /* border-radius: 12px; */
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.6s ease;
}

.explore-card:hover {
    transform: scale(1.03);
}

.overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)); */
    z-index: 1;
}

.explore-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    padding: 0 40px;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.explore-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.explore-content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
    color: #ffffffcc !important;
}

.explore-link {
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    transition: all 0.3s ease;
}

.explore-link:hover {
    color: #d8d8d8;
}

@media (max-width: 992px) {
    .explore-card {
        flex: 1 1 100%;
        height: 400px;
    }
}

/* explore section end */

section.homepage-service-module {
    padding: 30px 0;
}

section.homepage-service-module .content {
    max-width: 1092px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

section.homepage-service-module ul.service-module-list {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
}

@media (min-width: 768px) {
    section.homepage-service-module ul.service-module-list {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 20px;
    }
}

section.homepage-service-module ul.service-module-list li.service-module-item {
    text-align: center;
    width: 282px;
    position: relative;
    list-style-type: none;
}

section.homepage-service-module ul.service-module-list li.service-module-item .service-banner-link {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
    width: 100%;
    z-index: 300;
    cursor: pointer;
}

section.homepage-service-module ul.service-module-list li.service-module-item .icon {
    display: block;
    height: 72px;
    margin: auto;
}

section.homepage-service-module ul.service-module-list li.service-module-item .title {
    font-size: 24px;
    line-height: 36px;
    color: rgba(0, 0, 0, .85);
    margin-top: 16px;
    font-weight: 500;
}

section.homepage-service-module ul.service-module-list li.service-module-item .link-box {
    position: relative;
    z-index: 400;
    text-align: center;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    border-radius: 64px;
    transition: all .3s ease;
    cursor: pointer;
    margin-left: 8px;
}

section.homepage-service-module ul.service-module-list li.service-module-item .link-box .text {
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, .85);
}

section.homepage-service-module ul.service-module-list li.service-module-item .link-box .icon {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: rgba(0, 0, 0, .85);
}

@media (max-width: 991px) {
    section.homepage-service-module {
        padding: 30px 15px;
    }

    section.homepage-service-module .title {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    section.homepage-service-module ul.service-module-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    section.homepage-service-module li.service-module-item {
        width: 100%;
    }

    section.homepage-service-module .title {
        font-size: 18px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "/";
}

.style__store-btn___2BG_Z {
    color: #fff;
    position: relative;
    font-weight: 400;
    display: inline-block;
    font-size: 14px;
    vertical-align: middle;
    line-height: 14px;
    padding: 8px 16px 8px 34px;
    height: 32px;
    -webkit-text-size-adjust: none;
    word-break: break-all;
    max-width: none;
    background-color: #0070d5;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02Ljg3NC4zMTNjLjk2NyAwIDEuNzUuNzgzIDEuNzUgMS43NXYxLjMxMmgyLjYwMmwuNDYgOC4zMTYtLjg3My0uMDA3LS40MTUtNy40MzRIMS42MDFsLS40MTUgNy40MzQtLjg3My4wMDcuNDYtOC4zMTZoMi42MDFWMi4wNjJjMC0uOTY2Ljc4NC0xLjc1IDEuNzUtMS43NWgxLjc1em0xLjc1IDUuMjYzdjIuNjE2YzAgLjk1NS0uNzY4IDEuNzMtMS43MiAxLjc0NWgtMS43OGExLjc0OCAxLjc0OCAwIDAxLTEuNzUtMS43MTZWNS41NzZoLjAxNWEuODc1Ljg3NSAwIDAxLjg2Ljg2djEuNzU2YzAgLjQ3Ni4zODQuODYzLjg2Ljg3aDEuNzY1YS44NzMuODczIDAgMDAuODc1LS44NTZWNi40NTJjMC0uNDguMzg0LS44NjguODYtLjg3NmguMDE1em0tMS43NS00LjM4OGgtMS43NWEuODc1Ljg3NSAwIDAwLS44NzUuODc1djEuMzEyaDMuNVYyLjA2MmEuODc1Ljg3NSAwIDAwLS44NzUtLjg3NHoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjg1Ii8+PC9zdmc+");
    background-size: 12px 12px;
    background-position: 13px 50%;
    background-repeat: no-repeat;
    border-radius: 88rem;
    transition: background-color .3s ease;
    border: none;
    letter-spacing: -.02em;
}

/* editor-content wrapper */
.editor-content {
    max-width: 100%;
    margin-top: 1rem;
    color: #374151;
    /* gray-700 */
    line-height: 1.7;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* Headings */
.editor-content h1 {
    font-size: 1.875rem;
    /* 3xl */
    font-weight: 700;
    margin-bottom: 1rem;
}

.editor-content h2 {
    font-size: 1.5rem;
    /* 2xl */
    font-weight: 700;
    margin-bottom: 1rem;
}

.editor-content h3 {
    font-size: 1.25rem;
    /* xl */
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.editor-content h4 {
    font-size: 1.125rem;
    /* lg */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.editor-content h5 {
    font-size: 1rem;
    /* base */
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.editor-content h6 {
    font-size: 0.875rem;
    /* sm */
    font-weight: 500;
    margin-bottom: 0.25rem;
}

/* Links */
.editor-content a {
    color: #2563eb;
    /* blue-600 */
    text-decoration: underline;
}

/* Images */
.editor-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
    border-radius: 0.25rem;
    object-fit: contain;
}

/* Blockquotes */
.editor-content blockquote {
    border-left: 4px solid #d1d5db;
    /* gray-300 */
    padding-left: 1rem;
    font-style: italic;
    color: #4b5563;
    /* gray-600 */
    margin: 1rem 0;
}

/* Tables */
.editor-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.editor-content th,
.editor-content td {
    border: 1px solid #d1d5db;
    /* gray-300 */
    padding: 0.5rem;
}

/* Code */
.editor-content code {
    background-color: #f3f4f6;
    /* gray-100 */
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-family: monospace;
}

/* Preformatted code blocks */
.editor-content pre {
    background-color: #f3f4f6;
    /* gray-100 */
    padding: 1rem;
    border-radius: 0.25rem;
    overflow-x: auto;
    margin-bottom: 1rem;
}

/* Lists */
.editor-content ul {
    list-style-type: disc;
    /* bullet points */
    padding-left: 3rem;
}

.editor-content ol {
    list-style-type: decimal;
    /* numbers for ordered lists */
    padding-left: 2rem;
}


/* --- CSS for Smooth Transition (Updated) --- */
.news-wrapper {
    background: #fff;
}

.newsroom-list {
    border-radius: 8px;
    padding: 30px 0px;
    text-align: left;
}

.news-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    transition: all 0.2s ease;
}

.news-item .news-title {
    font-size: 16px;
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.news-item .news-title:hover {
    color: #0078ff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.news-date {
    color: #777;
    font-size: 15px;
    text-align: center;
    min-width: 120px;
}

.news-item.collapsible {
    max-height: 0;
    opacity: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    border: none !important;
    transition: max-height 0.1s ease-in-out, opacity 0.1s ease-in-out, padding 0.1s ease-in-out, border 0.1s ease-in-out;
    overflow: hidden;
}

.news-item.collapsible.is-open {
    opacity: 1;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 1px solid #dee2e6 !important;
}


#showMoreBtn {
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
    background: none;
    outline: none;
    box-shadow: none;
    padding: 8px 16px;
    color: #000;
    border-radius: 4px;
}

#showMoreBtn:hover {
    background-color: #f0f0f0;
}

#showMoreBtn:focus,
#showMoreBtn:active {
    outline: none;
    box-shadow: none;
    border: none;
    background-color: #f0f0f0;
}

.style__remark___1zn2L {
    margin-top: 24px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -.02em;
    color: rgba(0, 0, 0, .65);
    text-align: center;
}

.style__remark___1zn2L a {
    color: #1890ff;
    font-size: 16px;
    line-height: 24px;
}

.style__remark___1zn2L a:after {
    vertical-align: top;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    text-decoration: none;
    font-weight: 300;
    padding-left: 4px;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
}

.contact-us-section .contact-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.contact-us-section .contact-image {
    transition: transform 0.5s ease;
}

.contact-us-section .contact-image:hover {
    transform: scale(1.03);
}

.explore-card {
    transition: all 0.3s ease;
    overflow: hidden;
    /* border-radius: 8px; */
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.explore-img img {
    width: 100%;
    height: auto;
    display: block;
}

.explore-card p {
    color: #000000a6;
}

.text-primary {
    color: #007aff !important;
    /* DJI-style blue */
}

.cat-title {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: -.02em;
    color: rgba(0, 0, 0, .85);
}

.page-header h1 {
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -.03em;
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.85);
}

.button-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.btng {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-group .btn-buy {
    background-color: #007aff;
    color: #fff;
    border: 1px solid #007aff;
}

.button-group .btn-buy:hover {
    background-color: #2490e3;
    border-color: #fff;
    color: #fff;
}

.button-group .btn-learn {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.button-group .btn-learn:hover {
    background-color: rgba(255, 253, 253, 0.363);
    color: #fff;
}

.modal-fullscreen {
    height: 20%;
}

.modal-fullscreen .modal-content {
    height: 50%;
}

ul ol li {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    list-style-type: none;
}

.btn-common {
    color: #fff;
    background-color: #e0e1e2;
    border-color: #cbcdce;
}

.review-item {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
}

.review-top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-meta {
    flex: 1 1 auto;
}

.review-name {
    font-weight: 600;
}

.review-date {
    font-size: 0.85rem;
    color: #777;
}

.star-rating i {
    font-size: 1rem;
}

/* ===== Mobile adjustments ===== */
@media (max-width: 768px) {
    .review-top {
        flex-direction: column;
        /* Stack avatar + meta */
        align-items: flex-start;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
    }

    .review-meta {
        margin-left: 0;
        width: 100%;
    }

    .star-rating {
        margin-top: 0.5rem;
    }
}

.home-content p {
    color: rgba(0, 0, 0, 0.56) !important;
    font-size: 12px;
}

.category-image {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: none;
    /* inline এ আসবে */
    background-size: cover;
    /* contain নয়, cover ব্যবহার করলে full width fill হবে */
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.category-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.text-muted {
    color: rgba(255, 255, 255, 0.85) !important;
}

.button-group {
    margin-top: 20px;
}

.btng {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s ease;
}


.page-header {
    position: relative;
    z-index: 2;
}

.category-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.text-muted {
    color: #ddd !important;
    font-size: 1.2rem;
}

#whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #20b358;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes fadeInUpAndFadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUpAndFadeIn {
    animation-name: fadeInUpAndFadeIn;
    animation-duration: 2s;
    animation-fill-mode: both;
}

.authorized-text-only {
    position: fixed;
    right: 0;
    bottom: 0; /* bottom থেকে শুরু */
    z-index: 9999;
    writing-mode: sideways-lr; /* vertical text */
    text-orientation: mixed;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    background-color: #fff;
    padding: 8px 6px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
    letter-spacing: 1px;

    /* Animation */
    animation: moveUp 7s linear infinite; /* 5s adjustable */
}

.authorized-text-only:hover {
    animation-play-state: paused;
}

/* Keyframes for moving bottom to top */
@keyframes moveUp {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}





.header-btn {
    color: #fff;
}

.navbar.sticky-top .header-btn {
    color: #000 !important;
}
.header-btn:hover {
    opacity: 0.8;
}


/* Dots styling */
.blog-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.blog-carousel .owl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--bs-secondary);
    background-color: transparent;
    transition: all 0.3s ease;
}

.blog-carousel .owl-dot.active {
    background-color: var(--bs-secondary);
    border-color: var(--bs-primary);
}

/* Navigation arrows */
.blog-carousel .owl-nav {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 15px;
}

.blog-carousel .owl-nav button {
    background: var(--bs-primary);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    font-size: 20px;
    transition: 0.3s;
}

.blog-carousel .owl-nav button:hover {
    background: var(--bs-secondary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .blog-carousel .owl-nav {
        top: 40%;
    }
    .blog-carousel .owl-dot {
        width: 12px;
        height: 12px;
    }
}

