    @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

    :root {
        --primary_clr: #63894c;
        --secondary_clr: #fc9d33;
        --white_clr: #fff;
        --black_clr: #000;
        --lightgrey: beige;
    }

    * a {
        cursor: pointer;
        text-decoration: none;
    }

    *,
    *::before,
    *::after,
    * body {
        font-family: "Roboto", sans-serif;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html,
    body {
        overflow-x: hidden;
    }

    ::-webkit-scrollbar {
        background: #fff;
        width: .6rem;
        height: .4rem;
    }

    ::-webkit-scrollbar-thumb {
        background-image: linear-gradient(to bottom, var(--primary_clr), var(--secondary_clr)) !important;
    }

    .siteHeader {
        display: flex;
        background: var(--white_clr);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        margin: 0 auto;
        width: 90%;
        max-width: 1200px;
        padding: 10px 40px;
        align-items: center;
        justify-content: space-between;
        z-index: 1000;
        position: relative;
    }

    .siteHeader ul {
        display: flex;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0;
        width: auto;
        gap: 1.5rem;
    }

    .siteHeader ul li a {
        text-decoration: none;
        color: var(--primary_clr);
        font-size: 16px;
        font-weight: 700;
        position: relative;
        padding: 5px 0;
        transition: color 0.3s ease;
    }

    .siteHeader ul li:nth-child(even) a {
        color: var(--secondary_clr);
    }

    .siteHeader ul li a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: currentColor;
        transition: width 0.3s ease;
    }

    .siteHeader ul li a:hover::after {
        width: 100%;
    }

    .callSpan a {
        color: var(--white_clr);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--primary_clr);
        border-radius: 30px;
        padding: 8px 18px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(99, 137, 76, 0.2);
        transition: all 0.3s ease;
    }

    .callSpan a:hover {
        background: #54753f;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(99, 137, 76, 0.3);
    }

    .socialSpan {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .socialSpan a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        color: var(--white_clr) !important;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .socialSpan a:nth-child(1) {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    }

    .socialSpan a:nth-child(2) {
        background: #1877f2;
    }

    .socialSpan a:hover {
        transform: scale(1.15);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .siteBody {
        z-index: 0;
        position: relative;
    }

    .ind.siteBody {
        margin-top: 0;
    }

    .commonSec {
        padding: 1rem 5rem;
    }

    .sec1 {
        background-image: url(../img/headerBG.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh;
    }

    .sec_divider {
        width: 100%;
        height: 10px;
        background: var(--secondary_clr);
    }

    .sec_dividerSecondary {
        width: 100%;
        height: 10px;
        background: var(--primary_clr);
    }

    .sec1Content h2 {
        color: var(--white_clr);
        font-size: 5rem;
        font-weight: 700;
        margin-top: 2rem;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.35), 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .sec1Content h2 span {
        color: var(--secondary_clr);
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.25);
    }

    .sec1Content p {
        font-size: 20px;
        color: var(--white_clr);
        margin-top: 2rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    .aboutSec {
        display: grid;
        position: relative;
        grid-template-columns: 50% 50%;
        padding: 4rem 5rem;
    }

    .aboutSec .aboutLft {
        position: relative;
    }

    .aboutSec img {
        width: 100%;
        z-index: 1;
        position: relative;
    }

    .aboutSec .abtBG {
        width: 100%;
        height: 14rem;
        position: absolute;
        background: var(--secondary_clr);
        border-radius: 8px;
        left: -4rem;
        top: 58%;
        z-index: 0;
    }

    .aboutSec .aboutRight {
        position: relative;
        z-index: 1;
    }

    .aboutSec .aboutRight p {
        margin-left: 1rem;
        margin-top: 6rem;
        line-height: 25px;
        text-align: justify;
    }

    .aboutSec .aboutRight h2 {
        font-size: 4rem;
        font-weight: 700;
        color: var(--primary_clr);
        margin-left: -1rem;
        text-transform: uppercase;
    }

    h4.site_Head {
        color: var(--secondary_clr);
        font-size: 2.5rem;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    }

    h4.site_Head span {
        border-bottom: 3px solid var(--primary_clr);
    }

    .categoriesSec {
        background: var(--lightgrey);
    }

    .categoriesGrid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .categoriesGrid a {
        text-decoration: none;
    }

    .categoriesGrid .categoryCard {
        border-radius: 15px;
        /* padding: 1rem; */
        background: var(--primary_clr);
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        /* gap: 2rem; */
    }

    .categoriesGrid .categoryCard:nth-child(even) {
        background: var(--secondary_clr);
    }

    .categoriesGrid .categoryCard img {
        width: 100%;
        background: var(--white_clr);
        border-radius: 10px;
        aspect-ratio: 1;
    }

    .categoriesGrid .categoryCard h5 {
        color: var(--white_clr);
        font-size: 1.5rem;
        font-weight: 600;
        text-transform: uppercase;
        min-height: 3rem;
    }

    .busInfoSec {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* padding-block: 3rem; */
    }

    .busInfoSec .busCard {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }

    .busInfoSec .busCard:not(:last-child) {
        border-right: 2px solid var(--primary_clr);
    }

    .busInfoSec .busCard img {
        width: 40px;
        aspect-ratio: 1;
        border-radius: 50%;
    }

    .busInfoSec .busCard h5 {
        font-size: 1.6rem;
        color: var(--secondary_clr);
        font-weight: 600;
        text-align: center;
        text-transform: uppercase;
    }

    .busInfoSec .busCard h5 span {
        border-bottom: 2px solid var(--primary_clr);
    }

    .busInfoSec .busCard p {
        font-size: 15px;
        color: var(--black_clr);
    }

    .reviewSec {
        background: var(--lightgrey);
    }

    .categoryGridInd {
        display: flex;
        gap: 1rem;
        align-items: center;
        margin-top: 2rem;
    }

    .categoryGridInd i {
        font-size: 26px;
        color: var(--primary_clr);
        transition: all .6s ease-in-out;
    }

    .categoryGridInd i:hover {
        color: var(--secondary_clr);
        transition: all .6s ease-in-out;
    }

    .categories {
        display: flex;
        gap: 1%;
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        scrollbar-width: none;
        /* Hide scrollbar for Firefox */
        -ms-overflow-style: none;
        /* Hide scrollbar for IE/Edge */
    }

    .categories::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar for Chrome/Safari/Webkit */
    }

    .categories .categoryCard {
        min-width: 49.5%;
        text-align: center;
        background: var(--primary_clr);
        border-radius: 20px;
        margin-top: 5rem;
    }

    .categories .categoryCard img {
        width: 10rem;
        /* margin-top: -5rem; */
        border-radius: 50%;
        border: 8px solid var(--lightgrey);
    }

    .categories .categoryCard p {
        color: var(--white_clr);
        margin-top: 1rem;
        padding-inline: 3rem;
        font-size: 16px;
        font-weight: 500;
    }

    .categories .categoryCard h5 {
        font-size: 1.6rem;
        font-weight: 600;
        color: var(--white_clr);
    }

    .footerSecOuter {
        background: var(--secondary_clr);
        padding: 2.2rem 5rem 1.5rem 5rem;
    }

    .footerSec {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
        margin-top: 1rem;
    }

    .footerCard:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.4);
    }

    .footerCard {
        padding: 0 0.8rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footerCard p {
        color: var(--white_clr) !important;
        display: flex;
        gap: 12px;
        font-size: 0.95rem;
        font-weight: 500;
        line-height: 1.6;
        align-items: baseline;
        margin: 0;
    }

    .footerCard p a {
        color: var(--white_clr) !important;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    .footerCard p a:hover {
        opacity: 0.85;
    }

    .footerCard p i {
        color: var(--white_clr) !important;
        font-size: 1.1rem;
    }

    .footerSecOuter h4.site_Head,
    .home-page .footerSecOuter h4.site_Head,
    .about-page .footerSecOuter h4.site_Head {
        color: var(--white_clr) !important;
        margin-bottom: 1.5rem;
    }

    .footerSecOuter h4.site_Head span,
    .home-page .footerSecOuter h4.site_Head span,
    .about-page .footerSecOuter h4.site_Head span {
        border-bottom: 4px solid var(--primary_clr) !important;
        color: var(--white_clr) !important;
    }

    .footerSecOuterh5 {
        margin: 0;
        background: var(--primary_clr);
        color: var(--white_clr);
        font-weight: 700;
        padding: 15px;
        text-align: center;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }

    .phone-row {
        margin-top: 0.1rem !important;
        margin-bottom: 0.1rem !important;
    }

    .get-directions-container-mobile {
        display: none;
    }

    .footer-bottom-grid {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .get-directions-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background-color: var(--primary_clr) !important;
        color: var(--white_clr) !important;
        border: 1px solid var(--primary_clr) !important;
        padding: 3px 10px !important;
        border-radius: 5px !important;
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
        margin-left: 8px !important;
        vertical-align: middle;
    }

    .get-directions-btn i {
        color: var(--white_clr) !important;
    }

    .get-directions-btn:hover {
        background-color: var(--white_clr) !important;
        color: var(--primary_clr) !important;
        border-color: var(--white_clr) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    }

    .get-directions-btn:hover i {
        color: var(--primary_clr) !important;
    }

    /* Safety word break defaults */
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    span,
    a,
    div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Custom Blog Cards (Premium Style) */
    .categoryGrid .blogCard {
        background: var(--white_clr);
        border: 1px solid rgba(99, 137, 76, 0.12) !important;
        border-radius: 16px !important;
        padding: 0 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
        overflow: hidden;
        transition: all 0.3s ease-in-out !important;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .categoryGrid .blogCard:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(99, 137, 76, 0.08) !important;
        border-color: rgba(99, 137, 76, 0.25) !important;
    }

    /* Remove comic block shadows for blog page cards */
    .categoryGrid .blogCard:nth-child(odd),
    .categoryGrid .blogCard:nth-child(even) {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    }

    .categoryGrid .blogCard img {
        width: 100% !important;
        height: 170px !important;
        max-height: 170px !important;
        object-fit: cover !important;
        border-radius: 16px 16px 0 0 !important;
        aspect-ratio: auto !important;
    }

    .blogPlaceholder {
        width: 100%;
        height: 170px;
        background-color: #f0f3ee;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary_clr);
        border-bottom: 1px solid rgba(99, 137, 76, 0.1);
        font-size: 2.2rem;
    }

    .blogCardContent {
        padding: 1.2rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
    }

    .categoryGrid .blogCard h3 {
        font-family: "Outfit", sans-serif;
        font-size: 1.15rem !important;
        font-weight: 700 !important;
        color: #1a1a1a !important;
        text-align: left !important;
        margin: 0 0 8px 0 !important;
        line-height: 1.4 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .categoryGrid .blogCard p {
        font-family: "Outfit", sans-serif;
        font-size: 0.88rem !important;
        color: #555 !important;
        line-height: 1.6 !important;
        margin: 0 0 15px 0 !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: left !important;
    }

    .blogReadMore {
        font-family: "Outfit", sans-serif;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        color: var(--primary_clr) !important;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: gap 0.2s ease;
        margin-top: auto;
    }

    .blogCard:hover .blogReadMore {
        gap: 10px;
        color: var(--secondary_clr) !important;
    }

    #categoryHead {
        font-size: 2rem;
        color: var(--black_clr);
        font-weight: 700;
    }

    .categoryHead2 {
        background: var(--primary_clr);
        padding: 6px 10px;
        border-radius: 20px;
        font-size: 1.4rem;
        color: var(--white_clr);
        width: max-content;
    }

    .categoryGrid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .categoryGrid .categoryCard {
        border-radius: 20px;
        border: 1px solid var(--black_clr);
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .categoryGrid .categoryCard:nth-child(odd) {
        box-shadow: 10px 10px 2px var(--primary_clr);
    }

    .categoryGrid .categoryCard:nth-child(even) {
        box-shadow: 10px 10px 2px var(--secondary_clr);
    }

    .categoryGrid .categoryCard h3 {
        color: var(--black_clr);
        font-weight: 600;
        text-align: center;
    }

    .categoryBody .categoryGrid .categoryCard img {
        width: 100%;
        height: 18rem;
        aspect-ratio: 1/1;
        object-fit: contain;
    }

    .categoryGrid .categoryCard p {
        font-size: 15px;
        color: var(--black_clr);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .productDesc {
        margin-block: 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        max-width: 100%;
    }

    .productDescLft {
        display: grid;
        grid-template-columns: 30% 68%;
        gap: 2%;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
    }

    .productDescLft1 {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        gap: 1rem;
        align-items: center;
    }

    .productDescLft1 img {
        height: 6rem;
        border-radius: 12px;
        border: 1px solid var(--black_clr);
        padding: 0.4rem;
        box-shadow: 2px 2px 2px var(--primary_clr);
    }

    .productDescLft2 {
        width: 100%;
        border-radius: 20px;
        border: 1px solid var(--black_clr);
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 10px 10px 2px var(--primary_clr);
        background: #fff;
    }

    .productDescLft2 img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .productDescRght {
        padding: 0 3rem;
    }

    @media only screen and (min-width: 768px) {
        .productDescLft1 {
            height: 26rem;
            overflow-y: auto;
            padding-right: 5px;
        }

        .productDescLft1::-webkit-scrollbar {
            width: 4px;
        }

        .productDescLft1::-webkit-scrollbar-track {
            background: transparent;
        }

        .productDescLft1::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }

        .productDescLft1::-webkit-scrollbar-thumb:hover {
            background: var(--primary_clr);
        }

        .productDescLft2 {
            height: 25rem;
        }

        .productDescRght {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
    }

    .prodBtn {
        padding: 5px 14px;
        border-radius: 20px;
        color: var(--white_clr);
        background: var(--primary_clr);
        border: 2px solid transparent;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.2s ease-in-out;
    }

    .prodBtn:hover {
        background: var(--secondary_clr);
        color: var(--white_clr);
        transform: translateY(-1px);
    }

    .btn-secondary-custom {
        background: transparent;
        color: var(--primary_clr);
        border: 2px solid var(--primary_clr);
    }

    .btn-secondary-custom:hover {
        background: var(--primary_clr);
        color: var(--white_clr);
    }

    .sizeClick {
        padding: 2px 8px;
        font-size: 12px;
        border-radius: 20px;
        background: var(--primary_clr);
        color: #fff;
        cursor: pointer;
        display: inline-block;
        margin: 0 0.2rem 0.2rem 0;
        border: 1px solid rgba(0, 0, 0, 0.08);
        transition: all 0.2s ease-in-out;
    }

    .sizeClick.active {
        background: var(--secondary_clr);
        color: #fff;
        border-color: rgba(0, 0, 0, 0.12);
    }

    .sizeClick.out-of-stock {
        background: #eef1f6 !important;
        color: #a0aec0 !important;
        border-color: #e2e8f0 !important;
        text-decoration: line-through;
        cursor: not-allowed !important;
        opacity: 0.65;
    }

    .sizeClick.out-of-stock:hover {
        background: #e5eaf2 !important;
        color: #718096 !important;
        border-color: #cbd5e0 !important;
    }

    .sizeClick.out-of-stock.active {
        background: #cbd5e0 !important;
        color: #4a5568 !important;
    }

    .pattern-card {
        cursor: pointer;
        border: 2px solid #ccc;
        border-radius: 6px;
        padding: 2px;
        background: #fff;
        transition: all 0.2s ease-in-out;
    }

    .pattern-card img {
        width: 42px;
        height: 42px;
        border-radius: 4px;
        object-fit: contain;
        display: block;
    }

    .pattern-card:hover {
        transform: scale(1.05);
    }

    .pattern-card.active {
        border-color: var(--primary_clr);
        box-shadow: 0 0 5px rgba(99, 137, 76, 0.5);
    }

    .drop_li {
        position: relative;
    }

    .drop_li .hd_sub_menu {
        position: absolute;
        width: 14rem;
        background: #fff;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        border-radius: 15px;
        max-height: 15rem;
        overflow: auto;
        opacity: 0;
        transform: translateY(-100%);
        z-index: -1;
        transition: all .4s ease-in-out;
    }

    .drop_li .hd_sub_menu::-webkit-scrollbar {
        width: .3rem;
        height: .3rem;
    }

    .drop_li:hover .hd_sub_menu {
        opacity: 1;
        transform: translateY(0%);
        z-index: 1;
        transition: all .4s ease-in-out;
    }

    .drop_li .hd_sub_menu a {
        display: block;
        color: var(--secondary_clr);
        font-size: 13px;
        padding: 6px;
        text-transform: capitalize;
    }

    .drop_li .hd_sub_menu a:hover {
        background: var(--secondary_clr);
        color: #fff;
        transition: all .4s ease-in-out;
    }

    .search_sec {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        max-width: 440px;
        width: 100%;
        background: #ffffff;
        border-radius: 999px;
        padding: 0 12px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
        transition: all .2s ease-in-out;
    }

    .search_sec:hover,
    .search_sec.active {
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
        border: 1px solid #ddd;
    }

    .search_sec span {
        padding: 0 10px;
        color: #333;
    }

    .search_sec .search_in {
        width: 100%;
        max-width: 100%;
    }

    .search_sec .search_in .form-input input {
        width: 100%;
        padding: 0.55rem 0.5rem;
        border: none;
        outline: none;
        background: transparent;
        font-size: 14px;
    }

    .search_sec .search_in .form-input input:focus {
        outline: none;
    }

    /* ==================== HOME PAGE CUSTOM STYLING (mockup accuracy) ==================== */

    .home-page,
    .about-page {
        font-family: "Outfit", "Roboto", sans-serif;
    }

    .home-page *,
    .about-page * {
        font-family: "Outfit", "Roboto", sans-serif;
    }

    .home-page i,
    .home-page .fa,
    .home-page .fab,
    .home-page .fas,
    .home-page .far,
    .home-page .fa-solid,
    .home-page .bx,
    .about-page i,
    .about-page .fa,
    .about-page .fab,
    .about-page .fas,
    .about-page .far,
    .about-page .fa-solid,
    .about-page .bx {
        font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "boxicons", sans-serif !important;
        font-weight: 900 !important;
    }

    .home-page .fab,
    .about-page .fab {
        font-weight: 400 !important;
    }

    /* Site Header (scoped to home-page) */
    /* Scoped header rules removed as they are now globally defined above */

    .home-page .ind.siteBody {
        margin-top: 0;
    }

    /* Reduced spacing for sections */
    .home-page .commonSec {
        padding: 3rem 5rem;
    }

    /* Hero Section */
    .home-page .sec1 {
        background-image: url(../img/headerBG.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 86vh;
        /* Reduced extra vertical spacing */
    }

    .home-page .sec_divider,
    .home-page .sec_dividerSecondary {
        display: block;
    }

    .home-page .sec1Content h2 {
        color: var(--white_clr);
        font-size: 6.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-top: 1rem;
        letter-spacing: -1px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.35), 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .home-page .sec1Content h2 span {
        color: var(--secondary_clr);
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.25);
    }

    .home-page .sec1Content p {
        font-size: 19px;
        color: var(--white_clr);
        margin-top: 1.2rem;
        line-height: 1.6;
        max-width: 580px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    /* About Section */
    .home-page .aboutSec {
        display: grid;
        position: relative;
        grid-template-columns: 45% 55%;
        gap: 3.5rem;
        padding: 3.5rem 5rem;
        align-items: center;
        background: var(--white_clr);
    }

    .home-page .aboutSec .aboutLft {
        position: relative;
        padding-bottom: 1.5rem;
    }

    .home-page .aboutSec img {
        width: 90%;
        z-index: 2;
        position: relative;
        border-radius: 12px;
        display: block;
        margin: 0 auto;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    .home-page .aboutSec .abtBG {
        width: 90%;
        height: 100%;
        position: absolute;
        background: var(--secondary_clr);
        border-radius: 12px;
        left: -1.5rem;
        bottom: -1.5rem;
        z-index: 1;
    }

    .home-page .aboutSec .aboutRight {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        text-align: right;
        position: relative;
        z-index: 2;
    }

    .home-page .aboutSec .aboutRight p {
        margin-top: 1rem;
        font-size: 1.05rem;
        color: #555;
        line-height: 1.7;
        text-align: right;
        max-width: 600px;
    }

    .home-page .aboutSec .aboutRight h2 {
        font-size: 3.2rem;
        font-weight: 800;
        color: var(--primary_clr);
        text-transform: uppercase;
        line-height: 1.2;
        margin-top: 1.5rem;
        letter-spacing: -1px;
    }

    /* General Headings */
    .home-page h4.site_Head {
        color: var(--secondary_clr);
        font-size: 2.6rem;
        font-weight: 800;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 2rem;
        letter-spacing: 1px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    }

    .home-page h4.site_Head span {
        border-bottom: 4px solid var(--primary_clr);
        padding-bottom: 5px;
    }

    /* Categories Section */
    .home-page .categoriesSec {
        background: var(--lightgrey);
        padding: 1.5rem 5rem;
    }

    .home-page .categoriesGrid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* 4 Columns requested */
        gap: 1.8rem;
    }

    .home-page .categoriesGrid a {
        text-decoration: none;
    }

    .home-page .categoriesGrid .categoryCard {
        border-radius: 16px;
        background: var(--white_clr);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        overflow: hidden;
        height: 100%;
        transition: all 0.3s ease-in-out;
    }

    .home-page .categoriesGrid .categoryCard:nth-child(odd) {
        border: 5px solid var(--primary_clr);
    }

    .home-page .categoriesGrid .categoryCard:nth-child(even) {
        border: 5px solid var(--secondary_clr);
    }

    .home-page .categoriesGrid .categoryCard img {
        width: 100%;
        background: transparent;
        padding: 1rem 1rem 0.5rem 1rem;
        aspect-ratio: 1;
        object-fit: contain;
    }

    .home-page .categoriesGrid .categoryCard h5 {
        color: var(--white_clr);
        font-size: 1.05rem;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
        width: 100%;
        padding: 1rem 0.5rem;
        min-height: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .home-page .categoriesGrid .categoryCard:nth-child(odd) h5 {
        background: var(--primary_clr);
    }

    .home-page .categoriesGrid .categoryCard:nth-child(even) h5 {
        background: var(--secondary_clr);
    }

    .home-page .categoriesGrid .categoryCard:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    }

    /* Business Info Section */
    .home-page .busInfoSec {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 1.5rem 5rem;
        background: var(--white_clr);
    }

    .home-page .busInfoSec .busCard {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 0.5rem 2rem;
    }

    .home-page .busInfoSec .busCard:not(:last-child) {
        border-right: 1px solid rgba(99, 137, 76, 0.2);
    }

    .home-page .busInfoSec .busCard img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        margin-bottom: 0.4rem;
    }

    .home-page .busInfoSec .busCard h5 {
        font-size: 1.25rem;
        color: var(--secondary_clr);
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        margin: 0;
    }

    .home-page .busInfoSec .busCard h5 span {
        border-bottom: none !important;
    }

    .home-page .busInfoSec .busCard p {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.5;
        margin: 0;
    }

    /* Reviews Section */
    .home-page .reviewSec {
        background: var(--lightgrey);
    }

    .home-page .categoryGridInd {
        display: flex;
        gap: 1.5rem;
        align-items: center;
        margin-top: 2rem;
        width: 100%;
    }

    .home-page .categoryGridInd i {
        font-size: 2.2rem;
        color: var(--primary_clr);
        cursor: pointer;
        padding: 10px;
        transition: all 0.3s ease;
    }

    .home-page .categoryGridInd i:hover {
        color: var(--secondary_clr);
        transform: scale(1.2);
    }

    .home-page .categories {
        display: flex;
        gap: 2rem;
        flex-wrap: nowrap;
        width: 100%;
        overflow: hidden;
        padding-top: 60px !important;
    }

    .home-page .categories .categoryCard {
        flex: 1;
        min-width: calc(50% - 1rem);
        text-align: center;
        background: var(--primary_clr);
        border-radius: 20px;
        margin-top: 0;
        padding: 3.5rem 1.8rem 2rem 1.8rem;
        position: relative;
        box-shadow: 0 8px 24px rgba(99, 137, 76, 0.12);
    }

    .home-page .categories .categoryCard::before {
        content: "" !important;
        width: 96px !important;
        height: 96px !important;
        background: var(--lightgrey) !important;
        border-radius: 50% !important;
        position: absolute !important;
        top: 0 !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 1 !important;
        display: block !important;
    }

    .home-page .categories .categoryCard img {
        width: 94px;
        height: 102px;
        border-radius: 50%;
        border: 4px solid var(--secondary_clr);
        position: absolute;
        top: 1%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 2 !important;
    }

    .home-page .categories .categoryCard p {
        color: var(--white_clr);
        margin: 0 0 1.2rem 0;
        padding-inline: 1rem;
        font-size: 14px;
        font-style: italic;
        line-height: 1.6;
        font-weight: 400;
    }

    .home-page .categories .categoryCard h5 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--white_clr);
        margin: 0;
    }

    .home-page .categories .categoryCard h5::after {
        content: "★★★★★";
        display: block;
        color: var(--secondary_clr);
        font-size: 1.1rem;
        margin-top: 0.4rem;
        letter-spacing: 2px;
    }

    @media only screen and (min-width: 768px) {
        .categoryBody .commonSec {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
    }

    /* Blog Page Styles */
    .blog-hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: linear-gradient(135deg, #fffcf4 0%, #ffeec7 100%);
        border-radius: 24px;
        padding: 40px 60px;
        margin: 20px 0 40px 0;
        box-shadow: 0 8px 30px rgba(252, 157, 51, 0.08);
        border: 1px solid rgba(252, 157, 51, 0.1);
        width: 100%;
    }

    .blog-hero-content {
        flex: 1;
        padding-right: 40px;
    }

    .blog-hero-content h1 {
        font-size: 38px;
        font-weight: 800;
        color: #172b4d;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .blog-hero-content p {
        font-size: 16px;
        line-height: 1.6;
        color: #505f79;
        margin: 0;
    }

    .blog-hero-image {
        flex: 0 0 40%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .blog-hero-image img {
        width: 100%;
        max-height: 260px;
        object-fit: contain;
    }

    .blog-container {
        width: 100%;
        margin: 0 0 60px 0;
    }

    .blog-left-col {
        min-width: 0;
    }

    .featured-blogs {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .featured-blog-card {
        display: flex;
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        border: 1px solid #eef2f6;
        transition: all 0.3s ease;
    }

    .featured-blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(99, 137, 76, 0.08);
    }

    .featured-card-img {
        flex: 0 0 40%;
        overflow: hidden;
        position: relative;
        background-color: #f8fbff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .featured-card-img img {
        width: 100%;
        height: 100%;
        min-height: 195px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .featured-blog-card:hover .featured-card-img img {
        transform: scale(1.04);
    }

    .featured-card-body {
        flex: 1;
        padding: 20px 24px;
        display: flex;
        flex-direction: column;
    }

    .category-pill {
        display: inline-block;
        padding: 4px 10px;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        border-radius: 4px;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
        width: fit-content;
    }

    .category-pill.school-competition {
        background-color: #fff3e0;
        color: #fc9d33;
        border: 1px solid rgba(252, 157, 51, 0.2);
    }

    .category-pill.festival-costumes {
        background-color: #eef7e9;
        color: #63894c;
        border: 1px solid rgba(99, 137, 76, 0.2);
    }

    .category-pill.animal-costumes {
        background-color: #fbeee6;
        color: #e28743;
        border: 1px solid rgba(226, 135, 67, 0.2);
    }

    .category-pill.national-leaders {
        background-color: #e8f4fd;
        color: #4682b4;
        border: 1px solid rgba(70, 130, 180, 0.2);
    }

    .category-pill.fancy-dress-ideas {
        background-color: #f5ebff;
        color: #8a2be2;
        border: 1px solid rgba(138, 43, 226, 0.2);
    }

    .featured-card-body h2 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .featured-card-body h2 a {
        color: #172b4d;
        text-decoration: none;
        transition: color 0.2s;
    }

    .featured-card-body h2 a:hover {
        color: var(--primary_clr);
    }

    .featured-card-body p {
        font-size: 14.5px;
        line-height: 1.6;
        color: #5e6c84;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .featured-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
    }

    .read-time {
        font-size: 13px;
        color: #8993a4;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .btn-readmore {
        background: var(--primary_clr);
        color: #fff !important;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .btn-readmore:hover {
        background: #54753f;
        transform: translateX(3px);
    }

    .latest-articles-header {
        border-bottom: 2px solid #f1f5f9;
        padding-bottom: 12px;
        margin-bottom: 25px;
    }

    .latest-articles-header h2 {
        font-size: 24px;
        font-weight: 800;
        color: #172b4d;
    }

    .latest-articles-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .latest-blog-card {
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
        border: 1px solid rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .latest-blog-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    }

    .latest-card-img {
        position: relative;
        height: 160px;
        overflow: hidden;
    }

    .latest-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .latest-blog-card:hover .latest-card-img img {
        transform: scale(1.04);
    }

    .latest-card-img .category-pill {
        position: absolute;
        top: 12px;
        left: 12px;
        margin-bottom: 0;
        z-index: 2;
    }

    .latest-card-body {
        padding: 18px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .latest-card-body h3 {
        font-size: 15px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .latest-card-body h3 a {
        color: #172b4d;
        text-decoration: none;
        transition: color 0.2s;
    }

    .latest-card-body h3 a:hover {
        color: var(--primary_clr);
    }

    .latest-card-body p {
        font-size: 13px;
        line-height: 1.5;
        color: #5e6c84;
        margin-bottom: 15px;
    }

    .latest-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
        padding-top: 12px;
        border-top: 1px solid #f1f5f9;
    }

    .latest-card-footer .read-time {
        font-size: 12px;
    }

    .link-readmore {
        color: var(--primary_clr);
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: transform 0.2s;
    }

    .link-readmore:hover {
        transform: translateX(3px);
    }

    .sidebar-widget {
        background: #ffffff;
        border-radius: 16px;
        padding: 24px;
        border: 1px solid rgba(0, 0, 0, 0.04);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
        margin-bottom: 30px;
    }

    .widget-title {
        font-size: 18px;
        font-weight: 800;
        color: #172b4d;
        margin-bottom: 20px;
        border-left: 4px solid var(--primary_clr);
        padding-left: 10px;
        line-height: 1.2;
    }

    .most-read-list {
        display: flex;
        flex-direction: column;
    }

    .most-read-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .most-read-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .number-label {
        font-size: 20px;
        font-weight: 800;
        color: var(--secondary_clr);
        width: 24px;
        flex-shrink: 0;
    }

    .most-read-thumb {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .most-read-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .most-read-title {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.4;
        margin: 0;
    }

    .most-read-title a {
        color: #172b4d;
        text-decoration: none;
        transition: color 0.2s;
    }

    .most-read-title a:hover {
        color: var(--primary_clr);
    }

    .tags-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .tag-pill {
        background: #f4f5f7;
        color: #505f79;
        font-size: 12px;
        font-weight: 600;
        padding: 6px 14px;
        border-radius: 30px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .tag-pill:hover {
        background: var(--primary_clr);
        color: #fff;
    }

    .blog-cta-banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: linear-gradient(135deg, #fffcf0 0%, #fff7e6 100%);
        border-radius: 24px;
        padding: 40px;
        border: 1px solid rgba(252, 157, 51, 0.15);
        width: 100%;
        margin: 40px 0 60px 0;
    }

    .cta-left {
        display: flex;
        align-items: center;
        gap: 30px;
        flex: 1;
    }

    .cta-img-container {
        flex: 0 0 160px;
    }

    .cta-img-container img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .cta-text {
        flex: 1;
    }

    .cta-text h2 {
        font-size: 24px;
        font-weight: 800;
        color: #172b4d;
        margin-bottom: 8px;
    }

    .cta-text p {
        font-size: 15px;
        color: #505f79;
        margin-bottom: 20px;
    }

    .btn-browse {
        background: var(--primary_clr);
        color: #fff !important;
        padding: 10px 24px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(99, 137, 76, 0.2);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .btn-browse:hover {
        background: #54753f;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(99, 137, 76, 0.3);
    }

    .cta-right {
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex: 0 0 35%;
        border-left: 1px dashed rgba(252, 157, 51, 0.3);
        padding-left: 40px;
    }

    .cta-feature {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .cta-feature .feature-icon {
        color: var(--secondary_clr);
        font-size: 20px;
        margin-top: 2px;
    }

    .cta-feature h4 {
        font-size: 14px;
        font-weight: 700;
        color: #172b4d;
        margin-bottom: 2px;
    }

    .cta-feature p {
        font-size: 12px;
        color: #6b778c;
        margin: 0;
    }