.section-tag {
    font-size: 0.90rem;
    font-weight: 600;
    color: #262423ff;
    background: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(235, 235, 235, 0.3);
    display: inline-flex;
    width: auto;
    align-items: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.recent-section-title {
    color: #FF5A00;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.bg-overlay {
    position: relative;
    background: url('/assets/img/banner-1.jpg') center center / cover no-repeat fixed;
}

.bg-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(201 201 201 / 90%);
    /* Dark overlay */
    z-index: 1;
}

.bg-overlay>* {
    position: relative;
    z-index: 2;
}


/* Custom Ground Cards */
.ground-card {
    background: #1E293B;
    /* Lighter Dark Blue for Cards */
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.ground-card:hover {
    border-color: rgba(255, 90, 0, 0.4);
}

.image-container {
    position: relative;
    height: 250px;
}

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

.image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(transparent, #1E293B);
}

.category-badge {
    position: absolute;
    top: 20px;
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 14px;
    border-radius: 50px;
    z-index: 5;
}

.date-text {
    position: absolute;
    bottom: 15px;
    left: 20px;
    z-index: 5;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.card-body-custom {
    padding: 28px;
}

.card-title-text {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.location-tag {
    color: #94A3B8;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-description {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.btn-read {
    color: #FF5A00;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.btn-read:hover {
    color: #FF7C38;
    gap: 12px;
}

/* Slider Dots Styling */
.owl-dots {
    margin-top: 40px !important;
    text-align: center;
}

.owl-dot span {
    background: #334155 !important;
    width: 10px !important;
    height: 10px !important;
    transition: 0.3s;
}

.owl-dot.active span {
    background: #FF5A00 !important;
    width: 30px !important;
}

.highlight-orange {
    color: #FF5A00;
}

/* Program Row Spacing */
.program-row {
    margin-bottom: 100px;
    align-items: center;
}

/* Initiative Badges */
.initiative-badge {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.badge-orange {
    background: #FFF1E7;
    color: #FF5A00;
}

.badge-green {
    background: #E6F9F0;
    color: #00C853;
}

.badge-blue {
    background: #E7F1FF;
    color: #0D6EFD;
}

/* Typography */
.program-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.program-text {
    color: #64748B;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 480px;
}

/* Image Container & Floating Icons */
.img-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.floating-icon {
    position: absolute;
    top: 25px;
    left: 25px;
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
}


/* Glassmorphism Stats Cards */
.stats-container {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    display: flex;
    gap: 15px;
}

.stat-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 12px 20px;
    color: white;
}

.stat-card h4 {
    font-weight: 800;
    margin: 0;
    font-size: 1.25rem;
}

.stat-card span {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Buttons */
.btn-custom {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-orange {
    background-color: #FF5A00;
    color: white;
    border: none;
}

.btn-orange:hover {
    background-color: #e65100;
    transform: translateY(-2px);
}

.btn-green {
    background-color: #00C853;
    color: white;
    border: none;
}

.btn-green:hover {
    background-color: #00a344;
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 1px solid #E2E8F0;
    color: #0F172A;
    background: white;
}

.btn-outline-custom:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .program-row {
        text-align: center;
    }

    .program-text {
        margin-left: auto;
        margin-right: auto;
    }

    .program-row:nth-child(even) {
        flex-direction: column-reverse;
    }

    .stats-container {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
}

.sw-banner-section {
    position: relative;
    padding: 140px 0 40px 0;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(11, 17, 32, 0.85) 45%, rgba(11, 17, 32, 0.5) 100%),
        url('/assets/img/banner-1.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.sw-label-wrapper {
    border-left: 3px solid #FF7C38;
    padding-left: 15px;
    margin-bottom: 30px;
}

.sw-banner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 90, 31, 0.15), transparent 60%);
    z-index: 0;
}

.sw-banner-section>.container {
    position: relative;
    z-index: 1;
}

.sw-label-main {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #FF7C38;
    letter-spacing: 2px;
}

.sw-label-sub {
    font-size: 12px;
    color: #a0aec0;
}

/* Typography */
.sw-main-heading {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
}

.sw-description {
    font-size: 18px;
    color: #cbd5e0;
    max-width: 520px;
    margin-bottom: 40px;
}

.sw-action-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sw-btn-primary {
    background-color: #FF7C38 !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 12px 32px !important;
    font-weight: 600 !important;
    border: none !important;
}

.sw-btn-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px !important;
    padding: 12px 32px !important;
    backdrop-filter: blur(8px);
}

.sw-impact-box {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px 25px;
    min-width: 160px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.sw-box-top {
    top: -100px;
    right: 20px;
}

.sw-box-bottom {
    bottom: -150px;
    right: 80px;
}

.sw-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
}

.sw-text-orange {
    color: #ff9f43;
}

.sw-text-green {
    color: #2ecc71;
}

.sw-meta {
    font-size: 13px;
    color: #e2e8f0;
}

@media (max-width: 991px) {
    .sw-banner-section {
        background: #0b1120;
        text-align: center;
    }

    .sw-description {
        margin: 0 auto 30px;
    }

    .sw-action-group {
        justify-content: center;
    }

    .sw-label-wrapper {
        border-left: none;
        border-bottom: 2px solid #FF7C38;
        padding-left: 0;
        display: inline-block;
    }
}

/* Custom Branding Colors */
.text-orange {
    color: #FF5E00;
}

.text-navy {
    color: #101828;
}

/* The Orange Line */
.accent-line {
    width: 40px;
    height: 4px;
    background-color: #FF5E00;
    border-radius: 2px;
}

/* Adjusting Letter Spacing for the Label */
.tracking-widest {
    letter-spacing: 0.1em;
}