/**
 * Home Variant 07 - Responsive Design (Kitabisa Style)
 * Mobile-First Approach
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --home07-primary: #10B981;
    --home07-primary-dark: #059669;
    --home07-primary-light: #34D399;
    --home07-primary-glow: rgba(16, 185, 129, 0.4);
    --home07-secondary: #06B6D4;
    --home07-accent: #8B5CF6;
    --home07-text-dark: #111827;
    --home07-text-medium: #4B5563;
    --home07-text-light: #9CA3AF;
    --home07-bg-light: #F9FAFB;
    --home07-bg-white: #FFFFFF;
    --home07-border: #E5E7EB;
    --home07-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --home07-shadow-hover: 0 12px 40px rgba(16, 185, 129, 0.15);
    --home07-shadow-3d: 0 20px 60px rgba(0, 0, 0, 0.12);
    --home07-radius: 16px;
    --home07-radius-sm: 10px;
    --home07-radius-lg: 24px;
    --home07-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================================
   Global Site Logo
   ========================================================================== */
.site-logo-img {
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

/* ==========================================================================
   Base Styles & Typography
   ========================================================================== */
.home-page-variant-07 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==========================================================================
   Topbar Styles
   ========================================================================== */
.home-07-topbar {
    background: linear-gradient(135deg, #2D3436 0%, #1a1d1e 100%);
    padding: 8px 0;
    font-size: 0.85rem;
}

.home-07-topbar .topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-07-topbar .info-items {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-07-topbar .info-items li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
}

.home-07-topbar .info-items li i {
    color: var(--home07-primary);
    margin-right: 5px;
}

.home-07-topbar .right-contnet {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-07-topbar .social-link ul {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-07-topbar .social-link ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--home07-transition);
}

.home-07-topbar .social-link ul li a:hover {
    color: var(--home07-primary);
}

.home-07-topbar .info-items-02 {
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-07-topbar .info-items-02 li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--home07-transition);
}

.home-07-topbar .info-items-02 li a:hover {
    color: var(--home07-primary);
}

/* Hide topbar on mobile for cleaner look */
@media (max-width: 767.98px) {
    .home-07-topbar {
        display: none;
    }
}

/* ==========================================================================
   Navbar Styles
   ========================================================================== */
.home-07-nav {
    background: var(--home07-bg-white) !important;
    box-shadow: var(--home07-shadow);
    padding: 12px 0;
}

.home-07-nav .nav-container {
    max-width: 1200px;
}

.home-07-donate-btn {
    background: var(--home07-primary) !important;
    border-color: var(--home07-primary) !important;
    font-size: 14px;
    padding: 10px 20px;
    font-weight: 600;
}

.home-07-donate-btn:hover {
    background: var(--home07-primary-dark) !important;
    border-color: var(--home07-primary-dark) !important;
}

.home-07-donate-btn i {
    font-size: 1rem;
    margin-right: 5px;
}

/* Navbar Menu Items */
.home-07-nav .navbar-nav > li > a {
    color: var(--home07-text-dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 15px;
    transition: var(--home07-transition);
}

.home-07-nav .navbar-nav > li > a:hover,
.home-07-nav .navbar-nav > li.current-menu-item > a {
    color: var(--home07-primary) !important;
}

/* Dropdown styling */
.home-07-nav .sub-menu {
    background: var(--home07-bg-white);
    border-radius: var(--home07-radius-sm);
    box-shadow: var(--home07-shadow-hover);
    border: 1px solid var(--home07-border);
    padding: 10px 0;
    min-width: 200px;
}

.home-07-nav .sub-menu li a {
    color: var(--home07-text-dark) !important;
    padding: 8px 20px;
    font-size: 0.9rem;
    display: block;
    transition: var(--home07-transition);
}

.home-07-nav .sub-menu li a:hover {
    color: var(--home07-primary) !important;
    background: var(--home07-bg-light);
}

/* Logo styling */
.home-07-nav .logo-wrapper img {
    max-height: 45px;
    width: auto;
}

/* Search styling */
.home-07-nav .search-open .icon {
    color: var(--home07-text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--home07-transition);
}

.home-07-nav .search-open .icon:hover {
    color: var(--home07-primary);
}

/* ==========================================================================
   Section Header
   ========================================================================== */
.home-07-section-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.home-07-section-header--center {
    text-align: center;
    align-items: center;
}

.home-07-section-header--white .home-07-section-title,
.home-07-section-header--white .home-07-section-subtitle {
    color: var(--home07-bg-white);
}

.home-07-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--home07-text-dark);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-07-section-title--lg {
    font-size: 2.25rem;
}

.home-07-section-subtitle {
    font-size: 1.05rem;
    color: var(--home07-text-medium);
    margin: 0;
    line-height: 1.6;
    max-width: 640px;
}

.home-07-view-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--home07-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--home07-transition);
}

.home-07-view-all:hover {
    color: var(--home07-primary-dark);
    text-decoration: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.home-07-hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #064E3B 0%, #065F46 20%, #047857 45%, #0D9488 70%, #0F766E 100%);
    background-size: cover;
    background-position: center;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-07-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

/* Green glowing orbs in hero */
.home-07-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(129, 199, 132, 0.4) 0%, rgba(76, 175, 80, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    animation: home07GlowFloat1 8s ease-in-out infinite;
    z-index: 0;
}
.home-07-hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 180, 0.3) 0%, rgba(0, 137, 123, 0.12) 40%, transparent 70%);
    border-radius: 50%;
    animation: home07GlowFloat2 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes home07GlowFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 30px) scale(1.1); }
}
@keyframes home07GlowFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -40px) scale(1.15); }
}
@keyframes home07GlowFloat3 {
    0%, 100% { transform: translate(-50%, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, 20px) scale(1.1); opacity: 1; }
}

.home-07-hero__glow--center {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 500px;
    height: 350px;
    background: radial-gradient(ellipse at center, rgba(165, 214, 167, 0.25) 0%, rgba(129, 199, 132, 0.1) 40%, transparent 70%);
    transform: translate(-50%, 0);
    animation: home07GlowFloat3 7s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.home-07-hero .container {
    position: relative;
    z-index: 1;
}

.home-07-hero__content {
    text-align: center;
}

.home-07-hero__subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.home-07-hero__title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.home-07-hero__title span {
    color: #6EE7B7;
    text-shadow: 0 0 30px rgba(110, 231, 183, 0.3);
}

.home-07-hero__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.6;
}

