@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    scroll-behavior: smooth;
}


* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.container {
    width: min(1200px, 90%);
    margin: auto;
}

img {
    display: block;
    max-width: 100%;
}

/* Header */

header {
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    z-index: 10;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    padding: 0 2rem;
}

.logo {
    width: 15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logoimg {
    width: 200px;
}

.separate {
    background-color: #dddddd;
    width: 2px;
    height: 3rem;
}

.menu {
    list-style: none;
    display: flex;
}

.menu li {
    display: inline-block;
    width: 100px;
}

.menu>li>a {
    color: black;
    text-decoration: none;
    transition: all 0.2s linear;
}

.menu>li>a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.5rem;
    text-decoration-inset: -4px;
}


.whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;

    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.whatsapp:hover {
    transform: translateY(-2px);
}

/* hero */

.hero-grid {
    width: 100%;
    min-height: calc(90vh - 4rem);
    display: flex;
    align-items: center;

}

.hero-content {
    width: 50vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding-left: 5rem;
}

.hero-image {
    width: 50vw;
}

.hero-image>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #22c55e;
    font-weight: bold;
}

.hero-title {
    text-align: center;
    font-size: 4rem;
    color: #0f172a;
    line-height: 4.5rem;
}

.hero-description {
    max-width: 550px;
    color: #475569;
}

.hero-buttons {
    margin: 1.5rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.btn-call {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;

    background: #0f172a;
    color: white;
    text-decoration: none;
    padding: 0.5rem 4rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.btn-call:hover {
    transform: translateY(-2px);
}

.blue {
    color: #22c55e;
}

/* ----------------------- */
.separateX {
    margin-bottom: 4rem;
}

/* ----------------------- */
/* services */

.services {
    background: #f9fafb;
}

.services-container {
    width: 95vw;
    margin: auto;
    box-shadow: 0 0 0.5rem gray;
    border-radius: 0.3rem;
    padding-bottom: 0.5rem;

}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    padding-top: 1.5rem;
    color: #111827;
}

.services-subtitle {
    text-align: center;
    color: #6b7280;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem 1rem;
    margin: 2rem 1rem;
    place-items: center;
}

.card {
    background: white;
    text-align: left;
    display: block;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    cursor: pointer;
    border-top: 3px transparent;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #25D366;
}


.card-title {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
}

.card-text {
    color: #4b5563;
    font-size: 0.9rem;
}

/* about */


.about-img {
    background-image: url(./assets/aboutimg.png);
    width: 100vw;

    min-height: calc(100vh - 4rem);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;

}


.about-content {
    position: relative;
    max-width: 500px;
    margin: 2rem;
    padding-top: 2rem;
    transition: transform 0.25s ease;
}

.about-title {
    font-size: 3rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}


.about-text {
    color: #475569;
    line-height: 1.7;
}

.about-content:hover {
    transform: translateY(-5px);
}



/* why choose */


.choose-grid {
    margin: 0 10px;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
}

.choose-heading {
    background-color: #223938;
    border-radius: 1rem 0 0 1rem;
    display: flex;
    align-items: center;
}

.Choose-title {
    color: white;
    font-weight: 500;
    font-size: 3.6rem;
    width: 300px;
    margin-left: 2.5rem;
    line-height: 6rem;
}

.choose-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;

}

.choose-card {
    background-color: #f0f8ff;
    border-radius: 130rem 0 0 130rem;
    position: relative;
    left: -4.5rem;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}


