:root {
    --primary-color: #3182CE;
    --primary-hover: #2B6CB0;
    --dark-bg: #000014;
    --light-gray: #e9ecef;
    --text-dark: #2D3748;
}
/* Custom Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Navigation */
.navbar-custom {
    background-color: var(--dark-bg);
    padding: 10px 0;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 16px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border-color: #ffffff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../imgs/backgroundheader.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 90px 0;
    min-height: 400px;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}


.styx-title {
    color: white;
    font-size: 2.5rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.styx-subtitle {
    color: white;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.styx-button__primary {
    background-color: #3182CE;
    color: #fff;
    padding: 10px 30px;
    margin: 0 10px 10px 10px;
    border: 3px solid #3182CE;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.styx-button__primary:hover {
    background-color: #2B6CB0;
    color: #fff;
    border-color: #2B6CB0;
}

.styx-button__secondary {
    background-color: transparent;
    color: white;
    padding: 10px 30px;
    margin: 0 10px 10px 10px;
    border: 3px solid #3182CE;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.styx-button__secondary:hover {
    background-color: #fff;
    color: black;
    border-color: white;
}

/* Main Content */
.content-card{
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}
.styx-content {
    padding: 2rem 0;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.contact-info strong {
    font-size: 1.2rem;

}

/* Form Styles */
.contact-form {
    text-align: left;
    max-width: 800px;
    margin: 0 ;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.required-label {
    color: #dc3545;
}

.form-control,
.form-select {
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 12px 15px;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #3182CE;
    box-shadow: 0 0 0 0.2rem rgba(49, 130, 206, 0.25);
}

.btn-submit {
    background-color: #3182CE;
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2B6CB0;
    transform: translateY(-1px);
}
.under-input{
    font-size: 13px;
}

/* Footer */
.styx-footer {
    background-color: #e9ecef;
    color: #2D3748;
    padding: 64px 0;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}
.submit{
    font-family: inherit;
    font-size: 1em;
    border: 1px solid #ddd;
    color: #333 ;
    background-color: #eee
}

/* Responsive Design */
@media (max-width: 768px) {
    .styx-title {
        font-size: 2rem;
    }

    .styx-subtitle {
        font-size: 16px;
    }

    .styx-hero {
        padding: 60px 0;
    }
}