
    .hero-home {
        font-family: 'Inter', sans-serif;
        background-color: #0f0f0f;
        color: white;
        padding: 0;
        
        padding: 80px 50px 40px;
        margin: auto;
        text-align: left;
    }

    .hero-home h1 {
        font-size: 2.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-home p {
        font-size: 1rem;
        color: #cfcfcf;
        line-height: 1.6;
        max-width: 600px;
        margin-bottom: 30px;
    }

    .hero-home .buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero-home .buttons a {
        padding: 12px 24px;
        border-radius: 8px;
        font-size: 1rem;
        text-decoration: none;
        display: inline-block;
    }

    .btn-primary {
        background-color: #ffc107;
        color: black;
    }

    .btn-secondary {
        background-color: #333;
        color: white;
    }

    .hero-image-home {
        width: 100%;
        margin-top: 40px;
    }

    .hero-image-home img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    .text-with-side-image {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: -50px;
}

.text-content {
    flex: 1 1 60%;
}

.side-image {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    animation: rotateClockwise 2s ease-out forwards;
    transform-origin: center;
}

@keyframes rotateClockwise {
    from {
        transform: rotate(0deg);
        opacity: 0;
    }
    to {
        transform: rotate(360deg);
        opacity: 1;
    }
}

.recd-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.recd-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.recd-text {
    flex: 1 1 50%;
}

.recd-text h2 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
}

.recd-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
}

.recd-image {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
}

.recd-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.recd-spotlight {
    background-color: #0033a0;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.spotlight-header h2 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.spotlight-header p {
    font-size: 1rem;
    max-width: 600px;
    margin: auto;
    color: #e0e0e0;
}

.spotlight-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.spotlight-card {
    position: relative;
    width: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.spotlight-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6); /* dark transparent overlay */
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-footer .name {
    font-weight: 600;
    font-size: 1rem;
}

.plus-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background-color: white;
    color: #0033a0;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    transition: background-color 0.3s ease;
}

.plus-btn:hover {
    background-color: #f0f0f0;
}

.resources-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.resources-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.resources-header h2 {
    font-size: 1.8rem;
    font-family: Georgia, serif;
}

.resources-header a {
    font-size: 0.95rem;
    color: #0033a0;
    text-decoration: none;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.resource-card {
    flex: 1 1 30%;
    background: #f4f6f8;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
}

.icon-image img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.resource-meta span {
    font-size: 0.8rem;
    color: #555;
    display: block;
    margin-bottom: 8px;
}

.resource-card h3 {
    font-size: 1rem;
    margin: 8px 0;
    color: #111;
    font-weight: 600;
}

.resource-card p {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.5;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.75rem;
    border-radius: 50px;
    background: #0033a0;
    color: white;
    margin-top: auto;
    width: fit-content;
}

/* Responsive */
@media (max-width: 768px) {
    .resources-grid {
        flex-direction: column;
    }

    .resource-card {
        flex: 1 1 100%;
    }
}
.global-thinkers-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.global-thinkers-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.thinkers-text {
    flex: 1 1 55%;
}

.thinkers-text h2 {
    font-size: 2rem;
    font-family: Georgia, serif;
    margin-bottom: 20px;
}

.thinkers-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.thinkers-image {
    flex: 1 1 40%;
    text-align: center;
}

.thinkers-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.resources-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.resources-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.resources-header h2 {
    font-size: 1.8rem;
}

.resources-header a {
    font-size: 0.95rem;
    color: #0033a0;
    text-decoration: none;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.resource-card {
    flex: 1 1 30%;
    background: #f9f9f9;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.icon-placeholder {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.resource-meta span {
    font-size: 0.85rem;
    color: #555;
}

.resource-card h3 {
    font-size: 1.1rem;
    margin: 12px 0;
    color: #111;
}

.resource-card p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 12px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 20px;
    background: #0033a0;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .global-thinkers-row {
        flex-direction: column;
    }

    .resources-grid {
        flex-direction: column;
    }

    .resource-card {
        flex: 1 1 100%;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .spotlight-grid {
        flex-direction: column;
        align-items: center;
    }

    .spotlight-card {
        width: 90%;
        max-width: 320px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .recd-row {
        flex-direction: column;
    }

    .recd-text, .recd-image {
        flex: 1 1 100%;
    }

    .recd-text h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .recd-text p {
        text-align: center;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .text-with-side-image {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        width: 100%;
    }

    .side-image {
        margin-top: 20px;
        width: 100%;
    }
}


    @media (max-width: 768px) {
        .hero-home h1 {
            font-size: 2rem;
        }

        .hero-home p {
            font-size: 0.9rem;
        }

        .hero-home .buttons a {
            width: 100%;
            text-align: center;
        }
    }