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

a {
    text-decoration: none;
    color: #333;
}

body {
    overflow-x: hidden;
}

:root {
    --header-height: clamp(65px, 8vw, 85px);
}

/* HEADER CSS */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
/* .container{
    padding: 10px ;
} */
.header-inner {
    height: var(--header-height);
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 140px;
    display: block;
}

.menu-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
}

#navbar {
    position: absolute;
    top: var(--header-height);
    height: calc(100dvh - var(--header-height));
    left: 0;
    width: 75%;
    background: #fff;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    z-index: 999;
    transform: translateX(-100%);
    transition: 0.3s ease;
}

#navbar.active {
    transform: translateX(0);
}

.nav-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-item {
    width: 60%;
    margin: 0 auto;
    list-style: none;
    border-radius: 10px;
    overflow: hidden;
}

.nav-item:last-child {
    width: 85%;
    margin-top: auto;
    margin-bottom: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 16px;
}

.nav-link i {
    color: orange;
    font-size: 18px;
}

.nav-item:hover {
    background: rgba(255, 165, 0, 0.1);
}

.nav-item:hover .nav-link {
    color: orange;
}

.nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: orange;
    color: #fff !important;
}

.nav-cta i {
    color: #fff;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background: orange;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    overflow: hidden;
}

.header-btn i {
    color: #fff;
}

.header-btn {
    transition: 0.3s ease;
}

.header-btn:hover {
    background: #ffcc80;
}

@media screen and (min-width:768px) {

    #navbar {
        width: 40%;
    }
}

@media screen and (min-width:1024px) {
    .container {
        width: 80%;
        margin: auto;
    }

    .menu-btn {
        display: none;
    }

    #navbar {
        position: static;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        transform: none;
        transition: none;
    }

    .nav-list {
        height: auto;
        flex-direction: row;
    }

    .nav-item {
        width: auto;
        margin: 0;
    }

    .nav-item:last-child {
        display: none;
    }

    .nav-link i {
        display: none;
    }

    .nav-item {
        position: relative;
    }

    .nav-item::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: orange;
        transition: 0.3s ease;
    }

    .nav-item:hover::after {
        width: 100%;
    }

    .nav-item:hover {
        background: none;
    }

}

/* footer */
/* body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
} */

footer {
    margin: 10px;
    margin-top: auto;
    border-radius: 8px;
    background-color: white;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.08);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;

}

.footer-col:nth-child(1),
.footer-col:nth-child(4) {
    grid-column: 1/-1;
}

.footer-col {
    display: grid;
    gap: 10px;
}

.footer-col .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-col .logo img {
    width: 160px;
}

.footer-col .footer-desc {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.footer-col .social-links {
    display: grid;
    gap: 15px;
    padding: 15px 0;
}

.footer-about::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 95%;
    height: 1px;
    background-color: rgba(255, 166, 0, 0.812);
    border-radius: 10px;
    margin: auto 10px;
}

.social-links .title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    gap: 12px;
    color: orange;
}

.title::before,
.title::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 30px;
    height: 1.5px;
    background-color: orange;
    border-radius: 10px;
}

.title span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.title span::before,
.title span::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: orange;
    border-radius: 50%;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;

}

.social-icon i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    box-shadow: 0 0 0 6px whitesmoke;
    /* box-shadow: 0 0 0 6px #FFE4B3; */
    border-radius: 50%;
    color: white;
    font-size: 18px;
}

.fa-facebook-f {
    background: #1877F2;
}

.fa-instagram {
    background: #E1306C;
}

.fa-youtube {
    background: #FF0000;
}

.fa-whatsapp {
    background: #25D366;
}

.footer-links {
    border-right: 1px solid orange;
}

.title-badge {
    display: flex;
    align-items: center;
}

.title-badge i {
    color: orange;
    margin-right: 8px;
    width: 20px;
    height: 20px;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.08);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-size: 18px;
    border-radius: 10px;
}

.title-badge span {
    font-size: 16px;
    font-weight: 400;
}

.title-badge span::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 45%;
    height: 2px;
    background-color: rgba(255, 166, 0, 0.812);
    border-radius: 10px;
    margin-top: 10px;
}

.footer-item {
    list-style-type: none;
    padding: 5px;
}

.footer-item a {
    display: flex;
    justify-content: space-between;
    /* color: red; */
}

.footer-item a span i {
    color: orange;
}

.footer-item a i {
    color: gray;
}

