:root {
    --primary-color: #2196F3;
    --gradient: linear-gradient(130deg, #B9E2FF, #ffffff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #051525;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#open {
    display: none;
}

.logo img {
    width: 35px;
    height: 35px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.788);
    display: flex;
    align-items: center;
    gap: .3rem;
}

.profile-picture {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo .span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
}

.nav-links .active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    margin-top: 1px;
}

@media (max-width: 900px) {
    .navbar {
        padding: 10px 15px;
    }

    .responsive-head {
        display: flex;
        justify-content: space-between;
    }

    .main.profile-picture {
        display: none;
    }

    .auth-buttons {
        display: flex;
    }

    #open {
        display: flex;
    }

    .navbar #big {
        display: none;
    }

    #open {
        display: block;
        background: white;
        padding: 6px;
        border: 1px solid #CFDCE6;
        border-radius: 6px;
        box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.04);
        outline: none;
        font-size: 20px;
        cursor: pointer;
        color: #4F5D69;
    }

    .responsive {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        padding: 16px 20px;
        animation: slideDown 0.3s;
        overflow-y: hidden;
    }

    .responsive .links1 .active::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: var(--primary-color);
        margin-top: 1px;
    }

    .responsive .links1 li {
        width: 100%;
        text-align: center;
    }

    .responsive.show {
        display: flex;
    }

    .responsive-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .auth-buttons {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .auth-buttons .btn {
        padding: 12px 10px;
        border-radius: 8px;
        text-decoration: none;
    }

    .sign-in {
        color: #000;
        background-color: #fff;
        box-shadow: rgb(190, 188, 188) 1px 1px 1px;
        font-size: 15px;
        text-align: center;
        width: 100%;
    }

    .sign-up {
        background: var(--primary-color);
        color: #fff;
        box-shadow: #007bff 1px 1px 1px;
        font-size: 15px;
        text-align: center;
        width: 100%;
    }

    .logo a span {
        font-size: 20px;
    }

    .responsive ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .responsive ul li a {
        color: #333;
        text-decoration: none;
        font-size: 15px;
    }

    .responsive #close {
        background: none;
        padding: 5px;
        border: none;
        font-size: 25px;
        cursor: pointer;
        color: #524f4f;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero {
    display: flex;
    justify-content: space-between;
    padding: 60px 50px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 46px;
    padding-top: 20px;
}

.hero-text h1 span {
    color: #007bff;
}

.overline {
    background-color: #e9f5fe;
    border-radius: 30px;
    color: #2196f3;
    padding: 10px 20px 10px 20px;
    width: 193px;
    font-size: 12px;
    height: 16px;
    box-shadow: 0 0.5px;
}

.overline-dot {
    font-size: 50px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #2196f3;
    display: inline-block;
    margin-right: 5px;
}

.hero-buttons {
    margin-top: 20px;
}

.hero-buttons .btn {
    margin-right: 15px;
}

.explore {
    padding: 50px;
    background: #f6fafd;
}

.search-box {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.search-box input {
    padding: 10px 40px 10px 35px;
    width: 400px;
    max-width: 420px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-box .search-lens {
    border: 1px solid #A1ACB4;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 6px;
    height: 35px;
}

.search-box .search-lens input {
    outline: none;
    border: none;
    margin: 0;
    padding: 0;
    height: 33px;
    padding-left: 7px;
}

.bcard {
    padding-top: 40px;
    display: flex;
    justify-content: center;
}

.card {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 570px;
    background: #FFFFFF;
}

.card1 {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    font-weight: 500;
    color: #374151;
}

.card2 img {
    width: 124px;
    height: 96px;
    border-radius: 8px;
}

.card2 {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #CFDCE6;
    gap: 10px;
}

.subcard2 img {
    width: 20px;
    height: 20px;
}

.subcard2 {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 19px;
}

.subcard1 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 15px;
    font-weight: 400;
}

.card3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 19px;
    font-weight: 500;
}

textarea {
    border: 1px solid #CFDCE6;
    padding: 8px;
    border-radius: 8px;
    width: 100%;
    max-width: 523px;
    height: 144px;
    background: #FFFFFF;
    font-size: 15px;
    font-weight: 400;
}

.text {
    position: relative;
    max-width: 523px;
    width: 100%;
}

#wordcount {
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-weight: 400;
    font-size: 12px;
    color: #374151;
}

.cardbtn {
    display: flex;
    justify-content: space-between;
}

