
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background: linear-gradient(270deg, #121212, #1a1a1a, #0f2027);
    background-size: 600% 600%;
    animation: gradientAnimation 20s ease infinite;
}

@keyframes gradientAnimation {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #00bcd4;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover, .nav-links li a.active {
    color: #00bcd4;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    background: url('images/hero.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
    margin-top: 60px;
    min-height: 400px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00bcd4, #4dd0e1);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
}

.blog-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    width: 300px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: scale(1.07);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

footer {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    margin-top: 40px;
}

.contact-section {
    text-align: center;
    padding: 80px 20px;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
