@media (max-width: 991px) {
    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 42%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }

    .nav-links {
        position: fixed;
        background: #000;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        top: 0px;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
        left: 0;
        justify-content: flex-start;
        gap: 0px;
    }

    .nav-links.open {
        clip-path: circle(1000px at 50% -10%);
        -webkit-clip-path: circle(1000px at 50% -10%);
        pointer-events: all;
        padding: 0px 50px;
    }

    .nav-links li {
        opacity: 0;
    }

    .fade:not(.show) {
        opacity: 1;
    }

    header .cta-btn {
        padding: 14px 0px !important;
    }

    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }

    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }

    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }

    .nav-links li:nth-child(4) {
        transition: all 0.5s ease 0.7s;
    }

    .nav-links li:nth-child(5) {
        transition: all 0.5s ease 0.8s;
    }

    .nav-links li:nth-child(6) {
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }

    .nav-links li:nth-child(7) {
        transition: all 0.5s ease 1s;
        margin: 0;
    }

    li.fade {
        opacity: 1;
    }

    .nav-links li a {
        color: #fff;
    }

    .toggle+a,
    .menu {
        display: none;
    }

    .toggle {
        display: block;
        padding: 14px 0px;
        color: #fff;
        font-size: 15px;
        text-decoration: none;
        border: none;
    }

    .toggle:hover {
        background-color: transparent;
    }

    [id^="drop"]:checked+ul {
        display: block;
        width: 100%;
        background: transparent;
        transition: all 0.3s ease;
    }

    nav ul li {
        display: block;
        width: 100%;
        line-height: 3;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul li ul li .toggle,
    nav ul ul a {
        padding: 14px 20px;
        color: #fff;
        font-size: 17px;
    }

    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
    }

    nav ul ul li:hover>ul,
    nav ul li:hover>ul {
        display: none;
    }

    nav ul ul li {
        display: block;
        width: 100%;
    }

    .hamburger div {
        background: var(--white);
        margin: 5px;
    }
}

@media (max-width:1600px){
    .banner {
        padding: 14dvh 20px 9dvh 20px;
    }

    .banner h1 {
        font-size: 50px;
   }
   .banner p {
       font-size: 22px;
   }
   body{
    font-size: 16px;
   }

}

@media (max-width:1440px){
    .feature ul li {
        font-size: 16px;
    }
    ul.social-links img {
        width: 25px;
    }
}

@media(max-width:991px){
    .banner .row, .feature .row {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .banner-left {
        text-align: center;
    }
}

@media (max-width:767px){
    .banner h1 {
       font-size: 44px;
    }
    .banner p {
        font-size: 18px;
    }
    .feature-image img {
        width: 100%;
        height: 400px;
        object-fit: contain;
    }
    .swiper-button-next {
        right: 10px; 
    }
    .swiper-button-prev{
        left: 10px;         
    }
    .work-holder , section.download-app-now {
        text-align: center;
    }
    .widget.pe-lg-5 {
        text-align: center;
    }
    .section-title {
        text-align: center;
    }
    .btn-group {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media(max-width:575px){
    .banner h1 {
        font-size: 34px;
    }

    .banner {
        padding: 22dvh 14px 9dvh 14px;
    }

    .widget {
        text-align: center;
    }
    .widget ul li a {
        justify-content: center;
    }
    ul.social-links {
        padding-left: 0;
        justify-content: center;
    }
    section.download-app-now .row {
        flex-direction: column-reverse;
        gap: 26px;
    }
    .feature ul {
        padding-left: 0;
    }
}

