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

/* Login Buttons */
.login-buttons {
    display: flex;
    gap: 15px; /* Increased for better spacing */
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 8px 20px; /* Slightly more padding for prominence */
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
    color: #fff;
    border: 1px solid transparent;
}

.btn i {
    margin-right: 5px; /* Space between icon and text */
}

.btn-employee {
    background-color: #ffd700; /* Solid yellow for better contrast */
    color: #1a2a44; /* Navy text for readability */
    border-color: #e6c200; /* Slightly darker yellow border */
}

.btn-employee:hover {
    background-color: #2a4373; /* Darker navy on hover */
    border-color: #1a2a44;
    color: #ffd700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn-admin {
    background-color: #e6c200; /* Darker yellow on hover */
    border-color: #ffd700;
    color: #1a2a44;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);/
}

.btn-admin:hover {
    background-color: #2a4373; /* Darker navy on hover */
    border-color: #1a2a44;
    color: #ffd700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Fix Mobile View for Login Buttons */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Hide nav by default on mobile */
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: linear-gradient(135deg, #0f1c33, #1e3a66);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav-menu.open {
        display: block; /* Show when hamburger clicked */
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 15px;
        gap: 8px;
    }

    .nav-menu ul li {
        margin: 10px 0;
    }

    .login-buttons {
        display: none; /* Hide buttons on mobile by default */
    }

    .nav-menu.open + .login-buttons {
        display: flex; /* Show buttons in mobile nav */
        flex-direction: column;
        width: 100%;
        padding: 15px;
        gap: 10px;
    }

    .login-buttons .btn {
        width: 100%;
        padding: 12px; /* Slightly more padding for mobile */
        font-size: 1em;
    }

    .hamburger {
        display: block;
    }
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #0f1c33, #1e3a66);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    min-height: 120px;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    max-width: 220px;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(5deg) scale(1.1);
}

/* Navigation */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85em;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

.nav-menu ul li a:hover, .nav-menu ul li a.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 1.8em;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: #ffd700;
}

/* Banner */
/* Banner */
.banner {
    margin-top: 220px;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slideshow {
    position: relative;
    width: 100%;
    min-height: 600px; /* Increased for a more prominent banner */
    height: auto;
    background-color: #f8f9fa;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Ensure it fills the slideshow container */
    max-height: none; /* Remove max-height to allow full scaling */
    object-fit: cover; /* Changed to cover to fill the space */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-image.active {
    opacity: 1;
}

/* Add an overlay for better text readability (optional) */
.slideshow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Subtle dark overlay */
    z-index: 1;
}

/* Optional: Add text on the banner */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
}

.banner-text h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 1.2em;
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .slideshow {
        min-height: 300px; /* Reduced for mobile */
    }

    .banner-text h2 {
        font-size: 1.8em;
    }

    .banner-text p {
        font-size: 1em;
    }
}

/* Our Ventures Section */
.our-ventures {
    padding: 30px 0; /* Reduced padding-top to close the gap */
    background: #fff;
}

.our-ventures h2 {
    font-size: 2.5em;
    color: #1a2a44;
    text-align: center;
    margin-bottom: 50px;
}

.venture-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.venture-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.venture-card h3 {
    font-size: 1.5em;
    color: #1a2a44;
    margin-bottom: 15px;
}

.venture-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background: #f8f9fa;
}

.why-choose-us h2 {
    font-size: 2.5em;
    color: #1a2a44;
    text-align: center;
    margin-bottom: 50px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
}

.feature .icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #1a2a44;
}

.feature h3 {
    font-size: 1.3em;
    color: #1a2a44;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
}

/* Buttons */
.btn-primary {
    background-color: #1a2a44;
    color: #fff;
}

.btn-primary:hover {
    background-color: #ffd700;
    color: #1a2a44;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ffd700;
    color: #1a2a44;
}

.btn-secondary:hover {
    background-color: #1a2a44;
    color: #fff;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f1c33, #1e3a66);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #ccc;
    font-size: 0.95em;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #ffd700;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffd700;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-social .social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    font-size: 1.5em;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #ffd700;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9em;
    color: #ccc;
}

