@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    padding-left: 10px;
    background: #fff;
    box-shadow: 0 1px 10px gray;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10
}

nav .logo img {
    height: 80px
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px
}

nav ul li {
    position: relative;
    cursor: pointer
}

nav ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding: 6px 10px;
    transition: 0.3s
}

nav ul li a:hover {
    color: #28a745
}

.dropdown-content {
    position: absolute;
    top: 38px;
    left: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    min-width: 250px;
    box-shadow: 0 8px 25px rgb(0 0 0 / .12);
    border-radius: 8px;
    z-index: 999
}

.submenu {
    display: none;
    flex-direction: column;
    padding-left: 15px
}

.submenu-toggle {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column
}

.submenu-toggle span {
    padding: 10px 20px
}

nav ul li>a .fa-chevron-down,
.dropdown-content .submenu-toggle .fa-chevron-right {
    transition: transform 0.3s
}

nav ul li.active>a .fa-chevron-down {
    transform: rotate(180deg)
}

.submenu-toggle.active .fa-chevron-right {
    transform: rotate(90deg)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 11
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background: #1f1f1f;
    border-radius: 2px;
    transition: all 0.3s
}

.hamburger-active .line:nth-child(2) {
    width: 0
}

.hamburger-active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

.hamburger-active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}

.menubar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 95%;
    height: 100vh;
    background: #fff;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    transition: 0.5s;
    gap: 30px;
    z-index: 10
}

.menubar.active {
    left: 0;
    box-shadow: rgb(0 0 0 / .2) 0 0 25px;
    overflow-y: scroll
}

.menubar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.menubar ul li {
    position: relative
}

.menubar ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-weight: 500
}

.menubar ul li a:hover {
    color: #28a745
}

.mobile-dropdown,
.mobile-submenu {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-top: 15px
}

.mobile-dropdown a,
.mobile-submenu a {
    padding: 5px 0
}

.mobile-services-toggle .fa-chevron-right,
.mobile-submenu-toggle .fa-chevron-right {
    transition: transform 0.3s
}

.mobile-services-toggle.active .fa-chevron-right,
.mobile-submenu-toggle.active .fa-chevron-right {
    transform: rotate(90deg)
}

#get-started-btn {
    padding: 7px 20px;
    background-color: #28a745;
    border: 2px solid #fff0;
    font-weight: 600;
    color: #fff;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    justify-content: center;
    animation: pulse-scale 1.5s ease-in-out infinite;
    will-change: transform
}

#get-started-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 35%;
    height: 100%;
    background: linear-gradient(110deg, transparent 0%, rgb(255 255 255 / .15) 30%, rgb(255 255 255 / .45) 50%, rgb(255 255 255 / .15) 70%, transparent 100%);
    transform: skewX(-20deg);
    animation: realistic-shine 3s ease-in-out infinite;
    pointer-events: none
}

@keyframes pulse-scale {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.08)
    }
}

@keyframes realistic-shine {
    0% {
        left: -60%;
        opacity: 0
    }

    10% {
        opacity: 1
    }

    40% {
        left: 120%;
        opacity: 0
    }

    100% {
        left: 120%;
        opacity: 0
    }
}

@media(max-width:900px) {
    nav ul {
        display: none
    }

    .hamburger {
        display: flex
    }

    nav .logo img {
        height: 70px
    }
}

.mobile-menu-upper-section {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    gap: 10px
}

.mobile-menu-upper-section img {
    height: 160px;
    width: auto;
    object-fit: contain
}

.mobile-menu-upper-section p {
    font-size: 12px;
    color: #555;
    border-right: 12px solid #fff0;
    text-align: left
}

.mobile-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #555;
    z-index: 999
}

.mobile-close:hover {
    color: red
}

.hero {
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    justify-content: center;
    padding-bottom: 50px;
    align-items: center;
    background-color: #000;
    position: relative;
    color: #fff
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .9);
    z-index: 1
}

.hero-left {
    position: relative;
    z-index: 2;
    border-radius: 0 0 100px 100px;
    box-shadow: 1px 1px 5px #000;
    background-color: #0f852b1f;
    display: flex;
    flex-direction: column;
    padding: 90px 20px;
    max-width: 1200px;
    width: 95%;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.hero-left h4 {
    font-size: 18px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px
}

.hero-left h1 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 45px;
    font-weight: 900;
    line-height: 1.2
}