.home-07-hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.home-07-btn-primary {
    background: #fff !important;
    border-color: #fff !important;
    color: var(--home07-primary-dark) !important;
    font-weight: 700;
    padding: 12px 30px;
    font-size: 1rem;
    transition: var(--home07-transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.home-07-btn-primary:hover {
    background: #E8F5E9 !important;
    border-color: #E8F5E9 !important;
    color: var(--home07-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.home-07-btn-secondary {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 10px 28px;
    font-size: 1rem;
    transition: var(--home07-transition);
}

.home-07-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #fff !important;
    color: #fff !important;
}

.home-07-hero__image {
    display: none;
}

/* ==========================================================================
   Category Slider Section
   ========================================================================== */
.home-07-categories {
    padding: 50px 0;
    background: var(--home07-bg-white);
}

.home-07-category-slider {
    margin: 0 -10px;
}

.home-07-category-card {
    background: var(--home07-bg-white);
    border: 1px solid var(--home07-border);
    border-radius: var(--home07-radius);
    padding: 20px 15px;
    text-align: center;
    transition: var(--home07-transition);
    margin: 5px;
}

.home-07-category-card:hover {
    border-color: var(--home07-primary);
    box-shadow: var(--home07-shadow-hover);
    transform: translateY(-3px);
}

.home-07-category-card a {
    text-decoration: none;
    color: inherit;
}

.home-07-category-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--home07-bg-light);
    border-radius: 50%;
    overflow: hidden;
}

.home-07-category-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.home-07-category-card__icon i {
    font-size: 1.8rem;
    color: var(--home07-primary);
}

.home-07-category-card__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--home07-text-dark);
    margin: 0 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-07-category-card__count {
    font-size: 0.8rem;
    color: var(--home07-text-light);
}

/* ==========================================================================
   Featured Campaigns Section
   ========================================================================== */
.home-07-featured {
    padding: 50px 0;
    background: var(--home07-bg-light);
}

.home-07-campaign-grid {
    position: relative;
}

.home-07-campaign-card {
    background: var(--home07-bg-white);
    border-radius: var(--home07-radius);
    overflow: hidden;
    box-shadow: var(--home07-shadow);
    transition: var(--home07-transition);
    margin: 10px 5px;
}

.home-07-campaign-card:hover {
    box-shadow: var(--home07-shadow-hover);
    transform: translateY(-5px);
}

.home-07-campaign-card__image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.home-07-campaign-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--home07-transition);
}

.home-07-campaign-card:hover .home-07-campaign-card__image img {
    transform: scale(1.05);
}

.home-07-campaign-card__badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.home-07-campaign-card__badges .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.badge-featured {
    background: var(--home07-primary);
    color: white;
}

.badge-reward {
    background: var(--home07-secondary);
    color: white;
}

.home-07-campaign-card__content {
    padding: 18px 20px;
}

.home-07-campaign-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.4;
}

.home-07-campaign-card__title a {
    color: var(--home07-text-dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-07-campaign-card__title a:hover {
    color: var(--home07-primary);
}

.home-07-campaign-card__progress {
    margin-bottom: 10px;
}

.progress-bar-wrapper {
    height: 6px;
    background: var(--home07-border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--home07-primary) 0%, var(--home07-secondary) 100%);
    border-radius: 3px;
    transition: width 1s ease;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.progress-info .raised {
    font-weight: 700;
    color: var(--home07-primary);
}

.progress-info .percentage {
    color: var(--home07-text-medium);
}

.home-07-campaign-card__goal {
    font-size: 0.8rem;
    color: var(--home07-text-light);
    margin-bottom: 12px;
}

.home-07-campaign-card__btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--home07-primary);
    color: white;
    padding: 10px 15px;
    border-radius: var(--home07-radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--home07-transition);
}

.home-07-campaign-card__btn:hover {
    background: var(--home07-primary-dark);
    color: white;
    text-decoration: none;
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.home-07-statistics {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--home07-primary) 0%, var(--home07-primary-dark) 100%);
    background-size: cover;
    background-position: center;
}

.home-07-statistics__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.home-07-statistics .container {
    position: relative;
    z-index: 1;
}

.home-07-statistics__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.home-07-stat-item {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--home07-radius);
    backdrop-filter: blur(5px);
}

.home-07-stat-item__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.home-07-stat-item__icon i {
    font-size: 1.5rem;
    color: white;
}

.home-07-stat-item__number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.home-07-stat-item__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Recent Campaigns Section
   ========================================================================== */
.home-07-recent {
    padding: 50px 0;
    background: var(--home07-bg-white);
}

.home-07-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.home-07-filter-btn {
    background: var(--home07-bg-light);
    border: 1px solid var(--home07-border);
    color: var(--home07-text-medium);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--home07-transition);
    white-space: nowrap;
}

.home-07-filter-btn:hover,
.home-07-filter-btn.active {
    background: var(--home07-primary);
    border-color: var(--home07-primary);
    color: white;
}

.home-07-recent__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.home-07-campaign-card--horizontal {
    display: flex;
    flex-direction: column;
}

.home-07-campaign-card--horizontal .home-07-campaign-card__image {
    padding-top: 56%;
}

