* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: white;
    color: black;
    line-height: 1.6;
}

/* Enhanced Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    height: 80px;
}

.logo {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Professional underline hover effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #ff6b35;
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle:hover {
    color: #ff6b35;
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loader screen */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loader img {
    width: 100px; /* adjust gif size */
    margin-bottom: 20px;
}

#loader p {
    font-size: 20px;
    font-weight: 600;
    color: #f68b1f;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    /* Remove hero content related styles */
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1.5rem;
        height: 60px;
    }

    .logo {
        height: 35px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        text-align: center;
        width: 80%;
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(255, 107, 53, 0.1);
        transform: translateY(-2px);
    }

    .nav-links a::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.7rem 1rem;
        height: 55px;
    }

    .logo {
        height: 30px;
    }

    .nav-links {
        top: 55px;
        height: calc(100vh - 55px);
        padding: 1.5rem;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
}

@media (max-width: 360px) {
    .navbar {
        padding: 0.6rem 0.8rem;
        height: 50px;
    }

    .nav-links {
        top: 50px;
        height: calc(100vh - 50px);
    }
}

/* Landscape orientation for mobile */
@media (max-height: 600px) and (orientation: landscape) {
    /* Remove hero and search related styles */
}
