﻿
/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.sitename {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    margin: 0;
}

/* Navigation Styles */
.navmenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.navmenu li {
    margin: 0 15px;
}

.navmenu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .navmenu a:hover,
    .navmenu a.active {
        color: #667eea;
    }

/* Button Styles */
.btn-getstarted {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

    .btn-getstarted:hover {
        background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 8px;
    min-width: 220px;
    margin-top: 8px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.2s ease;
    color: #333;
    font-weight: 500;
}

    .dropdown-item:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        transform: translateX(4px);
    }

.dropdown-divider {
    margin: 8px 0;
    border-color: #eee;
}

/* Footer Styles */
.animated-footer {
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .navmenu ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }

    .navmenu.active ul {
        display: flex;
    }
}

