/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #1e3c72, #2a5298);
    color: white;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dynamic Text Effect */
.typing-text {
    font-size: 3rem;
    font-weight: bold;
    border-right: 3px solid white;
    white-space: nowrap;
    width: fit-content;
}

/* Typing Effect */
@keyframes blink {
    50% { border-color: transparent; }
}

/* Gradient Background Animation */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body {
    background: linear-gradient(-45deg, #1e3c72, #2a5298, #0f2027);
    background-size: 400% 400%;
    animation: gradientBG 8s ease infinite;
}

/* Floating Abstract Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: floatAnimation 6s infinite ease-in-out alternate;
}

/* Different Colors */
.shape:nth-child(odd) {
    background: rgba(0, 255, 255, 0.3);
}

.shape:nth-child(even) {
    background: rgba(255, 165, 0, 0.3);
}

/* Floating Animation */
@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px) scale(1.2);
    }
    100% {
        transform: translateY(0);
    }
}

/* Call to Action */
.hero-content .btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff9800;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
    margin-top: 20px;
}

.hero-content .btn:hover {
    background: #ff5722;
    transform: scale(1.05);
}
/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: white;
    backdrop-filter: blur(10px); /* Smooth glass effect */
    z-index: 1000;
}
/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Navigation Links */
nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.3s;
    padding: 10px 45px;
    border-radius: 10px;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

*/


/* Navbar Styling */
nav {
    display: flex;
    justify-content: space-between; /* Pushes logo to left, links to right */
    align-items: center;
    padding: 10px 30px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo Styling */
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none; /* Remove underline */
}

/* Add hover effect */
.logo:hover {
    color: #007bff; /* Highlight effect */
    transform: scale(1.05);
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}
/* Navigation Links */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }
}

/* Ensure nav is always visible */
body {
    padding-top: 60px; /* To prevent content from hiding behind sticky nav */
}