.hero-left p {
    text-align: center;
    font-size: 1rem;
    max-width: 1100px;
    width: 100%;
    line-height: 1.6
}

.hero-left p.bold {
    font-weight: 700;
    color: #28a745;
    font-size: 1.1rem
}

.hero-left button {
    padding: 20px 30px;
    font-size: large;
    width: fit-content
}

@keyframes slideFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-left>* {
    opacity: 0;
    animation: slideFromTop 1s ease forwards
}

.hero-left h4 {
    animation-delay: 0.01s
}

.hero-left h1 {
    animation-delay: 0.02s
}

.hero-left p {
    animation-delay: 0.03s
}

.hero-left p.bold {
    animation-delay: 0.04s
}

.hero-left button {
    animation-delay: 0.1s
}

@media(max-width:992px) {
    .hero-left {
        padding: 20px 25px;
        padding-top: 40px;
        padding-bottom: 40px;
        border-radius: 0 0 50px 50px
    }

    .hero-left h1 {
        font-size: 2.4rem
    }
}

@media(max-width:576px) {
    .hero-left h1 {
        font-size: 1.9rem
    }

    .hero-left p,
    .hero-left p.bold {
        font-size: 14px
    }

    .hero-left button {
        font-size: medium
    }
}

@media(min-width:1500px) {
    .hero-left {
        padding: 150px 20px;
        max-width: 1400px;
        gap: 20px
    }

    .hero-left h4 {
        font-size: 25px
    }

    .hero-left h1 {
        font-size: 55px
    }

    .hero-left p,
    .hero-left p.bold {
        font-size: large
    }
}

.why-choose-us {
    background: #e9e9e9;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.why-choose-us .section-header {
    margin-bottom: 60px;
    text-align: center
}

.why-choose-us .section-header .subtitle {
    display: inline-block;
    font-size: 1.1rem;
    color: #28a745;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.why-choose-us .section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #222;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 12px
}

.why-choose-us .section-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #28a745;
    margin: 10px auto 0 auto;
    border-radius: 2px;
    transition: all 0.3s ease
}

.why-choose-us .section-header h2:hover::after {
    width: 100px
}

.why-choose-us .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px
}

.why-choose-us .card {
    background: #fff;
    flex: 1 1 30%;
    min-width: 260px;
    padding: 40px 20px 30px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgb(0 0 0 / .08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center
}

.why-choose-us .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgb(0 0 0 / .12)
}

.why-choose-us .card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background: #e6f2ea;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background 0.3s ease
}

.why-choose-us .card:hover .icon {
    background: #d0ebd8
}

.why-choose-us .card .icon img {
    width: 35px;
    height: 35px
}

.why-choose-us .card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 15px
}

.why-choose-us .card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6
}

@media(max-width:992px) {
    .why-choose-us {
        padding: 80px 15px
    }

    .why-choose-us .card {
        flex: 1 1 45%
    }

    .why-choose-us .section-header h2 {
        font-size: 2.4rem
    }
}

@media(max-width:576px) {
    .why-choose-us {
        padding: 60px 15px
    }

    .why-choose-us .card {
        flex: 1 1 100%
    }

    .why-choose-us .card h3 {
        font-size: 1.3rem
    }

    .why-choose-us .card p {
        font-size: .95rem
    }

    .why-choose-us .section-header {
        margin-bottom: 30px;
        text-align: center
    }

    .why-choose-us .section-header h2 {
        font-size: 35px
    }
}

.services {
    background: #111;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
    color: #fff
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.services .section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 60px;
    position: relative;
    display: inline-block
}

.services .section-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #28a745;
    margin: 10px auto 0 auto;
    border-radius: 2px
}

.services .service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center
}

.services .service-card {
    background: #1a1a1a;
    flex: 1 1 280px;
    max-width: 320px;
    border-radius: 20px;
    border: 1px solid #28a745;
    padding: 30px 10px;
    position: relative;
    box-shadow: 0 15px 30px rgb(0 0 0 / .5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center
}

.service-card a {
    text-decoration: none
}

.services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgb(0 0 0 / .7)
}

.services .service-card .service-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px auto;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background 0.3s ease
}

.services .service-card:hover .service-img {
    background: #28a74533
}

