.elementor-5963 .elementor-element.elementor-element-db6d40f{margin-top:27px;margin-bottom:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-5963 .elementor-element.elementor-element-d5b304a{text-align:center;}.elementor-5963 .elementor-element.elementor-element-d5b304a .elementor-heading-title{font-family:"Noto Serif", Sans-serif;font-size:35px;font-weight:300;font-style:italic;color:var( --e-global-color-b169950 );}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-5963 .elementor-element.elementor-element-2525046{width:100%;max-width:100%;text-align:center;font-family:"Poppins", Sans-serif;font-size:14px;line-height:22px;color:#000000;}.elementor-5963 .elementor-element.elementor-element-2525046 > .elementor-widget-container{margin:2px 2px 2px 2px;}.elementor-5963 .elementor-element.elementor-element-813afaa{margin-top:0px;margin-bottom:50px;}@media(max-width:1024px){.elementor-5963 .elementor-element.elementor-element-d5b304a .elementor-heading-title{font-size:35px;}.elementor-5963 .elementor-element.elementor-element-2525046{font-size:14px;}}@media(max-width:767px){.elementor-5963 .elementor-element.elementor-element-d5b304a > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-5963 .elementor-element.elementor-element-d5b304a .elementor-heading-title{font-size:29px;}.elementor-5963 .elementor-element.elementor-element-2525046{text-align:center;font-size:13px;}}/* Start custom CSS for shortcode, class: .elementor-element-1c772d4 */.unique-category-item { 
    position: relative;
    background-size: cover; /* Ensure the background image covers the container */
    background-position: center; /* Center the background image */
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 250px; /* Set a fixed height for the category item */
    color: #fff; /* Make text white to contrast with background */
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Horizontally center the content */
    text-align: center;
    font-family: 'Poppins', sans-serif; /* Apply Poppins font */
    margin: 0px 0 !important;
    padding: 15px; /* Add padding inside the box */
}

.unique-category-item:hover {
    transform: translateY(-5px);
}

.unique-category-item h2 {
    margin: 0; /* Remove default margin */
    font-size: 16px;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.6); /* Add a dark background behind the text for readability */
    padding: 8px 16px;
    border-radius: 30px; /* Adjust the border radius */
    position: relative;
    color: white;
}

.unique-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 15px;
    margin: 0;
}

/* Tablet view adjustments */
@media screen and (max-width: 1024px) {
    .unique-categories-grid {
        grid-template-columns: repeat(3, 1fr); /* Reduce to 3 columns on tablets */
    }
    
    .unique-category-item {
        height: 180px; /* Adjust height */
    }
    
    .unique-category-item h2 {
        font-size: 16px; /* Adjust font size */
    }
}

/* Mobile view adjustments */
@media screen and (max-width: 767px) {
    .unique-categories-grid {
        grid-template-columns: repeat(2, 1fr); /* Reduce to 2 columns on smaller screens */
    }
    
    .unique-category-item {
        height: 150px; /* Further reduce height */
    }
    
    .unique-category-item h2 {
        font-size: 16px; /* Further adjust font size */
    }
}

/* Small mobile view adjustments */
@media screen and (max-width: 600px) {
    .unique-categories-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns for small mobile */
        gap: 10px; /* Reduce gap */
    }
    
    .unique-category-item {
        height: 140px; /* Reduce height further */
    }
    
    .unique-category-item h2 {
        font-size: 16px;
        padding: 6px 12px; /* Adjust padding */
    }
}

/* Extra small mobile view adjustments */
@media screen and (max-width: 500px) {
    .unique-categories-grid {
        grid-template-columns: repeat(1, 1fr); /* Single column on very small screens */
    }
    
    .unique-category-item {
        height: 130px; /* Adjust height */
    }
    
    .unique-category-item h2 {
        font-size: 16px; /* Smaller font size */
    }
}/* End custom CSS */