﻿
.about-red-section {
    width: 100%;
    background: #ffffff;
    padding: 1rem 0;
    position: relative;
    transition: all 0.25s ease;
}

    /* decorative red vertical accent */
    .about-red-section::before {
        content: "";
        position: absolute;
        top: -20%;
        left: -10%;
        width: 230px;
        height: 230px;
        background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .about-red-section::after {
        content: "";
        position: absolute;
        bottom: -10%;
        right: -5%;
        width: 260px;
        height: 260px;
        background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 75%);
        border-radius: 50%;
        pointer-events: none;
    }

/* header / parishad name (previously h5) */
.red-overline {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b91c1c;
    background: rgba(239, 68, 68, 0.08);
    display: inline-block;
    padding: 0.5rem 1.8rem;
    border-radius: 40px;
    margin: 0 auto 1.8rem auto;
    border: 1px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 2;
}

.red-overline-wrapper {
    display: flex;
    justify-content: center;
}

/* main about content container */
.red-about-content {
    text-align: center;
    position: relative;
    z-index: 3;
    padding: 1rem;
}

section > .container, section > .container-fluid {
    padding-top: 0;
    padding-bottom: 0 !important;
}
/* main heading (previously h3) */
.red-main-heading {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    color: #382121;
    margin-bottom: 1.5rem;
    text-align: center;
}

    .red-main-heading span {
        background: linear-gradient(145deg, #dc2626, #b91c1c);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        padding-bottom: 0.15rem;
        border-bottom: 4px solid #dc2626;
        display: inline-block;
    }

/* short description paragraph */
.red-description {
    line-height: 1.7;
    /* text-align: left !important; */
}

    .red-description * {
        font-size: 1.25rem;
        color: #3f3f46;
        max-width: 1124px;
        margin: 0 auto 2.2rem auto;
        font-weight: 400;
        padding: 0 0.8rem;
        position: relative;
        font-family: 'Open Sans', sans-serif !important;
        /* text-align: left; */
        /* text-align: left !important; */
    }

    .red-description::after {
        content: "";
        display: block;
        width: 80px;
        height: 3px;
        background: #dc2626;
        margin: 1.8rem auto 0;
        border-radius: 10px;
        opacity: 0.7;
    }

/* read more link / button */
.red-readmore-link {
    display: inline-block;
    background: #dc2626;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 10px 18px -8px rgba(220, 38, 38, 0.5);
    border: 1px solid #b91c1c;
    position: relative;
    z-index: 5;
    cursor: pointer;
    backdrop-filter: blur(2px);
}

    .red-readmore-link:hover {
        background: #b91c1c;
        box-shadow: 0 14px 22px -6px rgba(185, 28, 28, 0.6);
        transform: translateY(-2px);
        border-color: #991b1b;
        color: white;
    }

    .red-readmore-link:active {
        transform: translateY(1px);
        box-shadow: 0 5px 12px -4px rgba(220, 38, 38, 0.6);
    }

/* small icon (optional decorative) */
.red-diamond-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: white;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    margin-right: 8px;
    vertical-align: middle;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 550px) {
    .logo {
        display: flex;
        justify-content: center;
    }

        .logo > a {
            display: flex;
            font-size: 18px;
            font-weight: 700;
            color: #ed3237;
            align-items: center;
            gap: 5px;
        }

            .logo > a > img {
                width: 52px !important;
            }

    .about-red-section {
        padding: 2.5rem 1.5rem;
        border-radius: 2rem 1rem 2rem 1rem;
    }

    .red-main-heading {
        font-size: 1.2rem;
    }

    .red-description {
        font-size: 1rem;
    }

    .red-overline {
        font-size: 1rem;
        padding: 0.4rem 1.2rem;
    }

    .red-readmore-link {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

.red-members-section {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    backdrop-filter: blur(10px);
}

    /* Decorative glowing orbs */
    .red-members-section::before {
        content: "";
        position: absolute;
        top: -20%;
        left: -10%;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 60%);
        border-radius: 50%;
        pointer-events: none;
        animation: floatOrb 8s ease-in-out infinite;
    }

    .red-members-section::after {
        content: "";
        position: absolute;
        bottom: -15%;
        right: -8%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 65%);
        border-radius: 50%;
        pointer-events: none;
        animation: floatOrb 10s ease-in-out infinite reverse;
    }

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

