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

#services,
#about,
#contact {
    padding-top: 2rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    min-height: 100vh;
    background-color: black;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
    background: transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 999;
    background-color: #22b573;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
    max-width: 1600px;
}

.navbar-logo {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.navbar-container .navbar-menu {
    display: flex;
    text-align: center;
    gap: 1.5rem;
    list-style: none;
}

.navbar-container .navbar-menu li a{
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 3px 20px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.7s ease;
    white-space: nowrap;
}

.navbar-container .navbar-menu li a:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #22b573;
}

.navbar-toggle {
    display: none;
    background:transparent;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

.hero {
    min-height: 350px;
    width: 100%;
    background-color: #000;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 1rem;
    padding: 2rem;

    color: white;
    text-align: center;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.hero-icons a {
    width: 60px;
    height: 60px;
    color: white;
    font-size: 2rem;
    border: 2px solid #22b573;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: .3s ease;
}

.hero-icons a i {
    color: white;
}

.hero-icons a:hover i {
    color: #22b573;
    background-color: rgba(34,181,115,0.1);
    transform: translateY(-5px);
}

.hero-logo {
    width: 120px;
    height: auto;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.hero-icons .fa-solid,
.hero-icons .fa-brands {
    color: white !important;
}

.miniheaders {
    min-height: 70px;          /* or whatever height you prefer */
    background-color: #22b573;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    font-size: 1.2rem;

    box-shadow: 0 10px 20px rgba(78, 78, 78, 0.5);
}

.serviceimg {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    
}

.servicewrapped {
    width: min(1200px, 90%);
    margin: 3rem auto;
    padding: 2rem;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;

    background-color: #111;
    border: 3px solid #22b573;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(78, 78, 78, 0.4);
}

.servicebox {
    border: 2px solid #22b573;
}

.serviceintro {
    flex: 2 1 400px;
}

.servicetext {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
}

.serviceprofile {
    flex: 0 0 auto;   /* Don't let flexbox shrink it */
}

.quote {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 3vw, 2rem);
    min-height: 100vh;
}

.imgQuote {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(80%);
    position: absolute;
    inset: 0;
    z-index: -1;
}

.quote_form {
    position: relative;
    width: min(450px, 100%);
    margin-inline: clamp(0.2rem, 3vw, 1.5rem);
    color: #fff;
    padding: 2rem clamp(1.8rem, 4vw, 2.5rem);
    border: 2px solid rgba(34, 181, 115, 0.4);
    border-radius: clamp(0.4rem, 2vw, 1rem);
    background: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px)
}

.quote_title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.quote_inputs, .quote_box {
    display: grid;
}

.quote_box {
    position: relative;
    margin-bottom: clamp(1.2rem, 3vw, 1.7rem);
}

.quote_input {
    width: 100%;
    padding: clamp(0.7rem, 2vw, 0.75rem) 2.5rem clamp(0.5rem, 1vw, 0.5rem) 0.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    background: transparent;
    border: 2px solid #fff;
    border-radius: 5px;
    outline: none;
    color: #fff;
}

.quote_label {
    position: absolute;
    top: 50%;
    left: 0.5rem;
    transform: translateY(-50%);
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: #fff;
    pointer-events: none;
    transition: 0.2s ease-in-out;
    padding: 0 0.3rem;
}

.quote_box i {
    position: absolute;
    right: clamp(0.5rem, 1.5vw, 0.75rem);
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.quote_button {
    width: 100%;
    padding: clamp(0.7rem, 2vw, 0.8rem);
    margin-bottom: 1rem;
    background: #fff;
    border: none;
    border-radius: clamp(0.3rem, 2vw, 0.5rem);
    color: #000;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    cursor: pointer;
}

.quote_input:focus+.quote_label,.quote_input:not(:placeholder-shown)+.quote_label {
    top: 0.1rem;
    left: 0.7rem;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    background-color: #000;
}

@media (max-width: 880px) {
    .navbar {
        backdrop-filter: none;
    }

    .navbar-container .navbar-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.7rem !important;
        position: absolute;
        height: 100vh;
        width: 250px;
        top: 0;
        right: 0;
        padding: 5rem 1.5rem;
        box-shadow: 0 3px 10px rgba(0,0,0,.25);
        background: rgba(0,0,0,.9);
    }

    .navbar-container .navbar-menu.active {
        display: flex;
        color: #22b573;
    }

    .navbar-toggle {
        display: block;
        z-index: 999;
    }

    .navbar-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-logo {
        font-size: 1.7rem;
    }

    .navbar-container .navbar-menu li a {
        font-size: 1.2rem;
        padding: 3px 15px;
    }
}

@media (max-width: 768px) {
    .servicewrapped {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .serviceintro {
        flex: none;
        width: 100%;
    }

    .servicetext {
        text-align: center;
    }
}