.blogborderlight {
    border: 1px solid rgb(206, 203, 203);
}

.margintopblog {
    margin-top: 20px;
}

.blog__details__content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.blog-navigation {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.nav-box {
    display: block;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.nav-box small {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.nav-box h6 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.nav-box:hover {
    color: #f26522;
    /* orange hover */
}

.recent-blog-card .card-header {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.recent-blog-item {
    gap: 12px;
}

.recent-img img {
    width: 100px;
    object-fit: contain;
    border-radius: 4px;
}

.recent-content a {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    display: block;
}

.recent-content a:hover {
    color: #f26522;
}

.recent-date {
    font-size: 13px;
    color: #f26522;
    margin-top: 4px;
}

.recent-date i {
    margin-right: 5px;
}

/* Alignments */
.prev {
    text-align: left;
}

.next {
    text-align: right;
}

.blogtitle {
    font-size: 29px;
}

.meta-item i {
    margin-right: 5px;
    color: #f26522;
}

.social-share a {
    color: #555;
    margin-left: 10px;
    font-size: 16px;
    transition: 0.3s;
}

.social-share a:hover {
    color: #f26522;
}

.meta-item i {
    margin-right: 5px;
    color: #f26522;
}

.social-share a {
    color: #3b1f71;
    margin-left: 12px;
    font-size: 16px;
    transition: 0.3s;
}

.social-share a:hover {
    color: #f26522;
}

@media (max-width: 768px) {
    h2 {
        font-size: 22px;
    }

    .blog__details__content {
        padding: 10px;
    }

    .card {
        margin-bottom: 15px;
    }
}

/* Sticky Wrapper */
.enquiry-wrapper {
    position: sticky;
    top: 25%;
    /* header ke hisaab se adjust karo */
}

/* Card Design */
.enquiry-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Header */
.enquiry-card .card-header {
    background: #3d2072;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    font-size: 18px;
}

/* Inputs */
.enquiry-card .form-control {
    border-radius: 6px;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.enquiry-card .form-control:focus {
    border-color: #f26522;
    box-shadow: none;
}

/* Button */
.btn-enquiry {
    background: #412171;
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-enquiry:hover {
    background: #fe2f62;
}

/* Blog Card Styles */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Blog Image */
.blog__item__pic {
    overflow: hidden;
    height: 100%;
}

.blog-image {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

/* Blog Content */
.blog__item__text {
    padding: 10px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: #3d2072;
    font-size: 0.9rem;
}

.blog-meta {
    font-size: 14px;
    justify-content: start;
    color: #000000;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Blog Date */
.blog-date {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
}

/* Blog Read Time */
.blog-read-time {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
}

/* Blog Title */
.blog-title {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #fe2e62;
}

/* Blog Description */
.blog-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    font-size: 0.95rem;
}

/* Read More Button */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3d2072;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: #ff4f3e;
}

.read-more i {
    font-size: 0.8rem;
}

.pagination svg {
    width: 16px !important;
    height: 16px !important;
}

.card-header {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}

/*////////////////////////// RESPONISVE START HERE  //////////////////////////////////////// */
@media (max-width: 768px) {
    .blog__item__pic {
        height: 200px;
    }

    .blog__item__text {
        padding: 10px 10px;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .meta-item {
        margin-right: 0px !important;
    }

    .blog-meta {
        font-size: 11px;
    }
    .meta-item i {
        margin-right: 1px;
    }

    /* Blog Meta */
    .blog-meta {
        justify-content: space-between;
    }
}

@media (max-width: 430px) {
    .blog__item__pic {
        height: 180px;
    }

    .blogtitle {
        font-size: 19px;
    }
}
