.top-bar {
    background-color: #f8f9fa;
    padding: 8px 0;
    font-size: 0.9rem;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.8rem;
}

.tagline {
    font-size: 0.9rem;
    margin-left: 10px;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    margin-left: 15px;
}

.social-icons a {
    color: #000;
    margin-left: 15px;
    font-size: 1rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
}

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

.banner-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    background-image: url('/assets/img/banner.png');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Overlay color */
}

.banner-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 600px;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-read-more {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #ff6b6b;
    border: none;
    border-radius: 0;
}

.btn-read-more:hover {
    background-color: #ff5252;
}

.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    gap: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-header {
    margin-bottom: 30px;
}

.about-header .subheading {
    font-size: 0.9rem;
    color: #e63946;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.about-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.about-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Button styling */
.read-more-btn {
    display: inline-block;
    background-color: #4a00e0;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.read-more-btn:hover {
    background-color: #3a00b0;
}


@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        text-align: center;
    }

    .about-header {
        text-align: center;
    }
}

/* Common Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.section-header .subheading {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e63946;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}


/* Categories Section */
.categories-section {
    background-color: #fff;
    padding: 80px 0;
}

.categories-header {
    text-align: center;
    margin-bottom: 50px;
}

.categories-header .subheading {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c5ce7;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.categories-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.category-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.category-card img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #eee;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 0;
    color: #222;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Popular Section - Carousel */
.popular-section {
    background-color: white;
}

.popular-heading {
    font-size: 1.4rem;
    color: #d6336c;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.popular-heading span {
    border-top: 2px solid #d6336c;
    border-bottom: 2px solid #d6336c;
    padding: 4px 15px;
    display: inline-block;
}

.section-header h2 .decor {
    display: inline-block;
    position: relative;
    padding: 0 20px;
    font-weight: bold;
    color: #d6336c;
}

.section-header h2 .decor::before,
.section-header h2 .decor::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #d6336c;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.section-header h2 .decor::before {
    left: 0;
    transform: translateY(-50%) translateX(-100%);
}

.section-header h2 .decor::after {
    right: 0;
    transform: translateY(-50%) translateX(100%);
}

.quote-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quote-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.quote-desc {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
}

.quote-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #6c63ff;
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

.action-btn.green {
    background: #25d366;
}

.swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: 20px;
    text-align: center;
}

.swiper-pagination-bullet {
    background: #ff6b6b;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #000;
}

/* Blogs Section */
.blogs-section {
    background-color: #f8f9fa;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-meta {
    padding: 20px;
    color: #666;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.blog-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: #ff6b6b;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.read-more:hover {
    color: #ff5252;
}

