:root {
    --primary-purple: #7952b3;
    --light-purple: #9575cd;
}
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
/*--------------------------------------------------------------------------------------------------------*/
.navbar {
    background: linear-gradient(135deg, #7952b3 0%, #9575cd 100%);
    left: 0;
    top: 0;
    width: 100%;
    height: 145px;
    position: fixed;
    z-index: 2;
    justify-content: space-around;
}
.navbar-item {
    color: white !important;
    font-weight: 500;
    transition: all 0.3s ease;
}
.navbar-item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}
.navbar-link {
    color: white !important;
    font-weight: 500;
}
.navbar-link:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}
.navbar-link::after {
    border-color: white !important;
}
.navbar-dropdown {
    background: white;
    border-top: 2px solid var(--primary-purple);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.navbar-dropdown .navbar-item {
    color: #363636 !important;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}
.navbar-dropdown .navbar-item:hover {
    background-color: #f5f5f5 !important;
    color: var(--primary-purple) !important;
    padding-left: 2rem;
}
.navbar-divider {
    background-color: #f5f5f5;
    margin: 0.5rem 0;
}
/*--------------------------------------------------------------------------------------------------------*/
.hero-section {
    background: linear-gradient(135deg, #7952b3 0%, #9575cd 100%);
    padding: 4rem 2rem;
    color: white;
}
.hero-section-mt {
    margin-top: 145px !important;
}
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}
.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}
/*--------------------------------------------------------------------------------------------------------*/
.news-section {
    padding: 4rem 2rem;
    background: #f5f5f5;
}
.news-card {
    background: linear-gradient(135deg,rgba(121, 82, 179, 0.8) 0%,rgba(149, 117, 205, 0.8) 100%);
    border-radius: 20px;
    padding: 2rem;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
}

.news-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.news-card > div {
    position: relative;
    z-index: 2;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(121, 82, 179, 0.4);
}

.news-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.news-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.news-description {
    font-size: 1rem;
    opacity: 0.9;
}