/* Custom CSS */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #f8fafc, #e5e7eb);
}
/* Navbar */
.navbar {
    /*background: linear-gradient(90deg, #1a3c34 0%, #2d6a4f 100%);*/
    background: #1566B7;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    /*opacity: 0.5;*/
}
.navbar a {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.navbar a:hover {
    color: #a3e635;
    transform: translateY(-2px);
}
.lang-switch img {
    transition: transform 0.3s ease;
}
.lang-switch:hover img {
    transform: scale(1.2);
}
/* Footer */
.footer {
    /*background: linear-gradient(90deg, #1a3c34 0%, #2d6a4f 100%);*/
    background: #1566B7;
    color: #fff;
    padding: 3rem 2rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}
.footer a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #a3e635;
}
.footer .social-icons a {
    font-size: 1.5rem;
    margin-right: 1rem;
}
/* Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    height: 700px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin: 0 auto 2rem auto;
    max-width: 100%;
}
.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-item {
    min-width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.carousel-item h2 {
    z-index: 2;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 0 2rem;
}
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 1rem;
    cursor: pointer;
    z-index: 3;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}
.carousel-prev:hover, .carousel-next:hover {
    background: #a3e635;
}
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
/* Sections */
.section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.section:hover {
    transform: translateY(-5px);
}
.section h2 {
    color: #1a3c34;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}
.section h4 {
    color: #1a3c34;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}
.section h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #a3e635;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.section p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.1rem;
}
.images-boxes {
    display: flex;
    flex-wrap: wrap;
}
.images-boxes img {
    width: 120px;
    margin: 5px 0 5px 5px;
}
#sdgs-in-uzbekiston .boxes{
    display: flex;
}
#sdgs-in-uzbekiston div p{
    width: 48%;
    margin: 1%;
}
#sdgs-in-uzbekiston div iframe{
    width: 48%;
    margin: 1%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel { height: 300px; }
    .carousel-item h2 { font-size: 1.5rem; }
    .navbar a { font-size: 0.9rem; padding: 0.5rem; }
    .section h2 { font-size: 1.75rem; }
    .footer { padding: 2rem 1rem; }
}