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

body, html {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    background: url('img/bg2.jpg') center center fixed;
    background-size: cover;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.8;
}

.flex {
    display: flex;
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    flex-wrap: wrap;
}

.navbar {
    background: #333;
    color: white;
}

.navbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.navbar li {
    margin-left: 20px;
}

.navbar a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar a:hover, .navbar .cta-btn {
    color: #fff;
}

.hero {
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-top: 20px;
}

.cta-btn {
    background: #ff9900;
    color: #ffffff;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #e68a00;
}

.info-section {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.text-section {
    flex: 2;
} 
.image-section {
    flex: 1;
    margin-left: 12px;
}

.text-section {
    max-width: 100%;
}

.text-section p {
    max-width: 100%;
    margin-top: 12px;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.login-btn {
    background-color: #007bff; /* Adjust color to match your theme */
}

.login-btn:hover {
    background-color: #0056b3;
}

/* Sticky Footer */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95));
}

.social-icons {
    margin-left: 20px;
}

.social-icons img {
    height: 24px;
}

.align-right {
    margin-left: auto;
}

footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 0;
    margin-top: auto;
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar li {
        margin: 10px 0;
    }
}
