/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(255, 255, 255);
}

body {
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}
/* Header */
header {
    background: #111827;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: cursive;
}
main {
    margin-top: 70px;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    z-index: 1001;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    user-select: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: #1f2937;
    min-width: 160px;
    border-radius: 6px;
    flex-direction: column;
    z-index: 1000;
}

.dropdown-content a {
    padding: 10px;
    text-decoration: none;
    color: white;
    display: block;
}

.dropdown-content a:hover {
    background: #374151;
}

.dropdown.show .dropdown-content {
    display: flex;
}

/* Hamburger */
.menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: #111827;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 15px 0;
        z-index: 999;
    }

    nav.show {
        display: flex;
    }

    .dropdown-content {
        position: static;
        background: #1f2937;
        border-radius: 0;
    }

    .menu-btn {
        display: flex;
    }
}


/* === Base Section === */
.about-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}
p {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* === Content Container === */
.about-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
    transition: transform 0.1s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #004aad;
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 1.3rem;
    color: #0077ff;
    height: 30px;
    margin-bottom: 20px;
}

/* === Scroll Animations === */
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
/* Footer */
footer {
    background: #1b4332;
    color: white;
    text-align: center;
    padding: 15px;
}