.footer-contact {
    border-radius: 5px;
    background-color: #ffcc802a;
    /* margin: 10px; */
    border: 1px solid #ffcc80;
    padding: 10px;
}

.footer-contact .footer-item a span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.footer-contact .footer-item a i {
    margin-top: 4px;
    flex-shrink: 0;
}

.whatsapp-msg {
    background-color: #84edaa2d;
    padding: 5px;
    border-radius: 10px;
    margin: 10px;
    border: 1px solid #70d896;
}

.whatsapp-msg a {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.whatsapp-msg p {
    font-weight: 300;
    font-size: 14px;
}

.whatsapp-msg .fa-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
}

.whatsapp-msg .fa-arrow-right {
    background-color: #8cebaf7c;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #25D366;
    font-size: 18px;
    font-size: 14px;
}

.footer-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(242, 224, 191, 0.164);
    padding: 10px;
    gap: 10px;
    margin: 10px;
    border-radius: 8px;
    border: 1px solid rgba(242, 224, 191, 0.415);
}

.trust-item {
    display: flex;
}

.footer-trust span {
    display: flex;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
}

.footer-trust i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: orange;
    background-color: white;
    font-size: 16px;
    margin-right: 10px;
}

.footer-trust p {
    font-size: 12px;
    display: grid;
    gap: 5px;
}

.copy-rights {
    text-align: center;
    padding: 10px;
    display: grid;
    gap: 5px;
    position: relative;
    text-align: center;
    padding-top: 10px;
}

.copy-rights::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 1px;
    background: rgba(255, 166, 0, 0.812);
}

.copy-rights::after {
    content: "❤️";
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 10px;
    font-size: 16px;
}

.copy-rights p {
    font-size: 14px;
}

.copy-rights a {
    color: orange;
    font-weight: 400;
}
@media screen and (min-width:1024px){
.container{
    width: 80%;
    max-width: auto;
}
    footer{
        /* max-width: 1400px; */
        width: 100%;
        margin: 20px auto;
        padding: 20px;
    }

    .footer-grid{
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 30px;
        align-items: flex-start;
        padding: 20px;
    }

    .footer-col:nth-child(1),
    .footer-col:nth-child(4){
        grid-column: auto;
    }

    .footer-trust{
        display: flex;
        justify-content: space-around;
    }
}

.hero-wrapper{
    display: grid;
    gap: 10px;
}

.hero-intro{
    padding: 20px;
    display: grid;
    gap: 20px;
}
.hero-intro h3{
    font-size: 36px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    margin: 10px 0;
}
.hero-intro h3 span{
    color: orange;
}

.hero-intro h3 span::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    border-radius: 50px;
    background: orange;
}
.hero-intro .text{
    line-height: 1.2;
    font-size: 18px;
    margin: 10px 0;
}
.hero-btn{
    display: flex;
    gap: 20px;
    padding: 10px 0;
    align-items: center;
}
.hero-btn a{
    padding: 8px 14px;
    /* border: 1px solid transparent; */
    border-radius: 5px;
}
.hero-cta{
    background-color: orange;
    color: white;
    &:hover{
        background-color: rgba(255, 166, 0, 0.796);
    }
}
.hero-cta i{
    font-size: 10px;
    margin:0 5px;
}
.view-btn{
    border: 1px solid orange;
    /* background-color: orange; */
    &:hover{
        background-color: orange;
        color: white;
    }
}
.view-btn{
    border: 1px solid orange;
    /* background-color: orange; */
}
.hero-badge{
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}
.badge-item{
    display: flex;
    align-items: center;
    gap: 10px;
}
.badge-item i{
    font-size: 24px;
    color: #ffcc80;
}
.badge-item span{
    color: #333;
}
.hero-banner{
    height: 180px;
    width: 100%;
    padding:0 10px;
}

.hero-banner img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.banner-wrappper{
    /* background-color: olive; */
    width: 100%;
    height: 80px;
    display: flex;
    gap: 20px;
    padding: 0 10px;
}
.banner-item{
    height: 80%;
    width: 50%;
    margin: auto;
}
.banner-item img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
@media screen and (min-width:768px){
    .hero-wrapper{
        display: flex;
        align-items: center;
    }
    .hero-banner{
    height: 240px;
    width: 100%;
    padding:0 10px;
}
.banner-item{
    height: 90%;
    width: 50%;
    margin: auto;
}
.hero-intro h3{
    font-size: 26px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    margin: 10px 0;
}
}