.services .service-card .service-img img {
    width: 50px;
    height: 50px
}

.services .service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 15px
}

.services .service-card p {
    font-size: small;
    min-height: 180px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px
}

.services .service-card button {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 8px 10px !important;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    font-size: small;
    transition: all 0.3s ease
}

.services .service-card button:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(0 0 0 / .5)
}

@media(max-width:992px) {
    .services .service-card {
        flex: 1 1 45%
    }
}

@media(max-width:576px) {
    .services .service-card {
        flex: 1 1 100%
    }

    .services .section-header h2 {
        font-size: 35px
    }
}

.process-section {
    background: #f9f9f9;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
    color: #333
}

.process-section .container {
    max-width: 1200px;
    margin: 0 auto
}

.process-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap
}

.process-image {
    flex: 1 1 45%;
    justify-self: center;
    height: 500px;
    align-self: center
}

.process-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgb(0 0 0 / .15);
    display: block;
    height: 500px;
    object-fit: cover
}

.process-steps {
    flex: 1 1 50%;
    position: relative
}

.process-steps h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 60px;
    letter-spacing: .5px;
    position: relative;
    display: inline-block;
    text-align: center
}

.process-steps h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 5px;
    background-color: #28a745;
    margin: 10px auto 0 auto;
    border-radius: 2px
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 60px;
    position: relative
}

.step-number {
    position: absolute;
    font-size: 6rem;
    font-weight: 900;
    color: #28a745;
    opacity: .3;
    top: 0;
    left: -10px;
    z-index: 0;
    user-select: none
}

.step-content {
    position: relative;
    z-index: 1;
    padding-left: 60px
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #333
}

.step-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555
}

@media(min-width:992px) {
    .step-1 {
        transform: perspective(800px) rotateY(-5deg)
    }

    .step-2 {
        transform: perspective(800px) rotateY(-2deg)
    }

    .step-3 {
        transform: perspective(800px) rotateY(0deg)
    }

    .step-4 {
        transform: perspective(800px) rotateY(2deg)
    }

    .step-5 {
        transform: perspective(800px) rotateY(5deg)
    }
}

@media(max-width:992px) {
    .process-wrapper {
        flex-direction: column;
        gap: 30px
    }

    .step {
        transform: none !important
    }

    .step-number {
        font-size: 4rem;
        top: -10px;
        left: 0
    }
}

@media(max-width:576px) {
    .process-steps h2 {
        font-size: 2rem;
        margin-bottom: 30px
    }

    .step-number {
        font-size: 5rem
    }

    .step-content h3 {
        font-size: 1.1rem
    }

    .step-content p {
        font-size: .95rem
    }
}

.cities-section {
    background: #f9f9f9;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
    color: #333
}

.cities-section .container {
    max-width: 1200px;
    margin: 0 auto
}

.cities-section .section-header {
    text-align: center;
    margin-bottom: 0
}

.cities-section .section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px
}

.cities-section .main-heading-line {
    width: 80px;
    height: 4px;
    background-color: #28a745;
    margin: 0 auto 25px auto;
    border-radius: 2px
}

.cities-section .section-header p {
    font-size: 1.25rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9
}

.city {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    transition: transform 0.4s ease;
    box-shadow: 1px 1px 5px #a3a3a3;
    border-radius: 20px;
    padding: 20px
}

.city.reverse {
    flex-direction: row-reverse
}

.city-image {
    display: flex;
    height: 400px;
    width: 45%;
    justify-content: center;
    align-items: center
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgb(0 0 0 / .1)
}

.city-content {
    flex: 1 1 50%
}

.city-content h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block
}

.city-content h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #28a745;
    margin: 10px 0 20px 0;
    border-radius: 2px
}

.city-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555
}

.city-content .services-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px
}

.city-content .services-list li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #333
}

.city-content button {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease
}

.city-content button:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(0 0 0 / .3)
}

@media(max-width:992px) {

    .city,
    .city.reverse {
        flex-direction: column;
        text-align: center
    }

    .city-image,
    .city-content {
        width: 100%;
        height: 300px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 05px;
    }

    .city-content h3 {
        font-size: 1.9rem
    }

    .city-content p {
        font-size: 1.15rem
    }

    .city-content .services-list li {
        font-size: 1rem
    }

    .city-image img {
        max-height: 350px;
        margin: 0 auto
    }
}

