* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

ul, li {
    list-style: none;
}

body {
    background: #fdfcfb;
    color: #333;
    line-height: 1.6;
}
.navbar {
    background: #fff;
    padding: 15px 5%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navdiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navdiv .logo img {
    width: 120px;
    transition: transform 0.3s ease;
}

.navdiv .logo img:hover {
    transform: scale(1.05);
}

.navdiv ul {
    display: flex;
    gap: 25px;
}

.navdiv ul li a {
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navdiv ul li a:hover {
    background: linear-gradient(45deg, #ff6f61, #ffbc42);
    color: #fff;
}

#about {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #fdfcfb, #e3f2fd);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 50px;
}

.about-text, .about-image {
    flex: 1 1 500px;
    opacity: 0; 
}

.about-text {
    animation: fadeInLeft 1.2s ease forwards;
}

.about-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.about-image {
    text-align: center;
    animation: fadeInRight 1.2s ease forwards;
}

.about-image img {
    max-width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.5s, box-shadow 0.5s;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 40px rgba(0,0,0,0.3);
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

#footer {
    background: #333;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

#footer h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

#footer a {
    color: #f7b731;
    transition: color 0.3s;
}

#footer a:hover {
    color: #fff;
}

#footer p {
    margin-top: 20px;
    font-size: 0.9rem;
}

@media screen and (max-width: 900px) {
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .about-text h1 {
        font-size: 2.5rem;
    }
    .about-text p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 500px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    .about-text h1 {
        font-size: 2rem;
    }
    .about-text p {
        font-size: 1rem;
    }
}