.home-07-campaign-card--horizontal .home-07-campaign-card__excerpt {
    font-size: 0.85rem;
    color: var(--home07-text-medium);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-07-campaign-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.percentage-badge {
    background: var(--home07-bg-light);
    color: var(--home07-primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.home-07-campaign-card__footer .home-07-campaign-card__btn {
    width: auto;
    padding: 8px 20px;
}

.home-07-recent__more {
    text-align: center;
    margin-top: 30px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.home-07-cta {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--home07-secondary) 0%, #008B80 100%);
    background-size: cover;
    background-position: center;
}

.home-07-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.home-07-cta .container {
    position: relative;
    z-index: 1;
}

.home-07-cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.home-07-cta__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.home-07-cta__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.home-07-btn-white {
    background: white !important;
    border-color: white !important;
    color: var(--home07-secondary) !important;
    font-weight: 700;
    padding: 12px 30px;
    font-size: 1rem;
    transition: var(--home07-transition);
}

.home-07-btn-white:hover {
    background: var(--home07-bg-light) !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */
.home-07-testimonials {
    padding: 50px 0;
    background: var(--home07-bg-light);
}

.home-07-testimonial-card {
    background: var(--home07-bg-white);
    border-radius: var(--home07-radius);
    padding: 25px;
    box-shadow: var(--home07-shadow);
    margin: 10px 5px;
}

.home-07-testimonial-card__quote {
    margin-bottom: 15px;
}

.home-07-testimonial-card__quote i {
    font-size: 2rem;
    color: var(--home07-primary);
    opacity: 0.3;
}

.home-07-testimonial-card__text {
    font-size: 0.95rem;
    color: var(--home07-text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.home-07-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-07-testimonial-card__author .author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.home-07-testimonial-card__author .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-07-testimonial-card__author .author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--home07-text-dark);
    margin: 0 0 3px;
}

.home-07-testimonial-card__author .author-designation {
    font-size: 0.8rem;
    color: var(--home07-text-light);
}

/* ==========================================================================
   Carousel Navigation
   ========================================================================== */
.category-carousel-07 .owl-nav,
.featured-carousel-07 .owl-nav {
    position: absolute;
    top: 50%;
    width: calc(100% + 60px);
    left: -30px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0;
}

.category-carousel-07 .owl-nav button,
.featured-carousel-07 .owl-nav button {
    width: 44px;
    height: 44px;
    background: var(--home07-bg-white) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    pointer-events: auto;
    transition: var(--home07-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--home07-text-dark);
    border: 1px solid var(--home07-border) !important;
}

.category-carousel-07 .owl-nav button:hover,
.featured-carousel-07 .owl-nav button:hover {
    background: var(--home07-primary) !important;
    color: white;
    border-color: var(--home07-primary) !important;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.slider-dots .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.slider-dots .owl-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: var(--home07-border);
    border-radius: 50%;
    transition: var(--home07-transition);
}

.slider-dots .owl-dot.active {
    background: var(--home07-primary);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   Tablet Breakpoint (768px and up)
   ========================================================================== */
@media (min-width: 768px) {
    .home-07-section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .home-07-section-title {
        font-size: 2.25rem;
    }

    .home-07-section-title--lg {
        font-size: 2.75rem;
    }

    .home-07-hero {
        padding: 100px 0;
        min-height: 560px;
    }

    .home-07-hero__title {
        font-size: 2.75rem;
    }

    .home-07-hero__buttons {
        flex-direction: row;
        gap: 15px;
    }

    .home-07-categories {
        padding: 60px 0;
    }

    .home-07-featured {
        padding: 60px 0;
    }

    .home-07-statistics__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-07-stat-item__number {
        font-size: 2rem;
    }

    .home-07-recent__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-07-campaign-card--horizontal {
        flex-direction: row;
    }

    .home-07-campaign-card--horizontal .home-07-campaign-card__image {
        width: 40%;
        flex-shrink: 0;
        padding-top: 0;
        min-height: 200px;
    }

    .home-07-campaign-card--horizontal .home-07-campaign-card__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .home-07-cta__title {
        font-size: 2.5rem;
    }

    .home-07-testimonials {
        padding: 60px 0;
    }
}

/* ==========================================================================
   Desktop Breakpoint (992px and up)
   ========================================================================== */
@media (min-width: 992px) {
    .home-07-section-title {
        font-size: 2.75rem;
    }

    .home-07-section-title--lg {
        font-size: 3.5rem;
    }

    .home-07-hero {
        padding: 120px 0;
        min-height: 620px;
    }

    .home-07-hero__content {
        text-align: left;
    }

    .home-07-hero__title {
        font-size: 3.5rem;
    }

    .home-07-hero__description {
        font-size: 1.15rem;
    }

    .home-07-hero__buttons {
        justify-content: flex-start;
    }

    .home-07-hero__image {
        display: block;
    }

    .home-07-hero__image img {
        max-width: 100%;
        height: auto;
    }

    .home-07-categories {
        padding: 70px 0;
    }

    .home-07-category-card {
        padding: 25px 20px;
    }

    .home-07-category-card__icon {
        width: 70px;
        height: 70px;
    }

    .home-07-category-card__title {
        font-size: 1rem;
    }

    .home-07-featured {
        padding: 70px 0;
    }

    .home-07-campaign-card__title {
        font-size: 1rem;
    }

    .home-07-statistics {
        padding: 80px 0;
    }

    .home-07-stat-item {
        padding: 30px 20px;
    }

    .home-07-stat-item__icon {
        width: 60px;
        height: 60px;
    }

    .home-07-stat-item__icon i {
        font-size: 1.8rem;
    }

    .home-07-stat-item__number {
        font-size: 2.5rem;
    }

    .home-07-recent {
        padding: 70px 0;
    }

    .home-07-recent__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .home-07-cta {
        padding: 80px 0;
    }

    .home-07-cta__title {
        font-size: 3rem;
    }

    .home-07-testimonials {
        padding: 70px 0;
    }
}

/* ==========================================================================
   Large Desktop Breakpoint (1200px and up)
   ========================================================================== */
@media (min-width: 1200px) {
    .home-07-section-title--lg {
        font-size: 4rem;
    }

    .home-07-hero__title {
        font-size: 4rem;
    }

    .home-07-recent__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-07-stat-item__number {
        font-size: 3rem;
    }
}

/* ==========================================================================
   Small Mobile Breakpoint (below 576px)
   ========================================================================== */
@media (max-width: 575.98px) {
    /* Hide topbar on small mobile */
    .home-page-variant-07 .topbar-area {
        display: none;
    }

    /* Hero adjustments — tighter so the banner shows its full content
       (title + description + both buttons) without wasted green space */
    .home-07-hero {
        padding: 26px 0 32px;
        min-height: 0;
    }

    .home-07-hero__content {
        text-align: center;
    }

    .home-07-hero__subtitle {
        font-size: 0.75rem;
        padding: 4px 12px;
        margin-bottom: 12px;
    }

    .home-07-hero__title {
        font-size: 1.75rem;
    }

    .home-07-hero__description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .home-07-hero__buttons {
        width: 100%;
    }

    .home-07-btn-primary,
    .home-07-btn-secondary {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Section header */
    .home-07-section-title {
        font-size: 1.5rem;
    }

    .home-07-section-title--lg {
        font-size: 1.75rem;
    }

    .home-07-section-subtitle {
        font-size: 0.9rem;
    }

    /* Categories */
    .home-07-categories {
        padding: 35px 0;
    }

    .home-07-category-card {
        padding: 15px 10px;
    }

    .home-07-category-card__icon {
        width: 50px;
        height: 50px;
    }

    .home-07-category-card__title {
        font-size: 0.8rem;
    }

    /* Featured campaigns */
    .home-07-featured {
        padding: 35px 0;
    }

    .home-07-campaign-card__content {
        padding: 12px;
    }

    .home-07-campaign-card__title {
        font-size: 0.9rem;
    }

    .home-07-campaign-card__btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    /* Statistics */
    .home-07-statistics {
        padding: 40px 0;
    }

    .home-07-statistics__grid {
        gap: 12px;
    }

    .home-07-stat-item {
        padding: 15px 10px;
    }

    .home-07-stat-item__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .home-07-stat-item__icon i {
        font-size: 1.2rem;
    }

    .home-07-stat-item__number {
        font-size: 1.25rem;
    }

    .home-07-stat-item__label {
        font-size: 0.75rem;
    }

    /* Recent campaigns */
    .home-07-recent {
        padding: 35px 0;
    }

    .home-07-category-filter {
        gap: 6px;
        margin-bottom: 20px;
    }

    .home-07-filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .home-07-campaign-card--horizontal .home-07-campaign-card__excerpt {
        font-size: 0.8rem;
        -webkit-line-clamp: 1;
    }

    .percentage-badge {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .home-07-campaign-card__footer .home-07-campaign-card__btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    /* CTA */
    .home-07-cta {
        padding: 40px 0;
    }

    .home-07-cta__title {
        font-size: 1.25rem;
    }

    .home-07-cta__description {
        font-size: 0.9rem;
    }

    /* Testimonials */
    .home-07-testimonials {
        padding: 35px 0;
    }

    .home-07-testimonial-card {
        padding: 20px;
    }

    .home-07-testimonial-card__text {
        font-size: 0.9rem;
    }

    .home-07-testimonial-card__author .author-image {
        width: 40px;
        height: 40px;
    }

    .home-07-testimonial-card__author .author-name {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Navbar Mobile Styling
   ========================================================================== */
@media (max-width: 991.98px) {
    .home-07-nav .nav-container {
        padding: 0 15px;
    }

    .home-07-nav .responsive-mobile-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .home-07-nav .logo-wrapper {
        flex-shrink: 0;
    }

    .home-07-nav .logo-wrapper img {
        max-height: 40px;
        width: auto;
    }

    /* Hamburger Toggle Button */
    .home-07-nav .navbar-toggler {
        border: none;
        padding: 8px;
        background: transparent;
        position: relative;
        width: 32px;
        height: 32px;
        cursor: pointer;
        outline: none;
        z-index: 1001;
    }

    .home-07-nav .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .home-07-nav .navbar-toggler-icon {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--home07-text-dark);
        position: relative;
        transition: var(--home07-transition);
    }

    .home-07-nav .navbar-toggler-icon::before,
    .home-07-nav .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 22px;
        height: 2px;
        background: var(--home07-text-dark);
        left: 0;
        transition: var(--home07-transition);
    }

    .home-07-nav .navbar-toggler-icon::before {
        top: -7px;
    }

    .home-07-nav .navbar-toggler-icon::after {
        bottom: -7px;
    }

    /* Hamburger animation when open */
    .home-07-nav .navbar-toggler.active .navbar-toggler-icon {
        background: transparent;
    }

    .home-07-nav .navbar-toggler.active .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 0;
    }

    .home-07-nav .navbar-toggler.active .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    /* Collapse Menu */
    .home-07-nav .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--home07-bg-white);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        padding: 80px 0 30px;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }

    .home-07-nav .navbar-collapse.show {
        right: 0;
    }

    .home-07-nav .navbar-nav {
        padding: 0;
        margin: 0;
    }

    .home-07-nav .navbar-nav li {
        border-bottom: 1px solid var(--home07-border);
    }

    .home-07-nav .navbar-nav li a {
        display: block;
        padding: 15px 25px;
        color: var(--home07-text-dark);
        font-weight: 500;
        font-size: 0.95rem;
        text-decoration: none;
        transition: var(--home07-transition);
    }

    .home-07-nav .navbar-nav li a:hover {
        background: var(--home07-bg-light);
        color: var(--home07-primary);
    }

    /* Dropdown in mobile */
    .home-07-nav .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        box-shadow: none;
        border: none;
        background: var(--home07-bg-light);
        padding: 0;
    }

    .home-07-nav .navbar-nav .dropdown-menu a {
        padding-left: 40px;
        font-size: 0.9rem;
    }

    /* Hide desktop donate button in mobile nav, show in collapse */
    .home-07-nav .nav-right-content {
        display: none;
    }

    /* Mobile menu divider */
    .mobile-menu-divider {
        height: 1px;
        background: var(--home07-border);
        margin: 15px 0;
        border: none !important;
    }

    /* Mobile donate link styling */
    .mobile-donate-link {
        background: var(--home07-primary) !important;
        color: white !important;
        margin: 10px 15px;
        border-radius: var(--home07-radius-sm);
        display: flex !important;
        align-items: center;
        gap: 8px;
    }

    .mobile-donate-link:hover {
        background: var(--home07-primary-dark) !important;
        color: white !important;
    }

    .home-07-nav .navbar-nav li a i {
        width: 20px;
        text-align: center;
    }

    /* Mobile overlay */
    .home-07-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .home-07-nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }
}

/* Desktop nav-right visibility */
@media (min-width: 992px) {
    .home-07-nav .nav-right-content {
        display: block;
    }
}

/* ==========================================================================
   Sticky Navbar
   ========================================================================== */
.home-07-nav.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--home07-bg-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Add padding to body when sticky */
body.sticky-nav-active {
    padding-top: 70px;
}

/* ==========================================================================
   Custom Scrollbar for Horizontal Scroll
   ========================================================================== */
.home-07-category-filter {
    scrollbar-width: thin;
    scrollbar-color: var(--home07-primary) var(--home07-border);
}

.home-07-category-filter::-webkit-scrollbar {
    height: 4px;
}

.home-07-category-filter::-webkit-scrollbar-track {
    background: var(--home07-border);
    border-radius: 2px;
}

.home-07-category-filter::-webkit-scrollbar-thumb {
    background: var(--home07-primary);
    border-radius: 2px;
}

/* ==========================================================================
   Owl Carousel Mobile Adjustments
   ========================================================================== */
@media (max-width: 575.98px) {
    .category-carousel-07 .owl-nav,
    .featured-carousel-07 .owl-nav {
        display: none;
    }

    .owl-dots {
        margin-top: 15px;
    }

    .owl-dot {
        width: 6px;
        height: 6px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .home-07-nav,
    .topbar-area,
    .home-07-hero__buttons,
    .home-07-campaign-card__btn,
    .home-07-cta,
    .owl-nav,
    .owl-dots {
        display: none !important;
    }

    .home-07-hero,
    .home-07-categories,
    .home-07-featured,
    .home-07-statistics,
    .home-07-recent,
    .home-07-testimonials {
        padding: 20px 0 !important;
    }
}

/* ==========================================================================
   Accessibility Improvements
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .home-07-campaign-card,
    .home-07-category-card,
    .home-07-testimonial-card,
    .home-07-animate {
        transition: none;
        animation: none;
    }

    .home-07-campaign-card:hover,
    .home-07-category-card:hover {
        transform: none;
    }
}

/* Focus states for accessibility */
.home-07-filter-btn:focus,
.home-07-btn-primary:focus,
.home-07-btn-secondary:focus,
.home-07-view-all:focus,
.home-07-campaign-card__btn:focus {
    outline: 2px solid var(--home07-primary);
    outline-offset: 2px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.home-07-mt-0 { margin-top: 0 !important; }
.home-07-mb-0 { margin-bottom: 0 !important; }
.home-07-pt-0 { padding-top: 0 !important; }
.home-07-pb-0 { padding-bottom: 0 !important; }

/* Hide on specific breakpoints */
.home-07-hide-mobile { display: block; }
.home-07-show-mobile { display: none; }

@media (max-width: 767.98px) {
    .home-07-hide-mobile { display: none !important; }
    .home-07-show-mobile { display: block !important; }
}

/* Text alignment utilities */
.home-07-text-center-mobile {
    text-align: inherit;
}

@media (max-width: 767.98px) {
    .home-07-text-center-mobile {
        text-align: center !important;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.home-07-animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hero description fade in animation */
.home-07-hero__description {
    animation: fadeIn 1s ease-out forwards;
}

/* ==========================================================================
   Header Slider Area for Home 07
   ========================================================================== */
.header-slider-area .home-07-slider {
    position: relative;
}

.header-slider-area .home-07-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.header-slider-area .home-07-slider .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: var(--home07-transition);
}

.header-slider-area .home-07-slider .owl-dot.active {
    background: var(--home07-primary);
    width: 30px;
    border-radius: 5px;
}

.header-slider-area .home-07-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.header-slider-area .home-07-slider .owl-nav button {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    transition: var(--home07-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-slider-area .home-07-slider .owl-nav button:hover {
    background: var(--home07-primary) !important;
    color: white;
}

.header-slider-area .home-07-slider .owl-nav button i,
.header-slider-area .home-07-slider .owl-nav button span {
    font-size: 1.2rem;
}

/* Hero image improvements */
.home-07-hero__image {
    text-align: center;
    position: relative;
}

.home-07-hero__image img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: heroFloat 3s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Improve overlay for slider items */
.header-slider-area .home-07-hero__overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 100%);
}

/* Mobile bottom nav body padding */
@media (max-width: 991.98px) {
    body.has-mobile-bottom-nav {
        padding-bottom: 80px;
    }

    /* Adjust footer margin when bottom nav is present */
    body.has-mobile-bottom-nav footer {
        margin-bottom: 0;
    }

}

/* Hide nav arrows on mobile for cleaner look */
@media (max-width: 767.98px) {
    .header-slider-area .home-07-slider .owl-nav {
        display: none;
    }

    .header-slider-area .home-07-slider .owl-dots {
        bottom: 15px;
    }

    .header-slider-area .home-07-slider .owl-dot {
        width: 8px;
        height: 8px;
    }

    .header-slider-area .home-07-slider .owl-dot.active {
        width: 24px;
    }
}

/* ==========================================================================
   Modern Design Enhancements
   ========================================================================== */

/* Section Badge */
.home-07-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--home07-primary) 0%, var(--home07-primary-dark) 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.home-07-section-badge i {
    font-size: 0.9rem;
}

.home-07-section-badge--secondary {
    background: linear-gradient(135deg, var(--home07-secondary) 0%, #008B80 100%);
}

.home-07-section-badge--light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Modern Section Header */
.home-07-section-header--modern {
    position: relative;
}

.home-07-section-header--modern::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--home07-primary), var(--home07-secondary));
    border-radius: 2px;
}

.home-07-section-header--center.home-07-section-header--modern::after,
.home-07-section-header--center .home-07-section-header--modern::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Modern View All Button */
.home-07-view-all--modern {
    background: var(--home07-bg-light);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
}

.home-07-view-all--modern:hover {
    background: var(--home07-primary);
    color: white;
}

.home-07-view-all--modern i {
    transition: transform 0.3s ease;
}

.home-07-view-all--modern:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Modern Category Grid
   ========================================================================== */
.home-07-categories--modern {
    background: linear-gradient(135deg, var(--home07-bg-light) 0%, #e8f4f8 100%);
}

.home-07-category-slider-wrap {
    position: relative;
}

.home-07-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Slider arrows (desktop only) */
.home-07-cat-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--home07-primary), var(--home07-primary-dark));
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
    transition: var(--home07-transition);
}
.home-07-cat-arrow:hover {
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.5);
    transform: translateY(-50%) scale(1.08);
}
.home-07-cat-arrow--prev { left: -18px; }
.home-07-cat-arrow--next { right: -18px; }