@media(max-width:576px) {
    .cities-section {
        padding: 60px 20px
    }

    .city-content h3 {
        font-size: 1.7rem
    }

    .city-content p {
        font-size: 1.05rem
    }

    .city-content .services-list li {
        font-size: .95rem
    }

    .cities-section .section-header h2 {
        font-size: 2.2rem
    }

    .cities-section .section-header p {
        font-size: 1rem
    }
}

.testimonials {
    background: #111;
    color: #fff;
    padding: 50px 20px;
    border-bottom: 1px solid #fff;
    font-family: 'Arial', sans-serif
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 50px
}

.testimonials .section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px
}

.testimonials .main-heading-line {
    width: 80px;
    height: 4px;
    background-color: #28a745;
    margin: 0 auto 25px auto;
    border-radius: 2px
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: fit-content;
    width: 100%;
    gap: 60px 20px
}

.testimonial-card {
    width: 350px;
    height: 450px;
    background: #fff;
    box-shadow: 0 10px 25px rgb(0 0 0 / .15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    padding-top: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgb(0 0 0 / .2)
}

.testimonial-card #qoute {
    height: 90px;
    width: 90px;
    background-color: #0f852a;
    position: absolute;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    top: -45px;
    border-radius: 50%;
    left: 50px
}

.testimonial-card #qoute span {
    height: fit-content;
    width: fit-content;
    color: #fff;
    font-size: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -35%)
}

.testimonial-review {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.5;
    color: gray;
    padding: 10px;
    position: relative
}

.testimonial-review p {
    height: 250px;
    overflow-y: scroll
}

.testimonial-review p::-webkit-scrollbar {
    width: 6px
}

.testimonial-review p::-webkit-scrollbar-thumb {
    background-color: #21863f;
    border-radius: 3px
}

.testimonial-review p::-webkit-scrollbar-track {
    background: #fff0
}

.testimonial-info {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #28a745;
    margin-bottom: 20px
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.testimonial-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #000
}

.testimonial-details span {
    font-size: .85rem;
    color: #555;
    display: block;
    margin-bottom: 5px
}

.testimonial-details .rating {
    color: gold;
    font-size: large
}

.view-more-btn-container {
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0
}

@media(max-width:768px) {
    .testimonial-cards {
        gap: 60px
    }

    .testimonial-card {
        width: 100%;
        height: auto
    }

    .testimonial-info {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .testimonial-img {
        margin-bottom: 10px
    }

    .testimonial-card #qoute {
        height: 70px;
        width: 70px;
        top: -30px;
        left: 50px
    }

    .testimonial-card #qoute span {
        height: fit-content;
        width: fit-content;
        color: #fff;
        font-size: 70px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -35%)
    }
}

#get-started-btn {
    cursor: pointer
}

.faq {
    background: #fff;
    padding: 50px;
    font-family: 'Arial', sans-serif;
    color: #000
}

.faq .container {
    max-width: 1000px;
    margin: 0 auto
}

.faq .section-header {
    text-align: center;
    margin-bottom: 50px
}

.faq .section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px
}

.faq .main-heading-line {
    width: 80px;
    height: 4px;
    background-color: #28a745;
    margin: 0 auto 25px auto;
    border-radius: 2px
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1)
}

.faq-question {
    background: #28a745;
    color: #fff;
    padding: 18px 45px 18px 25px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative
}

.faq-question:hover {
    background: #218838
}

.faq-question::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease
}

.faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(-135deg)
}

.faq-answer {
    overflow: hidden;
    height: 0;
    padding: 0 25px;
    line-height: 1.6;
    color: #333;
    transition: height 0.4s ease, padding 0.4s ease
}

.faq-item.open .faq-answer {
    padding: 10px 25px
}

@media(max-width:576px) {
    .faq {
        padding: 50px 20px
    }

    .faq-question,
    .faq-answer {
        font-size: 12px;
        padding-left: 20px;
        padding-right: 20px
    }

    .faq-question {
        padding-right: 40px
    }

    .faq-answer {
        padding: 0 10px
    }

    .faq-item.open .faq-answer {
        padding: 10px
    }

    .faq .section-header h2 {
        font-size: 35px
    }
}

.footer {
    background: #111;
    color: #fff;
    padding: 70px 20px 30px
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    position: relative
}