/* CTA Section */
.cta-section {
    background-color: #ff6b6b;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: #ff6b6b;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
.footer {
    background-color: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about {
    margin-bottom: 20px;
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ff6b6b;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ff6b6b;
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #bbb;
    font-size: 0.9rem;
}

@media (max-width: 768px) {

    .section-header h2:before,
    .section-header h2:after {
        display: none;
    }
}


/* 30/08/25 */
.top-bar a:hover {
    text-decoration: underline;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.8rem 1rem;
}

.navbar-nav .dropdown-menu {
    border-radius: 0.75rem;
}

.dropdown-menu h6 {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #444;
    text-transform: uppercase;
}

.dropdown-menu.show {
    z-index: 10000;
}

@media screen and (max-width: 768px) {
    .banner-section {
        background-size: unset;
        padding: 40px 0;
    }

    .banner-section::before {
        height: auto;
    }

    .banner-title {
        font-size: 2rem;
    }

}

/* About Us Video Overlay */
/* About Us Video Overlay */
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;

    /* New Blog Card Design */
    .blog-card-new {
        border: none;
        background: #fff;
        transition: transform 0.3s ease;
    }

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

    .blog-img-wrapper {
        position: relative;
        overflow: hidden;
    }

    .blog-main-img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    .blog-date-badge {
        position: absolute;
        bottom: 0;
        right: 0;
        background-color: #ff214f;
        color: #fff;
        padding: 10px 15px;
        text-align: center;
        line-height: 1.2;
        min-width: 60px;
    }

    .blog-date-day {
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
    }

    .blog-date-month {
        display: block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .blog-meta-new {
        font-size: 0.85rem;
        color: #888;
        margin: 15px 0 10px;
        text-align: center;
    }

    .blog-meta-new i {
        color: #ff214f;
        margin-right: 5px;
    }

    .blog-meta-item:not(:last-child)::after {
        content: "/";
        margin: 0 8px;
        color: #ddd;
    }

    .blog-title-new {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-align: center;
        padding: 0 15px;
        line-height: 1.4;
    }

    .blog-title-new a {
        color: #222;
        text-decoration: none;
        transition: color 0.3s;
    }

    .blog-title-new a:hover {
        color: #ff214f;
    }

    .blog-excerpt-new {
        color: #666;
        font-size: 0.95rem;
        text-align: center;
        padding: 0 20px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .blog-read-more-btn {
        display: block;
        width: 100%;
        background-color: #f4f5f7;
        color: #333;
        text-align: center;
        padding: 14px 0;
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .blog-read-more-btn:hover {
        background-color: #ff214f;
        color: #fff;
    }

    /* New CTA Section Design */
    .cta-section-new {
        position: relative;
        min-height: 500px;
        background-image: url('../img/banner.png');
        /* Fallback/Placeholder */
        background-size: cover;
        background-position: center left;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    .cta-overlay-shape {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: linear-gradient(105deg, transparent 45%, #ff2000 45%);
    }

    .cta-content-new {
        position: relative;
        width: 100%;
        z-index: 2;
    }

    .cta-text-wrap {
        text-align: left;
        color: #fff;
        padding-left: 55%;
        /* Push text to the red area */
        padding-right: 5%;
    }

    .cta-title-new {
        font-size: 2.8rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .cta-btn-white {
        background-color: #fff;
        color: #333;
        font-weight: 600;
        padding: 15px 40px;
        border: none;
        text-transform: uppercase;
        /* Assuming standard stylistic choice */
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s;
    }

    .cta-btn-white:hover {
        background-color: #333;
        color: #fff;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .cta-overlay-shape {
            background: rgba(255, 32, 0, 0.9);
            /* Full overlay on mobile */
        }

        .cta-text-wrap {
            padding-left: 20px;
            padding-right: 20px;
            text-align: center;
        }

        .cta-title-new {
            font-size: 2rem;
        }
    }
}

.about-video {
    position: absolute;
    /* Absolute to fill container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Zooms video to cover area */
    border: none;
    border-radius: 8px;
}

.about-image img {
    display: none;
}

.browse-category-card {
    background: linear-gradient(135deg,
            rgba(255, 107, 107, 0.12),
            rgba(255, 200, 200, 0.18),
            rgba(255, 255, 255, 0.9));
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    border: 1px solid rgba(255, 107, 107, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* subtle glowing gradient overlay */
.browse-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
            rgba(255, 107, 107, 0.18),
            transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

/* hover effect */
.browse-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 107, 107, 0.18);
    border-color: rgba(255, 107, 107, 0.35);
}

/* title */
.category-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* description */
.category-card-desc {
    color: #666 !important;
}

/* icon wrapper */
.category-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ff9a9a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 14px rgba(255, 107, 107, 0.35);
}

/* read more arrow */
.read-more-link {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.browse-category-card:hover .read-more-link {
    transform: translateX(6px);
}
/* Custom Pagination */
.bloomsha-pagination .page-item {
    margin: 0 5px;
}

.bloomsha-pagination .page-link {
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-weight: 600;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.bloomsha-pagination .page-link:hover {
    background-color: #f8f9fa;
    color: #d6336c; /* Brand pink */
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.bloomsha-pagination .page-item.active .page-link {
    background-color: #d6336c;
    color: #fff;
    box-shadow: 0 4px 10px rgba(214, 51, 108, 0.3);
}

.bloomsha-pagination .page-item.disabled .page-link {
    background-color: #f8f9fa;
    color: #ccc;
    box-shadow: none;
}
