/* Swiggy Style Beautiful Homepage CSS */

/* ===== Font Imports ===== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton:wght@400&display=swap');

/* ===== Reset and Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply same header styling as other pages */
header, .common-header {
    background-color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    padding: 10px 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
    transform: none !important;
}

header nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo img {
    max-height: 39px;
}

/* Ensure nav links have same font size as other pages */
header .nav-links a,
header .nav-links .desktop-cart-link,
header .nav-links .dropbtn {
    font-size: 1.2em;
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Add space between header and hero section */
.hero-section {
    padding-top: 120px;
}

/* Ensure categories section has proper spacing from header */
.categories-section {
    margin-top: 20px;
    padding-top: 20px;
}

/* Apply same footer styling as other pages */
footer {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

footer .footer-content {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

footer h4 {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1em;
}

footer p, footer li {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95em;
}

/* ===== Desktop Scale Adjustment ===== */
@media (min-width: 769px) {
    body {
        transform: none; /* Remove scale to fix header positioning */
        transform-origin: top left;
        width: 100%;
        height: 100%;
    }
    
    html {
        overflow-x: auto;
        overflow-y: auto;
    }
}

/* ===== Force Hide Popup on Desktop ===== */
@media (min-width: 769px) {
    .branch-popup-overlay,
    .branch-popup-overlay.show,
    .branch-popup-content,
    .branch-popup-header,
    .branch-popup-title,
    .branch-popup-subtitle,
    .mobile-only {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f8f9fa;
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    min-height: 70vh;
    padding: 0;
    color: #333;
    position: relative;
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 10;
    max-width: 1800px;
    padding: 20px 20px;
    margin: 0 auto;
}

.hero-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.hero-content {
    flex: 1;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #ff6b35;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #ff6b35;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.printing-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    width: auto;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.printing-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

/* ===== Categories Section ===== */
.categories-section {
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

@media (max-width: 768px) {
    .categories-section {
        margin-top: 20px;
        padding-top: 20px;
    }
}

/* Mobile See More Container */
.mobile-see-more-container {
    display: none;
    text-align: right;
    margin-top: 10px;
    padding: 0 20px;
}

.mobile-see-more-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
    min-width: 80px;
    white-space: nowrap;
    line-height: 1;
}

.mobile-see-more-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.mobile-see-more-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.mobile-see-more-btn:hover i {
    transform: rotate(90deg);
}

.categories-section h2 {
    font-size: 28px;
    font-weight: 400;
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.5px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 20px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.categories-section h2::before {
    content: '💭';
    font-size: 24px;
}

.categories-scroll {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.categories-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 60px;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 1800px;
    margin: 0 auto;
}

.categories-container::-webkit-scrollbar {
    display: none;
}

/* Categories Navigation Buttons */
.categories-scroll .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #ff6b35;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.categories-scroll .scroll-btn:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.categories-scroll .scroll-btn i {
    font-size: 18px;
    color: #ff6b35;
    transition: color 0.3s ease;
}

.categories-scroll .scroll-btn:hover i {
    color: white;
}

.categories-scroll .scroll-left {
    left: 10px;
}

.categories-scroll .scroll-right {
    right: 10px;
}

.category-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

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

.category-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    position: relative;
    overflow: hidden;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.category-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 10px;
    z-index: 2;
    overflow: hidden;
}

.category-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    background: white;
    padding: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-icon-img.loaded {
    opacity: 1;
}

.category-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.category-content {
    padding: 15px;
}

.category-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.2;
    font-family: 'Oswald', sans-serif;
}

.category-rating {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.rating-stars {
    color: #ffd700;
    font-size: 14px;
    margin-right: 5px;
}

.rating-text {
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

/* Removed category-time styles */

.category-tags {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.category-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #bbdefb;
}

/* Different colored tags */
.category-tag:nth-child(1) {
    background: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
}

.category-tag:nth-child(2) {
    background: #fff8e1;
    color: #f57c00;
    border: 1px solid #ffecb3;
}

.category-order-btn {
    background: #ff6b35;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.category-order-btn:hover {
    background: #e55a2b;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
    font-size: 18px;
}

.scroll-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.scroll-left {
    left: -25px;
}

.scroll-right {
    right: -25px;
}

/* ===== Business Solutions Section ===== */
.business-solutions {
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.business-solutions h2 {
    font-size: 28px;
    font-weight: 400;
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.5px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 20px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.business-solutions h2::before {
    content: '💼';
    font-size: 24px;
}

.business-scroll {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.business-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 60px;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 1800px;
    margin: 0 auto;
}

.business-container::-webkit-scrollbar {
    display: none;
}

/* Business Solutions Navigation Buttons */
.business-scroll .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #ff6b35;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.business-scroll .scroll-btn:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.business-scroll .scroll-btn i {
    font-size: 18px;
    color: #ff6b35;
    transition: color 0.3s ease;
}

.business-scroll .scroll-btn:hover i {
    color: white;
}

.business-scroll .scroll-left {
    left: 10px;
}

.business-scroll .scroll-right {
    right: 10px;
}

.business-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    height: 240px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    margin-right: 0;
    display: flex;
    flex-direction: column;
}

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

.business-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    position: relative;
    overflow: hidden;
}

.business-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.business-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.business-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.business-icon-img.loaded {
    opacity: 1;
}

.business-icon-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-size: 14px;
    text-align: center;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    z-index: 3;
}

.business-content {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .business-name {
        font-size: 24px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 4px;
        line-height: 1.2;
        font-family: 'Oswald', sans-serif;
    }

.business-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1px;
}

    .rating-stars {
        color: #ffc107;
        font-size: 18px;
    }

    .rating-text {
        font-size: 16px;
        color: #6c757d;
        font-weight: 500;
    }

.business-time {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.business-tags {
    display: flex;
    gap: 3px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

    .business-tag {
        color: #2c3e50;
        padding: 3px 6px;
        border-radius: 10px;
        font-size: 8px;
        font-weight: 600;
        text-transform: capitalize;
    }

.business-tag-1 {
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.business-tag-2 {
    background: #cce5ff;
    border: 1px solid #b3d9ff;
}

.business-tag-3 {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
}

    .business-details-link {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        background: #3498db;
        color: white;
        padding: 6px 12px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 11px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
        margin-top: auto;
        align-self: center;
    }

.business-details-link:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
    color: white;
    text-decoration: none;
}

.business-details-link i {
    font-size: 10px;
}

/* ===== Branches Section ===== */
.branches-section {
    margin-bottom: 60px;
    padding: 0 20px;
    width: 100%;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.branches-section h2 {
    font-size: 28px;
    font-weight: 400;
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.5px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 20px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.branches-section h2::before {
    content: '🏢';
    font-size: 24px;
}

/* Search Container */
.branches-search-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-box .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 45px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.search-box input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.clear-search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.clear-search-btn:hover {
    background: #f8f9fa;
    color: #333;
}

/* Table Container */
.branches-table-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.branches-table-wrapper {
    overflow-x: auto;
    width: 100%;
}

.branches-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
}

.branches-table thead {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.branches-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Poppins', sans-serif;
}

.branches-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.branches-table tbody tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
}

.branches-table tbody tr:last-child {
    border-bottom: none;
}

.branches-table td {
    padding: 18px 15px;
    font-size: 15px;
    color: #333;
    vertical-align: middle;
    font-family: 'Poppins', sans-serif;
}

.branch-location {
    font-weight: 700;
    color: #2c3e50;
    font-size: 16px;
}

.branch-name {
    font-weight: 600;
    color: #34495e;
    font-size: 15px;
}

.contact-person {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.mobile-number {
    font-weight: 600;
    color: #27ae60;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.action-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.call-btn {
    background: #3498db;
    color: white;
}

.call-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-1px);
}

/* See More Button */
.see-more-container {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.see-more-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.see-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.see-more-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.see-more-btn:hover i {
    transform: rotate(90deg);
}

/* No Results Message */
.no-results-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-results-message i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 15px;
}

.no-results-message p {
    font-size: 16px;
    font-weight: 500;
}

.branch-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 280px;
    height: 200px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

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

.branch-header {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 15px;
    text-align: center;
    position: relative;
}

.branch-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 24px;
}

.branch-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.branch-city {
    font-size: 14px;
    opacity: 0.9;
}

.branch-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.branch-details {
    margin-bottom: 15px;
}

.branch-address {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.branch-pincode {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.branch-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #27ae60;
    font-weight: 600;
}

.branch-contact i {
    font-size: 12px;
}

.branch-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.branch-call-btn,
.branch-whatsapp-btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: 20px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.branch-call-btn {
    background: #3498db;
    color: white;
}

.branch-call-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.branch-whatsapp-btn {
    background: #25d366;
    color: white;
}

.branch-whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-1px);
}

/* Mobile Responsive for Branches */
@media (max-width: 768px) {
    .branches-section {
        padding: 0 15px;
    }
    
    .branches-section h2 {
        font-size: 24px;
        font-family: 'Anton', sans-serif;
    letter-spacing: 0.5px;
        font-weight: 400;
        color: white;
        text-transform: uppercase;
    }
    
    .search-box {
        max-width: 100%;
        margin: 0 15px;
    }
    
    .search-box input {
        font-size: 14px;
        padding: 12px 45px 12px 45px;
        border-radius: 20px;
        border: 1px solid #ddd;
        background: #f8f9fa;
        font-family: 'Source Sans 3', sans-serif;
    }
    
    .search-box input:focus {
        background: white;
        border-color: #ff6b35;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
    }
    
    .search-box .search-icon {
        font-size: 14px;
        color: #999;
    }
    
    .clear-search-btn {
        right: 12px;
        font-size: 12px;
    }
    
    /* Hide table on mobile */
    .branches-table-container {
        display: none;
    }
    
    /* Show mobile branch cards */
    .mobile-branches-container {
        display: block;
        margin-top: 20px;
    }
    
    /* Hide mobile branches container on desktop */
    @media (min-width: 769px) {
        .mobile-branches-container {
            display: none !important;
        }
        
        /* Hide branch popup modal on desktop */
        .branch-popup-overlay,
        .branch-popup-overlay.show,
        .branch-popup-content,
        .branch-popup-header,
        .branch-popup-title,
        .branch-popup-subtitle {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            height: 0 !important;
            width: 0 !important;
            overflow: hidden !important;
        }
    }
    
    /* Ensure popup is visible on mobile */
    @media (max-width: 768px) {
        .branch-popup-overlay {
            display: none;
            visibility: visible;
            opacity: 1;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
        }
        
        .branch-popup-overlay.show {
            display: flex !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
    }
    
    .mobile-branch-card {
        background: white;
        border-radius: 12px;
        margin-bottom: 8px;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
        border: 1px solid #e0e0e0;
    }
    
    .mobile-branch-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-branch-content {
        background: transparent;
        border-radius: 12px;
        padding: 10px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    
    .mobile-branch-info {
        flex: 1;
    }
    
    .mobile-branch-info h3 {
        font-size: 18px;
        font-weight: 400;
        color: #2c3e50;
        margin: 0 0 3px 0;
        font-family: 'Anton', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-branch-info p {
        font-size: 11px;
        color: #666;
        margin: 0;
        font-weight: 500;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-family: 'Source Sans 3', sans-serif;
    }
    
    .mobile-branch-btn {
        background: #ff6b35;
        color: white;
        border: none;
        border-radius: 15px;
        padding: 6px 10px;
        font-size: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        text-transform: uppercase;
        min-width: 50px;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .mobile-branch-btn i {
        font-size: 8px;
    }
    
    .mobile-branch-btn:hover {
        background: #e55a2b;
        transform: scale(1.05);
    }
    
    /* Branch Popup Modal */
    .branch-popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    
    .branch-popup-overlay.show {
        display: flex;
    }
    
    .branch-popup-content {
        background: white;
        border-radius: 15px;
        padding: 20px;
        max-width: 320px;
        width: 100%;
        max-height: 50vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }
    
    .branch-popup-close {
        position: absolute;
        top: 12px;
        right: 12px;
        background: #f8f9fa;
        border: none;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #666;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .branch-popup-close:hover {
        background: #e9ecef;
        color: #333;
    }
    
    .branch-popup-header {
        text-align: center;
        margin-bottom: 15px;
        padding-right: 30px;
    }
    
    .branch-popup-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        margin: 0 auto 10px;
    }
    
    .branch-popup-title {
        font-size: 20px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 5px;
        font-family: 'Poppins', sans-serif;
    }
    
    .branch-popup-subtitle {
        font-size: 9px;
        color: #666;
        margin: 0;
    }
    
    .branch-popup-details {
        margin-bottom: 12px;
    }
    
    .branch-detail-item {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
        padding: 5px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .branch-detail-icon {
        width: 24px;
        height: 24px;
        background: #ff6b35;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 10px;
        flex-shrink: 0;
    }
    
    .branch-detail-text {
        flex: 1;
    }
    
    .branch-detail-label {
        font-size: 8px;
        color: #666;
        margin-bottom: 1px;
        font-weight: 500;
    }
    
    .branch-detail-value {
        font-size: 10px;
        color: #333;
        font-weight: 600;
    }
    
    .branch-popup-actions {
        display: flex;
        gap: 6px;
        margin-top: 10px;
    }
    
    .branch-action-btn {
        flex: 1;
        padding: 8px 12px;
        border: none;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }
    
    .branch-call-action {
        background: #3498db;
        color: white;
    }
    
    .branch-call-action:hover {
        background: #2980b9;
        transform: translateY(-1px);
    }
    
    .branch-whatsapp-action {
        background: #25d366;
        color: white;
    }
    
    .branch-whatsapp-action:hover {
        background: #128c7e;
        transform: translateY(-1px);
    }
}

@media (max-width: 576px) {
    .branches-section {
        padding: 0 10px;
    }
    
    .branches-table-wrapper {
        font-size: 11px;
    }
    
    .branches-table th,
    .branches-table td {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    .branches-table th {
        font-size: 10px;
    }
    
    .action-btn {
        font-size: 9px;
        padding: 3px 6px;
    }
}

/* ===== Footer Styles ===== */
footer {
    background-color: #343a40;
    color: #adb5bd;
    padding: 24px 0;
    margin-top: 40px;
    border-top: none;
    font-size: 0.9em;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
    text-align: left;
}

.footer-section h3 {
    color: #ff6b35;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.footer-section h4 {
    color: #ff6b35 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    font-family: 'Poppins', sans-serif !important;
    display: block !important;
    position: relative;
    z-index: 1;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-section p {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-section a {
    color: #f8f9fa;
    text-decoration: none;
}

.footer-section a:hover {
    color: #007bff;
    text-decoration: underline;
}

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

.footer-section li {
    margin: 4px 0;
}

.footer-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-category-link {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 6px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.footer-category-link:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

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

.footer-policy-links {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #34495e;
}

.footer-policy-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-policy-links a:hover {
    color: #ff6b35;
}

.contact-section {
    text-align: left;
    width: 100%;
    display: block;
    position: relative;
}

.contact-info {
    text-align: left;
    width: 100%;
}

.footer-section:last-child h4 {
    color: #ecf0f1 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    font-family: 'Poppins', sans-serif !important;
    display: block !important;
    position: relative;
    z-index: 1;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: left !important;
}

/* Specific styling for Contact Info header */
.contact-section h4 {
    color: #ff6b35 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    font-family: 'Poppins', sans-serif !important;
    display: block !important;
    position: relative;
    z-index: 1;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: left !important;
    width: 100% !important;
    clear: both !important;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    text-align: left;
    width: 100%;
}

.contact-info i {
    color: #ff6b35;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    margin-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.85rem;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-bottom a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ff6b35;
}

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

.footer-links-bottom a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #ff6b35;
}

/* Mobile Responsive for Footer */
@media (max-width: 992px) {
    .footer-content { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 768px) {
    footer { padding: 18px 0; font-size: 0.85em; }
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .footer-section h3, .footer-section h4 { font-size: 0.95rem; }
    .footer-section p, .footer-section li, .footer-section a { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .footer-content { grid-template-columns: 1fr 1fr; gap: 10px; }
    .footer-section h3, .footer-section h4 { font-size: 0.9rem; }
    .footer-section p, .footer-section li, .footer-section a { font-size: 0.8rem; }
}

/* ===== Support & Trust Section ===== */
.support-trust-section {
    margin-bottom: 60px;
    padding: 0 20px;
}

.support-trust-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1800px;
    margin: 0 auto;
}

.support-card,
.trust-card,
.quality-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.support-card::before,
.trust-card::before,
.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.trust-card::before {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.quality-card::before {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.support-card:hover,
.trust-card:hover,
.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.support-icon,
.trust-icon,
.quality-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 36px;
    color: white;
}

.support-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.trust-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.quality-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.support-content h3,
.trust-content h3,
.quality-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.support-content p,
.trust-content p,
.quality-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.support-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.support-feature:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.support-feature i {
    color: #3498db;
    font-size: 16px;
    width: 20px;
}

.support-feature span {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.trust-stat {
    text-align: center;
    padding: 12px 8px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.trust-stat:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 10px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.quality-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.quality-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quality-badge:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.quality-badge i {
    color: #f39c12;
    font-size: 16px;
    width: 20px;
}

.quality-badge span {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Mobile Responsive for Support & Trust */
@media (max-width: 768px) {
    .support-trust-section {
        padding: 0 15px;
    }
    
    .support-trust-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-card,
    .trust-card,
    .quality-card {
        padding: 15px;
        min-height: 200px;
        margin-bottom: 15px;
    }
    
    .support-icon,
    .trust-icon,
    .quality-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .support-content h3,
    .trust-content h3,
    .quality-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .support-content p,
    .trust-content p,
    .quality-content p {
        font-size: 12px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .support-features {
        gap: 8px;
    }
    
    .support-feature {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 15px;
    }
    
    .support-feature i {
        font-size: 10px;
        margin-right: 6px;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 10px;
    }
    
    .trust-stat {
        padding: 8px;
        border-radius: 10px;
    }
    
    .stat-number {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .quality-features {
        gap: 8px;
    }
    
    .quality-feature {
        padding: 6px 10px;
        font-size: 11px;
        border-radius: 12px;
    }
    
    .quality-feature i {
        font-size: 10px;
        margin-right: 6px;
    }
}

/* ===== Poster Slider Section ===== */
.poster-slider-section {
    margin-bottom: 30px;
    padding: 0 20px;
    display: none; /* Completely hide poster slider on all devices */
}

/* Hide poster slider on desktop screens */
@media (min-width: 769px) {
    .poster-slider-section {
        display: none;
    }
}

/* Ensure poster is hidden on mobile devices */
@media (max-width: 768px) {
    .poster-slider-section {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
    
    .poster-slider-container {
        display: none !important;
    }
    
    .poster-slider {
        display: none !important;
    }
    
    .mobile-hidden {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
}

.poster-slider-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.poster-slider {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.poster-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.poster-slide.active {
    opacity: 1;
}

.poster-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.poster-image {
    width: 100%;
    height: 100%;
}

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

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-text {
    text-align: center;
    color: white;
    padding: 20px;
}

.poster-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.poster-text p {
    font-size: 16px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.poster-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.poster-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.poster-prev, .poster-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: #333;
    font-size: 18px;
}

.poster-prev:hover, .poster-next:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.poster-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.poster-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.poster-dot.active {
    background: #ff6b35;
    transform: scale(1.2);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    /* Hide hero banner on mobile, keep other content */
    .hero-banner {
        display: none !important;
    }
    
    /* Ensure main content is visible */
    main {
        display: block !important;
    }
    
    .hero-section {
        display: block !important;
    }
    
    /* General mobile font size reductions */
    h1 {
        font-size: 24px !important;
    }
    
    h2 {
        font-size: 20px !important;
    }
    
    h3 {
        font-size: 18px !important;
    }
    
    h4 {
        font-size: 16px !important;
    }
    
    p {
        font-size: 14px !important;
    }
    
    .btn {
        font-size: 12px !important;
        padding: 8px 16px !important;
    }
    
    .container {
        padding: 0 15px !important;
    }
    
    /* Categories section mobile optimization */
    .categories-section {
        padding: 5px 0 !important;
        display: block !important;
        margin-top: 20px !important;
        padding-top: 20px !important;
    }
    
    .categories-section h2 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
        margin-top: 10px !important;
    }
    
    .category-card {
        padding: 15px !important;
        margin-bottom: 10px !important;
    }
    
    .category-card h3 {
        font-size: 14px !important;
    }
    
    .category-card p {
        font-size: 12px !important;
    }
    
    /* Business solutions section mobile optimization */
    .business-solutions {
        padding: 10px 0 !important;
        display: block !important;
    }
    
    .business-solutions h2 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }
    
    /* Branches section mobile optimization */
    .branches-section {
        padding: 20px 0 !important;
        display: block !important;
    }
    
    .branches-section h2 {
        font-size: 18px !important;
        font-family: 'Anton', sans-serif !important;
        font-weight: 400 !important;
        color: #2c3e50 !important;
        margin-bottom: 15px !important;
        text-transform: uppercase !important;
        padding: 12px 15px !important;
        background: linear-gradient(135deg, #fff3e0, #ffe0b2) !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
    }
    
    .branches-section h2::before {
        content: '🏢' !important;
        font-size: 16px !important;
    }
    
    .branch-card {
        padding: 15px !important;
        margin-bottom: 10px !important;
    }
    
    .branch-card h3 {
        font-size: 14px !important;
    }
    
    .branch-card p {
        font-size: 12px !important;
    }
    
    .hero-section .container {
        padding: 15px 15px;
    }
    
    .hero-banner {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .printing-image {
        max-height: 300px;
        width: 100%;
    }
    
    .category-item {
        min-width: auto;
        width: 100%;
        height: auto;
    }
    
    .category-image {
        height: 200px;
    }
    
    .category-image-container {
        width: 120px;
        height: 120px;
    }
    
    .category-icon-img {
        width: 100%;
        height: 100%;
        padding: 0;
    }
    
    .category-loading {
        width: 25px;
        height: 25px;
    }
    
    .category-content {
        padding: 25px;
    }
    
    .category-name {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 1.2;
        font-family: 'Oswald', sans-serif;
    }
    
    .category-rating {
        margin-bottom: 2px;
    }
    
    .rating-stars {
        font-size: 18px;
    }
    
    .rating-text {
        font-size: 16px;
    }
    
    .category-tags {
        margin-bottom: 3px;
        display: flex;
        flex-wrap: wrap;
        gap: 2px;
        justify-content: flex-start;
    }
    
    .category-tag {
        font-size: 16px;
        padding: 10px 18px;
        white-space: nowrap;
        flex: 0 0 auto;
        min-width: fit-content;
        background: #e3f2fd;
        color: #1976d2;
        border-radius: 15px;
        font-weight: 600;
        border: 1px solid #bbdefb;
    }

    /* Different colored tags for mobile */
    .category-tag:nth-child(1) {
        background: #e3f2fd;
        color: #1976d2;
        border: 1px solid #bbdefb;
    }

    .category-tag:nth-child(2) {
        background: #fff8e1;
        color: #f57c00;
        border: 1px solid #ffecb3;
    }
    
    .category-order-btn {
        font-size: 18px;
        padding: 15px 25px;
        margin-top: 15px;
    }
    
    .categories-section h2,
    .business-solutions h2 {
        font-size: 20px;
        font-family: 'Anton', sans-serif;
        letter-spacing: 0.5px;
        font-weight: 400;
        color: #2c3e50;
        margin-bottom: 12px;
        text-transform: uppercase;
        padding: 12px 15px;
        background: linear-gradient(135deg, #e3f2fd, #bbdefb);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .business-solutions h2 {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    }
    
    .categories-section h2::before {
        content: '💭';
        font-size: 18px;
    }
    
    .business-solutions h2::before {
        content: '💼';
        font-size: 18px;
    }
    
    .business-details-link {
        padding: 5px 10px;
        font-size: 9px;
    }
    
    .scroll-btn {
        display: none;
    }
    
    .categories-container,
    .business-container {
        padding: 10px 0;
    }
    
    .categories-container {
        padding: 10px 20px;
        max-width: 100%;
    }
    
    .business-container {
        padding: 10px 20px;
        max-width: 100%;
    }
    
    .categories-scroll .scroll-btn,
    .business-scroll .scroll-btn {
        display: none;
    }
    
    /* Show mobile see more button */
    .mobile-see-more-container {
        display: block;
    }
    
    /* Mobile grid layout for categories - 2x2 grid */
    .categories-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
        overflow: visible;
        max-height: none;
    }
    
    .category-item {
        min-width: auto;
        width: 100%;
        min-height: 280px;
    }
    
    /* Mobile grid layout for business solutions - 2x2 grid */
    .business-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
        overflow: visible;
        max-height: none;
    }
    
    .business-item {
        min-width: auto;
        width: 100%;
        height: 240px;
        display: flex;
        flex-direction: column;
    }
    
    /* Mobile See More/Less Button Styling */
    .mobile-see-more-container {
        display: block !important;
        text-align: right;
        margin-top: 10px;
        padding: 0 20px;
    }
    
    .mobile-see-more-btn {
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        border: none;
        padding: 8px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
        min-width: 80px;
        white-space: nowrap;
        line-height: 1;
    }
    
    .mobile-see-more-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
    }
    
    .mobile-see-more-btn i {
        font-size: 10px;
        transition: transform 0.3s ease;
    }
    
    .mobile-see-more-btn.expanded i {
        transform: rotate(180deg);
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .business-item {
        min-width: auto;
        width: 100%;
    }
    
    .business-image {
        height: 120px;
    }
    
    .business-content {
        padding: 15px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .business-name {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 4px;
        line-height: 1.2;
        font-family: 'Oswald', sans-serif;
    }
    
    .business-rating {
        margin-bottom: 0px;
    }
    
    .rating-stars {
        font-size: 18px;
    }
    
    .rating-text {
        font-size: 16px;
    }
    
    .business-tags {
        margin-bottom: 6px;
        display: flex;
        flex-wrap: wrap;
        gap: 2px;
        justify-content: flex-start;
    }
    
    .business-tag {
        font-size: 8px;
        padding: 3px 6px;
        white-space: nowrap;
        flex: 0 0 auto;
        min-width: fit-content;
    }
    
    .business-details-link {
        font-size: 11px;
        padding: 6px 12px;
        margin-top: auto;
        align-self: center;
    }
    
    .business-image-container {
        width: 100%;
        height: 100%;
    }
    
    .business-icon-img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 50vh;
    }
    
    .hero-section .container {
        padding: 15px 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .categories-section,
    .business-solutions {
        padding: 0 15px;
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .categories-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 15px;
        max-width: 100%;
        overflow: visible;
    }
    
    .business-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 15px;
        max-width: 100%;
        overflow: visible;
    }
    
    .business-item {
        min-width: auto;
        width: 100%;
        height: 240px;
        display: flex;
        flex-direction: column;
    }
    
    .categories-section h2,
    .business-solutions h2 {
        font-size: 18px;
        margin-bottom: 10px;
        padding: 0 15px;
    }
    
    .category-item {
        min-width: 120px;
        padding: 15px 12px;
        min-height: 250px;
    }
    
    .category-image {
        height: 120px;
    }
    
    .category-image-container {
        width: 80px;
        height: 80px;
    }
    
    .category-icon-img {
        width: 100%;
        height: 100%;
        padding: 0;
    }
    
    .category-loading {
        width: 18px;
        height: 18px;
    }
    
    .category-content {
        padding: 8px;
    }
    
    .category-name {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        line-height: 1.2;
        font-family: 'Oswald', sans-serif;
    }
    
    .category-rating {
        margin-bottom: 2px;
    }
    
    .rating-stars {
        font-size: 18px;
    }
    
    .rating-text {
        font-size: 16px;
    }
    
    .category-tags {
        margin-bottom: 2px;
        display: flex;
        flex-wrap: wrap;
        gap: 2px;
        justify-content: flex-start;
    }
    
    .category-tag {
        font-size: 12px;
        padding: 6px 12px;
        white-space: nowrap;
        flex: 0 0 auto;
        min-width: fit-content;
        background: #e3f2fd;
        color: #1976d2;
        border-radius: 15px;
        font-weight: 600;
        border: 1px solid #bbdefb;
    }

    /* Different colored tags for mobile 576px */
    .category-tag:nth-child(1) {
        background: #e3f2fd;
        color: #1976d2;
        border: 1px solid #bbdefb;
    }

    .category-tag:nth-child(2) {
        background: #fff8e1;
        color: #f57c00;
        border: 1px solid #ffecb3;
    }
    
    .category-order-btn {
        font-size: 12px;
        padding: 8px 12px;
        margin-top: 8px;
    }
    
    .business-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 15px;
        overflow: visible;
    }
    
    .business-item {
        min-width: auto;
        width: 100%;
        height: 240px;
        display: flex;
        flex-direction: column;
    }
    
    .business-image {
        height: 120px;
    }
    
    .business-content {
        padding: 15px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .business-name {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 4px;
        line-height: 1.2;
        font-family: 'Oswald', sans-serif;
    }
    
    .business-rating {
        margin-bottom: 0px;
    }
    
    .rating-stars {
        font-size: 18px;
    }
    
    .rating-text {
        font-size: 16px;
    }
    
    .business-tags {
        margin-bottom: 6px;
        display: flex;
        flex-wrap: wrap;
        gap: 2px;
        justify-content: flex-start;
    }
    
    .business-tag {
        font-size: 8px;
        padding: 3px 6px;
        white-space: nowrap;
        flex: 0 0 auto;
        min-width: fit-content;
    }
    
    .business-details-link {
        font-size: 11px;
        padding: 6px 12px;
        margin-top: auto;
        align-self: center;
    }
    
    .business-image-container {
        width: 100%;
        height: 100%;
    }
    
    .business-icon-img {
        width: 100%;
        height: 100%;
    }
    
    .business-image {
        height: 120px;
    }
    
    .business-content {
        padding: 6px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .business-name {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
        line-height: 1.2;
        font-family: 'Oswald', sans-serif;
    }
    
    .business-rating {
        margin-bottom: 0px;
    }
    
    .rating-stars {
        font-size: 12px;
    }
    
    .rating-text {
        font-size: 11px;
    }
    
    .business-tags {
        margin-bottom: 6px;
        display: flex;
        flex-wrap: wrap;
        gap: 2px;
        justify-content: flex-start;
    }
    
    .business-tag {
        font-size: 7px;
        padding: 2px 4px;
        white-space: nowrap;
        flex: 0 0 auto;
        min-width: fit-content;
    }
    
    .business-details-link {
        font-size: 9px;
        padding: 5px 8px;
        margin-top: auto;
        align-self: center;
    }
    
    .poster-slider-section {
        display: block !important;
        padding: 20px 0 !important;
    }
    
    .poster-slider {
        height: 120px;
    }
    
    /* Hide poster overlay elements on mobile */
    .poster-overlay {
        display: none !important;
    }
    
    .poster-navigation {
        display: none !important;
    }
    
    .poster-dots {
        display: none !important;
    }
    
    
    .poster-text h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .poster-text p {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .poster-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .poster-dot {
        width: 8px;
        height: 8px;
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .poster-slider {
        height: 100px;
    }
    
    /* Hide poster overlay elements on small mobile too */
    .poster-overlay {
        display: none !important;
    }
    
    .poster-navigation {
        display: none !important;
    }
    
    .poster-dots {
        display: none !important;
    }
    
    .poster-text h3 {
        font-size: 16px;
    }
    
    .poster-text p {
        font-size: 11px;
    }
    
    .poster-btn {
        padding: 6px 16px;
        font-size: 11px;
    }
    
    /* Extra small mobile optimizations */
    h1 {
        font-size: 20px !important;
    }
    
    h2 {
        font-size: 16px !important;
    }
    
    .categories-section h2,
    .business-solutions h2 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    
    h3 {
        font-size: 16px !important;
    }
    
    h4 {
        font-size: 14px !important;
    }
    
    p {
        font-size: 12px !important;
    }
    
    .btn {
        font-size: 11px !important;
        padding: 6px 12px !important;
    }
    
    .categories-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 12px;
        overflow: visible;
    }
    
    .category-item {
        min-width: auto;
        width: 100%;
        padding: 12px 10px;
        min-height: 220px;
    }
    
    .category-image {
        height: 100px;
    }
    
    .category-image-container {
        width: 60px;
        height: 60px;
    }
    
    .category-content {
        padding: 6px;
    }
    
    .category-name {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 6px;
        line-height: 1.2;
        font-family: 'Oswald', sans-serif;
    }
    
    .category-rating {
        margin-bottom: 1px;
    }
    
    .rating-stars {
        font-size: 10px;
    }
    
    .rating-text {
        font-size: 9px;
    }
    
    .category-tags {
        margin-bottom: 2px;
        display: flex;
        flex-wrap: wrap;
        gap: 1px;
        justify-content: flex-start;
    }
    
    .category-tag {
        font-size: 10px;
        padding: 4px 8px;
        white-space: nowrap;
        flex: 0 0 auto;
        min-width: fit-content;
        background: #e3f2fd;
        color: #1976d2;
        border-radius: 12px;
        font-weight: 600;
        border: 1px solid #bbdefb;
    }

    /* Different colored tags for mobile 480px */
    .category-tag:nth-child(1) {
        background: #e3f2fd;
        color: #1976d2;
        border: 1px solid #bbdefb;
    }

    .category-tag:nth-child(2) {
        background: #fff8e1;
        color: #f57c00;
        border: 1px solid #ffecb3;
    }
    
    .category-order-btn {
        font-size: 10px;
        padding: 6px 10px;
        margin-top: 6px;
    }
    
    .category-card {
        padding: 10px !important;
    }
    
    .branch-card {
        padding: 10px !important;
    }
    
    .container {
        padding: 0 10px !important;
    }
}