.cardbtn button {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.cardbtn1 {
    background: #FFFFFF;
    border: 1px solid #CFDCE6;
    color: #374151;
}

.cardbtn2 {
    background: #2196F3;
    border: 1px solid #2196F3;
    color: #FFFFFF;
}

.report {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#feedbackType {
    padding: 8px 12px;
    border: 1px solid #CFDCE6;
    border-radius: 8px;
    display: flex;
    justify-content: end;
    box-shadow: #1018280A;
    cursor: pointer;
    width: 291px;
}

.share1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.label {
    box-shadow: #1018280A;
    padding: 8px;
    border-radius: 8px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid #CFDCE6;
    display: none;
    width: 291px;
}

label {
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
}

label input {
    border: 1.5px solid #CFDCE6;
    border-radius: 4px;
    width: 16px;
    height: 16px;
}

footer {
    background: #f3f4f6;
    padding: 40px 80px;
    margin-top: 3rem;
    text-align: start;
}

.footer-logo img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

footer .hubb {
    font-size: 19px;
}

.footer-logo .hub {
    color: #2196F3;
}

.footer-logo a {
    color: #000;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center !important;
    text-align: start;
    gap: 2rem;
}

.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.links a {
    text-decoration: none;
    color: gray;
    font-size: 0.9rem;
}

.newsletter {
    max-width: 390px;
    text-align: start;
}

.newsletter p {
    color: gray;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.newsletter form {
    display: flex;
    gap: 0.5rem;
}

.newsletter input {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid #d1d5db;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    font-size: 0.9rem;
    outline: none;
}

.newsletter button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

hr {
    font-weight: 500;
    margin-top: 50px;
    border: 1px solid #d1d5db;
}

.footer-icons {
    margin: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.2rem;
    color: gray;
}

.social-icons a:hover {
    color: #2196f3;
}

.social-icons a {
    color: gray;
}

.copyright {
    font-size: 0.85rem;
    color: gray;
}

@media (max-width: 992px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        margin: 15px 0;
    }

    .auth-buttons {
        margin-top: 10px;
    }

    .hero {
        flex-direction: column;
        text-align: left;
        padding: 10px 10px;
    }

    .hero-text {
        max-width: 80%;
        text-align: left;
        margin-bottom: 20px;
        align-items: left;
        justify-content: left;
        padding-left: 10px;
    }

    .hero-buttons {
        display: flex;
    }

    .hero-image img {
        margin-top: 20px;
        width: 80%;
    }

    .explore {
        padding: 30px 10px;
    }

    .explore-head h2 {
        width: 80%;
    }

    .explore-head p {
        width: 80%;
    }

    .search-box {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .search-box input {
        width: 100%;
    }

    .search-lens {
        width: 100%;
    }

    .explore-after {
        display: block;
        flex-direction: column;
        text-align: center;
        color: #007bff;
        border: none;
        background: #f6fafd;
    }

    .explore-after button {
        padding: 10px 15px;
        color: #007bff;
        border-radius: 5px;
    }

    .business-cards {
        flex-wrap: wrap;
        justify-content: center;
        width: 80%;
    }

    .card {
        width: 100%;
    }

    .subcard2 {
        font-size: 16px;
        font-weight: 800;
    }

    .card1 img {
        width: 20px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-box {
        width: 90%;
    }

    footer {
        flex-direction: column;
        max-width: 100%;
        background: #f3f4f6;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 2rem;
        text-align: start;
    }

    .links {
        flex-direction: column;
    }

    .newsletter p {
        color: gray;
        font-size: 14px;
        margin-bottom: 1.5rem;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-container .footer-main {
        display: flex;
        flex-direction: column;
        text-align: left;
        width: 100%;
    }

    .footer-container .footer-main .footer-logo a {
        margin: 0 0 10px;
    }

    footer form {
        flex-direction: column;
    }

    .newsletter input {
        flex: 1;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        font-size: 0.9rem;
    }

    .newsletter button {
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 0.9rem;
        cursor: pointer;
    }

    .how-it-works {
        padding: 40px 20px;
    }

    .testimonials {
        padding: 40px 20px;
    }

    #open {
        display: block;
    }

    #big {
        display: none;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 10px 15px;
    }

    .nav-links {
        gap: 10px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    #open {
        display: block;
    }

    #big {
        display: none;
    }

    .search-box {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .search-box input {
        width: 100%;
        max-width: 300px;
    }

    .search-box button {
        width: 100%;
        max-width: 300px;
    }

    .business-cards {
        gap: 15px;
    }

    .testimonial-cards {
        gap: 10px;
    }

    .t-card {
        width: 250px;
        font-size: 12px;
        padding: 15px;
    }

    .t-img img {
        height: 40px;
        width: 40px;
    }

    .step-box h3 {
        font-size: 18px;
    }

    .step-box ul li {
        font-size: 14px;
    }

    .subscribe input,
    .subscribe button {
        width: 100%;
        margin: 5px 0;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 10px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image img {
        width: 100%;
        max-width: 350px;
        height: auto;
        margin-top: 20px;
    }

    .explore {
        padding: 0 10px;
    }

    .explore-head h2,
    .explore-head p {
        width: 100%;
    }

    .business-cards {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 15px;
    }

    .card img {
        height: auto;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .step-box {
        width: 100%;
        padding: 10px;
    }

    .subscribe input,
    .subscribe button {
        width: 100%;
        margin: 5px 0;
    }

    .bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .how-it-works {
        padding: 40px 20px;
    }

    .testimonials {
        padding: 40px 20px;
    }
}

@media (max-width: 400px) {
    .hero-text h1 {
        font-size: 18px;
    }

    .hero-text p {
        font-size: 12px;
    }

    .btn {
        font-size: 14px;
        padding: 8px 10px;
    }
}