/* Slick overrides for category slider */
.home-07-category-grid.slick-initialized {
    display: block;
}
.home-07-category-grid.slick-initialized .home-07-category-card--modern {
    margin: 0 8px;
}

.home-07-category-card--modern {
    background: var(--home07-bg-white);
    border: none;
    border-radius: var(--home07-radius);
    padding: 0;
    box-shadow: var(--home07-shadow);
    overflow: hidden;
}

.home-07-category-card--modern a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    transition: var(--home07-transition);
}

.home-07-category-card--modern:hover {
    transform: translateY(-3px);
    box-shadow: var(--home07-shadow-hover);
}

.home-07-category-card--modern:hover a {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(0, 166, 153, 0.05) 100%);
}

.home-07-category-card--modern .home-07-category-card__icon {
    width: 50px;
    height: 50px;
    margin: 0;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--home07-primary) 0%, var(--home07-secondary) 100%);
}

.home-07-category-card--modern .home-07-category-card__icon i {
    color: white;
    font-size: 1.4rem;
}

.home-07-category-card--modern .home-07-category-card__content {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.home-07-category-card--modern .home-07-category-card__title {
    font-size: 0.9rem;
    margin: 0 0 4px;
}

.home-07-category-card--modern .home-07-category-card__count {
    font-size: 0.75rem;
}

.home-07-category-card__arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--home07-bg-light);
    border-radius: 50%;
    color: var(--home07-text-medium);
    transition: var(--home07-transition);
    flex-shrink: 0;
}

