body {
    font-family: 'Roboto', sans-serif;
}

h1,
.h1,
h2,
.h2,
.h3,
h3,
.h4,
.h5,
.h6,
h4,
h5,
h6 {
    font-family: "Unbounded", sans-serif;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.logo {
    width: 40px;
    height: 40px;
    background-color: #8B2635;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-nav .nav-link {
    color: #252525;
    font-weight: 400;
    font-size: 14px;
    margin: 0 6px;
    font-family: "Unbounded";
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #721E2A;
    content: '';
    transition: all 0.5s;
}

.navbar-nav .nav-link:hover::before {
    width: 100%;

}

.navbar-nav .nav-link:hover {
    color: #8B2635;
}

.get-quote-btn {
    background-color: #8B2635;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.get-quote-btn:hover {
    background-color: #721E2A;
    color: white;
}

/* Hero Section Styles */
.hero-section {
    /* height: 100vh; */
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 3;
    padding: 60px 0px;
}

.hero-section::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: #721e2bc5;
    z-index: -1;
}

.hero-content {
    max-width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    max-width: 900px;
    line-height: 1.6;
}

.hero-badges-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-explore {
    background-color: white;
    color: #8B2635;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background-color: #f8f9fa;
    color: #8B2635;
    transform: translateY(-2px);
}

.btn-quote {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
    color: white;
    border: 2px solid #fff;
}

.btn-quote:hover {
    background-color: #8B2635;
    color: white;
    border-color: #8B2635;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badges-container {
        flex-direction: column;
        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-explore,
    .btn-quote {
        width: 100%;
        max-width: 250px;
    }

    .navbar-nav {
        margin-left: 0;
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        height: auto;
        /* min-height: 100vh; */
        padding: 50px 0;
    }
}

/* Navbar Toggle */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse {
    flex-grow: 0;
}

@media (max-width: 991px) {
    .navbar-nav {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
}

/* ===========================Second Section======================= */
.Second-section {
    text-align: center;
}

.Second-section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.2;
}

.Second-section-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.categories-section {
    padding: 60px 0px;
    background: #f3f3f3;
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 40px 25px 25px;
    color: #fff;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.category-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .Second-section-title {
        font-size: 1.9rem;
    }

    .categories-section {
        padding: 60px 0px;
    }

    .category-card {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .Second-section-title {
        font-size: 1.4rem;
    }

    .Second-section-description {
        font-size: 1rem;
    }

    .category-card {
        height: 220px;
    }
}

/* ===========================Second Section End======================= */
/* ===========================Section-3 Start======================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.view-gallery-btn {
    display: inline-block;
    background-color: #7c150c;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-gallery-btn:hover {
    background-color: #6d1e28;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 38, 53, 0.3);
}

.btn-container {
    text-align: center;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .view-gallery-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===========================Section-3 End======================= */
/* ===========================Section-4 5 Start======================= */
.section-4 {
    padding: 80px 0;
    background-color: #f8f9fa;
}



.section-4-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item-section-4 {
    text-align: center;
}

.stat-number-section-4 {
    font-size: 2rem;
    font-weight: 700;
    color: #c41e3a;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label-section-4 {
    color: #6c757d;
    font-size: 0.9rem;
}

.side-image-section-4 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.side-image-section-4 img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.award-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.award-icon {
    width: 30px;
    height: 30px;
    background: #c41e3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.award-text-position {
    font-size: 0.8rem;
}

.award-title {
    font-weight: 600;
    color: #333;
    margin: 0;
}

.award-subtitle {
    color: #6c757d;
    margin: 0;
}

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

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.feature-item-section-5 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.feature-icon-section-5 {
    width: 50px;
    height: 50px;
    background: #c41e3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-icon-section-5 i {
    color: #fff;
    font-size: 18px;
}

