:root {
    /* --- NEW PALETTE: Heritage Modern --- */
    /* Primary: Deep Ocean/Agate inspired */
    --primary-color: #0d47a1;
    --primary-gradient: linear-gradient(135deg, #0d47a1, #1976D2);

    /* Secondary: Yemeni Agate (Dark Red/Brown) */
    --agate-color: #880e4f;
    --agate-gradient: linear-gradient(135deg, #880e4f, #c2185b);

    /* Accent: Coffee tones */
    --coffee-color: #6d4c41;
    --coffee-light: #d7ccc8;

    /* Glassmorphism Tokens */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(12px);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

    /* Standard Colors */
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --warning-color: #fbc02d;
    --success-color: #43a047;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(136, 14, 79, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(136, 14, 79, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(136, 14, 79, 0);
    }
}

/* --- UTILITIES --- */
.hover-grow {
    transition: transform 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.02);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* --- LAYOUT & HEADER --- */
.top-header {
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.logo-section {
    padding: 1.5rem 2rem;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.logo span {
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: -1px;
}

/* Navigation - Modern Floating Style */
.main-nav {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--agate-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--agate-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* --- 1. STORIES BAR (Instagram Style) --- */
.stories-container {
    padding: 2rem 0;
    background: #fff;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

.stories-container::-webkit-scrollbar {
    display: none;
}

.stories-wrapper {
    display: inline-flex;
    gap: 1.5rem;
    padding: 0 2rem;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.story-item:hover {
    transform: translateY(-5px);
}

.story-ring {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    position: relative;
}

.story-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    background-size: cover;
    background-position: center;
}

.story-name {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- 2. IMMERSIVE HERO (Parallax & Glass) --- */
.immersive-hero {
    position: relative;
    height: 85vh;
    /* Almost full screen */
    width: 100%;
    overflow: hidden;
    margin-bottom: 4rem;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    /* Taller for parallax movement */
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
    transition: transform 0.1s ease-out;
    /* For JS parallax */
}

.hero-overlay-glass {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 50%;
    /* Adjust for mobile */
    padding: 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

.hero-tag {
    background: var(--agate-gradient);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-title-main {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-meta-glass {
    display: flex;
    gap: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* --- 3. MASONRY REPORTS (Broken Grid) --- */
.creative-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--text-color);
}

.creative-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--agate-gradient);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
    padding: 1rem 0;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.masonry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-content {
    padding: 1.5rem;
}

.masonry-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

/* Varying heights handled by clear content or random aspect ratios in images */

/* --- 4. TIMELINE SUCCESS STORIES --- */
.timeline-section {
    padding: 4rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.timeline-scroll-container {
    display: flex;
    gap: 3rem;
    padding: 2rem 10%;
    /* Center start */
    overflow-x: auto;
    position: relative;
}

/* The Horizontal Line */
.timeline-scroll-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 200%;
    /* Stretch far right */
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
    transform: translateY(-50%);
}

.timeline-card {
    min-width: 320px;
    background: white;
    border-radius: 16px;
    padding: 1rem;
    position: relative;
    /* Above line */
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
}

/* Connector Dot */
.timeline-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -1.7rem;
    /* Adjust based on gap */
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.2);
    z-index: 3;
    display: none;
    /* Hidden for now, complex to align perfectly in horiz scroll without fixed heights */
}

/* Vertical connector look for simplicity in Horizontal scroll cards */
.timeline-marker {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--agate-color);
    color: white;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

.timeline-img {
    height: 180px;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* --- 5. PODCAST (Vinyl Audio) --- */
.podcast-vinyl-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
}

.vinyl-card {
    position: relative;
    width: 280px;
    cursor: pointer;
    perspective: 1000px;
}

.vinyl-disc {
    width: 260px;
    height: 260px;
    background: #111;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 10px;
    /* Peek out */
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* The label inside disc */
.vinyl-label {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    border: 2px solid white;
}

.vinyl-cover {
    position: relative;
    width: 280px;
    height: 280px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.vinyl-card:hover .vinyl-disc {
    transform: translateX(-50%) rotate(180deg);
    /* Slide out left (RTL) */
}

.vinyl-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vinyl-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--agate-color);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.vinyl-card:hover .vinyl-play-btn {
    transform: translate(-50%, -50%) scale(1);
}

/* --- 6. STICKY PLAYER --- */
.sticky-player-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    /* Hidden initially */
    width: 90%;
    max-width: 800px;
    background: rgba(22, 22, 22, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.sticky-player-bar.active {
    transform: translateX(-50%) translateY(0);
}

.player-thumb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
    background-size: cover;
    animation: rotate 10s linear infinite;
    animation-play-state: paused;
}

.sticky-player-bar.playing .player-thumb {
    animation-play-state: running;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.player-info {
    flex: 1;
}

.player-title {
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.player-artist {
    font-size: 0.8rem;
    opacity: 0.7;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ctrl-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.ctrl-btn:hover {
    color: var(--agate-color);
}

.play-pause-btn {
    font-size: 2.2rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .masonry-grid {
        column-count: 2;
    }

    .hero-overlay-glass {
        width: 80%;
        right: 10%;
        bottom: 5%;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 1;
    }

    .nav-menu {
        display: none;
    }

    /* Simplified mobile menu needed (not part of this scope but good to note) */
    .immersive-hero {
        height: 60vh;
        border-radius: 0 0 20px 20px;
    }

    .hero-title-main {
        font-size: 2rem;
    }

    .vinyl-card:hover .vinyl-disc {
        transform: none;
    }

    /* Disable vinyl slide on mobile */
    .timeline-scroll-container {
        width: 100%;
        padding: 2rem 1rem;
    }
}

.hero-side-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    height: 100%;
}

.hero-small-article {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-image-wrapper-small {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-image-wrapper-small img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-small-article:hover .hero-image-wrapper-small img {
    transform: scale(1.1);
}

.hero-content-overlay-small {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    padding: 1rem;
    z-index: 2;
    pointer-events: none;
    /* Let clicks pass to anchor if needed, but anchor wraps all */
}

.hero-category-badge-small {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff3366;
    /* Accent color */
    color: white;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 2px;
    z-index: 3;
}

.hero-title-small {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-date-small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.3rem;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-main-article {
        height: 400px;
    }

    .hero-side-grid {
        height: 400px;
        /* Give it fixed height to maintain 2x2 aspect ratio roughly */
    }
}

@media (max-width: 576px) {
    .hero-side-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
        height: auto;
    }

    .hero-main-article {
        height: 250px;
    }

    .hero-title-large {
        font-size: 1.4rem;
    }
}

.category-badge-hero {
    display: inline-block;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.interview-main-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0.8rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.interview-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1rem 0;
    opacity: 0.95;
}

.interview-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
    margin-top: 1.2rem;
}

.interview-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.interview-meta i {
    color: #2196F3;
}

/* Sub Interviews (3 Small Cards) */
.sub-interviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sub-interview-card {
    position: relative;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sub-interview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sub-interview-image {
    position: relative;
    height: 100%;
}

.sub-interview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sub-interview-card:hover .sub-interview-image img {
    transform: scale(1.1);
}

.sub-interview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    padding: 1.5rem 1.2rem;
    color: white;
}

.sub-interview-title {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.8rem 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.sub-interview-meta {
    font-size: 0.85rem;
    opacity: 0.9;
}

.sub-interview-meta i {
    color: #2196F3;
    margin-left: 0.3rem;
}

/* Responsive */
@media (max-width: 992px) {
    .sub-interviews {
        grid-template-columns: repeat(2, 1fr);
    }

    .interview-main-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .sub-interviews {
        grid-template-columns: 1fr;
    }

    .main-interview {
        height: 350px;
    }

    .sub-interview-card {
        height: 220px;
    }

    .interview-main-title {
        font-size: 1.4rem;
    }
}

/* Podcast Section - Inline */
.podcast-section-inline {
    margin-bottom: 3rem;
}

.podcast-grid-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.podcast-card-inline {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.podcast-card-inline:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.podcast-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.podcast-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.podcast-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.podcast-card-inline:hover .podcast-image-container img {
    transform: scale(1.1);
}

.podcast-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.podcast-card-inline:hover .podcast-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.podcast-content-inline {
    padding: 1.5rem;
    background: white;
}

.podcast-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.podcast-title-inline {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.podcast-excerpt-inline {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0.8rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.podcast-meta-inline {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #999;
    margin-top: 1rem;
}

.podcast-meta-inline span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.podcast-meta-inline i {
    color: #667eea;
}

@media (max-width: 992px) {
    .podcast-grid-inline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .podcast-grid-inline {
        grid-template-columns: 1fr;
    }
}

/* Success Stories Slider */
.section-header-with-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.slider-nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #2196F3;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #2196F3;
}

.slider-btn:hover {
    background: #2196F3;
    color: white;
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.success-slider-container {
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
}

.success-slider {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease;
}

.success-slide-item {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 280px;
}

.success-card {
    display: block;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.success-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.success-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.success-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.success-card:hover .success-image img {
    transform: scale(1.1);
}

.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.success-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.success-content {
    padding: 1.2rem;
}

.success-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.success-date i {
    color: #2196F3;
}

.success-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    margin: 0.5rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.success-card:hover .success-title {
    color: #2196F3;
}

.success-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #2196F3;
    width: 30px;
    border-radius: 5px;
}

.slider-dot:hover {
    background: #2196F3;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1200px) {
    .success-slide-item {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 992px) {
    .success-slide-item {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .success-slide-item {
        flex: 0 0 calc(100% - 0rem);
        min-width: 100%;
    }

    .section-header-with-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* News Section - Two Columns Layout */
.news-two-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Main News Card (Right Column - Large) */
.main-news-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-news-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.news-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.main-news-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.main-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-news-card:hover .main-news-image img {
    transform: scale(1.08);
}

.featured-badge-news {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.5);
    z-index: 2;
}

.main-news-content {
    padding: 1.5rem;
    background: white;
}

.news-meta-small {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: #666;
}

.news-meta-small i {
    color: #2196F3;
}

.views-count {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.views-count i {
    color: #ff6b6b;
}

.main-news-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

.main-news-card:hover .main-news-title {
    color: #2196F3;
}

/* Side News List (Left Column - 4 Small Items) */
.side-news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-news-item {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.side-news-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(-3px);
}

.side-news-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    padding: 0.8rem;
}

.side-news-image {
    flex-shrink: 0;
    width: 110px;
    height: 85px;
    border-radius: 4px;
    overflow: hidden;
}

.side-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.side-news-item:hover .side-news-image img {
    transform: scale(1.1);
}

.side-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.side-news-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin: 0 0 0.5rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.side-news-item:hover .side-news-title {
    color: #2196F3;
}

.news-meta-mini {
    font-size: 0.75rem;
    color: #999;
}

.news-meta-mini i {
    color: #2196F3;
    margin-left: 0.3rem;
}

/* Responsive */
@media (max-width: 992px) {
    .news-two-columns {
        grid-template-columns: 1fr;
    }

    .main-news-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .side-news-link {
        flex-direction: column;
    }

    .side-news-image {
        width: 100%;
        height: 150px;
    }
}

/* Jannah Style - Article List */
.jannah-articles-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.jannah-article-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.jannah-article-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.article-thumb {
    position: relative;
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 4px;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jannah-article-item:hover .article-thumb img {
    transform: scale(1.1);
}

.post-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    box-shadow: 0 2px 6px rgba(238, 90, 111, 0.5);
}

.article-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #999;
}

.post-date,
.post-views {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.post-date i {
    color: #2196F3;
}

.post-views i {
    color: #ff6b6b;
}

.article-title-jannah {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.article-title-jannah a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title-jannah a:hover {
    color: #2196F3;
}

.post-rating {
    display: flex;
    gap: 0.2rem;
    font-size: 0.75rem;
    color: #ffc107;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
    text-transform: uppercase;
}

.title-icon {
    color: #0088cc;
    font-size: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 60px;
    height: 2px;
    background: #0088cc;
    /* Jannah Blue */
}

/* Article Cards */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.featured-article {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.featured-article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem;
}

.category-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.badge-news {
    background: var(--accent-color);
}

.badge-interviews {
    background: var(--secondary-color);
}

.badge-reports {
    background: var(--primary-color);
}

.badge-podcast {
    background: var(--success-color);
}

.badge-success-stories {
    background: var(--warning-color);
    color: #333;
}

.badge-blogs {
    background: #9C27B0;
}

.article-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.article-meta {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Side Articles */
.side-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-article {
    position: relative;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Section Grid */
.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-color);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1rem;
}

.article-date {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.article-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0.5rem 0;
    color: var(--dark-color);
}

.article-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sidebar */
.main-content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
    margin-top: 2rem;
}

.sidebar {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.sidebar-article {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.sidebar-article:last-child {
    border-bottom: none;
}

.sidebar-article img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.sidebar-article-content {
    flex: 1;
}

.sidebar-article-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

/* Full Width Section (Podcast) */
.full-width-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 0;
    margin: 3rem 0;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.podcast-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.podcast-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
    }

    .main-content-wrapper {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        flex-direction: column;
    }
}

/* Jannah Footer */
.jannah-footer {
    background: #1a1a1a;
    color: #aeaeae;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    font-size: 0.95rem;
    border-top: 5px solid var(--jannah-blue);
}

.footer-widget-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 30px;
    height: 1px;
    background: var(--jannah-blue);
}

.footer-about-text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 4px;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--jannah-blue);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aeaeae;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '\F285';
    /* Bootstrap Icon chevron-left */
    font-family: 'bootstrap-icons';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    opacity: 0.5;
}

.footer-links a:hover {
    color: white;
    padding-right: 5px;
}

.newsletter-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.newsletter-input {
    background: white;
    border: none;
    height: 45px;
    padding: 0 1rem;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 0.8rem;
}

.newsletter-btn {
    background: var(--jannah-blue);
    color: white;
    border: none;
    height: 45px;
    width: 100%;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
}

.newsletter-btn:hover {
    background: #0077b3;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.copyright-text {
    font-size: 0.9rem;
    opacity: 0.8;
}