/* Section heading */
.red-section-heading {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

.red-heading-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    }

    50% {
        box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
    }
}

.red-heading-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

    .red-heading-title span {
        background: linear-gradient(145deg, #dc2626, #991b1b);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        position: relative;
        display: inline-block;
    }

        .red-heading-title span::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #dc2626, transparent);
            border-radius: 10px;
        }

/* Card grid */
.red-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    position: relative;
    z-index: 5;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.red-profile-col {
    flex: 1 1 220px;
    max-width: 270px;
    min-width: 210px;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out both;
}

    .red-profile-col:nth-child(1) {
        animation-delay: 0.1s;
    }

    .red-profile-col:nth-child(2) {
        animation-delay: 0.2s;
    }

    .red-profile-col:nth-child(3) {
        animation-delay: 0.3s;
    }

    .red-profile-col:nth-child(4) {
        animation-delay: 0.4s;
    }

/* Profile card */
.red-profile-card {
    width: 100%;
    background: linear-gradient(145deg, #ffffff, #fffafa);
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(220, 38, 38, 0.1), 0 0 20px rgba(220, 38, 38, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

    .red-profile-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .red-profile-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 25px 45px -12px rgba(185, 28, 28, 0.4), 0 0 0 3px rgba(220, 38, 38, 0.2), 0 0 30px rgba(220, 38, 38, 0.15);
        border-color: rgba(220, 38, 38, 0.5);
    }

        .red-profile-card:hover::before {
            opacity: 1;
        }

.red-profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2), 0 10px 25px rgba(220, 38, 38, 0.3);
    background: #fbe9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}


.red-profile-card:hover .red-profile-img::after {
    opacity: 1;
}

.red-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.red-profile-card:hover .red-profile-img img {
    transform: scale(1.1);
}

.red-profile-img.icon-style {
    width: 150px;
    height: 150px;
    background: linear-gradient(145deg, #fee2e2, #fecaca);
    border-color: #b91c1c;
    margin-left: auto;
    margin-right: auto;
}

    .red-profile-img.icon-style img {
        object-fit: contain;
        padding: 0.8rem;
        max-width: 85%;
        max-height: 85%;
    }

.red-profile-name {
    font-size: 1rem;
    font-weight: 600;
    color: #9b1717;
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.red-profile-role {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    display: inline-block;
    padding: 0.45rem 1.5rem;
    border-radius: 30px;
    margin-top: 0.5rem;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.red-profile-card:hover .red-profile-role {
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.5);
}

.red-profile-count {
    font-size: 2.5rem;
    font-weight: 800;
    color: #b91c1c;
    line-height: 1;
    margin: 0.5rem 0 0.2rem;
    background: linear-gradient(145deg, #dc2626, #991b1b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.red-profile-card:hover .red-profile-count {
    transform: scale(1.1);
}

a.red-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

/* Decorative bottom line */
.red-bottom-line {
    position: relative;
    z-index: 2;
    height: 4px;
    background: linear-gradient(90deg, transparent, #dc2626, #ef4444, #b91c1c, transparent);
    margin-top: 3rem;
    border-radius: 10px;
    opacity: 0.5;
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .red-members-section {
        padding: 2.5rem 1.5rem;
        border-radius: 2rem 1rem 2rem 1rem;
    }

    .red-card-grid {
        gap: 0.5rem;
    }

    .red-profile-col {
        flex: 1 1 160px;
        max-width: 220px;
        min-width: 150px;
    }

    .red-profile-img {
        width: 110px;
        height: 110px;
        border-width: 3px;
    }

        .red-profile-img.icon-style {
            width: 90px;
            height: 90px;
        }

    .red-profile-name {
        font-size: 1.1rem;
    }

    .red-profile-count {
        font-size: 2rem;
    }

    .red-heading-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .red-profile-col {
        flex: 1 1 130px;
        max-width: 180px;
        min-width: 130px;
    }

    .red-profile-img {
        width: 90px;
        height: 90px;
    }
}

/* Main section container */
.red-team-section {
    padding-top: 1rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(25px, -25px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Header area */
.red-team-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 5;
}

.red-team-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    }

    50% {
        box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
    }
}

.red-team-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

    .red-team-title span {
        background: linear-gradient(145deg, #dc2626, #991b1b);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        position: relative;
    }

    .red-team-title::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #dc2626, transparent);
        border-radius: 10px;
    }

/* Team grid */
.red-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 5;
}

/* Team member card */
.red-team-card {
    background: linear-gradient(145deg, #ffffff, #fffafa);
    border-radius: 2rem;
    overflow: hidden;
    /* box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(220, 38, 38, 0.1); */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
    cursor: pointer;
}

    .red-team-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .red-team-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .red-team-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .red-team-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .red-team-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .red-team-card:nth-child(6) {
        /* animation-delay: 0.6s; */
    }

    .red-team-card:nth-child(7) {
        animation-delay: 0.7s;
    }

    .red-team-card:nth-child(8) {
        animation-delay: 0.8s;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.red-team-card:hover {
    /* transform: translateY(-10px); */
    /* box-shadow: 0 25px 45px -12px rgba(185, 28, 28, 0.4), 0 0 0 3px rgba(220, 38, 38, 0.2), 0 0 30px rgba(220, 38, 38, 0.15); */
    /* border-color: rgba(220, 38, 38, 0.5); */
}

/* Image container */
.red-team-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(145deg, #fee2e2, #fecaca);
}

    .red-team-image::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to top, rgba(220, 38, 38, 0.3), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

.red-team-card:hover .red-team-image::after {
    opacity: 1;
}

.red-team-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.red-team-card:hover .red-team-image img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

/* Text content */
.red-team-info {
    padding: 1.5rem 1.2rem;
    text-align: center;
    position: relative;
    background: linear-gradient(145deg, #ffffff, #fffafa);
}

    .red-team-info::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #dc2626, transparent);
        border-radius: 10px;
        opacity: 0;
        transition: all 0.3s ease;
    }

.red-team-card:hover .red-team-info::before {
    width: 80px;
    opacity: 1;
}

.red-team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.red-team-card:hover .red-team-name {
    color: #dc2626;
}

.red-team-role {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.red-team-card:hover .red-team-role {
    /* box-shadow: 0 8px 20px rgba(220, 38, 38, 0.5); */
}

/* Bottom decorative line */
.red-team-bottom-line {
    position: relative;
    z-index: 2;
    height: 4px;
    background: linear-gradient(90deg, transparent, #dc2626, #ef4444, #b91c1c, transparent);
    margin-top: 3rem;
    border-radius: 10px;
    opacity: 0.5;
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .red-team-section {
        padding: 0;
        border-radius: 0rem;
    }

    .red-team-title {
        font-size: 2.2rem;
    }

    .red-team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .red-team-image {
        height: 220px;
    }

    .red-team-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .red-team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .red-team-image {
        height: 180px;
    }

    .red-team-name {
        font-size: 1rem;
    }

    .red-team-role, .red-profile-role, .red-readmore-link {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Main press section */
.red-press-section {
    width: 100%;
}

.red-press-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.red-press-title-wrapper {
    flex: 1;
}

.red-press-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    }

    50% {
        box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
    }
}

.red-press-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

    .red-press-title span {
        background: linear-gradient(145deg, #dc2626, #991b1b);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        position: relative;
    }

    .red-press-title::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #dc2626, transparent);
        border-radius: 10px;
    }

/* Press cards grid */
.red-press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 5;
    margin-bottom: 0rem;
}

/* Individual press card */
.red-press-card {
    background: linear-gradient(145deg, #ffffff, #fffafa);
    /* border-radius: 2rem; */
    overflow: hidden;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(220, 38, 38, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* max-width: 300px; */
}

    .red-press-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .red-press-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .red-press-card:nth-child(3) {
        animation-delay: 0.3s;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.red-press-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px -12px rgba(185, 28, 28, 0.4), 0 0 0 3px rgba(220, 38, 38, 0.2), 0 0 30px rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.5);
}

/* Image container */
.red-press-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: linear-gradient(145deg, #fee2e2, #fecaca);
    flex-shrink: 0;
}

    .red-press-image::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to top, rgba(220, 38, 38, 0.3), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

.red-press-card:hover .red-press-image::after {
    opacity: 1;
}

.red-press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.red-press-card:hover .red-press-image img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

/* Content area */
.red-press-content {
    padding: 1.5rem 1.2rem;
    position: relative;
    background: linear-gradient(145deg, #ffffff, #fffafa);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .red-press-content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #dc2626, transparent);
        border-radius: 10px;
        opacity: 0;
        transition: all 0.3s ease;
    }

.red-press-card:hover .red-press-content::before {
    width: 80px;
    opacity: 1;
}

.red-press-description {
    font-size: 1.1rem;
    font-weight: 500;
    color: #3f3f46;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    transition: color 0.3s ease;
}

.red-press-card:hover .red-press-description {
    color: #dc2626;
}

/* View all button */
.red-press-viewall-wrapper {
    text-align: center;
    position: relative;
    z-index: 5;
}

.red-press-viewall {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .red-press-viewall::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .red-press-viewall:hover {
        background: linear-gradient(135deg, #b91c1c, #991b1b);
        box-shadow: 0 15px 35px rgba(185, 28, 28, 0.5);
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.3);
    }

        .red-press-viewall:hover::before {
            left: 100%;
        }

    .red-press-viewall:active {
        transform: translateY(1px);
        box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
    }

/* Bottom decorative line */
.red-press-bottom-line {
    position: relative;
    z-index: 2;
    height: 4px;
    background: linear-gradient(90deg, transparent, #dc2626, #ef4444, #b91c1c, transparent);
    border-radius: 10px;
    opacity: 0.5;
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .red-press-section {
        padding: 2.5rem 1.5rem;
        border-radius: 2rem 1rem 2rem 1rem;
    }

    .red-press-title {
        font-size: 2.2rem;
    }

    .red-press-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .red-press-image {
        height: 200px;
    }

    .red-press-description {
        font-size: 1rem;
    }

    .red-press-viewall {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .red-press-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .red-press-image {
        height: 180px;
    }

    .red-press-title {
        font-size: 1.8rem;
    }
}

.red-news-section {
    width: 100%;
    padding: 0;
}

    /* Decorative floating orbs */
    .red-news-section::before {
        content: "";
        position: absolute;
        top: -20%;
        left: -10%;
        width: 380px;
        height: 380px;
        background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 60%);
        border-radius: 50%;
        pointer-events: none;
        animation: floatOrb 8s ease-in-out infinite;
    }

    .red-news-section::after {
        content: "";
        position: absolute;
        bottom: -15%;
        right: -8%;
        width: 420px;
        height: 420px;
        background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 65%);
        border-radius: 50%;
        pointer-events: none;
        animation: floatOrb 10s ease-in-out infinite reverse;
    }

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(25px, -25px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Header area */
.red-news-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

.red-news-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    }

    50% {
        box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
    }
}

.red-news-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

    .red-news-title span {
        background: linear-gradient(145deg, #dc2626, #991b1b);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        position: relative;
    }

    .red-news-title::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #dc2626, transparent);
        border-radius: 10px;
    }

/* News grid */
.red-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 5;
    margin-bottom: 0;
}

/* Individual news card */
.red-news-card {
    background: linear-gradient(145deg, #ffffff, #fffafa);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(220, 38, 38, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

    .red-news-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .red-news-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .red-news-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .red-news-card:nth-child(4) {
        animation-delay: 0.4s;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.red-news-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 25px 45px -12px rgba(185, 28, 28, 0.4), 0 0 0 3px rgba(220, 38, 38, 0.2), 0 0 30px rgba(220, 38, 38, 0.15); */
    /* border-color: rgba(220, 38, 38, 0.5); */
}

/* News card inner layout */
.red-news-inner {
    display: flex;
    gap: 0;
    flex: 1;
}

/* Image container */
.red-news-image {
    position: relative;
    overflow: hidden;
    flex: 0 0 35%;
    height: 100%;
    background: gray;
    aspect-ratio: 1/1;
}

    .red-news-image::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to top, rgba(220, 38, 38, 0.3), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

.red-news-card:hover .red-news-image::after {
    opacity: 1;
}

.red-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.red-news-card:hover .red-news-image img {
    /* transform: scale(1.1); */
    /* filter: brightness(1.05); */
}

/* Content area */
.red-news-content {
    flex: 1;
    padding: 1rem;
    position: relative;
    background: linear-gradient(145deg, #ffffff, #fffafa);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .red-news-content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(180deg, #dc2626, transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

.red-news-card:hover .red-news-content::before {
    opacity: 1;
}

.red-news-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e1a1a;
    margin-bottom: 0.7rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    text-align: left;
}

    .red-news-heading a {
        text-decoration: none;
        color: inherit;
    }

.red-news-card:hover .red-news-heading {
    color: #dc2626;
}

.red-news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #dc2626;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    justify-content: left;
}

.red-news-date-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #dc2626;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin-right: 2px;
}

.red-news-description {
    font-size: 0.95rem;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* View all button */
.red-news-viewall-wrapper {
    text-align: center;
    position: relative;
    z-index: 5;
}

.red-news-viewall {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .red-news-viewall::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .red-news-viewall:hover {
        background: linear-gradient(135deg, #b91c1c, #991b1b);
        box-shadow: 0 15px 35px rgba(185, 28, 28, 0.5);
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.3);
    }

        .red-news-viewall:hover::before {
            left: 100%;
        }

    .red-news-viewall:active {
        transform: translateY(1px);
        box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
    }

/* Bottom decorative line */
.red-news-bottom-line {
    position: relative;
    z-index: 2;
    height: 4px;
    background: linear-gradient(90deg, transparent, #dc2626, #ef4444, #b91c1c, transparent);
    border-radius: 10px;
    opacity: 0.5;
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .red-news-section {
        padding: 2.5rem 1.5rem;
        border-radius: 2rem 1rem 2rem 1rem;
    }

    .red-news-title {
        font-size: 2.2rem;
    }

    .red-news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .red-news-inner {
        flex-direction: column;
    }

    .red-news-image {
        flex: 0 0 200px;
        min-height: 200px;
    }

    .red-news-heading {
        font-size: 1.1rem;
    }

    .red-news-description {
        font-size: 0.9rem;
    }

    .red-news-viewall {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .red-news-title {
        font-size: 1.8rem;
    }

    .red-news-image {
        flex: 0 0 160px;
        min-height: 160px;
    }

    .red-news-content {
        padding: 1.2rem 1rem;
        text-align: center;
    }

    .red-news-date {
    }
}

/* Main achievement section */
.red-achievement-section {
    padding: 1rem 0;
    position: relative;
}

    /* Decorative floating orbs */
    .red-achievement-section::before {
        content: "";
        position: absolute;
        top: -20%;
        left: -10%;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 60%);
        border-radius: 50%;
        pointer-events: none;
        animation: floatOrb 8s ease-in-out infinite;
    }

    .red-achievement-section::after {
        content: "";
        position: absolute;
        bottom: -15%;
        right: -8%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 65%);
        border-radius: 50%;
        pointer-events: none;
        animation: floatOrb 10s ease-in-out infinite reverse;
    }

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(25px, -25px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Header area */
.red-achievement-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

.red-achievement-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    }

    50% {
        box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
    }
}

.red-achievement-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

    .red-achievement-title span {
        background: linear-gradient(145deg, #dc2626, #991b1b);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        position: relative;
    }

    .red-achievement-title::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #dc2626, transparent);
        border-radius: 10px;
    }

/* Achievement grid */
.red-achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 5;
    /* margin-bottom: 3rem; */
}

/* Individual achievement card */
.red-achievement-card {
    /* background: linear-gradient(145deg, #ffffff, #fffafa); */
    /* border-radius: 1rem; */
    /* aspect-ratio: 1/1; */
    width: 100%;
    /* max-width: 283px; */
}

    .red-achievement-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .red-achievement-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .red-achievement-card:nth-child(3) {
        animation-delay: 0.3s;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.red-achievement-card:hover {
    /* transform: translateY(-10px); */
    /* box-shadow: 0 25px 45px -12px rgba(185, 28, 28, 0.4), 0 0 0 3px rgba(220, 38, 38, 0.2), 0 0 30px rgba(220, 38, 38, 0.15); */
    border-color: rgba(220, 38, 38, 0.5);
    /* position: relative; */
    /* z-index: 9999999999999999; */
}

/* Image container */
.red-achievement-image {
    /* position: relative; */
    /* overflow: hidden; */
    /* height: 280px; */
    /* background: linear-gradient(145deg, #fee2e2, #fecaca); */
}

    .red-achievement-image::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        /* background: linear-gradient(to top, rgba(220, 38, 38, 0.3), transparent); */
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

.red-achievement-card:hover .red-achievement-image::after {
    opacity: 1;
}

.red-achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid #ffffff;
    aspect-ratio: 3/2;
}

.red-achievement-card:hover .red-achievement-image img {
    transform: scale(1.01);
    filter: brightness(1.05);
    /* position: relative; */
    /* z-index: 999999999999; */
}

/* View all button */
.red-achievement-viewall-wrapper {
    text-align: center;
    position: relative;
    z-index: 5;
}

.red-achievement-viewall {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .red-achievement-viewall::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .red-achievement-viewall:hover {
        background: linear-gradient(135deg, #b91c1c, #991b1b);
        box-shadow: 0 15px 35px rgba(185, 28, 28, 0.5);
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.3);
    }

        .red-achievement-viewall:hover::before {
            left: 100%;
        }

    .red-achievement-viewall:active {
        transform: translateY(1px);
        box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
    }

/* Bottom decorative line */
.red-achievement-bottom-line {
    position: relative;
    z-index: 2;
    height: 4px;
    background: linear-gradient(90deg, transparent, #dc2626, #ef4444, #b91c1c, transparent);
    border-radius: 10px;
    opacity: 0.5;
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .red-achievement-section {
        padding: 2.5rem 1.5rem;
        border-radius: 2rem 1rem 2rem 1rem;
    }

    .red-achievement-title {
        font-size: 2.2rem;
    }

    .red-achievement-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .red-achievement-image {
        height: 220px;
    }

    .red-achievement-viewall {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .red-achievement-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .red-achievement-image {
        height: 200px;
    }

    .red-achievement-title {
        font-size: 1.8rem;
    }
}
/* Unique popup overlay styles */
.red-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 999999;
    justify-content: center;
    align-items: center;
    animation: redFadeIn 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(5px);
}

    .red-popup-overlay.red-popup-active {
        display: flex;
    }

/* Popup container */
.red-popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: redZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Popup image */
.red-popup-image {
    max-width: 100%;
    max-height: 85vh;
    /* border-radius: 1rem; */
    /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(220, 38, 38, 0.3); */
    object-fit: contain;
    animation: redImageGlow 2s ease-in-out infinite;
}

/* Close button */
.red-popup-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.5);
    z-index: 100000;
    line-height: 1;
    padding: 0;
}

    .red-popup-close:hover {
        background: linear-gradient(135deg, #ef4444, #dc2626);
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 15px 35px rgba(220, 38, 38, 0.7);
    }

    .red-popup-close:active {
        transform: rotate(90deg) scale(0.95);
    }

/* Close icon */
.red-popup-close-icon {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
}

    .red-popup-close-icon::before,
    .red-popup-close-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 22px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .red-popup-close-icon::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

/* Navigation arrows */
.red-popup-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.5);
    z-index: 100000;
}

    .red-popup-nav:hover {
        background: #dc2626;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 15px 35px rgba(220, 38, 38, 0.7);
    }

.red-popup-prev {
    left: 20px;
}

.red-popup-next {
    right: 20px;
}

.red-popup-nav-icon {
    display: block;
    width: 12px;
    height: 12px;
    position: relative;
}

    .red-popup-nav-icon.red-popup-prev-icon::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 12px;
        height: 12px;
        border-left: 3px solid white;
        border-bottom: 3px solid white;
        transform: translate(-30%, -50%) rotate(45deg);
    }

    .red-popup-nav-icon.red-popup-next-icon::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 12px;
        height: 12px;
        border-right: 3px solid white;
        border-top: 3px solid white;
        transform: translate(-70%, -50%) rotate(45deg);
    }

/* Caption */
.red-popup-caption {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    background: rgba(220, 38, 38, 0.8);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Loading spinner */
.red-popup-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(220, 38, 38, 0.3);
    border-top: 4px solid #dc2626;
    border-radius: 50%;
    animation: redSpin 0.8s linear infinite;
    display: none;
}

    .red-popup-loading.red-popup-loading-active {
        display: block;
    }

/* Animations */
@keyframes redFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes redZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes redSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes redImageGlow {
    0%, 100% {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(220, 38, 38, 0.3);
    }

    50% {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(220, 38, 38, 0.5);
    }
}

/* Body scroll lock */
body.red-popup-locked {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .red-popup-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .red-popup-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .red-popup-prev {
        left: 10px;
    }

    .red-popup-next {
        right: 10px;
    }

    .red-popup-caption {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
}

/* Main blog details section */
.red-blog-section {
    width: 100%;
}

    /* Decorative floating orbs */
    .red-blog-section::before {
        content: "";
        position: absolute;
        top: -20%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 60%);
        border-radius: 50%;
        pointer-events: none;
        animation: redFloatOrb 8s ease-in-out infinite;
    }

    .red-blog-section::after {
        content: "";
        position: absolute;
        bottom: -15%;
        right: -8%;
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 65%);
        border-radius: 50%;
        pointer-events: none;
        animation: redFloatOrb 10s ease-in-out infinite reverse;
    }

@keyframes redFloatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-25px, 25px) scale(0.95);
    }
}

/* Blog layout */
.red-blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 5;
}