.footer-columns::before {
    content: '';
    height: 2px;
    width: 100%;
    background-color: #218838;
    position: absolute;
    top: 65%;
    left: 0
}

.footer-col {
    flex: 1 1 200px
}

.footer-col h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 5px
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #28a745;
    border-radius: 2px
}

.footer-col ul {
    list-style: none;
    padding: 0
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #ccc
}

.footer-col ul li a {
    color: #ccc;
    font-size: small;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s
}

.footer-col ul li a:hover {
    color: #28a745
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: .9rem;
    color: #666;
    border-top: 1px solid #222;
    padding-top: 20px
}

@media(max-width:1400px) {
    .footer-columns {
        justify-content: flex-start
    }
}

@media(max-width:1200px) {
    .footer-columns {
        flex-wrap: wrap
    }
}

@media(max-width:992px) {
    .footer-col {
        flex: 1 1 45%
    }
}

@media(max-width:576px) {
    .footer-col {
        flex: 1 1 45%;
        margin-bottom: 20px
    }

    .footer-col h4 {
        font-size: 14px
    }

    .footer-col ul li a {
        font-size: x-small
    }
}

@media(max-width:1120px) {
    .footer-columns::before {
        top: 50%
    }
}

@media(max-width:991px) {
    .footer-columns::before {
        top: 43%
    }
}

@media(max-width:768px) {
    .footer-columns::before {
        top: 46%
    }
}

@media(max-width:680px) {
    .footer-columns::before {
        top: 47%
    }
}

@media(max-width:620px) {
    .footer-columns::before {
        top: 41%
    }
}

@media(max-width:600px) {
    .footer-columns::before {
        top: 29%
    }
}

@media(max-width:480px) {
    .footer-columns::before {
        top: 34%
    }
}

#footer-logo {
    height: 150px;
    width: auto;
    object-fit: contain
}

#footer-column-one-p {
    font-size: small;
    margin: 10px 0
}

.footer-social-icons {
    margin-top: 10px;
    display: flex;
    gap: 25px
}

.footer-social-icons a img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border: 2px solid #218838;
    border-radius: 50%;
    padding: 6px;
    transition: transform 0.3s
}

.footer-social-icons a:hover img {
    transform: scale(1.2)
}

.first-footer-col {
    flex: 1 1 33%;
    padding-right: 40px;
    padding-bottom: 20px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start
}

.second-footer-col,
.third-footer-col {
    flex: 1 1 30%
}

.second-footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left
}

.second-footer-col ul {
    padding-left: 30px
}

@media(max-width:600px) {
    .first-footer-col {
        flex: 1 1 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-right: 0;
        align-items: center;
        text-align: center
    }

    #footer-logo {
        height: 200px
    }

    .second-footer-col {
        align-items: flex-start
    }

    .second-footer-col ul {
        padding-left: 0
    }
}

#service-page-text {
    background: #fff;
    padding: 50px 20px;
    font-family: Arial, sans-serif
}

#service-page-container {
    max-width: 1200px;
    margin: 0 auto
}

#service-header {
    text-align: center;
    margin-bottom: 60px
}

#service-title {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative
}

#service-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: #28a745;
    border-radius: 2px
}

#service-subtitle {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto
}

.service-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start
}

.service-image {
    flex: 1
}

.service-image img {
    width: 100%;
    border-radius: 14px
}

.service-text {
    flex: 1.3
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.service-heading {
    text-align: left;
    color: #28a745;
    font-size: 26px;
    margin-bottom: 12px
}

.service-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    text-align: left
}

@media (max-width:768px) {
    .service-layout {
        flex-direction: column
    }

    .service-content p {
        text-align: center;
        font-size: medium;
        color: #555
    }

    #service-title {
        font-size: 28px
    }

    .service-heading {
        font-size: 20px;
        text-align: center
    }

    .service-paragraph {
        font-size: 14px;
        text-align: center
    }

    #service-subtitle {
        font-size: 13px
    }
}

@media (min-width:769px) {
    .service-image {
        position: sticky;
        top: 100px;
        align-self: flex-start
    }
}

#cta-button:hover {
    background: #21863f;
    transform: translateY(-3px)
}