.home-07-category-card--modern:hover .home-07-category-card__arrow {
    background: var(--home07-primary);
    color: white;
}

/* ==========================================================================
   Modern Campaign Card
   ========================================================================== */
.home-07-campaign-card--modern {
    border-radius: 16px;
    overflow: hidden;
}

.home-07-campaign-card--modern .home-07-campaign-card__image {
    position: relative;
}

.home-07-campaign-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--home07-transition);
}

.home-07-campaign-card--modern:hover .home-07-campaign-card__overlay {
    opacity: 1;
}

.home-07-quick-view {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--home07-primary);
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: var(--home07-transition);
}

.home-07-campaign-card--modern:hover .home-07-quick-view {
    transform: scale(1);
}

.home-07-quick-view:hover {
    background: var(--home07-primary);
    color: white;
}

.home-07-campaign-card__category {
    margin-bottom: 8px;
}

.home-07-campaign-card__category span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--home07-text-light);
    background: var(--home07-bg-light);
    padding: 4px 10px;
    border-radius: 12px;
}

.home-07-campaign-card__category i {
    font-size: 0.8rem;
}

.home-07-campaign-card__meta {
    margin-bottom: 12px;
}

.home-07-campaign-card--modern .home-07-campaign-card__goal {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}

.home-07-campaign-card--modern .home-07-campaign-card__goal i {
    color: var(--home07-secondary);
}

.home-07-campaign-card__btn--modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--home07-primary) 0%, var(--home07-primary-dark) 100%);
}

