﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body {
    background: #f8f8f8;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.navbar-area {
    background: #fff;
    height: 82px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ececec;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
}

.container {
    width: 92%;
    max-width: 1320px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 30px;
}

nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
}

    .nav-links li a {
        font-size: 14px;
        font-weight: 500;
        color: #39465e;
        padding: 28px 0;
        position: relative;
        transition: .3s;
    }

        .nav-links li a:hover {
            color: #ff6b00;
        }

        .nav-links li a.active {
            color: #ff6b00;
        }

            .nav-links li a.active:after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 22px;
                width: 100%;
                height: 3px;
                background: #ff6b00;
                border-radius: 20px;
            }

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 60px;
}

.phone-btn {
    height: 30px;
    padding: 0 22px;
    border: 1px solid #d9dee7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #39465e;
    font-weight: 500;
    font-size: 14px;
    transition: .3s;
    background: #fff;
}

    .phone-btn:hover {
        border-color: #ff6b00;
        color: #ff6b00;
    }

.login-btn {
    background: #ff6b00;
    color: #fff;
    height: 30px;
    padding: 0 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: .3s;
    white-space: nowrap;
}

    .login-btn:hover {
        background: #ef6400;
        color: #fff;
    }
    .login-btn:hover {
        background: #ef6400;
        color: #fff;
    }

/* Mobile */

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

    .menu-toggle span {
        width: 28px;
        height: 3px;
        background: #333;
        border-radius: 10px;
    }

@media(max-width:992px) {

    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
    }

        nav.active {
            display: flex;
        }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
    }

        .nav-links li a {
            padding: 8px 0;
        }

            .nav-links li a.active:after {
                display: none;
            }

    .nav-right {
        margin: 25px 0 0;
        flex-direction: column;
        width: 100%;
    }

    .phone-btn,
    .login-btn {
        width: 100%;
        justify-content: center;
    }
}
/*==========================
        FOOTER
==========================*/

.footer-section {
    background: #2f396d;
    padding: 120px 0 70px;
    position: relative;
    margin-top: 140px;
}

    .footer-section .container {
        max-width: 1320px;
        margin: auto;
        padding: 0 15px;
    }

/*==========================
      VENDOR BOX
==========================*/

.vendor-box {
    width: 65%;
    height:150px;
    max-width: 1120px;
    margin: -210px auto 0;
    background: #fff;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 45px rgba(0,0,0,.12);
}

/* Left */

.vendor-left {
    width: 60%;
    padding: 38px 35px;
}

    .vendor-left h2 {
        font-size: 16px;
        line-height: 20px;
        color: #ff6900;
        margin-bottom: 18px;
        font-weight: 700;
    }

    .vendor-left p {
        font-size: 14px;
        line-height: 20px;
        color: #222;
        margin: 0;
    }

/* Right */

.vendor-right {
    width: 40%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 190px;
    position: relative;
}

    /* Curved Shape */

    .vendor-right::before {
        content: "";
        position: absolute;
        left: -90px;
        top: -70px;
        width: 240px;
        height: 300px;
        background: #f8f8f8;
        border-radius: 50%;
    }

/* Button */

.vendor-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 45px;
    border-radius: 40px;
    background: #ff6900;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

    .vendor-btn:hover {
        background: #f05d00;
        color: #fff;
        transform: translateY(-2px);
    }

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:991px) {

    .vendor-box {
        flex-direction: column;
        text-align: center;
    }

    .vendor-left,
    .vendor-right {
        width: 100%;
    }

    .vendor-right {
        min-height: 160px;
    }

        .vendor-right::before {
            display: none;
        }

    .vendor-left {
        padding: 35px 25px;
    }

    .vendor-btn {
        margin-bottom: 35px;
    }
}
/*=========================
        FOOTER MAIN
==========================*/

.footer-main {
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1.5fr;
    gap: 55px;
    align-items: flex-start;
}

.footer-logo {
    width: 150px;
    margin-bottom: 22px;
    background-color:#fff;
    border-radius:30px;

}

/*=========================
      CONTACT
==========================*/

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .contact-list li {
        color: #fff;
        font-size: 14px;
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        line-height: 26px;
    }

    .contact-list i {
        color: #ff8a00;
        width: 20px;
        font-size: 18px;
    }

/*=========================
        COLUMN
==========================*/

.footer-col h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 14px;
    }

        .footer-col ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            transition: .3s;
        }

            .footer-col ul li a:hover {
                color: #ff8a00;
                padding-left: 5px;
            }

/*=========================
      APP BUTTONS
==========================*/

.store-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

    .store-btns img {
        width: 155px;
        border-radius: 8px;
    }

/*=========================
      SOCIAL
==========================*/

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

    .social-icons a {
        width: 42px;
        height: 42px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2f396d;
        text-decoration: none;
        transition: .3s;
        font-size: 18px;
    }

        .social-icons a:hover {
            background: #ff8a00;
            color: #fff;
        }

/*=========================
      PAYMENT
==========================*/

.payment-box {
    background: #fff;
    padding: 12px 18px;
    border-radius: 5px;
    display: inline-block;
}

    .payment-box img {
        width: 100%;
        max-width: 470px;
    }

/*=========================
      COPYRIGHT
==========================*/

.copyright {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 55px;
    padding-top: 28px;
    text-align: center;
    color: #fff;
    font-size: 20px;
}

/*=========================
      RESPONSIVE
==========================*/

@media(max-width:1199px) {

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-col h4 {
        font-size: 26px;
    }

    .footer-logo {
        width: 180px;
    }

    .store-btns {
        flex-direction: column;
    }

        .store-btns img {
            width: 180px;
        }

    .payment-box img {
        max-width: 100%;
    }

    .copyright {
        font-size: 16px;
    }
}
.nav-links li a {
    text-decoration: none;
    color: #111; /* apna color */
}

    .nav-links li a:hover {
        text-decoration: none;
    }

    .nav-links li a.active {
        text-decoration: none;
    }

.nav-right a,
.nav-right a:hover,
.nav-right a:focus {
    text-decoration: none;
}



/*==========================
PROFILE IMAGE
===========================*/

.profile-btn {
    position: relative;
    display: inline-block;
}

    .profile-btn img {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        object-fit: cover;
    }

.online-dot {
    position: absolute;
    right: 2px;
    bottom: 2px;
    width: 12px;
    height: 12px;
    background: #18c33e;
    border-radius: 50%;
    border: 2px solid #fff;
}




.otp-btn {
    width: 100%;
    height: 60px;
    margin-top: 30px;
    border: none;
    border-radius: 12px;
    background: #ff7300;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    transition: .3s;
}

    .otp-btn:hover {
        background: #e76600;
    }





/*==========================
RESPONSIVE
===========================*/

@media(max-width:991px) {

    .login-left {
        display: none;
    }

    .login-right {
        padding: 30px;
    }

        .login-right h2 {
            font-size: 34px;
        }

    .subtitle {
        font-size: 18px;
    }

    .login-right label {
        font-size: 17px;
    }

    .input-box {
        height: 55px;
        font-size: 17px;
    }

    .otp-btn {
        height: 55px;
        font-size: 18px;
    }

    .otp-input {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }
}

@media(max-width:576px) {

    .login-right {
        padding: 22px;
    }

        .login-right h2 {
            font-size: 28px;
        }

    .subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .otp-input {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

.input-group-text {
    border-radius: 12px 0 0 12px;
    border: 1px solid #ddd;
    border-right: none;
    font-size: 20px;
}

.input-group .input-box {
    border-radius: 0 12px 12px 0;
}