@media (max-width:768px) {
    #cta-title {
        font-size: 28px
    }

    #cta-text {
        font-size: 16px
    }

    #cta-button {
        font-size: 13px !important;
        padding: 10px 20px !important
    }

    .cta-text {
        font-size: 14px
    }

    .cta-title {
        font-size: 25px
    }
}

.equipment-section {
    padding: 60px 20px
}

.equipment-container {
    max-width: 1200px;
    margin: 0 auto
}

.equipment-header {
    text-align: center;
    margin-bottom: 30px
}

.equipment-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    position: relative
}

.equipment-header h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background-color: #28a745;
    border-radius: 2px
}

.equipment-header p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px
}

.equipment-card {
    background: #fff;
    border-radius: 16px;
    border: 2px solid #28a745;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgb(0 0 0 / .08);
    transition: all 0.3s ease
}

@media (hover:hover) and (pointer:fine) {
    .equipment-card:hover {
        background: #28a745;
        border-color: #28a745;
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgb(0 0 0 / .12)
    }

    .equipment-card:hover h3,
    .equipment-card:hover p {
        color: #fff
    }

    .equipment-card:hover .icon-wrapper i {
        color: #fff;
        transform: scale(1.15)
    }
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center
}

.icon-wrapper i {
    font-size: 44px;
    color: #28a745;
    transition: all 0.3s ease
}

.equipment-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px
}

.equipment-card p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.6
}

@media (max-width:768px) {
    .equipment-section {
        padding: 50px 20px;
        margin-bottom: 50px
    }

    .equipment-header h2 {
        font-size: 35px
    }

    .equipment-header p {
        font-size: 16px
    }
}

.before-after-collage {
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    color: #111
}

.before-after-collage .collage {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap
}

.before-after-collage .image-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 250px;
    max-width: 400px;
    position: sticky;
    top: 120px
}

.before-after-collage .image-box img {
    width: 100%;
    height: 500px;
    position: sticky;
    top: 0;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgb(0 0 0 / .15)
}

.before-after-collage .caption {
    margin-top: 8px;
    font-weight: 700;
    font-size: 14px;
    text-align: center
}

.before-after-collage .text-box {
    flex: 1 1 400px;
    max-width: 500px;
    text-align: left
}

.before-after-collage .text-box h2 {
    font-size: 30px;
    text-align: left;
    color: #000;
    width: 100%;
    margin-bottom: 25px;
    position: relative
}

.before-after-collage .text-box h2::after {
    content: "";
    position: absolute;
    left: 30%;
    bottom: -10px;
    width: 70px;
    height: 4px;
    background-color: #28a745;
    border-radius: 2px
}

.before-after-collage .text-box p {
    font-size: 16px;
    text-align: left;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative
}

.before-after-collage .text-box p:first-of-type {
    padding-left: 0
}

.before-after-collage .text-box p strong,
.before-after-collage .text-box p b {
    display: block
}

.before-after-collage .text-box p strong span,
.before-after-collage .text-box p b span {
    background-color: #0f852a;
    color: #fff;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 05px
}

@media (max-width:1100px) {
    .before-after-collage .collage {
        flex-direction: column;
        text-align: center;
        gap: 0
    }

    .before-after-collage .image-column {
        position: relative;
        top: 0
    }

    .before-after-collage .image-column {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        max-width: 100%
    }

    .before-after-collage .image-column .image-box {
        flex: 1 1 45%
    }

    .before-after-collage .text-box {
        margin: 30px 0
    }
}

@media(max-width:600px) {
    .before-after-collage .text-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .before-after-collage .text-box h2 {
        text-align: center
    }

    .before-after-collage {
        padding-bottom: 20px
    }

    .before-after-collage .text-box p:first-of-type {
        text-align: center
    }
}

.mold-tips-professional {
    padding: 50px 20px;
    background-color: #28a745;
    color: #fff;
    font-family: 'Arial', sans-serif;
    text-align: center
}

.mold-tips-professional h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700
}

.mold-tips-professional p {
    font-size: 18px;
    margin-bottom: 60px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left
}

.tip h3 {
    font-size: 22px;
    margin-bottom: 12px;
    display: flex;
    align-items: center
}

.tip h3 i {
    margin-right: 12px;
    font-size: 24px;
    color: #fff
}

.tip p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0f7ea
}

@media (max-width:1024px) {
    .tips-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .tips-grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .tip h3 {
        justify-content: center
    }
}