.home-07-campaign-card__btn--modern:hover {
    background: linear-gradient(135deg, var(--home07-primary-dark) 0%, #c94449 100%);
}

.home-07-campaign-card__btn--modern i {
    font-size: 1rem;
}

/* ==========================================================================
   Modern Recent Grid
   ========================================================================== */
.home-07-recent--modern {
    background: var(--home07-bg-white);
}

.home-07-recent__grid--modern {
    gap: 25px;
}

.home-07-category-filter--modern {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.home-07-category-filter--modern .home-07-filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 25px;
    padding: 10px 18px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.home-07-category-filter--modern .home-07-filter-btn i {
    font-size: 1rem;
}

/* Modern Primary Button */
.home-07-btn-primary--modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--home07-primary) 0%, var(--home07-primary-dark) 100%);
    border: none;
    padding: 14px 32px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.home-07-btn-primary--modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* ==========================================================================
   Modern Statistics
   ========================================================================== */
.home-07-statistics--modern {
    background: linear-gradient(135deg, #1a1d1e 0%, #2D3436 100%);
    position: relative;
    overflow: hidden;
}

.home-07-statistics--modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-10%, 10%);
    }
}

.home-07-statistics__grid--modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.home-07-stat-item--modern {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--home07-transition);
}

.home-07-stat-item--modern:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.home-07-stat-item--modern .home-07-stat-item__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--home07-primary) 0%, var(--home07-secondary) 100%);
    border-radius: 16px;
    margin: 0 auto 15px;
}

.home-07-stat-item--modern .home-07-stat-item__icon i {
    font-size: 1.6rem;
}

.home-07-stat-item--modern .home-07-stat-item__number {
    font-size: 2rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-07-stat-item--modern .home-07-stat-item__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Modern CTA
   ========================================================================== */
.home-07-cta--modern {
    background: linear-gradient(135deg, var(--home07-secondary) 0%, #00857a 100%);
    position: relative;
    overflow: hidden;
}

.home-07-cta--modern::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.home-07-cta--modern::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.home-07-cta__content--modern {
    position: relative;
    z-index: 1;
}

.home-07-cta__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.home-07-cta__icon i {
    font-size: 2.5rem;
    color: white;
}

.home-07-btn-white--modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.home-07-btn-white--modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Modern Testimonials
   ========================================================================== */
.home-07-testimonials--modern {
    background: linear-gradient(180deg, var(--home07-bg-light) 0%, var(--home07-bg-white) 100%);
}

.home-07-testimonial-card--modern {
    border-radius: 20px;
    padding: 30px;
    position: relative;
    border: 1px solid var(--home07-border);
}

.home-07-testimonial-card--modern::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--home07-primary);
    opacity: 0.1;
    line-height: 1;
}

.home-07-testimonial-card__rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.home-07-testimonial-card__rating i {
    color: #FFD700;
    font-size: 1rem;
}

.home-07-testimonial-card--modern .home-07-testimonial-card__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--home07-text-dark);
    font-style: italic;
}

.home-07-testimonial-card--modern .home-07-testimonial-card__author {
    padding-top: 20px;
    border-top: 1px solid var(--home07-border);
    margin-top: 20px;
}

.home-07-testimonial-card--modern .author-image {
    width: 55px;
    height: 55px;
    border: 3px solid var(--home07-primary);
}

.home-07-testimonial-card--modern .author-name {
    font-size: 1rem;
}

.home-07-testimonial-card--modern .author-designation {
    color: var(--home07-primary);
    font-weight: 500;
}

/* ==========================================================================
   Responsive Enhancements for Modern Design
   ========================================================================== */
@media (min-width: 576px) {
    .home-07-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (min-width: 768px) {
    .home-07-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-07-statistics__grid--modern {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-07-stat-item--modern .home-07-stat-item__number {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    /* Desktop: slick slider takes over, hide grid */
    .home-07-category-grid:not(.slick-initialized) {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: auto;
    }
    .home-07-category-grid:not(.slick-initialized) .home-07-category-card--modern {
        min-width: calc(25% - 12px);
        flex-shrink: 0;
    }
    .home-07-category-slider-wrap {
        padding: 0 25px;
    }

    .home-07-category-card--modern a {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .home-07-category-card--modern .home-07-category-card__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .home-07-category-card--modern .home-07-category-card__content {
        text-align: center;
    }

    .home-07-category-card__arrow {
        display: none;
    }

    .home-07-stat-item--modern {
        padding: 35px 25px;
    }

    .home-07-stat-item--modern .home-07-stat-item__icon {
        width: 70px;
        height: 70px;
    }

    .home-07-stat-item--modern .home-07-stat-item__number {
        font-size: 3rem;
    }

    .home-07-cta__icon {
        width: 100px;
        height: 100px;
    }

    .home-07-cta__icon i {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) {
    /* slick handles layout on xl screens */
}

/* Mobile specific modern styles */
@media (max-width: 575.98px) {
    .home-07-section-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .home-07-category-card--modern a {
        padding: 12px;
    }

    .home-07-category-card--modern .home-07-category-card__icon {
        width: 40px;
        height: 40px;
    }

    .home-07-category-card--modern .home-07-category-card__title {
        font-size: 0.8rem;
    }

    .home-07-category-card__arrow {
        width: 25px;
        height: 25px;
    }

    .home-07-stat-item--modern {
        padding: 20px 15px;
    }

    .home-07-stat-item--modern .home-07-stat-item__icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }

    .home-07-stat-item--modern .home-07-stat-item__number {
        font-size: 1.5rem;
    }

    .home-07-cta__icon {
        width: 60px;
        height: 60px;
    }

    .home-07-cta__icon i {
        font-size: 1.8rem;
    }

    .home-07-testimonial-card--modern {
        padding: 20px;
    }

    .home-07-btn-primary--modern {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }
}

/* ==========================================================================
   Hero Fade-In Animation
   ========================================================================== */
@keyframes home07FadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-07-hero__content .home-07-hero__subtitle {
    animation: home07FadeInUp 0.8s ease-out 0.2s both;
}
.home-07-hero__content .home-07-hero__title {
    animation: home07FadeInUp 0.8s ease-out 0.4s both;
}
.home-07-hero__content .home-07-hero__description {
    animation: home07FadeInUp 0.8s ease-out 0.6s both;
}
.home-07-hero__content .home-07-hero__buttons {
    animation: home07FadeInUp 0.8s ease-out 0.8s both;
}

/* Re-trigger fade-in on each slide change */
.owl-item.active .home-07-hero__content .home-07-hero__subtitle {
    animation: home07FadeInUp 0.8s ease-out 0.2s both;
}
.owl-item.active .home-07-hero__content .home-07-hero__title {
    animation: home07FadeInUp 0.8s ease-out 0.4s both;
}
.owl-item.active .home-07-hero__content .home-07-hero__description {
    animation: home07FadeInUp 0.8s ease-out 0.6s both;
}
.owl-item.active .home-07-hero__content .home-07-hero__buttons {
    animation: home07FadeInUp 0.8s ease-out 0.8s both;
}

/* Hero slider arrow overrides — bigger, clickable, visible */
.header-slider-area .home-07-slider .owl-nav {
    padding: 0 30px;
    z-index: 15;
    pointer-events: none;
}
.header-slider-area .home-07-slider .owl-nav button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.35) !important;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    cursor: pointer;
}
.header-slider-area .home-07-slider .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #fff;
    box-shadow: 0 4px 25px rgba(255, 255, 255, 0.2);
}

/* Hero dots on dark bg */
.header-slider-area .home-07-slider .owl-dot {
    background: rgba(255, 255, 255, 0.4);
}
.header-slider-area .home-07-slider .owl-dot.active {
    background: #fff;
}

/* ==========================================================================
   CTA Floating Particles Canvas
   ========================================================================== */
.home-07-cta__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.home-07-cta__content--modern {
    z-index: 2;
}

/* ==========================================================================
   Breadcrumb Mouse-Follow Glow
   ========================================================================== */
.breadcrumb-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}
.breadcrumb-area {
    overflow: hidden;
}
.breadcrumb-area:hover .breadcrumb-glow {
    opacity: 1;
}

