@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* styles.css */
/* global colors */
:root{
    --primary-color:#04091e;
    --secondary-color: #333333;
    --assent-color:#f4f4f4;
    --background-color:#18192b;

}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Nunito Sans", sans-serif;
}
/* Main Navigation Styles */
nav {
    background: var(--primary-color);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}
/* Hover effect */
.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
/* Mobile Menu Toggle Styles */
.burger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
}

.burger-menu .line {
    width: 24px;
    height: 3px;
    background-color: wheat;
    transition: all 0.3s ease;
}
/* Hero Section Styles */
#home {
    height: 100vh;
    background-color: var(--background-color);
    background-position: center;
    background-size: cover;
    padding-top: 120px;
}

.text-box {
    width: 90%;
    max-width: 1200px;
    color: rgba(49, 34, 5, 0.671);
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.text-ron{
    color: #fff;
    font-family: "roboto";
    font-weight: 400;
}
.text-box h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.text-box h2 {
    font-size: 2rem;
    color: wheat;
    margin-bottom: 1.5rem;
}

.text-box p {
    font-size: 1.1rem;
    color: #d3d3d3;
    margin-bottom: 2rem;
    line-height: 1.6;
}
/* Call-to-action Button Styles */
.hero-btn {
    display: inline-block;
    padding: 1rem 1rem;
    font-size: 1.1rem;
    color: #fff;
    border: 2px solid wheat;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}


.hero-btn:hover {
    background: wheat;
    color: #000;
}

/* Content Section Styles */
.content-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    color: #04091e;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


/* Section padding adjustment for fixed nav */
.content-section {
    padding: 6rem 2rem 4rem;
}

/* About Us Section */
#about{
    background-color: var(--background-color);
}
.container h2{
    color: #fff;
    padding-bottom: 2rem;
}
.container p{
    color: #fff;
   
    padding: 8px;
    border-radius: 5px;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

.vision-mission {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

.vision, .mission {
    background: #2c3e50;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #fff;
    
}
.vision p{
    padding-top: 8px;
}

.mission p{
    padding-top: 8px;
}
h2 {
    color: #2c3e50;;
    margin-top: 0;
}

h3 {
    color: #fff;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    display: inline-block;
}


.dark-bg {
    background: rgba(4,9,30,0.95);
    color: wheat;
}

.dark-bg table th {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 5rem 1.5rem 3rem;
    }
}
/* Ordered List Styles */
ol {
    text-align: left;
    margin: 2rem auto;
    max-width: 600px;
}

ol li {
    margin-bottom: 1rem;
}

/* Image Styles */
.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Table Styles */
table {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-collapse: collapse;
}

table th, table td {
    padding: 1rem;
    border: 1px solid #ddd;
}

table th {
    background-color: #04091e;
    color: wheat;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Form Styles */
#registration-form {
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start ;
    padding: 4px;
}
.form-group input{
    align-items: center;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group input[type="radio"], .form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

/* Form Styling */
.form-group {
    margin-bottom: 2rem;
    gap: 1.25rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: wheat;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.form-options {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.form-option {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-radio,
.form-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #cbd5e0;
    accent-color: #1e3ce4; 
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-label {
    font-size: 1rem;
    color: #c2c6cc;
    cursor: pointer;
    transition: color 0.2s ease;
}

/* Hover States */
.form-option:hover .form-radio,
.form-option:hover .form-checkbox {
    border-color: none;
}

.form-option:hover .option-label {
    color: none;
}

/* Focus States */
.form-radio:focus,
.form-checkbox:focus {
    outline: 1px #a5b4fc;
    outline-offset: 2px;
}

/* Required Field Indicator */
.form-radio[required] + .option-label::after {
    content: "*";
    color: #ef4444;
    margin-left: 0.25rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .form-options {
        gap: 1rem;
    }
    
    .form-label {
        font-size: 1.125rem;
    }
    
    .option-label {
        font-size: 1.0625rem;
    }
}


button[type="submit"] {
    background-color: wheat;
    color: #04091e;
    border: none;
    padding: 1rem 2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    
}

button[type="submit"]:hover {
    background-color: #e0b86e;
    align-items: center;
}

.hero-btn1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
.footer {
    background-color: #04091e;
    color: #fff;
    padding: 2rem 1rem;
    margin-top: auto; /* Pushes footer to bottom */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 0.5rem;
}

.footer-section {
    margin-bottom: 0.2rem;
}

.footer-heading {
    color: wheat;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px  rgba(255, 228, 196, 0.1);
}

.footer-list {
    font-size: small;
    list-style: none;
    padding: 2px;
    margin: 1px;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: wheat;
}

.legal-info {
    border-top: 1px solid rgba(255, 228, 196, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.tagline {
    color: rgba(216, 202, 185, 0.8);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-heading {
        border-bottom: none;
    }
}

@media (min-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-heading {
        border-bottom: none;
    }
}

@media (min-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(4,9,30,0.9);
        width: 100%;
        height: calc(100vh - 70px);
        padding: 2rem;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .burger-menu {
        display: flex;
    }

    .text-box h1 {
        font-size: 2.5rem;
    }

    .text-box h2 {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 480px) {
    .text-box h1 {
        font-size: 2rem;
    }

    .text-box h2 {
        font-size: 1.5rem;
    }

    .hero-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}