/* Home Page Specific Styles */

/* Hero Banner Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider .banner {
    max-height: none;
}

.hero-slider img {
    width: 100%;
    height: auto;
    display: block;
}

/* Initiative Section */
.initiative-section {
    background-color: #fff;
    padding: 2.5rem 0;
}

.hallmarks-title {
    font-size: 1rem;
    color: #c41e3a;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Purpose Section */
.purpose-section {
    background-color: #fff;
    padding: 2.5rem 0;
}

.purpose-section .section-title {
    margin-bottom: 1rem;
}

.purpose-infographic {
    text-align: center;
}

.purpose-infographic img {
    max-width: 100%;
    height: auto;
}

/* Objectives Section */
.objectives-section {
    background-color: #fff;
    padding: 2.5rem 0;
}

.objectives-section .section-title {
    margin-bottom: 1rem;
}

.objectives-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.objective-card {
    width: calc(25% - 0.75rem);
    box-sizing: border-box;
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 6px;
    border-left: 4px solid #1E3C72;
}

.objective-card h4 {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

/* Partners Section */
.partners-section {
    background-color: #fff;
    padding: 2.5rem 0;
}

.partners-section .section-title {
    margin-bottom: 1.5rem;
}

.partners-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.partners-row-4 {
    gap: 1rem;
}

.partners-row-3 {
    gap: 1.5rem;
}

.partner-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    width: 280px;
    transition: transform 0.3s ease;
}

.partners-row-4 .partner-card {
    width: 260px;
}

.partners-row-3 .partner-card {
    width: 280px;
}

.partner-card:hover {
    transform: translateY(-3px);
}

.partner-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.partner-card-content {
    padding: 1rem;
    text-align: center;
}

.partner-card h4 {
    color: #1E3C72;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.partner-card p {
    color: #4b5563;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.btn-readmore {
    display: inline-block;
    padding: 0.4rem 1.25rem;
    background: #e6e6e6;
    color: #333;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.3s ease;
}

.btn-readmore:hover {
    background: #d6d6d6;
}

/* Showcase Section with Map */
.showcase-section {
    background-color: #fff;
    padding: 2.5rem 0;
}

.showcase-section .section-title {
    margin-bottom: 1rem;
}

.showcase-content {
    text-align: center;
}

.showcase-map {
    max-width: 900px;
    margin: 1.5rem auto;
}

.showcase-map img {
    width: 100%;
    height: auto;
}

.showcase-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    color: #1E3C72;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.stat-item p {
    color: #6b7280;
    font-size: 0.85rem;
}

/* Diplomats Section */
.diplomats-section {
    background-color: #fff;
    padding: 2.5rem 0;
}

.diplomats-section .section-title {
    margin-bottom: 1rem;
}

.diplomats-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: #4b5563;
    line-height: 1.7;
}

.diplomats-featured {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.diplomats-featured h3 {
    color: #1E3C72;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.diplomats-featured p {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Carousel Styles */
.diplomats-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.partnerships-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.partnerships-carousel .carousel-track {
    gap: 1rem;
}

.carousel-slide {
    flex: 0 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.diplomats-carousel .carousel-slide {
    width: 100%;
    flex-shrink: 0;
}

.diplomats-carousel .carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.partnerships-carousel .carousel-slide {
    width: calc(50% - 0.5rem);
}

.partnerships-carousel .carousel-slide img {
    width: 100%;
    height: auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 60, 114, 0.3);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(30, 60, 114, 0.5);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* See More Button */
.see-more-container {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-seemore {
    display: inline-block;
    padding: 0.5rem 2rem;
    background: #e6e6e6;
    color: #333;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-seemore:hover {
    background: #d6d6d6;
}

/* Partnerships Section */
.partnerships-section {
    background-color: #fff;
    padding: 2.5rem 0;
}

.partnerships-section .section-title {
    margin-bottom: 1rem;
}

/* Campus Banner */
.campus-banner {
    margin-top: 0;
}

.campus-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .objective-card {
        width: calc(50% - 0.5rem);
    }
}

@media (max-width: 768px) {
    .purpose-infographic img {
        max-width: 100%;
    }

    .objective-card {
        width: 100%;
    }

    .partners-row {
        flex-direction: column;
        align-items: center;
    }

    .partner-card,
    .partners-row-4 .partner-card,
    .partners-row-3 .partner-card {
        width: 100%;
        max-width: 320px;
    }

    .partnerships-carousel .carousel-slide {
        width: 100%;
    }

    .showcase-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
