/********** Template CSS **********/
:root {
    --primary: #3CB815;
    --secondary: #F65005;
    --light: #F7F8FC;
    --dark: #111111;
}

/*** Global Utilities ***/
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-icon {
    background: url(../img/bg-icon.webp) center center repeat;
    background-size: contain;
}

.section-padding {
    padding: 80px 0;
}

.min-vh-60 {
    min-height: 70vh;
}

.min-vh-50 {
    min-height: 65vh;
}

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

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

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

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

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

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

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

/*** Header ***/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
}

.fixed-top {
    transition: none !important;
    background: white;
}

.site-header .navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    margin: 12px 18px;
    padding: 10px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: background .3s ease, box-shadow .3s ease;
}

.navbar .nav-link {
    color: #222 !important;
    font-weight: 500;
    padding: 18px 14px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary) !important;
}

.navbar-logo {
    height: 70px;
    transition: all .3s ease;
}

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

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (max-width: 991.98px) {
    .site-header .navbar {
        margin: 8px 12px;
        border-radius: 12px;
    }
    
    .navbar-logo {
        height: 44px;
    }
    
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

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

@media (max-width: 575.98px) {
    .navbar {
        padding: 0;
    }
    
    .site-header .navbar {
        margin: 6px 8px;
        padding: 8px 16px;
        border-radius: 10px;
    }

    .navbar-logo {
        height: 60px;
    }
}

/*** Carousel Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/carousel-1.webp) top right no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}

/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}

/* Default behavior override */
.display-2 {
    font-size: 3.5rem;
    line-height: 1.2;
}

/* Extra large screens (1200px and above) */
@media (min-width: 1200px) {
    .display-2 {
        font-size: 3.2rem;
    }
}

/* Large devices (laptop) */
@media (max-width: 1199px) {
    .display-2 {
        font-size: 3rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .display-2 {
        font-size: 2.2rem;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .display-2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/*** Hero Sections ***/
.trade-hero,
.about-hero,
.blog-hero,
.product-hero,
.contact-hero {
    position: relative;
    overflow: hidden;
}

.trade-hero {
    min-height: 100vh;
    background-image: url("../img/hero-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.trade-hero::before,
.about-hero-overlay,
.blog-hero-overlay,
.product-hero-overlay,
.contact-hero-overlay {
    position: absolute;
    content: "";
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.trade-hero > *,
.about-hero-content,
.blog-hero .container,
.blog-hero .row,
.blog-hero h1,
.blog-hero p,
.blog-hero nav,
.blog-hero .breadcrumb,
.product-hero .container,
.product-hero .row,
.product-hero h1,
.product-hero p,
.product-hero nav,
.product-hero .breadcrumb,
.contact-hero .container,
.contact-hero .row,
.contact-hero h1,
.contact-hero p,
.contact-hero nav,
.contact-hero .breadcrumb {
    position: relative;
    z-index: 2;
}

.trade-hero-text {
    max-width: 600px;
}

.hero-badge,
.about-hero-badge,
.section-badge,
.why-tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
}

.about-image {
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/*** Workflow ***/
.about-workflow {
    margin-top: 40px;
}

.workflow-line {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.workflow-line::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,0.08);
}

.workflow-step {
    background: #fff;
    text-align: center;
    padding: 0 10px;
    max-width: 200px;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 8px;
}

/*** Product Tabs ***/
.nav-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.nav-pills .nav-item {
    flex: 0 0 auto;
}

.nav-pills .btn {
    color: var(--dark);
    padding: 10px 28px;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
    border: 2px solid var(--primary);
    background: transparent;
    transition: all 0.3s ease;
}

.nav-pills .btn:hover,
.nav-pills .btn.active {
    background: var(--primary);
    color: #fff;
}

/*** Cards ***/
.product-item,
.blog-card,
.product-card,
.vm-card,
.why-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
}

.product-item:hover,
.blog-card:hover,
.product-card:hover,
.vm-card:hover,
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.product-item img,
.blog-img img,
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .5s;
}

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

.blog-img {
    position: relative;
}

.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
}

.blog-content,
.product-card > div:not(.blog-img) {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.product-card h5,
.vm-card h4,
.why-card h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.product-card p,
.vm-card p,
.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/*** Vision & Mission ***/
.vm-card {
    padding: 40px 36px;
    text-align: left;
}

.vm-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(60, 184, 21, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.vm-icon i {
    font-size: 26px;
    color: var(--primary);
}

/*** Why Choose Us ***/
.why-choose-us {
    position: relative;
    padding: 160px 0 120px;
    margin-bottom: 90px;
}

.why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
}

.why-choose-us * {
    position: relative;
    z-index: 2;
}

.why-unique-section {
    padding: 100px 0;
    background: #f8fafc;
}

.why-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 28px;
}

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

.why-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #333;
}

.why-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}

.why-card-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-card {
    padding: 34px 32px;
}

.why-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f8f3a, #3cb815);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

/*** CTA Sections ***/
.cta-card,
.cta-box,
.trade-cta-box {
    background: #31ae08;
    padding: 42px;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/*** Contact ***/
.contact-info-card {
    background: linear-gradient(135deg, #1f8f3a, #3cb815);
    color: #ffffff;
    padding: 45px;
    border-radius: 22px;
}

.info-item {
    margin-bottom: 22px;
}

.info-label {
    font-size: 13px;
    text-transform: uppercase;
    opacity: 0.8;
}

.info-item p {
    margin: 4px 0 0;
    font-size: 16px;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 14px;
}

.social-links a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.9;
}

.social-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.contact-form-card {
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.contact-form-card .form-control {
    height: 52px;
    border-radius: 12px;
}

.contact-form-card textarea.form-control {
    height: auto;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}

/*** Footer ***/
.footer {
    color: #999999;
}

.footer-logo {
    max-width: 260px;
    background: white;
    border-radius: 10px;
    height: auto;
    display: block;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    opacity: 1;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

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

.footer p {
    line-height: 1.7;
}

.footer h4 {
    font-weight: 600;
}

.footer .btn-outline-light:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer .form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

/*** Mobile Optimizations ***/
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.9rem;
    }

    h3 {
        font-size: 1.6rem;
    }

    p {
        font-size: 15px;
        line-height: 1.7;
    }

    .btn {
        padding: 12px 22px;
        font-size: 15px;
    }

    /* Hero sections */
    .trade-hero,
    .about-hero,
    .blog-hero,
    .product-hero,
    .contact-hero {
        min-height: auto;
        padding: 80px 0;
        text-align: center;
    }

    .trade-hero h1,
    .product-hero h1,
    .contact-hero h1 {
        font-size: 2.1rem;
    }

    .hero-badge,
    .about-hero-badge,
    .why-tag,
    .cta-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .breadcrumb {
        justify-content: center;
    }

    /* Cards */
    .blog-card,
    .product-card,
    .vm-card,
    .why-card {
        margin-bottom: 20px;
    }

    .blog-img img,
    .product-card img {
        height: 200px;
    }

    .vm-card,
    .why-card {
        text-align: center;
        padding: 32px 26px;
    }

    .vm-icon,
    .why-icon {
        margin-left: auto;
        margin-right: auto;
    }

    /* Tabs */
    .nav-pills {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .nav-pills .nav-item {
        width: 100%;
    }

    .nav-pills .btn {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 15px;
    }

    /* Workflow */
    .workflow-line {
        flex-direction: column;
        gap: 26px;
    }

    .workflow-line::before {
        display: none;
    }

    .workflow-step {
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
    }

    /* CTA Sections */
    .cta-box,
    .trade-cta-box {
        padding: 36px 22px;
        border-radius: 20px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    /* Contact */
    .contact-info-card,
    .contact-form-card {
        padding: 30px 22px;
        margin-bottom: 20px;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Footer */
    .footer {
        text-align: center;
    }

    .footer .btn.btn-link {
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .nav-pills {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .nav-pills .nav-item {
        width: 100%;
    }

    .nav-pills .btn {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .trade-hero h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 13px;
        padding: 6px 18px;
    }
}

.gallery-item {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Prevent accidental play in grid */
.gallery-item video {
    pointer-events: none;
}

.video-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #fff;
    background: rgba(0,0,0,0.35);
}

/* ================================
   LIGHTBOX (UPDATED)
================================ */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery-lightbox.active {
    display: flex;
}

/* ================================
   LIGHTBOX CONTENT FIX (IMAGE)
================================ */

/* Center content properly */
.gallery-lightbox .lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* IMAGE: show FULL photo (no crop) */
.gallery-lightbox .lightbox-content img {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;   /* 🔥 MOST IMPORTANT */
    border-radius: 10px;
}

/* VIDEO: keep as-is */
.gallery-lightbox .lightbox-content video {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
}

/* ================================
   NAVIGATION ARROWS
================================ */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    z-index: 10001;
    padding: 10px 14px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

/* Hover effect */
.lightbox-nav:hover,
.lightbox-close:hover {
    opacity: 0.8;
}

/* ================================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 36px;
        padding: 8px 12px;
    }

    .lightbox-close {
        font-size: 34px;
        top: 15px;
        right: 20px;
    }
}

/* ================================
   BLOG SINGLE – THEME OVERRIDES
================================ */

.blog-single-content img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    margin-bottom: 24px;
}

.blog-single-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.blog-single-content h4 {
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 14px;
    color: var(--dark);
}

.blog-single-content ul {
    padding-left: 18px;
    margin-bottom: 24px;
}

.blog-single-content ul li {
    margin-bottom: 10px;
    color: #444;
}

/* ================================
   BLOG SIDEBAR – MATCH CARD STYLE
================================ */
.blog-sidebar {
    background: #3cb815;
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    position: sticky;
    top: 120px;
}

.blog-sidebar h5 {
    font-weight: 600;
    margin-bottom: 18px;
}

.blog-sidebar ul li {
    margin-bottom: 12px;
}

.blog-sidebar ul li a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color .3s ease;
}

.blog-sidebar ul li a:hover {
    color: white;
}

/* Category badges aligned to theme */
.blog-sidebar .badge {
    background: var(--light);
    color: var(--dark);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

/* ================================
   BLOG META
================================ */
.blog-meta span {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* ================================
   MOBILE TUNING
================================ */
@media (max-width: 768px) {

    .blog-hero {
        min-height: auto;
        padding: 80px 0;
        text-align: center;
    }

    .blog-single-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .blog-sidebar {
        margin-top: 40px;
        position: static;
        padding: 32px 26px;
    }
}
