/* General Styling */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    min-height: 100vh;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 180px);
    padding: 40px 20px;
    text-align: center;
}

.image-container {
    position: relative;
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
}

.main-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(126, 34, 206, 0.6);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.info {
    color: white;
    animation: fadeIn 1.5s ease-in;
}

.info h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

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


/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* Logo Styling */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 8px;
    color: #7e22ce;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 20px;
    position: relative;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}


.nav-links a:hover {
    background-color: rgba(126, 34, 206, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(126, 34, 206, 0.5);
}

.nav-links a i {
    transition: transform 0.3s;
}

.nav-links a:hover i {
    transform: scale(1.2);
}



footer {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    font-family: Arial, sans-serif;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a,
.footer-social a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #7e22ce;
}

.footer-social a {
    font-size: 24px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}



