/* International Relations and Sport Section Styles */
.international-relations-section,
.sport-section {
    padding: 4rem 0;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
}

.international-relations-title,
.sport-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #04602a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.international-relations-title::after,
.sport-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #04602a, #28a745);
    border-radius: 2px;
}

.carousel {
    border-radius: 20px;
    overflow: hidden;
}

.international-relations-carousel-item,
.sport-carousel-item {
    height: 600px;
    position: relative;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.international-relations-carousel-item img,
.sport-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-quality;
}

.international-relations-carousel-item:hover img,
.sport-carousel-item:hover img {
    transform: scale(1.02);
}

.international-relations-carousel-item::before,
.sport-carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(4, 96, 42, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.international-relations-carousel-item::after,
.sport-carousel-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.carousel-caption {
    z-index: 10;
    bottom: 15%;
    left: 8%;
    right: 8%;
    text-align: left;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.carousel-caption .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #f8f9fa;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.carousel-caption .btn {
    background: linear-gradient(135deg, #04602a 0%, #28a745 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(4, 96, 42, 0.3);
}

.carousel-caption .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 96, 42, 0.4);
    background: linear-gradient(135deg, #034a20 0%, #218838 100%);
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #ffffff;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {

    .international-relations-section,
    .sport-section {
        padding: 2rem 0;
    }

    .international-relations-title,
    .sport-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .international-relations-carousel-item,
    .sport-carousel-item {
        height: 400px;
    }

    .carousel-caption {
        bottom: 10%;
        left: 5%;
        right: 5%;
    }

    .carousel-caption h2 {
        font-size: 1.8rem;
    }

    .carousel-caption .lead {
        font-size: 1rem;
    }

    .carousel-caption .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {

    .international-relations-title,
    .sport-title {
        font-size: 1.8rem;
    }

    .international-relations-carousel-item,
    .sport-carousel-item {
        height: 300px;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .carousel-caption .lead {
        font-size: 0.9rem;
    }
}