* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

header {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

header p {
    font-size: 1.6rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-in-out;
}

nav {
    background: rgba(51, 51, 51, 0.95);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #4caf50;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover {
    color: #d1f5d3;
    transform: translateY(-3px);
}

nav ul li a:hover::after {
    width: 100%;
}

main {
    padding: 80px 20px;
}

.hero-section {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 250px 20px;
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-section h2 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease-in-out;
}

.hero-section p {
    font-size: 2rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-in-out;
}

.hero-section .btn {
    background: #4caf50;
    color: #fff;
    padding: 25px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

.hero-section .btn:hover {
    background: #45a049;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.slider-section {
    margin-bottom: 100px;
}

.slider-section h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #4caf50;
    text-align: center;
    animation: fadeInDown 1s ease-in-out;
}

.slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.slider .slide {
    width: 100%;
    height: 500px;
    position: relative;
}

.slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.news-section {
    text-align: center;
    margin-bottom: 100px;
}

.news-section h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #4caf50;
    animation: fadeInDown 1s ease-in-out;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.news-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.news-card h3 {
    font-size: 2rem;
    padding: 30px;
    color: #333;
}

.news-card p {
    padding: 0 30px 30px;
    color: #666;
}

.news-card a {
    display: block;
    padding: 25px;
    background: #4caf50;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
}

.news-card a:hover {
    background: #45a049;
}

.goals-section {
    background: #f1f1f1;
    padding: 100px 20px;
    margin-bottom: 100px;
}

.goals-section h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #4caf50;
    text-align: center;
    animation: fadeInDown 1s ease-in-out;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.goal-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.goal-card i {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 30px;
}

.goal-card h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.goal-card p {
    font-size: 1.4rem;
    color: #666;
}

.resources-section {
    margin-bottom: 100px;
}

.resources-section h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #4caf50;
    text-align: center;
    animation: fadeInDown 1s ease-in-out;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.resource-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.resource-card i {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 30px;
}

.resource-card h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.resource-card p {
    font-size: 1.4rem;
    color: #666;
}

.partners-section {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: #fff;
    padding: 100px 20px;
    margin-bottom: 100px;
}

.partners-section h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    text-align: center;
    animation: fadeInDown 1s ease-in-out;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
}

.partner-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.partner-card img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 20px;
}

.partner-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.partner-card p {
    font-size: 1.2rem;
}

footer {
    background: #333;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-top: 100px;
}

footer .social-links {
    margin-top: 40px;
}

footer .social-links a {
    color: #fff;
    margin: 0 30px;
    font-size: 2.5rem;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: #4caf50;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

header {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

header p {
    font-size: 1.6rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-in-out;
}

nav {
    background: rgba(51, 51, 51, 0.95);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #4caf50;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover {
    color: #d1f5d3;
    transform: translateY(-3px);
}

nav ul li a:hover::after {
    width: 100%;
}

main {
    padding: 80px 20px;
}

.hero-section {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 250px 20px;
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-section h2 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease-in-out;
}

.hero-section p {
    font-size: 2rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-in-out;
}

.hero-section .btn {
    background: #4caf50;
    color: #fff;
    padding: 25px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

.hero-section .btn:hover {
    background: #45a049;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.slider-section {
    margin-bottom: 100px;
}

.slider-section h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #4caf50;
    text-align: center;
    animation: fadeInDown 1s ease-in-out;
}

.slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.slider .slide {
    width: 100%;
    height: 500px;
    position: relative;
}

.slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.news-section {
    text-align: center;
    margin-bottom: 100px;
}

.news-section h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #4caf50;
    animation: fadeInDown 1s ease-in-out;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.news-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover img {
    transform: scale(1.1);
}

.news-card .news-content {
    padding: 30px;
    text-align: left;
}

.news-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.news-card p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.news-card .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.news-card .news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card .news-meta i {
    color: #4caf50;
}

.news-card a {
    display: inline-block;
    padding: 15px 30px;
    background: #4caf50;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s;
}

.news-card a:hover {
    background: #45a049;
    transform: translateY(-3px);
}

.news-card .news-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff5252;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-card .news-tag.featured {
    background: #4caf50;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

header {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 2rem;
    margin: 0;
    animation: fadeInDown 1s ease-in-out;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-in-out;
}

nav {
    background: rgba(51, 51, 51, 0.95);
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #4caf50;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover {
    color: #d1f5d3;
    transform: translateY(-3px);
}

nav ul li a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(51, 51, 51, 0.95);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }
}

main {
    padding: 80px 20px;
}

.hero-section {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 250px 20px;
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-section h2 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease-in-out;
}

.hero-section p {
    font-size: 2rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-in-out;
}

.hero-section .btn {
    background: #4caf50;
    color: #fff;
    padding: 25px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

.hero-section .btn:hover {
    background: #45a049;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.slider-section {
    margin-bottom: 100px;
}

.slider-section h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #4caf50;
    text-align: center;
    animation: fadeInDown 1s ease-in-out;
}

.slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.slider .slide {
    width: 100%;
    height: 500px;
    position: relative;
}

.slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.news-section {
    text-align: center;
    margin-bottom: 100px;
}

.news-section h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #4caf50;
    animation: fadeInDown 1s ease-in-out;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.news-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover img {
    transform: scale(1.1);
}

.news-card .news-content {
    padding: 30px;
    text-align: left;
}

.news-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.news-card p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.news-card .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.news-card .news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card .news-meta i {
    color: #4caf50;
}

.news-card a {
    display: inline-block;
    padding: 15px 30px;
    background: #4caf50;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s;
}

.news-card a:hover {
    background: #45a049;
    transform: translateY(-3px);
}

.news-card .news-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff5252;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-card .news-tag.featured {
    background: #4caf50;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

header {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    height: 60px;
    margin-right: 15px;
    transition: transform 0.3s ease-in-out; 
}

.logo:hover img {
    transform: scale(1.1);
}

.logo h1 {
    font-size: 2rem;
    margin: 0;
    animation: fadeInDown 1s ease-in-out;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-in-out;
}

nav {
    background: rgba(51, 51, 51, 0.95);
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #4caf50;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover {
    color: #d1f5d3;
    transform: translateY(-3px);
}

nav ul li a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(51, 51, 51, 0.95);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }
}

