@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins';
}

html,
body {
    height: 100%;
    width: 100%;
}


.navbar {
    height: 13vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    box-shadow: 0 4px 20px rgba(144, 238, 144, 0.3);
    padding: 0 2vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar-left {
    height: auto;
    width: 22%;
    overflow: hidden;
}

.navbar-left img {
    height: auto;
    width: 8vw;
    object-fit: cover;
    margin-top: 1vw;
}

.navbar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    margin-right: 2vw;
}

.navbar-right a {
    position: relative;
    text-decoration: none;
    color: black;
    font-size: 1.3vw;
    padding: .4vw;
    transition: color 0.3s ease;
}

.navbar-right a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #ff7043;
    transition: width 0.4s ease;
}

.navbar-right a:hover::after {
    width: 100%;
}



.subscription-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 10vw;
}

.subscription-head h1 {
    border-bottom: 4px solid orange;
    display: inline-block;
    margin-bottom: 1vw;
    padding-bottom: .7vw;
}

.subscription-head p {
    display: block;
    text-align: center;
    width: 70%;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
    margin-top: 4vw;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.container h1 {
    text-align: center;
    color: #e65100;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.container p.description {
    text-align: center;
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card h2 {
    background: green;
    color: #fff;
    margin: 0;
    padding: 1vw;
    font-size: 1.5rem;
    text-align: center;
}

.card .content {
    padding: 1.5rem;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.card ul li {
    margin-bottom: 0.6rem;
}

.card .highlights {
    background: #fff3e0;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.card .get-plan-btn {
    display: inline-block;
    margin-top: 1rem;
    background-color: #ff6f00;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}

.popup-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    width: 90%;
    max-width: 500px;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.popup-form button {
    width: 100%;
    background-color: #ff6f00;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

.popup-form .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
}



.page7 {
    min-height: 55vh;
    width: 100%;
    padding: 1vw 2vw;
}

footer {
    width: 100%;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3vw;
    border-bottom: 1px solid red;
    margin-bottom: 2vw;
}

.footer-logo {
    width: 33%;
    margin-bottom: 2vw;
}

.footer-logo img {
    width: 12vw;
}

.footer-logo p {
    font-size: .9vw;
    opacity: .7;
}

.footer-menu {
    width: 30%;
    margin-bottom: 2vw;
}

.footer-menu h3 {
    color: red;
    font-weight: 400;
    margin-bottom: 1vw;
    margin-left: 8vw;
}

.footer-anchor {
    display: flex;
    flex-direction: column;
    gap: .3vw;
    margin-left: 8vw;
}

.footer-anchor a {
    text-decoration: none;
    color: black;
    opacity: .7;
    width: fit-content;
}

.footer-anchor a:hover {
    color: red;
}

.footer-social {
    width: 30%;
}

.footer-social h3 {
    color: red;
    font-weight: 500;
}

.icons {
    display: flex;
    align-items: center;
    gap: 1.6vw;
    margin-top: 1vw;
}

.icons a {
    text-decoration: none;
}

.icons i {
    height: 3.5vw;
    width: 3.5vw;
    font-size: 1.8vw;
    color: red;
    border: 1px solid red;
    padding: .7vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all .3s ease;
}

.icons i:hover {
    border: 1px solid black;
    color: black;
    transform: scale(0.8);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p span {
    color: red;
}





@media screen and (max-width: 480px) {

    .navbar {
        width: 100%;
        height: 8vh;
        padding: 1vw 3vw;
        gap: 2vw;
    }

    .navbar-left {
        width: 25vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar-left img {
        width: 17vw;
        height: auto;
    }

    .navbar-right {
        justify-content: center;
        gap: 3vw;
    }

    .navbar-right a {
        font-size: 3vw;
    }

    .subscription-head {
        margin-top: 12vh;
        padding: 0 5vw;
    }

    .subscription-head h1 {
        font-size: 6vw;
        padding-bottom: 2vw;
        margin-bottom: 2vw;
        text-align: center;
    }

    .subscription-head p {
        font-size: 3.2vw;
        width: 100%;
    }

    .container {
        grid-template-columns: 1fr;
        padding: 4vw 5vw;
        gap: 4vw;
        margin-top: 6vh;
    }

    .card {
        border-radius: 12px;
    }

    .card h2 {
        font-size: 5vw;
        padding: 3vw;
    }

    .card .content {
        padding: 5vw 4vw;
    }

    .card ul li {
        font-size: 4vw;
        margin-bottom: 3vw;
    }

    .card .highlights p {
        font-size: 3.8vw;
    }

    .card .get-plan-btn {
        width: 100%;
        padding: 12px 0;
        font-size: 4vw;
    }

    .popup-form {
        padding: 5vw;
        width: 90%;
    }

    .popup-form input,
    .popup-form select,
    .popup-form textarea {
        font-size: 4vw;
        padding: 10px;
    }

    .popup-form button {
        font-size: 4.2vw;
        padding: 12px;
    }

    .popup-form .close-btn {
        font-size: 6vw;
    }

    .page7 {
        padding: 4vw 5vw;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 5vw;
        margin-top: 5vw;
        margin-bottom: 5vw;
    }

    .footer-logo,
    .footer-menu,
    .footer-social {
        width: 100%;
        margin-bottom: 2vw;
    }

    .footer-logo img {
        width: 30vw;
    }

    .footer-logo p {
        font-size: 3.5vw;
    }

    .footer-menu h3 {
        font-size: 4.5vw;
        margin-left: 0;
    }

    .footer-anchor {
        margin-left: 0;
        gap: 2vw;
    }

    .footer-anchor a {
        font-size: 3.8vw;
    }

    .footer-social h3 {
        font-size: 4.5vw;
        margin-bottom: 2vw;
    }

    .icons {
        gap: 4vw;
        margin-top: 2vw;
    }

    .icons i {
        height: 12vw;
        width: 12vw;
        font-size: 6vw;
        padding: 2vw;
    }

    .footer-bottom p {
        font-size: 3.5vw;
        padding-bottom: 4vw;
    }
}