/* ==========================================================================
   2026 MODERN DESIGN ENHANCEMENTS
   Scroll glow, 3D effects, reveal animations, glassmorphism
   ========================================================================== */

/* Scroll-Following Glow Orb */
.home-07-scroll-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(6, 182, 212, 0.06) 30%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    filter: blur(40px);
}

@media (max-width: 767.98px) {
    .home-07-scroll-glow {
        display: none;
    }
}

/* Scroll Reveal Animation */
.home-07-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-07-reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* 3D Card Perspective Container */
.home-07-campaign-card--modern {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Only promote cards to their own layer on desktop, where the JS
   3D tilt is active. Promoting every card permanently on mobile
   wastes memory and hurts scroll performance. */
@media (min-width: 992px) {
    .home-07-campaign-card--modern {
        will-change: transform;
    }

    .home-07-campaign-card--modern:hover {
        box-shadow: var(--home07-shadow-3d);
    }
}

/* Enhanced Section Backgrounds */
.home-07-featured {
    background: linear-gradient(180deg, var(--home07-bg-light) 0%, #ECFDF5 50%, var(--home07-bg-light) 100%);
    position: relative;
}

.home-07-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--home07-primary-glow), transparent);
}

.home-07-categories--modern {
    background: linear-gradient(180deg, var(--home07-bg-white) 0%, #F0FDFA 50%, var(--home07-bg-white) 100%);
}

.home-07-recent--modern {
    background: var(--home07-bg-white);
    position: relative;
}

.home-07-recent--modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
}

/* Enhanced Section Badge */
.home-07-section-badge {
    background: linear-gradient(135deg, var(--home07-primary) 0%, var(--home07-secondary) 100%);
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.25);
}

.home-07-section-badge--secondary {
    background: linear-gradient(135deg, var(--home07-secondary) 0%, var(--home07-accent) 100%);
    box-shadow: 0 2px 10px rgba(6, 182, 212, 0.25);
}

