@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');


body {
    margin: 0px;
    padding: 0px;
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    position: relative;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #111;
    margin-left: -50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.solid {
    background-color: #3b2ce3;
    color: white;
    border: none;
}

.btn.outline {
    background-color: transparent;
    color: #3b2ce3;
    border: 2px solid #3b2ce3;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100vh;
    background-color: rgba(34, 34, 34, 0.9);
    color: white;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
    transition: left 0.3s ease;
}

.mobile-menu a,
.mobile-menu button {
    color: white;
    text-align: left;
    text-decoration: none;
    background: none;
    border: none;
    font-size: 1rem;
}

.close-btn {
    align-self: flex-end;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 900;
}


@media screen and (max-width: 768px) {

    .nav-links,
    .auth-buttons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}



/* Plans start  */

.plan-wrapper {
    font-family: "Segoe UI", sans-serif;
    background-color: #f8f9fb;
    padding: 40px 30px;
}

.plan-wrapper .comparison-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: left;
}

.plan-wrapper .toggle-buttons {
    display: none;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.plan-wrapper .toggle-buttons .btn {
    border: none;
    border-radius: 0;
    background-color: #fff;
    color: #000;
    flex: 1;
    font-weight: 500;
    padding: 10px 0;
}

.plan-wrapper .toggle-buttons .btn.active {
    background-color: #000;
    color: #fff;
}

.plan-wrapper .plan-table {
    width: 100%;
    border-collapse: collapse;
}

.plan-wrapper .plan-table th,
.plan-wrapper .plan-table td {
    padding: 20px 16px;
    vertical-align: top;
}

.plan-wrapper .plan-table th {
    font-weight: 600;
    text-align: left;
}

.plan-wrapper .core-feature-title {
    font-weight: 600;
}

.plan-wrapper .core-feature-desc {
    color: #6c757d;
    font-size: 14px;
}

.plan-wrapper .core-feature-row {
    background-color: #e6f0ff;
}

.plan-wrapper .green-check {
    color: green;
    font-size: 18px;
}

.plan-wrapper .feature-value {
    padding-left: 40px;
}

@media (max-width: 770px) {

    .plan-wrapper .plan-table thead,
    .plan-wrapper .plan-table td:not(.feature-name),
    .plan-wrapper .plan-table th:not(.feature-name) {
        display: none;
    }

    .plan-wrapper .toggle-buttons {
        display: flex;
    }

    .plan-wrapper .mobile-table {
        display: table;
        width: 100%;
    }

    .plan-wrapper .mobile-row {
        display: table-row;
        border-bottom: 1px solid #ddd;
    }

    .plan-wrapper .feature-name,
    .plan-wrapper .feature-value {
        display: table-cell;
        padding: 14px 12px;
        vertical-align: top;
    }

    .plan-wrapper .feature-name {
        width: 50%;
    }

    .plan-wrapper .feature-value {
        width: 50%;
        padding-left: 80px;
    }
}

@media (max-width: 374px) {
    .plan-wrapper .feature-value {
        width: 50%;
        padding-left: 50px;
    }
}

/* Plans end */


/* footer start  */
.footer {
    background-color: #02033B;
    color: white;
    font-family: Arial, sans-serif;
}

.newsletter-box {
    background-color: #FFC247;
    border-radius: 25px;
    padding: 2rem;
    background-image: url('../assets/Icons/certo-dark-yellow.svg.png');
    /* Replace with actual image */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 400px;
}

.newsletter-box h5 {
    font-weight: 700;
    color: #1D1D1D;
}

.newsletter-box p {
    font-size: 0.9rem;
    color: #1D1D1D;
}

.newsletter-input {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 1rem;
}

.newsletter-input input {
    flex: 1;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.newsletter-input button {
    background-color: #02004D;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.footer-links h6 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.contact-info p {
    font-size: 0.9rem;
    margin: 0.2rem 0;

}

.contact-info p a {
    text-decoration: none;
    color: white;
}

.social-icons a {
    color: white;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid white;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.8rem;
    text-align: center;
}

@media (max-width: 768px) {
    .newsletter-box {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .newsletter-input input {
        padding: 0.5rem;
    }

    .newsletter-input button {
        padding: 0.5rem 1rem;
        white-space: nowrap;
    }
}