main {
    padding: 80px 20px;
}

.hero-section {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 250px 20px;
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-section h2 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease-in-out;
}

.hero-section p {
    font-size: 2rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-in-out;
}

.hero-section .btn {
    background: #4caf50;
    color: #fff;
    padding: 25px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

.hero-section .btn:hover {
    background: #45a049;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.slider-section {
    margin-bottom: 100px;
}

.slider-section h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #4caf50;
    text-align: center;
    animation: fadeInDown 1s ease-in-out;
}

.slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.slider .slide {
    width: 100%;
    height: 500px;
    position: relative;
}

.slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.news-section {
    text-align: center;
    margin-bottom: 100px;
}

.news-section h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #4caf50;
    animation: fadeInDown 1s ease-in-out;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.news-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover img {
    transform: scale(1.1);
}

.news-card .news-content {
    padding: 30px;
    text-align: left;
}

.news-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.news-card p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.news-card .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.news-card .news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card .news-meta i {
    color: #4caf50;
}

.news-card a {
    display: inline-block;
    padding: 15px 30px;
    background: #4caf50;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s;
}

.news-card a:hover {
    background: #45a049;
    transform: translateY(-3px);
}

.news-card .news-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff5252;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-card .news-tag.featured {
    background: #4caf50;
}

.slider-section {
    margin-bottom: 100px;
}

.slider-section h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #4caf50;
    text-align: center;
    animation: fadeInDown 1s ease-in-out;
}

.slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.slider .slide {
    width: 100%;
    height: 500px;
    position: relative;
}

.slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background 0.3s;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev::before,
.slick-next::before {
    font-family: 'FontAwesome';
    font-size: 30px;
    color: #fff;
}

.slick-prev::before {
    content: '\f104';
}

.slick-next::before {
    content: '\f105'; 
}

.slick-dots {
    bottom: 20px;
}

.slick-dots li button::before {
    font-size: 12px;
    color: #fff;
    opacity: 0.5;
}

.slick-dots li.slick-active button::before {
    color: #4caf50;
    opacity: 1;
}

@media (max-width: 768px) {
    .slider .slide {
        height: 300px; 
    }

    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }

    .slick-prev::before,
    .slick-next::before {
        font-size: 24px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.news-article {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.news-header {
    text-align: center;
    padding: 50px 20px;
    background: #4caf50;
    color: #fff;
}

.news-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.news-header img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 25px;
    margin-top: 30px;
}

.news-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.news-content {
    padding: 50px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.news-content p {
    margin-bottom: 20px;
}

.news-content blockquote {
    border-left: 5px solid #4caf50;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.news-footer {
    padding: 30px 50px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tags .tag {
    display: inline-block;
    background: #4caf50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    margin-right: 10px;
    font-size: 0.9rem;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-share a {
    color: #4caf50;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-share a:hover {
    color: #45a049;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-in-out forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, transform 0.3s;
}

#back-to-top:hover {
    background: #45a049;
    transform: translateY(-5px);
}

.related-news {
    margin-top: 80px;
    padding: 50px 20px;
    background: #f9f9f9;
    border-radius: 25px;
}

.related-news h2 {
    font-size: 2.5rem;
    color: #4caf50;
    margin-bottom: 40px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.related-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h3 {
    font-size: 1.5rem;
    padding: 20px;
    color: #333;
}

.related-card a {
    display: block;
    text-align: center;
    padding: 15px;
    background: #4caf50;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
}

.related-card a:hover {
    background: #45a049;
}

blockquote {
    border-left: 5px solid #4caf50;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
    background: rgba(76, 175, 80, 0.3);
    padding: 20px;
    border-radius: 10px;
    transition: background 0.3s;
}

blockquote:hover {
    background: rgba(76, 175, 80, 0.2);
}

blockquote footer {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s;
}

.news-content blockquote footer {
    margin-top: 10px;
    font-weight: bold;
    color: #d3d3d3;
}

blockquote:hover footer {
    color: #4caf50;
}

.blockquote-footer {
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
    font-size: 1.1rem;
}

