/* General Body Styling */
body {
    font-family: 'Comfortaa', Arial, sans-serif;
        margin: 0;
        padding: 0;
        color: #FFFFFF; /* White text for readability */
        background: radial-gradient(circle, #013979, #069494); /* Gradient background */
    }
}

h1, h2, h3 {
    margin: 0 0 10px;
}

p {
    margin: 0 0 20px;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #013979;
    color: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #069494;
    transition: color 0.3s;
}

.navbar .logo:hover {
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links a:hover {
    background-color: #069494;
    color: #fff;
}

.nav-links a.active {
    background-color: #069494;
    color: #fff;
}

/* Hero Section */
.hero {
    background-color: antiquewhite; /* Light background for distinction */
    border: 2px solid #013979; /* Add border to emphasize the section */
    border-radius: 8px; /* Smooth corners */
    padding: 2rem; /* Increase padding for better spacing */
    margin: 1rem auto; /* Center the hero section */
    max-width: 90%; /* Ensure responsiveness */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.hero h1 {
    font-size: 2.8rem; /* Larger font size for distinction */
    color: #013979; /* Stronger color to draw attention */
    text-align: center; /* Center-align the heading */
    text-transform: uppercase; /* All caps for emphasis */
    margin-bottom: 1rem;
    letter-spacing: 1px; /* Slight spacing for readability */
}

.hero p {
    font-size: 1.1rem; /* Adjust font size for readability */
    color: #555; /* Softer tone to contrast the heading */
    line-height: 1.6; /* Better line spacing */
    margin: 0 auto 1.5rem auto; /* Center paragraphs with spacing */
    max-width: 800px; /* Restrict paragraph width */
    text-align: justify; /* Better readability for blocks of text */
}

.hero .cta-button {
    display: inline-block;
    background-color: white;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.hero .cta-button:hover {
    background-color: #013979;
    color: #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: antiquewhite;
    padding: 1.5rem;
    margin: 1.5rem auto;
    border: 2px solid #013979; /* Matches the theme */
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 90%; /* Ensures responsiveness */
    text-align: center;
}

.disclaimer-section h2 {
    color: #013979; /* Consistent heading color */
    font-size: 1.8rem; /* Emphasized heading */
    margin-bottom: 1rem;
}

.disclaimer-section p {
    font-size: 1rem; /* Standard paragraph size */
    color: #555; /* Softer text tone for readability */
    line-height: 1.6; /* Better spacing between lines */
    text-align: justify; /* Clean alignment */
    max-width: 800px; /* Restricts paragraph width for easier reading */
    margin: 0 auto; /* Centers the text */
}


/* Steps Section */
.interactive-steps {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    background-color: antiquewhite;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 800px;
}

.step {
    text-align: center;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #013979;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 600px; /* Restrict width for better alignment */
}

.step h2 {
    color: #013979;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Radio Input Styling (Step 2) */
.radio-input {
    display: flex;
    justify-content: center;
    gap: 10px; /* Reduced gap between radio buttons */
    margin: 1rem 0;
}

.radio-input input[type="radio"] {
    display: none;
}

.radio-input label {
    display: flex;
    align-items: center;
    padding: 8px 15px; /* Reduced padding for labels */
    font-size: 0.9rem; /* Smaller font size for better balance */
    border: 1px solid #013979;
    background-color: #069494;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.radio-input input[type="radio"]:checked + label {
    background-color: #069494;
    color: pink;
    border-color: #013979;
}

/* Step 3 Loading Animation */
.loading svg polyline {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.loading svg polyline#back {
    fill: none;
    stroke: #06949433;
}

.loading svg polyline#front {
    fill: none;
    stroke: #069494;
    stroke-dasharray: 48, 144;
    stroke-dashoffset: 192;
    animation: dash_682 1.4s linear infinite;
}

@keyframes dash_682 {
    72.5% {
        opacity: 0;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* Button Styling */
.btn {
    font-size: 1rem; /* Slightly smaller font size */
    padding: 0.75rem 2rem; /* Reduce padding for smaller button */
    border: none;
    outline: none;
    border-radius: 0.4rem;
    cursor: pointer;
    text-transform: uppercase;
    background-color: rgb(14, 14, 26);
    color: rgb(234, 234, 234);
    font-weight: 700;
    transition: 0.6s;
    box-shadow: 0px 0px 40px #1f4c65; /* Reduced shadow size */
    -webkit-box-reflect: below 10px linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4));
    margin: 1rem auto; /* Center button and add space */
    display: inline-block; /* Keep button centered */
}

.btn:active {
    scale: 0.92;
}

.btn:hover {
    background: rgb(2, 29, 78);
    background: linear-gradient(270deg, rgba(2, 29, 78, 0.681) 0%, rgba(31, 215, 232, 0.873) 60%);
    color: rgb(4, 4, 38);
}

/* Footer */
footer {
    background-color: #013979;
    color: #fff;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    margin-top: 2rem; /* Add space above footer */
}

footer a {
    color: #069494;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}

footer .footer-content p {
    margin: 0.5rem 0;
}

/* General Button Styling */
.btn {
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border: none;
    outline: none;
    border-radius: 0.4rem;
    cursor: pointer;
    text-transform: uppercase;
    background-color: rgb(14, 14, 26);
    color: rgb(234, 234, 234);
    font-weight: 700;
    transition: 0.6s;
    box-shadow: 0px 0px 40px #1f4c65;
    -webkit-box-reflect: below 10px linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4));
    margin: 1rem auto;
    display: inline-block;
    text-decoration: none; /* For anchor links */
    text-align: center;
}

.btn:active {
    scale: 0.92;
}

.btn:hover {
    background: rgb(2, 29, 78);
    background: linear-gradient(270deg, rgba(2, 29, 78, 0.681) 0%, rgba(31, 215, 232, 0.873) 60%);
    color: rgb(4, 4, 38);
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    .hero {
        padding: 1.5rem; /* Adjust padding for smaller devices */
    }

    .hero h1 {
        font-size: 2rem; /* Reduce heading size for mobile */
    }

    .hero p {
        font-size: 1rem; /* Adjust paragraph size for mobile */
        padding: 0 1rem; /* Add horizontal padding */
    }
}