.feature-content-section-5 h4 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content-section-5 p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.features-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.Second-section-title-new {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .features-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-4,
    .feature-section-5 {
        padding: 50px 0;
    }

    .feature-item-section-5 {
        margin-bottom: 2rem;
    }

    .award-badge {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .features-title {
        font-size: 1.75rem;
    }

    .stat-number-section-4 {
        font-size: 1.5rem;
    }
}

/* ===========================Section-4 5 End======================= */
/* ===========================Section-6 Start======================= */
.industry-leaders-section {
    background-color: #7c150c;
    padding: 80px 0;
    color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
}

.feature-card-section-6 {
    text-align: center;
    margin-bottom: 50px;
}

.feature-icon-section-6 {
    width: 80px;
    height: 80px;
    background-color: rgba(139, 43, 40, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
}

.feature-icon-section-6 i.red {
    color: #f97377;
}

.feature-icon-section-6 i.blue {
    color: #0f74d3;
}

.feature-icon-section-6 i.green {
    color: #0fd30f;
}

.feature-icon-section-6 i.yellow {
    color: #facd15;
}

.feature-icon-section-6 i.voilet {
    color: #a615fa;
}

.feature-icon-section-6 i.orange {
    color: #ce7209;
}

.feature-title-section-6 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.feature-description-section-6 {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-card-section-6 {
        margin-bottom: 40px;
    }

    .section-subtitle {
        margin-bottom: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .feature-description-section-6 {
        font-size: 0.9rem;
    }
}

/* ===========================Section-6 End======================= */
/* ===========================Section-7 Start======================= */
.collections-container {
    padding: 60px 0px;
    background-color: #f8f9fa;
    line-height: 1.6;
}

.product-card-7 {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-7:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.product-image-7-container-7 {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image-7 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge-7 {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.badge-new-7 {
    background-color: #6c757d;
}

.badge-discount-7 {
    background-color: #dc3545;
}

.badge-popular-7 {
    background-color: #007bff;
}

.badge-trending-7 {
    background-color: #28a745;
}

.product-content-7 {
    padding: 15px 20px;
}

.product-title-7 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.product-description-7 {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 10px;
    line-height: 1.5;
}

.product-price-container-7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.price-arrow-7 {
    font-size: 1.2rem;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .collections-container {
        padding: 40px 0px;
    }

    .product-content-7 {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .product-image-7-container-7 {
        height: 180px;
    }
}

/* ===========================Section-7 End======================= */
/* ===========================Section-8 Start======================= */
.popular-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.product-card-8 {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-8:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-container-8 {
    position: relative;
    margin-bottom: 20px;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.bestseller-badge-8 {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.badge-1 {
    background-color: #dc3545;
}

.badge-2 {
    background-color: #fd7e14;
}

.badge-3 {
    background-color: #ffc107;
    color: #333;
}


.wishlist-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wishlist-icon:hover {
    background-color: white;
}

.product-title-8 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-description-8 {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.rating-container-8 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
    margin-right: 8px;
}

.review-count {
    font-size: 0.9rem;
    color: #666;
}

.price-container-8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}
.text-main{
    color: #8b2635;
}
.add-to-cart-btn {
    background-color: #8b2635;
    color: white;
    border: none;
    font-size: 14px;
    text-decoration: none;
    padding: 9px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #721e2a;
    color: white;
}

@media (max-width: 768px) {

    .popular-section {
        padding: 25px 0;
    }

    .product-card-8 {
        margin-bottom: 20px;
    }
}

/* ===========================Section-8 End======================= */
/* ===========================Section-9 Start======================= */
.instagram-section {
    background: linear-gradient(140deg, rgba(124, 21, 12, 1) 33%, rgba(158, 45, 35, 1) 57%, rgba(250, 162, 137, 1) 99%);
    padding: 60px 0;
    color: white;
}

.instagram-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.instagram-title h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin: 0;
    color: white;
}

.instagram-icon-9 {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-icon-9 i {
    color: #7c150c;
    font-size: 18px;
}

.instagram-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
    color: white;
}

.header-right-9 {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header-right-9 .instagram-icon-9 {
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 40px;
    height: 40px;
}

.header-right-9 .instagram-icon-9 i {
    color: #7c150c;
}

.header-right-9 .instagram-icon-9:hover {
    transform: scale(1.1);
}

.instagram-grid {
    margin: 50px 0;
    overflow-x: auto;
}

.instagram-scroll {
    display: flex;
    gap: 20px;
    min-width: max-content;
    padding-bottom: 15px;
}

.instagram-post {
    min-width: 200px;
    text-align: center;
    flex-shrink: 0;
}

.post-image {
    width: 200px;
    border: 10px solid #fff;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.post-image:hover {
    transform: translateY(-3px);
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-caption {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.4;
    color: white;
    max-width: 180px;
    margin: 0 auto;
}

.follow-button-9 {
    background: white;
    color: #7c150c;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.follow-button-9:hover {
    background: #f8f8f8;
    color: #a65555;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.instagram-grid::-webkit-scrollbar {
    height: 6px;
}

.instagram-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.instagram-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.instagram-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 40px 0;
    }

    .instagram-title {
        flex-direction: column;
        gap: 12px;
    }

    .instagram-title h2 {
        font-size: 1.8rem;
    }

    .instagram-subtitle {
        font-size: 1rem;
    }

    .instagram-post {
        min-width: 160px;
    }

    .post-image {
        width: 160px;
        height: 160px;
    }

    .post-caption {
        font-size: 0.8rem;
        max-width: 140px;
    }

    .header-right-9 {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .instagram-post {
        min-width: 140px;
    }

    .post-image {
        width: 140px;
        height: 140px;
    }

    .post-caption {
        font-size: 0.75rem;
        max-width: 120px;
    }

    .follow-button-9 {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ===========================Section-9 End======================= */
/* ===========================Section-10 Start======================= */
.reviews-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.star-icon-9 {
    color: #fbbf24;
    font-size: 2.5rem;
}

.review-card-9 {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin: 0 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.reviewer-avatar {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    margin-right: 16px;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 13px;
    font-weight: 500;
    color: #2d3748;
    margin: 0 0 4px 0;
}

.reviews-carousel.owl-theme .owl-dots .owl-dot.active span,
.reviews-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #991b1b !important;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star-card {
    color: #fabb05;
    font-size: 14px;
}

.review-text-9 {
    font-size: 1rem;
    line-height: 1.6;
    color: #313844;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-date {
    font-size: 0.875rem;
    color: #a0aec0;
    margin-top: auto;
}

.read-all-btn-9 {
    background-color: #7c150c;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 40px auto 0;
    display: block;
}

.read-all-btn-9:hover {
    background-color: #991b1b;
}

@media (max-width: 768px) {
    .review-card-9 {
        padding: 24px;
        height: auto;
        min-height: 260px;
    }

    .reviews-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {

    .review-card-9 {
        margin: 0 8px;
        padding: 20px;
    }
}

/* ===========================Section-10 End======================= */
/* ===========================Section-11 Start======================= */
.bootom-cta {
    background-color: #7c150c;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.bootom-cta h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.bootom-cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-schedule-footer-cta {
    background-color: white;
    color: #7c150c;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    margin: 0 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-browse-footer-cta {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 30px;
    border-radius: 25px;
    margin: 0 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.5s;
}

.btn-schedule-footer-cta:hover {
    background-color: #ffffff;
    color: #7c150c;
}

.btn-browse-footer-cta:hover {
    background-color: white;
    color: #a63e3e;
}

/* Footer Section */
.footer-section {
    background-color: #fff;
    color: #000;
    padding: 50px 0 30px 0;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-description {
    color: #272727;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 10px;
}

.social-icons-footer {
    display: flex;
    gap: 15px;
}

.social-icons-footer a {
    color: #000000;
    font-size: 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6e6e6e4f;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.social-icons-footer a:hover {
    color: #7c150c;
}

.footer-column h5 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #1d1d1d;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-column ul li a:hover {
    color: #7c150c;
}

.contact-info {
    color: #222222;
    font-size: 0.9rem;
}

.contact-info i {
    margin-right: 8px;
    width: 15px;
}

.contact-info p {
    margin-bottom: 10px;
}


.copyright {
    color: #2d3748;
    font-size: 0.9rem;
}

.legal-links {
    text-align: right;
}

/* Initial hidden state */
.fadein {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* When visible */
.fadein.visible {
    opacity: 1;
    transform: translateY(0);
}

.legal-links a {
    color: #7c140c;
    text-decoration: none;
    margin-left: 0px;
}

.legal-links a:hover {
    color: rgb(71, 3, 3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .bootom-cta .heading-cta-bottom {
        font-size: 2.2rem;
    }

    .bootom-cta p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .btn-schedule-footer-cta,
    .btn-browse-footer-cta {
        display: block;
        margin: 10px auto;
        text-align: center;
    }

    .legal-links {
        text-align: start;
        margin-top: 15px;
    }

    .legal-links a {
        display: block;
        margin: 5px 0;
    }

    .social-icons-footer {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .bootom-cta {
        padding: 60px 0;
    }

    .bootom-cta .heading-cta-bottom {
        font-size: 1.8rem;
    }

    .footer-section {
        padding: 40px 0 20px 0;
    }
}

/* ===========================Section-11 End======================= */
/* ===========================Section Category Start======================= */
.category-section-all {
    padding: 60px 0 30px 0px;
    background-color: #ffffff;
}

.category-card-all {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.category-card-all:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-image-all-container-all {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image-all {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-badge-all {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #7c150c;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-content-all {
    padding: 30px 20px;
}

.category-title-all {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 10px;
}

.category-description-all {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.browse-btn-all {
    background-color: #7c150c;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    width: 100%;
    text-align: center;
}

.browse-btn-all:hover {
    background-color: #7a3a0f;
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {

    .category-section-all {
        padding: 40px 0;
    }

    .card-content-all {
        padding: 25px 20px;
    }
}

/* ===========================Section Category End======================= */
/* ===========================Section Category Detail Start======================= */
.product-card-detail {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.product-card-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.product-image-detail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: white;
}

.in-stock {
    background-color: #28a745;
}

.limited-stock {
    background-color: #fd7e14;
}

.product-content-detail {
    padding: 20px;
}

.product-title-detail {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-description-detail {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.material-info-detail {
    color: #6c757d;
    font-size: 13px;
    margin-bottom: 10px;
}

.features-section-detail {
    margin-bottom: 20px;
}

.features-title-detail {
    color: #6c757d;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.feature-tags-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag-detail {
    background-color: #e9ecef;
    color: #495057;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.more-features-detail {
    color: #6c757d;
    font-size: 11px;
}

.inquire-btn-detail {
    background-color: #7c150c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.2s ease;
}

.inquire-btn-detail:hover {
    background-color: #410c0c;
    color: white;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 0px;
}

.pagination {
    border: none;
}

.page-link {
    border: none;
    color: #6c757d;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 4px;
}

.page-link:hover {
    background-color: #e9ecef;
    color: #495057;
}

.page-item.active .page-link {
    background-color: #7c150c;
    border-color: #7c150c;
    color: white;
}

.page-item.disabled .page-link {
    color: #adb5bd;
}

@media (max-width: 768px) {
    .product-image-detail {
        height: 180px;
    }

    .product-content-detail {
        padding: 15px;
    }

    .feature-tags-detail {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .product-image-detail {
        height: 160px;
    }

    .product-title-detail {
        font-size: 16px;
    }

    .feature-tag-detail {
        font-size: 10px;
        padding: 3px 8px;
    }
}

.my-brad ol .breadcrumb-item a {
    color: #7a3a0f;
    text-decoration: none;
}

.my-brad ol .breadcrumb-item+.breadcrumb-item::before {
    padding-right: 15px;
    padding-left: 10px;
}

.features-section-detail-new {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.feature-item-detail {
    text-align: center;
    padding: 20px 15px;
}

.feature-icon-detail {
    width: 70px;
    height: 70px;
    background-color: #7c150c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon-detail i {
    color: white;
    font-size: 24px;
}

.feature-title-detail {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-description-detail {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .features-section-detail {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .features-section-detail-new {
        padding: 50px 0;
    }

    .feature-item-detail {
        margin-bottom: 40px;
        padding: 20px;
    }

    .feature-icon-detail {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .feature-icon-detail i {
        font-size: 20px;
    }

    .feature-title-detail {
        font-size: 1.1rem;
    }

    .feature-description-detail {
        font-size: 0.95rem;
        max-width: 280px;
    }
}

@media (max-width: 575.98px) {
    .feature-item-detail:last-child {
        margin-bottom: 0;
    }
}

.title-story {
    border: 1px solid #721E2A;
    color: #721E2A;
    padding: 8px 35px;
    border-radius: 22px;
    font-size: 17px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.reviews-carousel .team-photo {
    height: 100px !important;
    width: 100px !important;
    border-radius: 50%;
    object-fit: cover;
}

.team-member {
    padding: 15px 15px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 5px 10px;
    border: 1px solid #721E2A;
    border-radius: 20px;
}

.wrapper-contact {
    background-color: #7c150c;
    padding: 20px 20px;
    border-radius: 15px;
}

.contact-form .form-label {
    color: #fff;
}

.contact-item {
    display: flex;
    gap: 10px;
}

.contact-item .contact-icon i {
    margin-right: 0px;
    width: auto;
    color: #fff;
    font-size: 18px;

}

.map-container {
    border-radius: 20px;
    border: 1px solid #6d1e28;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    filter: contrast(1.4);
    border-radius: 20px;
}

.contact-item .contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background-color: #7c150c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item .contact-details {
    width: calc(100% - 55px);
}

.service-card-design {
    padding: 20px 20px 30px 20px;
    box-shadow: rgb(0 0 0 / 27%) 0px 5px 10px;
    border-radius: 15px;
}

.service-card-heading {
    font-size: 20px;
    font-weight: 600;
}

.process-step {
    padding: 10px;
    box-shadow: rgb(0 0 0 / 32%) 0px 5px 10px;
    border-radius: 5px;
}

.service-icon-card {
    margin-bottom: 20px;
    font-size: 18px;
}

.card-listing li {
    margin-bottom: 10px;
    color: #494949;
}

.service-img {
    margin-bottom: 15px;
}

.service-img img {
    border-radius: 10px;
}

.step-number {
    font-size: 22px;
    font-weight: 700;
}

.feature-list .feature-item {
    margin-bottom: 15px;
}

.package-card-services {
    padding: 20px 20px;
    box-shadow: rgb(0 0 0 / 22%) 0px 5px 8px;
    border-radius: 10px;
    position: relative;
}
.package-card-services.featured{
    border: 1px solid #078807;
}

.package-features ul {
    padding-left: 30px;
    margin-top: 20px;
}

.package-features ul li {
    text-align: left;
    margin-bottom: 15px;
    position: relative;
}
.package-price {
    font-size: 22px;
    font-weight: bold;
    font-family: 'Unbounded';
    color: #900000;
    letter-spacing: 0.1px;
}
.package-ribbon{
    position: absolute;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%);
    top: -20px;
    font-weight: 500;
    background-color: #078807;
    color: #fff;
    padding: 8px 25px;
    font-size: 13px;
    border-radius: 20px;
}

.package-features ul li::before {
    content: '';
    position: absolute;
    left: -30px;
    top: -1px;
    width: 25px;
    height: 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/check-mark.png);
}
.filter-tabs{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.filter-tab{
    padding: 10px 20px;
    border: 1px solid #721e2a;
    color: #721e2a;
    font-weight: 600;
    text-align: center;
    background: transparent;
    border-radius: 25px;
    font-size: 15px;
}
.filter-tab.active{
    color: #fff;
    background: #721E2A;
}
.fixed-action {
    position: fixed;
    left: 0;
    bottom: 0px;
    width: 100%;
    z-index: 9999;
}
.mob-call.same {
    background-color: #1980d8;
}

.mob-call.same, .mob-whatsapp.same {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #fff;
    width: 50%;
}
    .mob-call.same svg, .mob-whatsapp.same svg {
        width: 20px;
        fill: #fff;
    }
.mob-whatsapp.same {
    background-color: #19960b;
}
.footer-column  a {
    color: #1d1d1d;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}
/* ===========================Section Category Detail End======================= */