body{
    font-family: outfit, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

.hero{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1F2937;
    padding-bottom: 20px;
    width: 100vw;
    min-height: 100vh;
    box-sizing: border-box;
}

.herocont{
    width: fit-content;
    height: fit-content;
    display:block;
}

.nav{
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    margin-bottom: 30px;
    position: fixed;
    z-index: 999;
    background-color: #1F2937;
    box-sizing: border-box;
}

.nav-item{
    flex: 1;
    width: max-content;
    text-wrap: nowrap;
    justify-content: flex-end;
    padding-right: 30px;
    font-size: 18px;
    color: #e5e7eb;
    margin: 0 auto;
    height: fit-content;
}

.navitems{
    display: flex;
    margin-left: 400px;
}

.imgcont{
    width: 100px;
    height: 100px;
    flex: 4;
}

.herotext{
    flex: 1;
    max-width: 100%;
    box-sizing: border-box;
}

.maintext{
    color: #f9faf8;
    font-size: 48px;
    line-height: 1.3;
}

.subtext{
    color: #a3a3a3;
    font-weight: 500;
    font-size: 20px;
}

.heromain{
    display: flex;
    color: #f9faf8;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin-top: 50px;
}

.heroimgcont{
    margin-left: 300px;
    max-width: 100%;
    box-sizing: border-box;
}

.heroimg{
    border-radius: 50%;
    justify-content: flex-end;
    max-width: 100%;
    height: auto;
}

a{
    text-decoration: none;
}

.ctabtn{
    display: flex;
    align-items: center;
    justify-content: center;
    background:black;
    padding: 12px 24px;
    border: 5px solid black;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 300;
    font-family: outfit, sans-serif;
    line-height: 1;
}

.ctabtn:hover{
    background-color: white;
    border: 5px solid white;
    color: black;
    font-weight: 300;
}

strong{
    color: grey;
}

.midsec{
    padding: 50px 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.midtext{
    justify-self: center;
    color: grey;
    font-size: 48px;
    line-height: 0.1;
}

.midboxcont{
    display: flex;
    height: fit-content;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    box-sizing: border-box;
}

.midbox{
    flex: 1;
    height: fit-content;
    border: 2px solid black;
    box-shadow: black 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    border-radius: 30px;
    box-sizing: border-box;
}

.mid-sec2{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E5E7EB;
    padding-bottom: 20px;
    width: 100vw;
    height: fit-content;
    font: italic;
    font-weight: light;
    font-size: 36px;
    color: #1f2937;
    line-height: 1.3;
    margin-top: 50px;
    box-sizing: border-box;
}

.mid-sec2text{
    width: 70vw;
    font-style: none;
    border: 2px solid black;
    border-radius: 30px;
    padding: 20px;
    box-shadow: black 5px 5px;
    box-sizing: border-box;
    max-width: 100%;
}

.mid-sec3projcont{
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    justify-content: space-evenly;
    max-width: 100%;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

iframe {
    border-radius: 20px;
    box-shadow: grey 10px 10px;
    border: none;
    scrollbar-width: none;
    pointer-events: none;
}

/* Skip to main content for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 1000;
    text-decoration: none;
}

.skip-link:focus {
    top: 6px;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    margin-right: 20px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #e5e7eb;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #1F2937;
    transition: left 0.3s ease;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    margin: 20px 0;
}

.mobile-menu .nav-item {
    font-size: 24px;
    padding: 15px 30px;
    border-bottom: 1px solid #374151;
    width: 80%;
    text-align: center;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        height: 70px;
        padding: 0 10px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navitems {
        display: none;
    }

    .imgcont {
        margin: 0;
        display: flex;
        align-items: center;
        flex: none;
        width: auto;
    }

    .imgcont p {
        margin: 0 !important;
        margin-left: 10px !important;
        font-size: 16px !important;
    }

    .hero {
        width: 100vw;
        min-height: 100vh;
        padding: 0;
        margin: 0;
    }

    .herocont {
        width: 100%;
        max-width: 100vw;
    }

    .heromain {
        flex-direction: column;
        text-align: center;
        margin-top: 90px;
        padding: 15px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .herotext {
        order: 2;
        margin-top: 20px;
        width: 100%;
        padding: 0;
    }

    .heroimgcont {
        order: 1;
        margin-left: 0;
        margin-bottom: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .maintext {
        font-size: 28px;
        margin: 0;
        padding: 0;
    }

    .subtext {
        font-size: 16px;
        line-height: 1.5;
        margin: 10px 0;
        padding: 0;
    }

    .heroimg {
        width: 200px;
        height: 200px;
    }

    .mid-sec {
        width: 100vw;
        padding: 20px 0;
        box-sizing: border-box;
    }

    .midtext {
        font-size: 28px;
        text-align: center;
        padding: 0 15px;
        margin: 20px 0;
    }

    .midboxcont {
        flex-direction: column;
        padding: 0 15px;
        gap: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .midbox {
        margin: 0;
        padding: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .midbox img {
        max-width: 60px !important;
        max-height: 60px !important;
        width: auto !important;
        height: auto !important;
    }

    .mid-sec2 {
        padding: 20px 15px;
        font-size: 20px;
        width: 100vw;
        margin: 0;
        box-sizing: border-box;
    }

    .mid-sec2text {
        width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
        padding: 15px;
        font-size: 16px;
        line-height: 1.4;
        margin: 0;
        box-sizing: border-box;
    }

    .mid-sec3 {
        width: 100vw;
        padding: 20px 0;
        box-sizing: border-box;
    }

    .mid-sec3projcont {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .mid-sec3projcont iframe {
        width: calc(100vw - 30px);
        max-width: 350px;
        height: 300px;
        margin: 0 auto;
    }

    .ctabtn {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .maintext {
        font-size: 22px;
    }

    .subtext {
        font-size: 14px;
    }

    .heroimg {
        width: 150px;
        height: 150px;
    }

    .midtext {
        font-size: 22px;
        padding: 0 10px;
    }

    .mid-sec2 {
        font-size: 18px;
        padding: 15px 10px;
    }

    .mid-sec2text {
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        padding: 10px;
        font-size: 14px;
        margin: 0;
    }

    .mid-sec3projcont iframe {
        height: 250px;
        width: calc(100vw - 20px);
        max-width: 280px;
    }

    .nav {
        padding: 10px 5px;
    }

    .heromain {
        margin-top: 80px;
        padding: 10px;
    }

    .imgcont p {
        font-size: 14px !important;
        margin-left: 5px !important;
    }

    .midbox {
        padding: 10px;
        margin: 5px 0;
    }

    .midbox img {
        max-width: 50px !important;
        max-height: 50px !important;
    }

    .cta{
        align-self:center;
        display:flex; 
        justify-content:center;
        align-items: center;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9fafb;
    width: 100vw;
    box-sizing: border-box;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.testimonial-card {
    background: white;
    border-radius: 30px;
    padding: 30px;
    border: 2px solid black;
    box-shadow: black 5px 5px;
    flex: 1;
    max-width: 500px;
    box-sizing: border-box;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #1f2937;
    margin-bottom: 25px;
    font-style: italic;
}

.author-name {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin: 0;
}

.author-business {
    font-size: 16px;
    color: grey;
    margin: 5px 0;
}

.star-rating {
    font-size: 18px;
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    background-color: #1F2937;
    padding: 80px 0;
    width: 100vw;
    box-sizing: border-box;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.contact-subtitle {
    text-align: center;
    color: #a3a3a3;
    font-size: 20px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    color: white;
}

.contact-info-title {
    color: #f9faf8;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-icon {
    font-size: 24px;
    margin-top: 5px;
}

.contact-details h4 {
    color: #f9faf8;
    font-size: 18px;
    margin: 0 0 5px 0;
    font-weight: bold;
}

.contact-details p {
    color: #a3a3a3;
    margin: 0;
    font-size: 16px;
}

.contact-link {
    color: #a3a3a3;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #f9faf8;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-container {
    flex: 1;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 30px;
    border: 2px solid black;
    box-shadow: black 5px 5px;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1f2937;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    font-family: outfit, sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1f2937;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: black;
    color: white;
    border: 2px solid black;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    font-family: outfit, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: white;
    color: black;
    border-color: black;
}

.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: none;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .author-name {
        font-size: 18px;
    }
    
    .author-business {
        font-size: 14px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-container {
        padding: 0 15px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info-title {
        font-size: 24px;
        text-align: center;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    .testimonial-card {
        padding: 15px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-info-title {
        font-size: 20px;
    }
    
    .contact-icon {
        font-size: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .submit-btn {
        font-size: 16px;
        padding: 12px;
    }
}