/* Form */
form {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.step {
    flex: 1;
    text-align: center;
    font-size: 1em;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.step.active {
    color: #1a2a44;
    font-weight: 600;
    border-bottom: 2px solid #1a2a44;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    font-size: 0.95em;
    color: #1a2a44;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group label .required {
    color: #dc3545;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1a2a44;
    box-shadow: 0 0 5px rgba(26, 42, 68, 0.2);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input[type="file"] {
    padding: 10px 0;
}

.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #dc3545;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.success {
    color: #28a745;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

.error {
    color: #dc3545;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

.qualification-entry, .work-experience-entry {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    background: #f9f9f9;
}

.add-qualification, .add-experience {
    margin: 10px 0;
    background: #ffd700;
    color: #1a2a44;
}

.add-qualification:hover, .add-experience:hover {
    background: #1a2a44;
    color: #fff;
}

/* About Page Styles */
.our-story {
    padding: 60px 0;
    background: #fff;
}

.our-story h2 {
    font-size: 2.5em;
    color: #1a2a44;
    text-align: center;
    margin-bottom: 30px;
}

.our-story p {
    font-size: 1.1em;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-vision-values {
    padding: 60px 0;
    background: #f8f9fa;
}

.mission-vision-values h2 {
    font-size: 2.5em;
    color: #1a2a44;
    text-align: center;
    margin-bottom: 50px;
}

.cta {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 2.5em;
    color: #1a2a44;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 30px;
}

/* Subsidiaries Page Styles */
.subsidiaries {
    padding: 60px 0;
    background: #fff;
}

.subsidiaries h2 {
    font-size: 2.5em;
    color: #1a2a44;
    text-align: center;
    margin-bottom: 50px;
}

.subsidiary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.subsidiary-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.subsidiary-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.subsidiary-card h3 {
    font-size: 1.5em;
    color: #1a2a44;
    margin-bottom: 15px;
}

.subsidiary-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Careers Page Styles */
.company-culture {
    padding: 60px 0;
    background: #f8f9fa;
}

.company-culture h2 {
    font-size: 2.5em;
    color: #1a2a44;
    text-align: center;
    margin-bottom: 50px;
}

.job-listings {
    padding: 60px 0;
    background: #fff;
}

.job-listings h2 {
    font-size: 2.5em;
    color: #1a2a44;
    text-align: center;
    margin-bottom: 50px;
}

.jobs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.job {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 40px;
    text-align: left;
    transition: transform 0.3s ease;
    min-height: 300px;
}

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

.job h3 {
    font-size: 1.8em;
    color: #1a2a44;
    margin-bottom: 15px;
}

.job p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.1em;
}

.job p strong {
    color: #1a2a44;
    font-weight: 600;
}

.job .btn {
    margin-top: 20px;
}

.application-form {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.application-form h2 {
    font-size: 2.5em;
    color: #1a2a44;
    margin-bottom: 30px;
}

.form-step h3 {
    font-size: 1.5em;
    color: #1a2a44;
    margin-bottom: 20px;
}

.form-step h4 {
    font-size: 1.2em;
    color: #1a2a44;
    margin: 20px 0 10px;
}

/* Gallery Page Styles */
.gallery {
    padding: 60px 0;
    background: #fff;
}

.gallery h2 {
    font-size: 2.5em;
    color: #1a2a44;
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 100%;
    aspect-ratio: 4 / 3;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 0.95em;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .caption {
    transform: translateY(0);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-caption {
    color: #fff;
    font-size: 1.1em;
    margin-top: 15px;
    text-align: center;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffd700;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.prev:hover, .next:hover {
    color: #ffd700;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Contact Page Styles */
.contact-form {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.contact-form h2 {
    font-size: 2.5em;
    color: #1a2a44;
    margin-bottom: 30px;
}

.subsidiary-contacts {
    padding: 60px 0;
    background: #fff;
}

.subsidiary-contacts h2 {
    font-size: 2.5em;
    color: #1a2a44;
    text-align: center;
    margin-bottom: 50px;
}

.subsidiary-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.subsidiary-contact {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

.subsidiary-contact:hover {
    transform: translateY(-5px);
}

.subsidiary-contact h3 {
    font-size: 1.5em;
    color: #1a2a44;
    margin-bottom: 15px;
}

.subsidiary-contact p {
    color: #666;
    margin-bottom: 10px;
}

.subsidiary-contact p a {
    color: #1a2a44;
    text-decoration: none;
    transition: color 0.3s ease;
}

.subsidiary-contact p a:hover {
    color: #ffd700;
}

/* Services Page Styles */
.subsidiary-services {
    padding: 60px 0;
    background: #fff;
}

.subsidiary-services h2 {
    font-size: 2.5em;
    color: #1a2a44;
    text-align: center;
    margin-bottom: 50px;
}

.subsidiary-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.subsidiary-service {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

.subsidiary-service:hover {
    transform: translateY(-5px);
}

.subsidiary-service h3 {
    font-size: 1.5em;
    color: #1a2a44;
    margin-bottom: 15px;
}

.subsidiary-service p {
    color: #666;
    margin-bottom: 20px;
}

.subsidiary-service ul {
    list-style: none;
    padding-left: 0;
}

.subsidiary-service ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
    font-size: 1em;
}

.subsidiary-service ul li:before {
    content: '\f058'; /* Font Awesome check-circle icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #1a2a44;
    font-size: 1.2em;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        min-height: 60px;
    }

    header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo {
        margin-bottom: 0;
        max-width: 100px;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #0f1c33, #1e3a66);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav-menu.open {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 15px;
        gap: 8px;
    }

    .nav-menu ul li a {
        padding: 10px;
        font-size: 0.9em;
    }

    .banner {
        margin-top: 90px; /* Adjusted for smaller header height (60px + 30px padding) */
        margin-bottom: 0;
    }

    .banner-image {
        max-height: 400px;
    }

    .slideshow {
        min-height: 300px; /* Reduced for mobile */
        height: auto;
    }

    .our-ventures {
        padding: 20px 0; /* Further reduced for mobile */
    }

    .our-ventures h2, .why-choose-us h2, .our-story h2, .mission-vision-values h2, .cta h2, .subsidiaries h2, .company-culture h2, .job-listings h2, .application-form h2, .gallery h2, .contact-form h2, .subsidiary-contacts h2, .subsidiary-services h2 {
        font-size: 2em;
    }

    .our-ventures, .why-choose-us, .our-story, .mission-vision-values, .cta, .subsidiaries, .company-culture, .job-listings, .application-form, .gallery, .contact-form, .subsidiary-contacts, .subsidiary-services {
        padding: 40px 0;
    }

    .subsidiary-logo {
        max-width: 120px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-content {
        text-align: center;
    }

    .footer-social .social-links {
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-group {
        min-width: 100%;
    }

    .step-indicator {
        flex-direction: column;
        gap: 10px;
    }

    .step {
        padding: 10px;
        border-bottom: none;
    }

    .step.active {
        border-bottom: none;
        background: #f8f9fa;
        border-radius: 5px;
    }

    .jobs {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .job {
        padding: 20px;
    }
	.hero {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin-top: 120px;
}

.hero h1 {
    font-size: 3em;
    color: #1a2a44;
    margin-bottom: 20px;
}

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }

    .subsidiary-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .subsidiary-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }
}

/* Hero Section */
.hero {
    background: #f8f9fa;
    padding: 80px 0; /* Adjusted for better spacing */
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    min-height: 400px; /* Ensure enough height for centering */
    margin-top: 120px; /* Account for fixed header */
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px; /* Narrower container for better readability */
}

.hero h1 {
    font-size: 2.5em; /* Slightly smaller for balance */
    color: #1a2a44;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px; /* Constrain width for readability */
}

.hero .btn-primary {
    background-color: #1a2a44;
    color: #fff;
    padding: 12px 24px;
    font-size: 1em;
}

.hero .btn-primary:hover {
    background-color: #ffd700;
    color: #1a2a44;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        margin-top: 90px; /* Adjusted for smaller header on mobile */
        padding: 40px 0;
        min-height: 300px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
        max-width: 90%;
    }

    .hero .btn-primary {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}