:root {
    --primary-blue: #1e5a96;
    --light-blue: #5ba3d0;
    --accent-orange: #ff6633;
    --dark-gray: #333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-gray);
}

/* Navbar Styling */
.navbar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue) !important;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    margin-left: 0.5rem;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 4px;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    background-color: rgba(30, 90, 150, 0.1) !important;
    color: var(--primary-blue) !important;
}

.nav-link.active {
    color: var(--primary-blue) !important;
    background-color: rgba(30, 90, 150, 0.1) !important;
    border-bottom: 3px solid var(--primary-blue);
}

.navbar-collapse {
    margin-top: 1rem;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-btn {
    background-color: var(--accent-orange);
    color: white !important;
    border-radius: 6px;
    padding: 0.6rem 1.5rem !important;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 102, 51, 0.3);
    text-decoration: none !important;
    display: inline-block;
}

.nav-btn:hover {
    background-color: #e55a22;
    box-shadow: 0 4px 12px rgba(255, 102, 51, 0.5);
    transform: translateY(-2px);
    color: white !important;
    text-decoration: none !important;
}

/* Dropdown Styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.dropdown-item {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: rgba(30, 90, 150, 0.15);
    color: var(--primary-blue);
}

.dropdown-toggle::after {
    border: none;
    content: "";
}

.dropdown-toggle {
    position: relative;
}

.dropdown-toggle:after {
    content: " ▼";
    font-size: 0.7rem;
    color: var(--dark-gray);
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    padding: 0 2rem !important;
    align-items: center;
    gap: 3rem;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    order: -1;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.hero-subtext {
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.hero-subtext h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
}

.hero-link {
    color: var(--accent-orange);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

.hero-link:hover {
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 2rem 2rem 1rem 2rem;
    margin: 0;
}

.cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    line-height: 1.6;
}

.cta-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 700;
}

.cta-link:hover {
    color: var(--accent-orange);
}

/* About Section */
.about-section {
    padding: 0.75rem 2rem;
    margin: 0;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Gallery Section */
.gallery-section {
    padding: 0.75rem 2rem;
    margin: 0;
}

.gallery-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.gallery-item:nth-child(even) {
    flex-direction: row-reverse;
}

.gallery-image {
    flex: 0 0 40%;
}

.gallery-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-text {
    flex: 1;
}

.gallery-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.gallery-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.gallery-text a {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 1.5rem 2rem 0rem 2rem;
    margin: 0;
}

.services-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.services-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.services-list {
    list-style-type: decimal;
    padding-left: 3rem;
}

.services-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;

}

/* Contact Section */
.contact-section {
    padding: 0.75rem 2rem;
    margin: 0;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.contact-info {
    font-size: 1.15rem;
    line-height: 2;
    color: #555;
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-label {
    font-weight: 600;
    color: var(--dark-gray);
}

.contact-value {
    color: #666;
}

.contact-value a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
}

.contact-value a:hover {
    color: var(--accent-orange);
}

/* Form Section */
.form-section {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.form-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.form-control {
    font-size: 1.1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    padding: 0.75rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 90, 150, 0.25);
}

.submit-btn {
    background-color: var(--primary-blue);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--light-blue);
}

/* Openings Section */
.openings-section {
    padding: 0 2rem ;
    margin: 1rem 0 0 0;
}

.openings-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.openings-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    padding: 2rem;
    border-radius: 8px;
}

.openings-intro a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
}

.openings-intro a:hover {
    color: var(--accent-orange);
}

/* Job Card Styling */
.job-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.job-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(30, 90, 150, 0.15);
}

.job-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.job-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.job-requirements {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.job-requirements strong {
    color: var(--dark-gray);
}

.job-card .apply-btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.job-card .apply-btn:hover {
    background-color: var(--light-blue);
    text-decoration: none;
    color: white;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

footer a {
    color: var(--light-blue);
    text-decoration: none;
}

footer a:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.2rem;
        height: 50px;
    }

    .navbar-brand img {
        height: 50px !important;
        width: auto !important;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-content {
        flex-direction: column;
        padding: 0 1.5rem !important;
        gap: 2rem;
    }

    .about-section,
    .gallery-section,
    .services-section,
    .contact-section,
    .openings-section {
        padding: 0.75rem 1.5rem;
    }

    .hero-text {
        order: 0;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.05rem;
    }

    .hero-subtext h3 {
        font-size: 1.7rem;
    }

    .hero-image {
        border-radius: 10px;
    }

    .gallery-item,
    .gallery-item:nth-child(even) {
        flex-direction: column;
    }

    .gallery-image {
        flex: 1;
        width: 100%;
    }

    .nav-link {
        margin-left: 0;
        padding: 0.5rem 0 !important;
    }

    .services-section h2 {
        font-size: 1.5rem;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .form-section {
        padding: 1.5rem;
    }

    .openings-section h2 {
        font-size: 1.8rem;
    }

    .job-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-section,
    .gallery-section,
    .services-section,
    .contact-section,
    .openings-section {
        padding: 0.75rem 1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtext h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }

    .hero-image {
        border-radius: 8px;
        max-width: 100%;
    }

    .hero-image {
        border-radius: 8px;
        overflow: hidden;
    }

    .cta-text {
        font-size: 1rem;
    }

    .nav-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem;
    }

    .services-section h2 {
        font-size: 1.3rem;
    }

    .services-intro {
        font-size: 1rem;
    }

    .services-list li {
        font-size: 1rem;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }

    .contact-info {
        font-size: 1rem;
        line-height: 1.8;
    }

    .form-control {
        font-size: 1rem;
    }

    .openings-section h2 {
        font-size: 1.5rem;
    }

    .openings-intro {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .job-card {
        padding: 1.5rem;
    }

    .job-card h3 {
        font-size: 1.3rem;
    }

    .job-card p,
    .job-requirements {
        font-size: 1rem;
    }
}
