/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
#hero {
    position: relative;
    height: auto;
    overflow: hidden;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 20px;
}

.main-heading {
    font-size: 2.5em;
}

.hero-content h3 {
    font-size: 1.5em;
}

.hero-content p {
    font-size: 1em;
}

.cta-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #ff4400;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-buttons a:hover {
    background-color: #0056b3;
}

/* Services */
#services {
    padding: 50px 0;
}

/* Testimonials */
#testimonials {
    background: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

#testimonials .testimonial {
    margin-bottom: 20px;
}

#testimonials .testimonial p {
    font-style: italic;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer .footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

footer .footer-links a:hover {
    text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff6f61;
    color: white;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
}

.scroll-to-top:hover {
    background: #ff3b2e;
}

/* Mobile Menu */
.offcanvas-menu-wrapper,
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .offcanvas-menu-wrapper,
    .mobile-menu-toggle {
        display: block;
    }

    .offcanvas-menu-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .offcanvas-menu-wrapper.active {
        transform: translateX(0);
    }

    .offcanvas-menu {
        background: #fff;
        width: 80%;
        max-width: 300px;
        height: 100%;
        padding: 30px;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    }

    .close-mobile-menu {
        display: block;
        text-align: right;
        margin-bottom: 20px;
    }

    .mobile-menu-toggle {
        position: fixed;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        z-index: 10000;
    }
}