* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    /* Added default font */
}

/* Section 7 - Why Us */
.section-seven {
    width: 100%;
    background-color: #000;
    padding: clamp(2rem, 5vw, 5rem) 0;
    text-align: center;
    margin-top: clamp(5rem, 10vw, 10rem);
}

.outline-text {
    font-size: clamp(4rem, 12vw, 12rem);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    /* font-style: italic; */
    color: transparent;
    -webkit-text-stroke: 0.5px #ccc;
    margin: 0;
    transition: all 0.3s ease;
    text-align: center;
}

.outline-text:hover {
    -webkit-text-stroke: 0.5px rgb(172, 165, 209);
}

.section-seven-dark {
    width: 90%;
    max-width: 1400px;
    margin: clamp(2rem, 5vw, 5rem) auto;
}

.dark-top {
    display: flex;
    gap: clamp(0.5rem, 2vw, 1rem);
    justify-content: center;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    flex-wrap: wrap;
}

.dark-top-1,
.dark-top-2 {
    height: auto;
    min-height: 15rem;
    width: 100%;
    border-radius: 15px;
    border: none;
    box-shadow: -1px -1px 5px rgba(250, 250, 250, 0.2), 1px 1px 5px rgba(0, 0, 0, 0.5);
    padding: clamp(1rem, 2vw, 1.5rem);
    transition: transform 0.3s ease;
}

.dark-top-1 {
    max-width: 70%;
    background: linear-gradient(to right, #2c2c2c, #1a1a1a);
}

.dark-top-2 {
    max-width: 25%;
    background: linear-gradient(to right, #2e2c2c, #121212);
}

.dark-bottom {
    display: flex;
    height: auto;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
    padding: clamp(1rem, 2vw, 1rem) 0;
}

.dark-bottom-block {
    width: 100%;
    max-width: 25%;
    height: auto;
    min-height: 13rem;
    background: linear-gradient(to bottom, #312f2f, #191919);
    border-radius: 10px;
    box-shadow: -1px -1px 5px rgba(251, 251, 251, 0.2), 1px 1px 5px rgba(0, 0, 0, 0.5);
    padding: clamp(1rem, 2vw, 1.5rem);
    transition: transform 0.3s ease;
}

.dark-top-1:hover,
.dark-top-2:hover,
.dark-bottom-block:hover {
    transform: translateY(-10px);
}

.section-seven-pics1,
.section-seven-pics {
    display: block;
    margin: 0 auto 1rem;
    max-width: clamp(50px, 10vw, 60px);
}

.dark-block-h1,
.dark-block-h {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: white;
    margin: 0 0 1rem 0;
    text-align: center;
    font-weight: 600;
}

.dark-block-para {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: #bbb;
    /* Lighter gray for readability */
    text-align: center;
    padding: 0 clamp(0.5rem, 1vw, 1rem);
}

.dark-block-para1 {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #bbb;
    text-align: center;
    padding: 0 clamp(0.5rem, 1vw, 1rem);
}

/* Section 8 - Contact Form and Info */
.section-eight {
    width: 100%;
    max-width: 1400px;
    margin: clamp(2rem, 5vw, 5rem) auto;
    padding: clamp(1rem, 2vw, 2rem);
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
    justify-content: center;
}

.section-left,
.section-mid,
.section-right {
    width: 100%;
    max-width: 400px;
    /* Consistent max-width */
    padding: clamp(1rem, 2vw, 2rem);
    border-radius: 12px;
    background: #f0f4ff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-left {
    flex: 1;
    margin: 0;
    /* Removed fixed margins */
}



/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .dark-top-1 {
        max-width: 100%;
    }

    .dark-top-2 {
        max-width: 50%;
    }

    .dark-bottom-block {
        max-width: 33.33%;
    }

    .section-eight {
        flex-direction: column;
        align-items: center;
    }
    .dark-bottom-all{
                max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .section-seven-dark {
        width: 95%;
    }

    .dark-top-2 {
        max-width: 100%;
    }

    .dark-bottom-block {
        max-width: 50%;
    }

    .outline-text {
        -webkit-text-stroke: 0.3px #ccc;
    }

    .section-left,
    .section-mid,
    .section-right {
        max-width: 100%;
    }

    .form-group {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .section-seven {
        padding: 1.5rem 0;
    }

    .dark-top-1,
    .dark-top-2,
    .dark-bottom-block {
        max-width: 100%;
        min-height: 12rem;
        padding: 1rem;
    }

    .section-seven-pics1,
    .section-seven-pics {
        max-width: 50px;
    }

    .outline-text {
        -webkit-text-stroke: 0.2px #ccc;
    }

    .section-eight {
        padding: 1rem;
    }

    .input-box {
        min-width: 100%;
    }

    .checkbox {
        font-size: 0.9rem;
    }
}