.call-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #28a745;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 12px rgb(0 0 0 / .2);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 9999999999999999999999999
}

.call-button i {
    font-size: 20px;
    animation: vibrate 1s infinite
}

.call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgb(0 0 0 / .3)
}

.call-button span {
    font-size: 16px
}

@keyframes vibrate {
    0% {
        transform: rotate(0deg)
    }

    20% {
        transform: rotate(-10deg)
    }

    40% {
        transform: rotate(10deg)
    }

    60% {
        transform: rotate(-10deg)
    }

    80% {
        transform: rotate(10deg)
    }

    100% {
        transform: rotate(0deg)
    }
}

@media(max-width:600px) {
    .call-button {
        left: 10px;
        width: 95%;
        bottom: 15%;
        align-items: center;
        justify-content: center
    }
}

.all-section-cta-main {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.all-section-cta-inner {
    height: fit-content;
    width: 100%;
    background-color: #00861f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #fff;
    align-items: center;
    padding: 50px 10px;
    gap: 10px
}

.all-section-cta-inner h6 {
    font-size: 36px;
    color: #fff;
    text-align: center
}

.all-section-cta-inner p {
    color: #fff;
    font-size: 18px;
    text-align: center
}

.all-section-cta-inner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f852a;
    padding: 8px 30px;
    border-radius: 10px;
    background-color: #fff;
    text-decoration: none;
    font-weight: 600;
    animation: pulse-scale 1.5s ease-in-out infinite;
    font-size: 20px;
    gap: 5px;
    position: relative
}

.all-section-cta-inner a::before {
    content: "\260E";
    display: inline-block;
    margin-right: 5px;
    font-size: 22px;
    animation: ring 1s infinite;
    transform-origin: 70% 70%
}

@media(max-width:600px) {
    .all-section-cta-inner h6 {
        font-size: 36px
    }

    .all-section-cta-inner {
        gap: 20px
    }

    .all-section-cta-inner a {
        font-size: small
    }
}

@keyframes ring {
    0% {
        transform: rotate(0deg)
    }

    10% {
        transform: rotate(15deg)
    }

    20% {
        transform: rotate(-10deg)
    }

    30% {
        transform: rotate(15deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    50% {
        transform: rotate(15deg)
    }

    60% {
        transform: rotate(-10deg)
    }

    70% {
        transform: rotate(15deg)
    }

    80% {
        transform: rotate(-10deg)
    }

    90% {
        transform: rotate(15deg)
    }

    100% {
        transform: rotate(0deg)
    }
}

.map-section {
    width: 100%;
    padding: 60px 0;
    background: #f6f8f8
}

.map-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px
}

.map-column {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.location-card {
    background: #28a745;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 20px 22px
}

.location-card h3 {
    font-size: 35px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 6px
}

.company-name {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px
}

.address {
    font-size: 14px;
    color: #fff;
    line-height: 1.5
}

.direction-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #004d43;
    text-decoration: none;
    border-bottom: 2px solid #004d43
}

.map-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 10px
}

.map-container {
    width: 100%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0
}

@media (max-width:768px) {
    .map-container {
        height: 320px
    }
}

@media (max-width:480px) {
    .map-container {
        height: 260px
    }

    .location-card h3 {
        font-size: 25px
    }
}

.protect-main-container {
    height: fit-content;
    width: 100%;
    max-width: 1200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0 10px;
    padding-bottom: 60px;
    gap: 30px
}

.protect-main-container h2 {
    text-align: center;
    font-size: 50px;
    position: relative
}

.protect-main-container h2::after {
    content: '';
    height: 3px;
    background-color: #00861f;
    width: 80px;
    bottom: -5px;
    position: absolute;
    left: 50%
}

.protect-main-container p {
    font-size: medium;
    text-align: center;
    max-width: 800px
}

@media(max-width:600px) {
    .protect-main-container h2 {
        font-size: 35px
    }

    .protect-main-container p {
        font-size: small
    }

    .testimonial-review p {
        font-size: medium
    }
}


.extra-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
}

.extra-image-container img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    /* Ensures image covers the section fully */
    object-position: center;
    /* Centers the image */
}

@media(max-width:768px) {
    .extra-image-container img {
        height: 500px;
    }
}

@media(max-width:600px) {
    .extra-image-container img {
        height: auto;
    }
}