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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 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: #fdc830;
    color: #090d42;
    border: none;
}

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

.cta-secondary {
    background-color: transparent;
    border: 2px solid #fdc830;
    color: #1e2238;
}


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

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

.hero2 {
    background-color: #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: #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 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: #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: #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%;
        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: 90%; /* Make it almost full width */
        transform: translateY(-10000px);
    }
    #chk:checked ~ .signup {
        transform: translateY(-300px);
    }

}

/* 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: 30%;
    }

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

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