/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Blueish Background */
.header {
    background: #f8fbff; /* Subtle blueish tint for professionalism */
    border-bottom: 1px solid #e1e5e9;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 150px;
    height: auto;
    
    .logo a {
    cursor: pointer;
    text-decoration: none;
}

.logo img {
    max-width: 150px;
    height: auto;
    transition: opacity 0.2s;
}

.logo a:hover img {
    opacity: 0.8;
}
}

/* Navigation Buttons - Professional Blueish Gradient */
.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-round {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #007BFF, #0056b3); /* Blueish gradient for professional look */
    color: white;
    text-decoration: none;
    border-radius: 50px; /* Fully rounded ends */
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,123,255,0.3);
    border: none;
    cursor: pointer;
}

.btn-round:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,123,255,0.4);
}

.btn-round.active {
    background: linear-gradient(135deg, #28a745, #218838);
    box-shadow: 0 4px 10px rgba(40,167,69,0.3);
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #007BFF, #4dabf7);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,123,255,0.2);
}

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

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.hero-icons {
    margin-top: 1rem;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: rgba(255,255,255,0.8);
}

/* About Section */
.about {
    margin-bottom: 3rem;
}

.about h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #007BFF;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.about-card h4 {
    color: #333;
    margin-bottom: 1rem;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Steps/Form Sections */
.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-left: 5px solid #007BFF;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-card h3 {
    color: #007BFF;
    margin-bottom: 1rem;
}

/* NRAS Guide Section */
.nras-guide {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.nras-guide h3 {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 1.5rem;
    text-align: center;
}

.nras-guide h4 {
    font-size: 1.4rem;
    color: #28a745;
    margin: 1.5rem 0 1rem 0;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.nras-guide p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

.nras-guide ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.nras-guide li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Form Styles */
.form-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-submit {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(40,167,69,0.3);
}

.form-note {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
    text-align: center;
}

/* Contact Card - New Centered Layout */
.contact-card {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px; /* Ensures centering on taller screens */
    margin: 3rem 0;
}

.contact-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 2px solid #e9ecef;
}

.contact-content h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #007BFF;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.detail-item i {
    font-size: 2rem;
    color: #007BFF;
}

.detail-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #555;
}

.detail-item a {
    color: #28a745;
    text-decoration: none;
    font-weight: bold;
}

.detail-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .nras-guide {
        padding: 1rem;
    }
    
    .contact-content {
        padding: 2rem 1rem;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}