* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--bg-light);
    color: var(--text-dark);
}

a {
    text-decoration: none;
}

/* --- GLOBAL THEME --- */
:root {
    --primary-orange: #ff7a18;
    --orange-hover: #e66a12;
    --text-dark: #1a1a1b;
    --white: #ffffff;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* --- HERO SLIDER SECTION (Fixed Alignment) --- */
.hero-carousel-epic {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 650px;
    background: #111;
    overflow: hidden;
    font-family: var(--font-main);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    /* Vertical Center */
    justify-content: flex-start;
    /* FORCE LEFT ALIGNMENT */
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Scoped Container for Slider to prevent centering leaks */
.hero-slide .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: left;
    /* Explicitly force left align on desktop */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
    color: #fff;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s ease-out 0.4s;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-tag {
    background: var(--primary-orange);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-content h1 {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.hero-btn {
    background: var(--primary-orange);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
}

/* --- MOBILE BREAKPOINTS --- */
@media (max-width: 768px) {

    /* Header: Name + Button only */
    .nav-links {
        display: none;
    }

    /* Slider: Center content for mobile readability */
    .hero-slide .container {
        text-align: center;
        padding: 0 20px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-carousel-epic {
        height: 75vh;
    }

    .nav-container {
        bottom: 30px;
    }
}

/* Navigation Line Styling */
.nav-container {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.carousel-nav {
    display: flex;
    gap: 10px;
}

.nav-line {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.4s;
}

.nav-line.active {
    background: var(--primary-orange);
    width: 70px;
}

/* ABOUT SECTION */


@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary-orange: #ff7a18;
    --primary-light: #fff4ea;
    --text-main: #1a1a1b;
    --text-muted: #4b5563;
    --white: #ffffff;
}

.about-hansi-section {
    padding: 100px 0;
    background-color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Left Content Styling */
.about-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-orange);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--text-main);
    font-weight: 800;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-content strong {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Right Stats Grid (2x2 Layout) */
.about-stats {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 122, 24, 0.1);
}

/* Optional: Adding a small orange accent line to boxes */
.stat-box::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 4px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: 0 4px 4px 0;
}


/* .stat-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    padding-left: 10px; 
    
}

.stat-box p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
    padding-left: 10px;
} */

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .about-hansi-section {
        padding: 60px 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
        /* Stack boxes on small phones */
    }

    .stat-box {
        padding: 25px;
    }
}

/* Categories Section */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary-orange: #ff7a18;
    --primary-soft: #fff4ea;
    --text-dark: #1a1a1b;
    --text-muted: #6b7280;
    --bg-light: #fcfcfc;
}

.categories-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Grid Layout */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Columns on Desktop */
    gap: 25px;
}

/* Category Card */
.category-card {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 24px;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Icon Container */
.category-card i {
    font-size: 32px;
    color: var(--primary-orange);
    background: var(--primary-soft);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.category-card span {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

/* Hover Effects */
.category-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 122, 24, 0.12);
}

.category-card:hover i {
    background: var(--primary-orange);
    color: #ffffff;
    transform: rotate(-10deg);
    /* Playful tilt */
}

.category-card:hover span {
    color: var(--primary-orange);
}

/* --- RESPONSIVENESS --- */

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 Columns on Tablet */
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns on Mobile */
        gap: 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .category-card {
        padding: 25px 15px;
    }

    .category-card i {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}


/* business */

/* --- Business List Section --- */
.business-list-section {
    background: #f8fafc;
    padding: 80px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1b;
}

/* --- Row Base Styling --- */
.business-row {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 24px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.business-row:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* --- SPONSORED HIGHLIGHT (The "Heart" of the Design) --- */
.business-row.sponsored {
    background: linear-gradient(135deg, #fffcf5 0%, #ffffff 100%);
    border: 2px solid #ff7a18;
    box-shadow: 0 15px 35px rgba(255, 122, 24, 0.15);
}

.business-row.sponsored::after {
    content: 'TOP PICK';
    position: absolute;
    top: -12px;
    right: 30px;
    background: #ff7a18;
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* --- Image Styling --- */
.biz-image {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.biz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.sponsored-tag {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff7a18;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 122, 24, 0.3);
}

/* --- Info Section --- */
.biz-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1b;
    margin-bottom: 8px;
}

.meta {
    font-size: 15px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta i {
    color: #ff7a18;
}

/* --- Status Badges --- */
.biz-status {
    text-align: right;
    margin-left: auto;
    /* Pushes to far right */
    min-width: 180px;
}

.biz-status span {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.biz-status.open span {
    background: #ecfdf5;
    color: #10b981;
    border: 1px solid #10b981;
}

.biz-status.closed span {
    background: #fef2f2;
    color: #ef4444;
    border: 1px solid #ef4444;
}

.biz-status small {
    display: block;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
}

/* --- Pagination --- */
/* --- Modern Capsule Pagination --- */
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
}

.page {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #1a1a1b;
    border-radius: 50%;
    /* Perfect Circle */
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Active State - Makes the current page pop */
.page.active {
    background: #ff7a18;
    color: #ffffff;
    border-color: #ff7a18;
    transform: scale(1.15);
    /* Slightly larger */
    box-shadow: 0 10px 20px rgba(255, 122, 24, 0.3);
}

/* Hover Effect - Float up */
.page:hover:not(.active) {
    border-color: #ff7a18;
    color: #ff7a18;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

/* Dots Styling */
.dots {
    color: #94a3b8;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 2px;
    padding: 0 5px;
}

/* Next Button - Capsule Shape */
.page-next {
    width: auto;
    /* Allow it to grow */
    padding: 0 25px;
    border-radius: 50px;
    /* Capsule Pill Shape */
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.page-next:hover {
    background: #ff7a18;
    color: #fff !important;
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .business-row {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .biz-status {
        text-align: center;
        margin-left: 0;
        border-top: 1px dashed #e2e8f0;
        padding-top: 20px;
        width: 100%;
    }
}

@keyframes breathe { 
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.biz-status.open span {
    animation: breathe 2s infinite ease-in-out;
}

.business-search-bar {
    margin: 25px auto 40px;
    max-width: 520px;
}

.business-search-bar form {
    display: flex;
    gap: 10px;
}

.business-search-bar input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

.business-search-bar input:focus {
    border-color: #ff7a18;
    box-shadow: 0 0 0 2px rgba(255, 122, 24, 0.15);
}

.business-search-bar button {
    padding: 12px 18px;
    border-radius: 12px;
    border: none;
    background: #ff7a18;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.business-search-bar button:hover {
    background: #e86c0f;
}
