body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 80px;
    background: linear-gradient(135deg, #f0f7fa, #e6f3f5);
    color: #1e3a8a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: linear-gradient(90deg, #a3bffa, #6ee7b7);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    animation: fadeIn 1s ease-in-out;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

header nav ul img {
    margin-left: 20px;
    margin-right: 20px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

header nav ul img:hover {
    transform: rotate(360deg) scale(1.1);
    filter: brightness(1.2);
}

header nav ul .nav-links {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    padding: 14px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 600;
    position: relative;
}

header nav ul li a:hover {
    background-color: #1e40af;
    transform: translateY(-5px) scale(1.05);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

header nav ul li a.active {
    background-color: #1e40af;
    border-radius: 8px;
    color: #facc15;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

.hero {
    padding: 60px 20px;
    background: linear-gradient(135deg, #e0f2fe, #c7e0f4);
    animation: fadeInUp 1s ease-out;
    flex: 1 0 auto;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-logo {
    width: 408px;
    height: 997px;
    animation: bounceIn 1.5s ease-out;
}

.hero-text {
    flex: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideInRight 1s ease-out;
}

footer {
    background: linear-gradient(90deg, #6ee7b7, #a3bffa);
    color: white;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
    flex-shrink: 0;
}

footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    z-index: 0;
}

footer > * {
    position: relative;
    z-index: 1;
}

footer p {
    margin: 10px 0;
    font-size: 16px;
}

footer .footer-links a {
    color: #f3f4f6;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: #facc15;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    header nav ul img {
        margin: 10px 20px;
    }
    header nav ul .nav-links {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
    }
    header nav ul li {
        margin: 5px 0;
        width: 100%;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-logo {
        width: 150px;
        height: auto;
    }
    .hero-text {
        padding: 15px;
    }
    body {
        padding-top: 120px;
    }
}

/* Hamburger Menu Styles - Add this to your existing CSS */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    margin-right: 20px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    header nav ul {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        padding: 10px 0;
    }
    
    header nav ul img {
        margin: 0 20px;
    }
    
    header nav ul .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #a3bffa, #6ee7b7);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease;
        margin-right: 0;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    header nav ul .nav-links.active {
        right: 0;
    }
    
    header nav ul .nav-links li {
        margin: 15px 0;
        width: 80%;
        text-align: center;
    }
    
    header nav ul .nav-links li a {
        width: 100%;
        padding: 15px 20px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    header nav ul .nav-links li a:hover {
        background: rgba(30, 64, 175, 0.8);
        transform: translateY(-2px) scale(1.02);
    }
    
    header nav ul .nav-links li a.active {
        background: rgba(30, 64, 175, 0.9);
        color: #facc15;
    }
    
    body {
        padding-top: 70px;
    }
}