/* General Reset and Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif;
}

body {
    background-color: #2A2A2A; /* Dark background */
    color: #E5E5E5; /* Light text color */
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

/* Header Styling */
header {
    background-color: black; /* Deep Blue */
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid #A8DADC; /* Accent border */
}

header h1 {
    font-size: 2.5em;
    color: #A8DADC; /* Vibrant Red */
    text-transform: uppercase;
    letter-spacing: 2px;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
    color: #A8DADC; /* Light Accent */
}

/* Navigation Bar */
.nav-bar {
    display: flex;
    justify-content: center;
    background-color: black; /* Match body background */
    padding: 10px 0;
}

.nav-bar a {
    color: #A8DADC; /* Accent */
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1em;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-bar a:hover {
    color: #E63946; /* Vibrant Red on hover */
}

/* Hero Section */
.hero {
    background: radial-gradient(circle, #1D3557 50%, #2A2A2A);
    text-align: center;
    padding: 50px 20px;
    color: #E5E5E5;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero .hero-btn {
    min-width: 150px;
    position: relative;
    cursor: pointer;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: radial-gradient(
        ellipse at bottom,
        rgba(71, 81, 92, 1) 0%,
        rgba(11, 21, 30, 1) 45%
    );
    color: rgba(255, 255, 255, 0.66);
    transition: all 0.4s ease;
    display: inline-block;
    margin: 20px auto;
    text-align: center;
}

.hero .hero-btn:hover {
    color: #fff;
    transform: scale(1.05);
    background: radial-gradient(circle, #E63946 50%, #1D3557);
}

/* Section Styling */
section {
    margin: 30px auto;
    padding: 20px;
    border-radius: 10px;
    background: #1D3557; /* Deep Blue */
    color: #E5E5E5;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.about-us, .mission {
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Section Headings */
section h2 {
    font-size: 2.5em;
    color: #A8DADC; /* Light Blue Accent */
    text-align: center;
    margin-bottom: 20px;
}

section h3 {
    font-size: 1.8em;
    color: #A8DADC; /* Vibrant Red */
    margin-bottom: 15px;
}

section p {
    font-size: 1.2em;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Lists for Key Points */
ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

ul li {
    margin: 10px 0;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

ul li::before {
    content: "✔";
    color: #A8DADC; /* Light Blue Accent */
    margin-right: 10px;
}

/* Call-to-Action Section */
.call-to-action {
    background-color: #1D3557; /* Deep Blue */
    color: #A8DADC; /* Soft Glow Accent */
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.call-to-action h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #F1FAEE; /* Light Text */
}

.call-to-action p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #F1FAEE;
}

.call-to-action a {
    min-width: 120px;
    display: inline-block;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    color: rgb(255, 255, 255, 0.66);
    background: radial-gradient(
        ellipse at bottom,
        rgba(71, 81, 92, 1) 0%,
        rgba(11, 21, 30, 1) 45%
    );
    padding: 12px 25px;
    border-radius: 7px;
    position: relative;
    cursor: pointer;
    border: 0;
    transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.call-to-action a::before {
    content: "";
    width: 70%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 15%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0.2;
    transition: all 1s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.call-to-action a:hover {
    color: rgb(255, 255, 255, 1);
    transform: scale(1.1) translateY(-3px);
}

.call-to-action a:hover::before {
    opacity: 1;
}

/* Responsive Styling */
@media (max-width: 768px) {
    section {
        padding: 30px 10px;
    }

    section h2, section h3 {
        font-size: 1.8em;
    }

    section p, ul li {
        font-size: 1em;
    }

    .call-to-action {
        padding: 20px 10px;
    }

    .call-to-action h2 {
        font-size: 1.8em;
    }

    .call-to-action p {
        font-size: 1em;
    }

    .call-to-action a {
        font-size: 1em;
        padding: 8px 20px;
    }
}
/* Footer Section */
footer {
    background-color: #1D3557; /* Deep Blue */
    padding: 20px 0; /* Reduced padding */
    text-align: center;
    color: #A8DADC; /* Soft Glow Accent */
    font-size: 0.9em; /* Slightly smaller text size */
    border-top: 2px solid #A8DADC; /* Reduced thickness of the top border */
}

footer .footer-content {
    max-width: 1000px; /* Adjusted width for smaller layout */
    margin: 0 auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer p {
    margin: 5px 0; /* Reduced margin between paragraphs */
    line-height: 1.4; /* Reduced line spacing */
}

footer a {
    color: #A8DADC; /* Accent */
    text-decoration: none;
    font-size: 0.95em; /* Slightly smaller link size */
    transition: color 0.3s;
}

footer a:hover {
    color: #E63946; /* Vibrant Red on hover */
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    footer {
        padding: 15px 0; /* Reduced padding for smaller screens */
    }

    footer .footer-content {
        text-align: center;
    }

    footer p {
        font-size: 0.85em; /* Further reduced text size for small devices */
    }
}
