body2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /*#f3f4f6;*/
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 1%;
    background-color: #070c22;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    nav a:hover {
        background-color: #1a76d2;
    }

.auth-links {
    display: flex;
    align-items: center;
}

.auth-link {
    margin-right: 15px;
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
}

.cta-primary, .cta-secondary {
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 6px;
    margin-left: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #007bff; /*fdc830; */
    color: white;
    border: none;
}

    .cta-primary:hover {
        background-color: red; /*#F6D985;*/
    }

.cta-secondary {
    background-color: transparent;
    border: 2px solid #f0f4f7;
    color: white;
}


    .cta-secondary:hover {
        color: #c72e2e;
        border-color: #F6D985;
    }

.price-btn {
    background-color: #ff7f71; /*fdc830; */
    color: #0476D;
    border: none;
}

    .price-btn:hover {
        background-color: #007BFF90; /*#F6D985;*/
    }

.hero {
    background-color: #51dedd40; /*#ff7f71;#94d80726;*/
    text-align: center;
    padding: 60px 30px;
    border-radius: 20px;
    margin: 30px 20px;
    color: #003366;
}

.hero2 {
    background-color: #f7e9e2; /* #0293a229; */
    text-align: center;
    padding: 6px 3px;
    border-radius: 20px;
    margin: 30px 20px;
    color: #003366;
}

    .hero2 p {
        font-size: 20px;
        margin-bottom: 25px;
    }

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}


.cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.banner {
    text-align: center;
    padding: 30px;
    background-color: #829ff799; /*#94d80726;*/
    border-radius: 20px;
    margin: 20px;
}

    .banner img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
    }

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5px;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 3px;
    padding: 20px;
    max-width: 300px;
    text-align: center;
}
.card:hover {
    transform: translateY(-4px);
}

    .card img {
        max-width: 100%;
        border-radius: 10px;
    }

    .card h3 {
        color: #333;
    }

    .card p {
        color: #777;
    }

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


.container2 {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}


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

.package {
    background-color: #ffffff ;/*#e2e4ef;*/
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    flex: 1 1 calc(25% - 40px); /* Adjusts width and margin */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .package h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .package p {
        font-size: 1.3em;
        margin-bottom: 10px;
        color: #090d42;
        text-align: left;
    }

    .package ul {
        list-style-type: disc;
        text-align: left;
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .package button {
        background-color: #007BFF; /*fdc830;*/
        color: #090d42;
        border: none;
        padding: 10px 20px;
        font-size: 1em;
        border-radius: 5px;
        cursor: pointer;
        margin-top: auto; /* Push the button to the bottom */
    }

        .package button:hover {
            background-color: #111743;
        }

/* Media Queries for responsiveness */
@media (max-width: 992px) {
    .package {
        flex: 1 1 calc(33.333% - 40px);
    }
}

@media (max-width: 768px) {
    .package {
        flex: 1 1 calc(50% - 40px);
    }
}

@media (max-width: 576px) {
    .package {
        flex: 1 1 calc(100% - 40px);
    }
}


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}


.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 8px;
    text-align: left;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

    .video-popup.active {
        display: flex;
    }

.video-container {
    position: relative;
    width: 90%;
    max-width: 800px;
}

    .video-container video {
        width: 100%;
        height: auto;
    }

.close-btnXX {
    position: absolute;
    top: -30px;
    right: -20px;
    background: red;
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .main {
        width: 90%;
        max-height: auto; /* Allow height to adjust based on content */
    }
}

/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .main {
        width: 60%;
    }
}


/* Mobile Styles */
@media screen and (max-width: 768px) {
    .signup {
        width: 100%; /* Make it almost full width */
        transform: translateY(-50px);
    }

    .login {
        width: 100%; /* Make it almost full width */
        transform: translateY(-80px);
    }

    #chk:checked ~ .login {
        transform: translateY(0px);
        transform: scale(1);

    }


}


/* Tablet Styles */ /*
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .signup {
        width: 60%;
        transform: translateY(-10000px);
    }
    #chk:checked ~ .signup {
        transform: translateY(-450px);
    }
}*/

@media screen and (min-width: 1025px) {
    .main {
        width: 100%;
        height:70%;
    }

    .signup {
        width: 100%;
        transform: translateY(-0px);
    }

    #chk:checked ~ .signup {
        transform: translateY(-600px); /* Adjust transform for desktop screens */
    }

}


.feature-box {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .feature-box:hover {
        transform: translateY(-10px);
    }

    .feature-box h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .feature-box p {
        font-size: 1rem;
    }




/* Pricing Section */
.pricing-section {
    background-color: #f0f4f7;
    padding: 4rem 2rem;
}

    .pricing-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 1rem;
    }

    .pricing-section p {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 3rem;
    }

.old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 18px;
    margin-right: 10px;
}


.packages {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.package {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    width: 30%;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .package h3 {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .package .price {
        font-size: 1.5rem;
        font-weight: 600;
        color: #ff6f61;
        margin-bottom: 2rem;
    }

    .package ul {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem;
    }

        .package ul li {
            margin-bottom: 1rem;
            font-size: 1rem;
        }
/*Login*/


.login-form {
    max-width: 75%;
    width: 100%;
    text-align: center;
}

    .login-form h1 {
        font-size: 2.5em;
        color: #1a3d6e;
        margin-bottom: 20px;
    }

    .login-form h2 {
        font-size: 1.5em;
        color: #4a6da1;
        margin-bottom: 30px;
    }



.login-btn {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: #1a3d6e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .login-btn:hover {
        background-color: #16315a;
    }

.login-options p {
    margin: 20px 0;
    color: #a3b0c1;
    font-weight: bold;
}


.login-footer a {
    color: #1a3d6e;
    text-decoration: none;
}

.login-footer p {
    margin-top: 10px;
    color: #4a6da1;
}

.login-footer a:hover {
    text-decoration: underline;
}



.login-container {
    display: flex;
    height: 100vh;
}

.login-left {
    background: url('DashboardMockup.png') no-repeat center center/cover;
    flex: 1;
    color: white;
    background-color: #eef3fc;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: left;
    color: #1a3d6e;
}

    .login-left img {
        max-width: 100%;
        border-radius: 10px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .login-left h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .login-left p {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: black;
    }


.login-right {
    flex: 1;
    background-color: #51dedd40;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Media Query for smaller screens or zoomed-in views */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column; /* Stack the left and right sections vertically */
        align-items: center; /* Center both sections */
        flex-wrap: nowrap;
        height: auto;
    }

    .login-left, .login-right {
        width: 100%; /* Full width for both sections */
        max-width: 100%
    }

    .login-left {
        height: auto; /* Allow the left section to adapt to content */
        padding: 20px;
        text-align: center;
    }

    .login-right {
        padding: 20px;
     
        
    }

    .login-form {
        max-width: 90%; /* Keep the form width reasonable on smaller screens */
    }
}