/* Enhanced Hero Gradient Text */
.home-07-hero__subtitle {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Enhanced Campaign Cards */
.home-07-campaign-card {
    border: 1px solid transparent;
    background: var(--home07-bg-white);
}

.home-07-campaign-card:hover {
    border-color: rgba(16, 185, 129, 0.15);
}

.home-07-campaign-card__btn--modern {
    background: linear-gradient(135deg, var(--home07-primary) 0%, #059669 100%);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.home-07-campaign-card__btn--modern:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    transform: translateY(-1px);
}

/* Enhanced Progress Bar */
.progress-bar {
    background: linear-gradient(90deg, var(--home07-primary) 0%, var(--home07-secondary) 100%);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

.progress-info .raised {
    color: var(--home07-primary);
    font-weight: 800;
}

/* Enhanced Statistics Glassmorphism */
.home-07-statistics--modern {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 40%, #134E4A 100%);
}

.home-07-stat-item--modern {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.home-07-stat-item--modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.1);
}

.home-07-stat-item--modern .home-07-stat-item__icon {
    background: linear-gradient(135deg, var(--home07-primary) 0%, var(--home07-secondary) 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.home-07-stat-item--modern .home-07-stat-item__number {
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* Enhanced CTA Section */
.home-07-cta--modern {
    background: linear-gradient(135deg, #059669 0%, #0D9488 40%, #0891B2 100%);
}

.home-07-cta__title {
    letter-spacing: -0.02em;
    font-weight: 800;
}

.home-07-cta__title span {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.home-07-cta__icon {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.home-07-btn-white--modern {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    font-weight: 700;
}

.home-07-btn-white--modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.2);
}

/* Enhanced Testimonials */
.home-07-testimonials--modern {
    background: linear-gradient(180deg, var(--home07-bg-white) 0%, #F0FDF4 50%, var(--home07-bg-white) 100%);
}

.home-07-testimonial-card--modern {
    border: 1px solid rgba(16, 185, 129, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--home07-transition);
}

.home-07-testimonial-card--modern:hover {
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.1);
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.15);
}

.home-07-testimonial-card__rating i {
    color: #F59E0B;
}

/* Enhanced Hero Buttons */
.home-07-btn-primary {
    background: #fff !important;
    color: #059669 !important;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    padding: 14px 34px;
}

.home-07-btn-primary:hover {
    background: #F0FDF4 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.home-07-btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 30px;
    padding: 12px 32px;
    backdrop-filter: blur(5px);
}

.home-07-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #fff !important;
    transform: translateY(-2px);
}

/* Modern View All Button */
.home-07-view-all--modern {
    border-radius: 30px;
    font-weight: 600;
    padding: 12px 24px;
    border: 1px solid var(--home07-border);
}

.home-07-view-all--modern:hover {
    background: var(--home07-primary);
    color: white;
    border-color: var(--home07-primary);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Modern Primary Button */
.home-07-btn-primary--modern {
    background: linear-gradient(135deg, var(--home07-primary) 0%, #059669 100%) !important;
    border: none !important;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
    color: #fff !important;
}

.home-07-btn-primary--modern:hover {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.45);
}

/* Section Header Modern Underline */
.home-07-section-header--modern::after {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--home07-primary), var(--home07-secondary));
    border-radius: 4px;
}

/* Enhanced Category Cards */
.home-07-category-card--modern {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
}

.home-07-category-card--modern:hover {
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.15);
}

.home-07-category-card--modern .home-07-category-card__icon {
    background: linear-gradient(135deg, var(--home07-primary) 0%, var(--home07-secondary) 100%);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.25);
}

/* Enhanced Filter Buttons */
.home-07-filter-btn {
    border-radius: 25px;
    font-weight: 600;
    transition: var(--home07-transition);
}

.home-07-filter-btn:hover,
.home-07-filter-btn.active {
    background: linear-gradient(135deg, var(--home07-primary), #059669);
    border-color: var(--home07-primary);
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

/* Badge Enhancements */
.badge-featured {
    background: linear-gradient(135deg, var(--home07-primary), #059669);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.badge-reward {
    background: linear-gradient(135deg, var(--home07-secondary), var(--home07-accent));
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.percentage-badge {
    background: linear-gradient(135deg, #ECFDF5, #F0FDFA);
    color: var(--home07-primary);
    font-weight: 800;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Gradient Accent Line for Sections */
.home-07-featured::after,
.home-07-categories--modern::after,
.home-07-recent--modern::after,
.home-07-testimonials--modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.15), transparent);
}

.home-07-categories--modern,
.home-07-testimonials--modern {
    position: relative;
}

/* Modern Typography Enhancements */
.home-07-section-title span {
    color: var(--home07-primary);
    position: relative;
}

@media (min-width: 992px) {
    .home-07-section-title span::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
        border-radius: 3px;
        z-index: -1;
    }
}

/* Smooth Hover for Quick View */
.home-07-quick-view {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.home-07-quick-view:hover {
    background: var(--home07-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

/* CTA Particles Enhancement */
.home-07-cta__particles {
    z-index: 0;
}

/* Enhanced Section Padding for Desktop */
@media (min-width: 992px) {
    .home-07-featured {
        padding: 90px 0;
    }

    .home-07-categories {
        padding: 90px 0;
    }

    .home-07-recent {
        padding: 90px 0;
    }

    .home-07-statistics {
        padding: 100px 0;
    }

    .home-07-cta {
        padding: 100px 0;
    }

    .home-07-testimonials {
        padding: 90px 0;
    }
}

@media (min-width: 1200px) {
    .home-07-featured {
        padding: 100px 0;
    }

    .home-07-categories {
        padding: 100px 0;
    }

    .home-07-recent {
        padding: 100px 0;
    }

    .home-07-statistics {
        padding: 110px 0;
    }

    .home-07-cta {
        padding: 110px 0;
    }

    .home-07-testimonials {
        padding: 100px 0;
    }
}

/* Small Mobile CTA Title */
@media (max-width: 575.98px) {
    .home-07-cta__title {
        font-size: 1.5rem;
        letter-spacing: -0.02em;
    }
}

/* Smooth Page Scroll */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .home-07-scroll-glow {
        display: none;
    }

    .home-07-reveal {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE POLISH (2026)
   Tidy section headers, consistent spacing, and lighter GPU work so the
   page stays smooth on phones, tablets, laptops and desktops.
   ========================================================================== */

/* --- Section header: clean, consistent layout below the desktop breakpoint --- */
@media (max-width: 991.98px) {
    .home-07-section-header--modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* Keep the gradient underline tucked under the title, not floating */
    .home-07-section-header--modern::after {
        bottom: -10px;
    }

    .home-07-section-header__text {
        width: 100%;
    }

    .home-07-section-header__action {
        width: 100%;
    }

    /* "View all" becomes a tidy, full-width pill instead of a lone arrow box */
    .home-07-section-header__action .home-07-view-all--modern {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 11px 20px;
        background: var(--home07-bg-light);
        border: 1px solid var(--home07-border);
        font-weight: 600;
    }

    /* Centre the centred-variant headers cleanly */
    .home-07-section-header--center {
        align-items: center;
        text-align: center;
    }
}

/* --- Tablet: 2-up campaign grids with comfortable gutters --- */
@media (min-width: 576px) and (max-width: 991.98px) {
    .home-07-recent__grid--modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* --- Phone: tighten spacing and stack cleanly --- */
@media (max-width: 575.98px) {
    .home-07-section-header {
        gap: 10px;
        margin-bottom: 22px;
    }

    .home-07-section-badge {
        margin-bottom: 6px;
    }

    .home-07-recent__grid--modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Horizontal recent cards: keep them vertical and compact on phones */
    .home-07-campaign-card--horizontal {
        flex-direction: column;
    }

    .home-07-campaign-card--horizontal .home-07-campaign-card__image {
        width: 100%;
        min-height: 0;
        padding-top: 56%;
    }

    .home-07-campaign-card__content {
        padding: 16px;
    }

    .home-07-campaign-card__footer {
        gap: 10px;
    }

    /* Full-width primary actions read better on small screens */
    .home-07-recent__more .home-07-btn-primary--modern {
        width: 100%;
        justify-content: center;
    }

    .home-07-hero__buttons {
        width: 100%;
    }

    .home-07-hero__buttons .boxed-btn {
        width: 100%;
    }
}

/* --- GPU/paint budget: drop expensive blur on phones where it janks scroll.
       Glassmorphism stays on tablet/desktop, where it performs fine. --- */
@media (max-width: 767.98px) {
    .home-07-hero__subtitle,
    .home-07-stat-item--modern,
    .home-07-cta__icon,
    .home-07-section-badge--light {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    /* Slightly more opaque fallbacks so text stays legible without blur */
    .home-07-stat-item--modern {
        background: rgba(255, 255, 255, 0.1);
    }

    .home-07-hero__subtitle {
        background: rgba(255, 255, 255, 0.18);
    }

    /* Disable the heavy radial pulse layer on the stats section on phones */
    .home-07-statistics--modern::before {
        display: none;
    }

    /* Hover-only overlays are pointless on touch and just add paint cost */
    .home-07-campaign-card__overlay {
        display: none;
    }
}

/* --- Touch devices: neutralise hover transforms that can stick after a tap --- */
@media (hover: none) {
    .home-07-campaign-card--modern:hover,
    .home-07-category-card--modern:hover,
    .home-07-testimonial-card--modern:hover {
        transform: none;
    }
}

/* ==========================================================================
   MOBILE HERO / BANNER — show 100% of the content (2026)
   The base hero is a flex box with align-items:center, a tall min-height and
   overflow:hidden (to clip the decorative glow orbs). On small screens that
   combination clips the TOP of the content (badge + big title) whenever the
   content is taller than min-height. Below 992px we let the hero hug its
   content and align it to the top, so the whole banner is always visible.
   ========================================================================== */
@media (max-width: 991.98px) {
    .home-07-hero {
        min-height: 0;
        align-items: flex-start;
        padding-top: 26px;
        padding-bottom: 34px;
    }

    .home-07-hero__content {
        width: 100%;
        text-align: center;
    }

    /* Let each slide size to its own content — never clip the title */
    .header-slider-area .home-07-slider .owl-item,
    .header-slider-area .home-07-slider .owl-stage,
    .header-slider-area .home-07-slider .owl-stage-outer {
        height: auto;
    }

    /* A touch tighter on phones */
    .home-07-hero__title {
        margin-bottom: 14px;
    }

    .home-07-hero__description {
        margin-bottom: 18px;
    }
}

@media (max-width: 575.98px) {
    .home-07-hero {
        padding-top: 22px;
        padding-bottom: 28px;
    }
}
