
.breadcrumb-container {
    /* background-color: #f8f9fa;  */
    padding: 8px 12px;
    border-radius: 5px;
    display: inline-block;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}

.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb li {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    text-decoration: none;
    color: #001d23;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff6f0f;
    text-decoration: underline;
}

.breadcrumb span {
    color: #ff6f0f;
    margin: 0 5px;
}

/* Responsive - Stack items on small screens */
@media (max-width: 480px) {
    .breadcrumb {
        flex-wrap: wrap;
        font-size: 12px;
    }
}

.swiper {
    width: 100%;
    max-width: 680px;
    height: 400px;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
}

.swiper-slide {
    display: flex;
    justify-content: left;
    align-items: left;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.custom-text {
    font-size: 13px;
    font-weight: bold;
    color: #ff6f0f;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.custom-line {
    width: 200px;
    height: 0.5px;
    background: linear-gradient(to right, #ff6f0f, transparent);
    margin-top: 6px;
}

@media (min-width: 768px) {
    .custom-line {
        margin-top: 0;
    }
}



/* Countdown Container */
.countdown-container {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

/* Countdown Title */
.countdown-title {
    font-size: 12px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .countdown-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    width: 100%;
    max-width: 320px;
    justify-content: space-between;
    position: relative;
    margin-top: 8px;
}

/* Countdown Boxes */
.countdown-box {
    padding: 6px;
    height: 45px;
    background-color: #ffe2cf;
    color: #FB8C00;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    display: flex;
    /* flex-direction: column; */
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 65px;
    /* Adjust width for mobile */
}

@media (min-width: 768px) {
    .countdown-box {
        width: 75px;
        height: 50px;
        font-size: 22px;
    }
}

/* Countdown Labels */
.countdown-label {
    font-size: 10px;
    font-weight: 600;
    margin-top: 3px;
    color: #FB8C00;
}

@media (min-width: 768px) {
    .countdown-label {
        font-size: 12px;
    }
}

/* Countdown Separator */
.countdown-separator {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    top: 50%;
    transform: translateY(-50%);
}

/* Countdown Separator Image */
.countdown-separator img {
    width: 7px;
    height: 35px;
}

@media (min-width: 768px) {
    .countdown-separator img {
        width: 9px;
        height: 40px;
    }
}
.tab-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0px 0;
}

.tab-section ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-section li {
    padding: 0 36px;
}

.tab-section a {
    text-decoration: none;
    padding: 10px 0;
    font-size: 17px;
    font-weight: 500;
    color: #555;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    /* Ensures spacing is applied properly */
}

.tab-section a:hover,
.tab-section a.active {
    color: #ff6600;
    border-bottom: 2px solid #ff6600;
}

@media (max-width: 768px) {
    .tab-section {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
}

.causes-one__read-more {
    font-size: 14px;
    color: var(--sopot-base);
    font-weight: 500;
    -webkit-transition: all 500msease;
    transition: all 500msease;
    position: relative;
    display: flex;
    align-items: center;
    padding: 7px 65px;
    z-index: 1;
}

.causes-one__content {
    position: relative;
    display: block;
    padding: 10px 10px 0px;
}
        .tab-section {
            position: sticky;
            top: 0;
            background: #fff;
            /* Ensure visibility */
            /* z-index: 1000; */
            /* Make sure it stays above other elements */

        }

        .sticky-tab {
            position: fixed;
            width: 100%;
            left: 0;
            background: #fff;
            z-index: 999;
            /* Ensure it's above content but below header */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: top 0.3s ease-in-out;
        }

        /* Responsive Tweaks */
        @media screen and (max-width: 768px) {
            .sticky-tab {
                width: 100%;
                /* Ensures full-width behavior */
            }
        }
        /* Popup Overlay */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        /* Popup Content */
        .popup-content {
            background: #fff;
            padding: 20px;
            width: 320px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 22px;
            cursor: pointer;
            color: #ff6f0f;
        }

        /* Form Styling */
        label {
            display: block;
            text-align: left;
            font-weight: bold;
            margin: 8px 0 4px;
        }

        input,
        select {
            width: 100%;
            padding: 8px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        button {
            width: 100%;
            padding: 10px;
            background: #ff6f0f;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }

        button:hover {
            background: #b01657;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .popup-content {
                width: 90%;
            }
        }