body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    transition: background-color 0.5s, color 0.5s;
}
header {
    background-color: #000000e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.5s;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 80px;
    margin-right: 15px;
}
header h1 {
    color: #ff6600;
    font-size: 2rem;
    transition: color 0.5s;
}
nav {
    display: flex;
    justify-content: center;
    padding: 15px;
}
nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
}
header nav a:hover {
    color: #ff6600 !important;
}
nav a:hover {
    color: #ff6600;
}

.hero-carousel {
    position: relative;
    color: #ffffff;
    font-size: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    transition: opacity 1s;
}
.cta-button {
    display: inline-block;
    background-color: #ff6600;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}
.cta-button:hover {
    background-color: #e55a00;
    transform: translateY(-5px);
}
.hero-section {
    background-image: url('resources/scedit.png');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
}
.hero-text {
    color: #ffffff;
    font-size: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: absolute;
    transition: opacity 1s;
}
.content-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}
.content-section h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}
.content-section p {
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 20px;
}
.card {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 5px solid #ff6600;
}
.card:hover {
    transform: translateY(-10px);
}
.card h4 {
    color: #ff6600;
}
footer {
    background-color: #333;
    padding: 20px;
    color: #ffffff;
    text-align: center;
}

/* Updated styles for burger menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 4px;
    transition: all 0.3s ease;
}
.nav-links {
    display: flex;
    justify-content: center;
    padding: 15px;
}
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #ff6600;
}

/* For larger screens, keep the regular nav visible */
@media screen and (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }

    .menu-overlay {
        display: none !important;
    }

    .burger-menu {
        display: none;
    }
}

/* For smaller screens, use the burger menu */
@media screen and (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    .nav-links {
        display: none;
    }
    .hero-text, .hero-carousel {
        font-size: 1.8rem;
        margin: 20px;
    }
}

/* Transition effects for cards */
.card {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 5px solid #ff6600;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.menu-overlay.active {
    display: flex;
}
.menu-overlay a {
    color: #ffffff;
    text-decoration: none;
    margin: 15px;
    font-size: 2rem;
    transition: color 0.3s;
}
.menu-overlay a:hover {
    color: #ff6600;
}
h2 {
    font-size: 2.5rem;
    color: #ff6600;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s;
}


.hero-subtitle {    
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;}

    /* Contact Us Styles */
.contact-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
    color: #ff6600;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff6600;
    outline: none;
}

.contact-form .cta-button {
    background-color: #ff6600;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-form .cta-button:hover {
    background-color: #e55a00;
    transform: translateY(-5px);
}
/* Footer Styles */
footer {
    background-color: #333;
    padding: 20px;
    color: #ffffff;
    text-align: center;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-left img {
    height: 50px;
    margin-bottom: 10px;
}

.footer-center {
    text-align: left;
}

.footer-center h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #ff6600;
}

.footer-center p {
    margin: 5px 0;
}

.footer-center a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-center a:hover {
    color: #ff6600;
}

.footer-right {
    text-align: left;
}

.footer-right h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #ff6600;
}

.footer-right p {
    margin: 10px 0;
}

.footer-right a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-right a:hover {
    color: #ff6600;
}

.footer-right i {
    margin-right: 8px;
    font-size: 1.3rem;
    vertical-align: middle;
}

/* Footer Responsive Styles */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        margin-bottom: 20px;
    }

    .footer-left {
        align-items: center;
    }
}