/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
	
}

/* Color Palette */
:root {
    --blue: #1e90ff;
    --dark-blue: #001f3f;
    --white: #ffffff;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
	opacity: 0;
  transform: translateY(50px); /* Start with the text below its final position */
  animation: slideIn 2s ease-in-out forwards;
}

/* Header */
header {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 1rem 0;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo img {
    height: 50px;
    width: auto;
}

header h1 {
    font-size: 1.8rem;
    margin-left: 1rem;
    flex-grow: 1;
	
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--blue);
}

/* Hero */
.hero {
    background-color: var(--blue);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
	opacity: 0;
  transform: translateY(50px); /* Start with the text below its final position */
  animation: slideIn 2s ease-in-out forwards;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
	opacity: 0;
  transform: translateY(50px); /* Start with the text below its final position */
  animation: slideIn 2s ease-in-out forwards;
}

.btn {
    background-color: var(--white);
    color: var(--blue);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

/* About Section */
.about {
    padding: 3rem 0;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-image {
    flex: 1;
    min-width: 280px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Sign Up Container */
.signup-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1.5rem;
}

.signup-container .btn {
    background-color: var(--blue);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
}

.signup-container .btn:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}


.neon-text {
	font-size: 4rem;
	color: #001f3f;
	    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
	

	
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #6efafb, 0 0 10px #83fcfc, 0 0 20px #b0feff, 0 0 40px #d2fcfc, 0 0 80px #edffff;
    }
    100% {
        text-shadow: 0 0 10px #ffdb58, 0 0 20px #ffe06e, 0 0 40px #f7e49c, 0 0 80px #fff3c7, 0 0 160px #f5f1e4;
    }
}



@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(50px); /* Initially below the screen */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Move text into place */
  }
}


/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}