/* Main content area */
.red-blog-main {
    animation: redFadeInUp 0.6s ease-out;
}

@keyframes redFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Article card */
.red-blog-article {
    background: linear-gradient(145deg, #ffffff, #fffafa);
    border-radius: 2rem 1rem 2rem 1rem;
    overflow: hidden;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(220, 38, 38, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    margin-bottom: 2rem;
}

    .red-blog-article:hover {
        box-shadow: 0 25px 45px -12px rgba(185, 28, 28, 0.3), 0 0 0 3px rgba(220, 38, 38, 0.2);
        border-color: rgba(220, 38, 38, 0.4);
    }

/* Article image */
.red-blog-article-image {
    position: relative;
    overflow: hidden;
    max-height: 500px;
    background: linear-gradient(145deg, #fee2e2, #fecaca);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .red-blog-article-image::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to top, rgba(220, 38, 38, 0.2), transparent);
        pointer-events: none;
    }

    .red-blog-article-image img {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: contain;
        display: block;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        background: #fef2f2;
    }

/* Article content */
.red-blog-article-content {
    padding: 2rem;
}

.red-blog-article-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e1a1a;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.red-blog-article-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #dc2626;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.red-blog-date-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #dc2626;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.red-blog-article-description {
    font-size: 1.05rem;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Long description content */
.red-blog-long-description {
    background: linear-gradient(145deg, #ffffff, #fffafa);
    border-radius: 2rem 1rem 2rem 1rem;
    padding: 2.5rem;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.08), 0 0 0 2px rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
    animation: redFadeInUp 0.8s ease-out 0.2s both;
}

    .red-blog-long-description p {
        font-size: 1.05rem;
        line-height: 1.9;
        color: #374151;
        margin-bottom: 1.2rem;
    }

    .red-blog-long-description h1,
    .red-blog-long-description h2,
    .red-blog-long-description h3,
    .red-blog-long-description h4,
    .red-blog-long-description h5,
    .red-blog-long-description h6 {
        color: #1e1a1a;
        margin: 1.5rem 0 0.8rem;
        font-weight: 700;
    }

    .red-blog-long-description a {
        color: #dc2626;
        text-decoration: none;
        border-bottom: 2px solid rgba(220, 38, 38, 0.3);
        transition: all 0.3s ease;
    }

        .red-blog-long-description a:hover {
            color: #b91c1c;
            border-bottom-color: #dc2626;
        }

    .red-blog-long-description img {
        max-width: 100%;
        border-radius: 1rem;
        margin: 1.5rem 0;
    }

/* Sidebar */
.red-blog-sidebar {
    animation: redFadeInUp 0.6s ease-out 0.3s both;
}

.red-blog-sidebar-widget {
    background: linear-gradient(145deg, #ffffff, #fffafa);
    border-radius: 2rem 1rem 2rem 1rem;
    padding: 2rem;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    position: sticky;
    top: 2rem;
}

.red-blog-sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e1a1a;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #dc2626;
    position: relative;
}

    .red-blog-sidebar-title::after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 50px;
        height: 3px;
        background: #dc2626;
        border-radius: 10px;
    }

/* Recent posts */
.red-blog-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.red-blog-recent-item {
    padding: 1rem;
    background: linear-gradient(145deg, #fef2f2, #fffafa);
    border-radius: 1rem 0.5rem 1rem 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

    .red-blog-recent-item:hover {
        background: linear-gradient(145deg, #fee2e2, #fef2f2);
        border-color: rgba(220, 38, 38, 0.3);
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(220, 38, 38, 0.15);
    }

.red-blog-recent-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.red-blog-recent-heading {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e1a1a;
    line-height: 1.5;
    transition: color 0.3s ease;
    margin: 0;
}

.red-blog-recent-item:hover .red-blog-recent-heading {
    color: #dc2626;
}

/* Bottom decorative line */
.red-blog-bottom-line {
    position: relative;
    z-index: 2;
    height: 4px;
    background: linear-gradient(90deg, transparent, #dc2626, #ef4444, #b91c1c, transparent);
    border-radius: 10px;
    opacity: 0.5;
    animation: redShimmerLine 3s ease-in-out infinite;
    margin-top: 3rem;
}

@keyframes redShimmerLine {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .red-blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .red-blog-sidebar-widget {
        position: static;
    }
}

@media (max-width: 768px) {
    .red-blog-section {
        padding: 2.5rem 1.5rem;
        border-radius: 2rem 1rem 2rem 1rem;
    }

    .red-blog-article-title {
        font-size: 1.5rem;
    }

    .red-blog-article-content {
        padding: 1.5rem;
    }

    .red-blog-long-description {
        padding: 1.5rem;
    }

    .red-blog-sidebar-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .red-blog-article-title {
        font-size: 1.2rem;
    }

    .red-blog-article-description {
        font-size: 0.95rem;
    }
}

.red-news-date.red-news-date-event {
    display: block;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-start;
    text-align: left;
}

    .red-news-date.red-news-date-event span {
        display: block;
        padding-left: 1rem;
        position: relative;
    }

        .red-news-date.red-news-date-event span i {
            position: absolute;
            left: 0;
            top: 7px;
        }

.text-left {
    text-align: left;
}
