/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: #0056b3;
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}
.logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3));
}
.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #ffaa00;
}

/* Header Right Side */
.header-content {
    display: flex;
    align-items: center;
    gap: 25px;
}
.contact-info {
    font-size: 15px;
}
.contact-info span {
    margin-left: 15px;
    font-weight: bold;
    display: inline-block;
}
.btn-header-login {
    background-color: white;
    color: #0056b3;
    padding: 8px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}
.btn-header-login:hover {
    background-color: #f8f9fa;
    border-color: #ffaa00;
    color: #0056b3;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(to right, #0056b3, #00a2ff);
    color: white;
    text-align: center;
    padding: 80px 20px;
}
.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    margin-top: 0;
}
.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.btn {
    text-decoration: none;
    padding: 14px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.btn-apply { background-color: #ffaa00; color: #000; }
.btn-apply:hover { background-color: #e69900; transform: translateY(-2px); }
.btn-track { background-color: #28a745; color: white; }
.btn-track:hover { background-color: #218838; transform: translateY(-2px); }

/* Services Section */
.services-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.services-section h2 {
    font-size: 32px;
    color: #0056b3;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}
.services-section h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #ffaa00;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.card {
    background: white;
    padding: 35px 25px;
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #0056b3;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.card h3 { color: #333; font-size: 20px; margin-top: 0; }
.card p { color: #555; font-size: 15px; }

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}
.footer-logo { color: #ffaa00; font-size: 20px; font-weight: bold; }

/* Responsive */
@media (max-width: 768px) {
    header { flex-direction: column; text-align: center; }
    .header-content { flex-direction: column; gap: 15px; margin-top: 15px; }
    .contact-info span { display: block; margin: 5px 0; }
    .hero h1 { font-size: 32px; }
    .card { width: 100%; max-width: 350px; }
}

/* --- Login Page Specific Styles --- */

/* Login Background */
.login-body {
    background-image: linear-gradient(to bottom right, #0056b3, #00a2ff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.login-card {
    background: white;
    padding: 40px 35px;
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    text-align: center;
    box-sizing: border-box;
    margin: 20px;
}

.login-card .logo-img {
    height: 55px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 15px;
    transition: all 0.3s;
    background-color: #f8f9fa;
}

.input-group input:focus {
    border-color: #0056b3;
    background-color: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.btn-login {
    background-color: #ffaa00;
    color: #000;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-login:hover {
    background-color: #e69900;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.links {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.links a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}

.back-btn {
    display: inline-block;
    margin-top: 30px;
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.back-btn:hover { color: #333; }


/* --- Registration Page Specific Styles --- */

.register-body {
    background-image: linear-gradient(to bottom right, #0056b3, #00a2ff);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.register-card {
    background: white;
    padding: 40px 35px;
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    text-align: center;
    box-sizing: border-box;
    margin: 30px 20px;
}

.row {
    display: flex;
    gap: 15px;
}

.row .input-group {
    flex: 1;
}

.btn-register {
    background-color: #ffaa00;
    color: #000;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-register:hover {
    background-color: #e69900;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.login-link {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.login-link a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
    margin-left: 5px;
}

/* Mobile Responsive for Row */
@media (max-width: 480px) {
    .row {
        flex-direction: column;
        gap: 0;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Poppins:wght@600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #0056b3 0%, #00a2ff 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-card {
    background: #ffffff;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    text-align: center;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #ffaa00;
    display: block;
    margin-bottom: 5px;
}

.subtitle {
    color: #718096;
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 500;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Validation Colors */
.is-invalid { border-color: #f56565 !important; background-color: #fff5f5; }
.is-valid { border-color: #48bb78 !important; background-color: #f0fff4; }

.validation-msg {
    font-size: 11px;
    font-weight: 600;
    margin-top: 5px;
    display: block;
}
.text-danger { color: #e53e3e; }
.text-success { color: #38a169; }

.btn-register {
    width: 100%;
    padding: 16px;
    background: #ffaa00;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 0 4px 12px rgba(255, 170, 0, 0.3);
}

.btn-register:hover {
    background: #e69900;
    transform: translateY(-2px);
}

.row { display: flex; gap: 15px; }
.row .input-group { flex: 1; }

@media (max-width: 480px) { .row { flex-direction: column; gap: 0; } }