.out-num {
    background: white;
    height: 140px;
    width: 140px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.num {
    background: green;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    font-weight: bold;
}


.card-content {
    width: 500px;
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.choose-h6 {
    font-weight: 600;
    font-size: 1.5rem;
}

.choose-text {
    color: #475569;
}

.one {
    background: #0f4f4d;
}

.two {
    background: #95b1af;
}

.three {
    background: #604728;
}


/* FAQ */

.faq-div {
    width: 100%;
    margin: auto;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

}

.faq-div h2 {
    padding: 1rem 0;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
}


.faq-box-question {
    transition: all 0.5s ease;
    font-size: 1.25rem;
    display: flex;
    max-width: 60vw;
    justify-content: space-between;
    background-color: #eeeeee;
    padding: 14px;
    border-radius: 0.5rem;
    cursor: pointer;
    margin: auto;
}

.faq-box-question:hover {
    background-color: #cccccc;
    transform: translateY(-6px);
}

.faq-box-answer {
    max-width: 60vw;
    margin: auto;
    background-color: #F5F5F5;
    color: #475569;
}

.faq-box-answer>p {
    max-height: 0;
    overflow: hidden;
    color: #6b7280;
    transition: max-height 0.3s ease;
}



.faq-box.active .faq-box-question {
    background-color: #cccccc;
}

.faq-box.active .faq-box-answer>p {
    max-height: 300px;
}


.plus {
    transition: all 0.2s linear;
}

.faq-box.active .plus {
    transform: rotate(45deg);
}

/* footer */

.site-footer {
    background: #111827;
    color: #cccccc;
    padding: 3rem 2rem;
    font-size: 0.95rem;
}

.site-footer a {
    color: #22c55e;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.footer-brand {
    width: 350px;
    font-weight: 500;
    font-size: 1rem;
}


.footer-links>ul {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.footer-main {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer-contact>h4 {
    padding-bottom: 0.5rem;
}

.footer-contact>p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

/* Responsive */

/* navbar */

.hamburger-icon {
    display: none;
    cursor: pointer;
}

.close-icon {
    display: none;
    cursor: pointer;
}


.hamburger-content {
    position: absolute;
    top: 64px;
    right: 0px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 200px;
    padding-bottom: 8px;
    background-color: #f9f9f9;
    border-radius: 4px;
    height: 0px;
    transition: all 0.4s linear;
}

.hamburger-content>ul {
    list-style: none;
    margin: 4px 0;
}

.hamburger-content>ul>li {
    width: 200px;
    cursor: pointer;
    text-align: center;
    padding: 6px 0;

}

.hamburger-content>ul>li>a {
    color: black;
    text-decoration: none;
}

.hamburger-whatsapp {
    display: none;
    gap: 3px;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    padding: 2px 9px;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.hamburger-whatsapp:hover {
    transform: translateY(-2px);
}

.hamburger-content>.hamburger-menu>li:hover {
    background-color: #E5E7EB;
}


#hamburger-checkbox:checked+.hamburger-btn .hamburger-icon {
    display: none;
}


#hamburger-checkbox:checked+.hamburger-btn .close-icon {
    display: block;
}

input[type="checkbox"] {
    display: none;
}



/* Landing page */



@media screen and (width <=1050px) {

    /* navbar */
    .separate {
        display: none;
    }

    .menu {
        display: none;
    }

    #hamburger-checkbox:checked~.hamburger-content {
        height: 180px;
    }


    .hamburger-icon {
        display: block;
    }

    /* Landing page */
    .hero-grid {
        flex-direction: column;
        width: 100%;
    }

    .hero-content {
        width: 90vw;
        margin: 0 auto;
        padding: 0;
    }

    .hero-image {
        width: auto;
        order: -1;
    }

    /* Services */

    /* about */
    .about-img {
        background-position: left bottom;
    }


    /* why choose */
    .choose-grid {
        grid-template-columns: 1fr;
    }

    .choose-heading {
        width: 95vw;
    }

    .Choose-title {
        width: 100vw;
        color: white;
        font-size: 2.5rem;
    }

    .choose-content {
        width: 100%;
        align-items: center;
        gap: 2rem;

    }

    .choose-card {
        left: 0;
        width: 80vw;
        height: auto;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
    }

    /* faq */



    .faq-div h2 {
        font-size: 30px;
        font-weight: 700;
    }

    .faq-box-question {
        font-size: 1.1rem;
        max-width: 70vw;
    }

    .faq-box-answer {
        background-color: #F5F5F5;
        max-width: 70vw;
        margin: auto;
        color: #475569;
    }

}


@media screen and (width <=800px) {

    /* navbar  */
    .whatsapp-nav {
        display: none;
    }

    .hamburger-whatsapp {
        display: flex;
    }

    #hamburger-checkbox:checked~.hamburger-content {
        height: 240px;
    }

    /* landing page  */
    .hero-content {
        gap: 0.3rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 3rem;
    }

    .hero-description {
        padding: 0 0.5rem;
    }

    .hero-buttons {
        text-wrap-mode: nowrap;
        gap: 3rem;
    }

    /* about */

    /* why choose */

    .Choose-title {
        font-size: 2rem;
    }

    .choose-content {
        width: 100%;
    }

    .choose-card {
        width: 90vw;
        height: 140px;
        display: flex;
        gap: 0.5rem;
    }

    .card-content {
        width: 75%;
        gap: 0.2rem;
    }

    .choose-h6 {
        font-weight: 500;
        font-size: 1.2rem;
    }

    .choose-text {
        font-size: 0.9rem;
    }

    /* faq */



    .faq-div h2 {
        font-size: 30px;
        font-weight: 700;
    }

    .faq-box-question {
        font-size: 1rem;
        max-width: 85vw;
    }

    .faq-box-answer {
        max-width: 85vw;
        font-size: 14px;
    }

    /* footer */

    .footer-brand {
        font-weight: 500;
        font-size: 1rem;
    }

    .footer-brand>img {
        margin: 1rem;
    }

}

/* mobile */
@media screen and (width <=520px) {

    /* navbar  */
    .whatsapp-nav {
        display: none;
    }

    .hamburger-whatsapp {
        display: flex;
    }

    /* landing page  */

    .hero-content {
        gap: 0.2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .hero-description {
        text-align: center;
        padding: 0 0.5rem;
    }

    .hero-image {
        width: fit-content;
    }

    .hero-buttons {
        width: 300px;
        flex-direction: column;
        text-wrap-mode: nowrap;
        gap: 0.5rem;
    }

    .btn-call {
        padding: 0.7rem 0;
    }

    /* why choose us */

    .Choose-title {
        font-size: 2rem;
    }

    .choose-card {
        gap: 0.3rem;
    }

    .card-content {
        width: 80%;
        gap: 0.2rem;
    }

    .choose-h6 {
        font-weight: 700;
        font-size: 1rem;
    }

    .choose-text {
        font-size: 0.9rem;
    }

    /* faq */



    .faq-div h2 {
        font-size: 25px;
        font-weight: 600;
    }

    .faq-box-question {
        font-size: 1rem;
        max-width: 85vw;
    }

    .faq-box-answer {
        font-size: 14px;
        max-width: 85vw;
    }
}