html{
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}
a {
    text-decoration: none;
    color: inherit;
}
/*====FORM ERRORS====*/
.alert{
    border: 1px solid red;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 10px;
    background-color: #ffe6e6;
    color: #b30000;
    animation: fadeIn ease 2s ;
    text-align: center;
}
.displayMessage{
    animation: fadeIn ease 1.5s ;
}
@media (max-width: 549px) {
    header{
        display: flex;
        background: #4f46e5;
        color: #fff;
        justify-content: space-between;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 30px;
        padding-right: 30px;
        align-items: center;
    }
    header .logo{
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1.3rem;
        gap: 3px;
    }
    header img{
        border-radius: 100%;
        background: #4f46e5;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }
    header .logo img{
        border-radius: 100%;
        background: #fff;
        width: 40px;
        height: 40px;
    }
    header .logo .wrap{
        display: flex;
        flex-direction: column;
        line-height: normal;
    }
    header .logo .wrap span{
        font-size: 0.7rem;
        color: #fff;
    }
    .header nav{
        background: #f0faff;
        position: absolute;
        width: 100%;
        height: 220px;
        right: 100%;
        transition: all ease 0.5s;
    }
    .header nav .wrapper{
        display: flex;
        flex-direction: column;
        text-align: center;
        width: max-content;
        margin: 0 auto;
        text-align: left;
        padding: 10px;
    }
    .header nav.active{
        right: 0;
    }
    .header nav a{
        color: #0f172a;
        font-weight: 600;
        transition: color 0.3s;
    }
    .header nav a:hover{
        color: #00c9ff;
        transition: ease 0.9s;
    }
    .header nav .btn{
        text-align: center;
        background: #fff;
        padding: 8px 5px;
        border-radius: 10px;
        margin-top: 5px;
        color: #4f46e5;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    .header nav .btn:hover{
        background-color: #c7d2fe;
        color: #1e3a8a;
    }

    /*====HERO SECTION====*/
    .hero{
        background: linear-gradient(135deg, #6366f1, #818cf8);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        height: 88vh;
        line-height: normal;
        padding: 10px;
    }
    .hero .wrap{
        color: #fff;
        background: rgba(0, 0, 0, 0.5) ;
        width: 100%;
        margin: 10px auto;
        padding: 60px 20px;
        border-radius: 25px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.25);
        animation: fadeIn ease 2s;
    }
    .hero .heading{
        font-weight: 600;
        font-size: 1.7rem;
        color: #ffffff;
        margin-bottom: 15px;
    }
    .hero p{
        font-weight: 1.25rem;
        margin-bottom: 15px;
    }
    .hero a{
        background: #fff;
        color: #4f46e5;
        width: max-content;
        display: block;
        margin: 0 auto;
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: 600;
        transition: all ease 0.3s;
    }
    .hero a:hover{
        background: #c7d2fe;
        color: #1e3a8a;
    }

    /*====ABOUT SECTION====*/
    .about-div{
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
        line-height: 1.2;
        padding: 15px;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
    }
    .about-div .adboutHeading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        margin-bottom: 10px;
        font-size: 1.4rem;
    }
    .about-div p{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
    }

    /*====FEACTURES SECTION====*/
    .features{
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .features .heading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        font-size: 1.6rem;
    }
    .features .cards{
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .features .cards .card{
        background: #fff;
        border-radius: 20px;
        padding: 15px;
        box-shadow: 0 7px 20px rgba(0, 0, 0, 0.12);
    }
    .features .cards .card h3{
        text-align: center;
        color: #1e3a8a;
        font-size: 1.2rem;   
    }
    .features .cards .card .icon{
        width: max-content;
        margin: 0 auto;
    }
    .features .cards .card p{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
        text-align: center;
    }
    .features .cards .card:hover{
        transform: translateY(-3px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
        transition: all ease 0.4s;
        cursor: pointer;
    }
    .features .cards .card .tag{
        width: max-content;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 50px;
        background: #ff9800;
        color: #fff;
        margin-bottom: 5px;
    }

    /*====HOW TO GET STARTED SECTION====*/
    .howto{
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .howto .heading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .howto .grid{
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .howto .step{
        text-align: center;
        background: #fff;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 13px 10px rgba(0, 0, 0, 0.12);
    }
    .howto .step h3{
        width: max-content;
        margin: 0 auto;
        background: #4f46e5;
        color: #fff;
        border-radius: 100%;
        padding: 10px;
        width: 50px;
        height: 50px;
    }
    .howto .step p{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
        text-align: center;
    }
    .howto .step:hover{
        transform: translateY(-3px);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.12);
        transition: all ease 0.4s;
        cursor: pointer;
    }

    /*====PRICES====*/
    .prices{
        margin-top: 40px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .prices .heading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .prices .wrapCards{
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    .prices .wrapCards .priceCard{
        background: #fff;
        padding: 20px;
        border-radius: 20px;
        line-height: normal;
        box-shadow: 0 15px 10px rgba(0, 0, 0, 0.12);
    }
    .prices .wrapCards .priceCard:hover{
        transform: translateY(-3px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
        transition: all ease 0.4s;
        cursor: pointer;
    }
    .prices .wrapCards .priceCard .head{
        width: max-content;
        margin: 0 auto;
        color: #4f46e5;
        font-size: 1.3rem;
        font-weight: 600;
    }
    .prices .wrapCards .priceCard .discountTag{
        width: max-content;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 50px;
        background: #ff9800;
        color: #fff;
        margin-bottom: 15px;
    }
    .prices .wrapCards .priceCard .subPrice{
        text-align: center;
        font-weight: 600;
        color: #000;
        margin-top: 4px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .prices .wrapCards .priceCard .subPrice span{
        text-decoration: line-through;
    }
    .prices .wrapCards .priceCard ul{
        padding: 15px;
    }
    .prices .wrapCards .priceCard ul li{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
    }
    .prices .wrapCards .priceCard ul li span{
        color: #4f46e5;
        font-size: 1.1rem;
        font-weight: 600;
    }
    .prices .wrapCards .popular{
        border: 2px solid #4f46e5;
    }
    .prices .wrapCards .popular .pop{
        width: max-content;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 50px;
        background: #ff9800;
        color: #fff;
        margin: 0 auto;
    }

    /*====CTA SECTION====*/
    .cta-section{
        text-align: center;
        margin-top: 50px;
        background: #4f46e5;
        padding: 25px;
        color: #fff;
        line-height: normal;
    }
    .cta-section .heading{
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 15px;
    }
    .cta-section p{
        line-height: 1.1;
        color: #fff;
        margin-bottom: 20px;
        font-size: 0.95rem;
        text-align: center;
    }
    .cta-section a{
        font-size: 0.9rem;
        padding: 7px 15px;
        border-radius: 20px;
        background: #fff;
        color: #4f46e5;
        font-weight: 600;
    }
    .cta-section a:hover{
        background: #c7d2fe;
        color: #1e3a8a;
    }

    /*====REGISTER AS PAGE====*/
    .hero2{
        background: linear-gradient(135deg, #6366f1, #818cf8);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        height: 100vh;
        line-height: normal;
        padding: 10px;
    }
    .hero2 .title{
        font-weight: 600;
        font-size: 1.8rem;
    }
    .hero2 .small{
        margin-bottom: 20px;
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
    }
    .hero2 .registerCards{
        color: #fff;
        background: rgba(0, 0, 0, 0.5) ;
        width: 100%;
        margin: 10px auto;
        padding: 60px 20px;
        border-radius: 25px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.25);
        animation: fadeIn ease 2s;
    }
    .hero2 .registerCards .wrap{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .hero2 .registerCards .card{
        background: #fff;
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
        padding: 15px;
        border-radius: 20px;

    }
    .hero2 .registerCards .card:hover{
        background: #c7d2fe;
        transition: all ease 0.3s;
        transform: translateY(-3px);
    }
    .hero2 .registerCards .card .heading{
        font-weight: 600;
        font-size: 1.4rem;
        margin-bottom: 10px;
        color: #4f46e5;
    }

    /*====REGISTRATION FORMS====*/
    .signupDiv{
        background: linear-gradient(135deg, #6366f1, #818cf8);
        color: #fff;      
        line-height: normal;
        padding: 10px;
    }
    .signupDiv form{
        background: #fff;
        color: #555;
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .signupDiv form .icon{
        border: 1px solid #ccc;
        background: #ccc;
        width: max-content;
        margin: 0 auto;
        border-radius: 50%;
        width: 85px;
        height: 85px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    .signupDiv form .heading{
        font-weight: 600;
        text-align: center;
        font-size: 1.5rem;
        color: #4f46e5;
        margin-bottom: 15px;
    }
    .signupDiv form .head{
        font-weight: 600;
        font-size: 1.1rem;
        color: #1e3a8a;
        margin-bottom: 5px;
    }
    .signupDiv form .grid{
        margin-bottom: 15px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        display: grid;
        gap: 6px;
    }
    .signupDiv form .grid .formField label{
        display: block;
        font-weight: 600;
        color: #444;
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    .signupDiv form .grid .formField input{
        padding: 15px;
        border-radius: 12px;
        width: 100%;
        border: 1px solid #ccc;
    }
    .signupDiv form .grid .formField input:focus{
        outline: none;
        border-color: #4f46e5;
        border: 2px solid #4f46e5;
    }
    .signupDiv form .grid .formField select{
        width: 100%;
        padding: 15px;
        border-radius: 12px;
        border: 1px solid #ccc;
        text-align: center;
    }
    .signupDiv form .grid .formField select:focus{
        outline: none;
        border-color: #4f46e5;
        border: 2px solid #4f46e5;
    }
    .signupDiv form button{
        width: 100%;
        padding: 13px;
        border-radius: 12px;
        border: none;
        background: #6366f1;
        color: #fff;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
    }
    .signupDiv form button:hover{
        background: #1e3a8a;
        transition: all ease 0.4s;
    }

    /*====FOOTER====*/
    footer{
        text-align: center;
        background: #1f2937;
        color: #cdb5e1;
        padding: 2rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 550px) and (max-width: 758px) {
    header{
        display: flex;
        background: #4f46e5;
        color: #fff;
        justify-content: space-between;
        padding: 10px;
        align-items: center;
    }
    header .logo{
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1.4rem;
        gap: 3px;
    }
    header img{
        border-radius: 100%;
        background: #4f46e5;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }
    header .logo img{
        border-radius: 100%;
        background: #fff;
        width: 40px;
        height: 40px;
    }
    header .logo .wrap{
        display: flex;
        flex-direction: column;
        line-height: normal;
    }
    header .logo .wrap span{
        font-size: 0.7rem;
        color: #fff;
    }
    .header nav{
        background: #f0faff;
        position: absolute;
        width: 100%;
        height: 220px;
        right: 100%;
        transition: all ease 0.5s;
    }
    .header nav .wrapper{
        display: flex;
        flex-direction: column;
        text-align: center;
        width: max-content;
        margin: 0 auto;
        text-align: left;
        padding: 10px;
    }
    .header nav.active{
        right: 0;
    }
    .header nav a{
        color: #0f172a;
        font-weight: 600;
        transition: color 0.3s;
    }
    .header nav a:hover{
        color: #00c9ff;
        transition: ease 0.9s;
    }
    .header nav .btn{
        text-align: center;
        background: #fff;
        padding: 8px 5px;
        border-radius: 10px;
        margin-top: 5px;
        color: #4f46e5;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    .header nav .btn:hover{
        background-color: #c7d2fe;
        color: #1e3a8a;
    }

    /*====HERO SECTION====*/
    .hero{
        background: linear-gradient(135deg, #6366f1, #818cf8);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        height: 88vh;
        line-height: normal;
        padding: 10px;
    }
    .hero .wrap{
        color: #fff;
        background: rgba(0, 0, 0, 0.5) ;
        width: 100%;
        margin: 10px auto;
        padding: 60px 20px;
        border-radius: 25px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.25);
        animation: fadeIn ease 2s;
    }
    .hero .heading{
        font-weight: 600;
        font-size: 2.1rem;
        color: #ffffff;
        margin-bottom: 15px;
    }
    .hero p{
        font-weight: 1.25rem;
        margin-bottom: 15px;
    }
    .hero a{
        background: #fff;
        color: #4f46e5;
        width: max-content;
        display: block;
        margin: 0 auto;
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: 600;
        transition: all ease 0.3s;
    }
    .hero a:hover{
        background: #c7d2fe;
        color: #1e3a8a;
    }

    /*====ABOUT SECTION====*/
    .about-div{
        margin-top: 50px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
        line-height: 1.2;
        padding: 15px;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
    }
    .about-div .adboutHeading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        margin-bottom: 10px;
        font-size: 1.4rem;
    }
    .about-div p{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
    }

    /*====FEACTURES SECTION====*/
    .features{
        margin-top: 50px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .features .heading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        font-size: 1.6rem;
    }
    .features .cards{
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .features .cards .card{
        background: #fff;
        border-radius: 20px;
        padding: 15px;
        box-shadow: 0 10px 7px rgba(0, 0, 0, 0.12);
    }
    .features .cards .card h3{
        text-align: center;
        color: #1e3a8a;
        font-size: 1.2rem; 
    }
    .features .cards .card .icon{
        width: max-content;
        margin: 0 auto;
    }
    .features .cards .card p{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
        text-align: center;
    }
    .features .cards .card:hover{
        transform: translateY(-3px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
        transition: all ease 0.4s;
        cursor: pointer;
    }
    .features .cards .card .tag{
        width: max-content;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 50px;
        background: #ff9800;
        color: #fff;
        margin-bottom: 5px;
    }

    /*====HOW TO GET STARTED SECTION====*/
    .howto{
        margin-top: 50px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .howto .heading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .howto .grid{
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .howto .step{
        text-align: center;
        background: #fff;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 13px 10px rgba(0, 0, 0, 0.12);
    }
    .howto .step h3{
        width: max-content;
        margin: 0 auto;
        background: #4f46e5;
        color: #fff;
        border-radius: 100%;
        padding: 10px;
        width: 50px;
        height: 50px;
    }
    .howto .step p{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
        text-align: center;
    }
    .howto .step:hover{
        transform: translateY(-3px);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.12);
        transition: all ease 0.4s;
        cursor: pointer;
    }

    /*====PRICES====*/
    .prices{
        margin-top: 50px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .prices .heading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .prices .wrapCards{
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    }
    .prices .wrapCards .priceCard{
        background: #fff;
        padding: 20px;
        border-radius: 20px;
        line-height: normal;
        box-shadow: 0 15px 10px rgba(0, 0, 0, 0.12);
    }
    .prices .wrapCards .priceCard:hover{
        transform: translateY(-3px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
        transition: all ease 0.4s;
        cursor: pointer;
    }
    .prices .wrapCards .priceCard .head{
        width: max-content;
        margin: 0 auto;
        color: #4f46e5;
        font-size: 1.3rem;
        font-weight: 600;
    }
    .prices .wrapCards .priceCard .discountTag{
        width: max-content;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 50px;
        background: #ff9800;
        color: #fff;
        margin-bottom: 15px;
    }
    .prices .wrapCards .priceCard .subPrice{
        text-align: center;
        font-weight: 600;
        color: #000;
        margin-top: 4px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .prices .wrapCards .priceCard .subPrice span{
        text-decoration: line-through;
    }
    .prices .wrapCards .priceCard ul{
        padding: 15px;
    }
    .prices .wrapCards .priceCard ul li{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
    }
    .prices .wrapCards .priceCard ul li span{
        color: #4f46e5;
        font-size: 1.1rem;
        font-weight: 600;
    }
    .prices .wrapCards .popular{
        border: 2px solid #4f46e5;
    }
    .prices .wrapCards .popular .pop{
        width: max-content;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 50px;
        background: #ff9800;
        color: #fff;
        margin: 0 auto;
    }

    /*====CTA SECTION====*/
    .cta-section{
        text-align: center;
        margin-top: 50px;
        background: #4f46e5;
        padding: 25px;
        color: #fff;
        line-height: normal;
    }
    .cta-section .heading{
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 15px;
    }
    .cta-section p{
        line-height: 1.1;
        color: #fff;
        margin-bottom: 20px;
        font-size: 0.95rem;
        text-align: center;
    }
    .cta-section a{
        font-size: 0.9rem;
        padding: 7px 15px;
        border-radius: 20px;
        background: #fff;
        color: #4f46e5;
        font-weight: 600;
    }
    .cta-section a:hover{
        background: #c7d2fe;
        color: #1e3a8a;
    }

    /*====REGISTER AS PAGE====*/
    .hero2{
        background: linear-gradient(135deg, #6366f1, #818cf8);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        height: 100vh;
        line-height: normal;
        padding: 10px;
    }
    .hero2 .title{
        font-weight: 600;
        font-size: 2.4rem;
    }
    .hero2 .small{
        margin-bottom: 20px;
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
    }
    .hero2 .registerCards{
        color: #fff;
        background: rgba(0, 0, 0, 0.5) ;
        width: 100%;
        margin: 10px auto;
        padding: 60px 20px;
        border-radius: 25px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.25);
        animation: fadeIn ease 2s;
    }
    .hero2 .registerCards .wrap{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 20px;
    }
    .hero2 .registerCards .card{
        background: #fff;
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
        padding: 15px;
        border-radius: 20px;
        width: 100%;
    }
    .hero2 .registerCards .card:hover{
        background: #c7d2fe;
        transition: all ease 0.3s;
        transform: translateY(-3px);
    }
    .hero2 .registerCards .card .heading{
        font-weight: 600;
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #4f46e5;
    }

    /*====REGISTRATION FORMS====*/
    .signupDiv{
        background: linear-gradient(135deg, #6366f1, #818cf8);
        color: #fff;      
        line-height: normal;
        padding: 10px;
    }
    .signupDiv form{
        background: #fff;
        color: #555;
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .signupDiv form .icon{
        border: 1px solid #ccc;
        background: #ccc;
        width: max-content;
        margin: 0 auto;
        border-radius: 50%;
        width: 85px;
        height: 85px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    .signupDiv form .heading{
        font-weight: 600;
        text-align: center;
        font-size: 1.5rem;
        color: #4f46e5;
        margin-bottom: 15px;
    }
    .signupDiv form .head{
        font-weight: 600;
        font-size: 1.1rem;
        color: #1e3a8a;
        margin-bottom: 5px;
    }
    .signupDiv form .grid{
        margin-bottom: 15px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        display: grid;
        gap: 6px;
    }
    .signupDiv form .grid .formField label{
        display: block;
        font-weight: 600;
        color: #444;
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    .signupDiv form .grid .formField input{
        padding: 15px;
        border-radius: 12px;
        width: 100%;
        border: 1px solid #ccc;
    }
    .signupDiv form .grid .formField input:focus{
        outline: none;
        border-color: #4f46e5;
        border: 2px solid #4f46e5;
    }
    .signupDiv form .grid .formField select{
        width: 100%;
        padding: 15px;
        border-radius: 12px;
        border: 1px solid #ccc;
        text-align: center;
    }
    .signupDiv form .grid .formField select:focus{
        outline: none;
        border-color: #4f46e5;
        border: 2px solid #4f46e5;
    }
    .signupDiv form button{
        width: 100%;
        padding: 13px;
        border-radius: 12px;
        border: none;
        background: #6366f1;
        color: #fff;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
    }
    .signupDiv form button:hover{
        background: #1e3a8a;
        transition: all ease 0.4s;
    }

    /*====FOOTER====*/
    footer{
        text-align: center;
        background: #1f2937;
        color: #cdb5e1;
        padding: 2rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 759px) and (max-width: 1100px){
    header{
        display: flex;
        background: #4f46e5;
        color: #fff;
        justify-content: space-between;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 10px;
        padding-top: 10px;
        align-items: center;
    }
    header .logo{
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1.4rem;
        gap: 3px;
    }
    header img{
        border-radius: 100%;
        background: #4f46e5;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }
    header .logo img{
        border-radius: 100%;
        background: #fff;
        width: 40px;
        height: 40px;
    }
    header .logo .wrap{
        display: flex;
        flex-direction: column;
        line-height: normal;
    }
    header .logo .wrap span{
        font-size: 0.7rem;
        color: #fff;
    }
    .header nav{
        background: #f0faff;
        position: absolute;
        width: 100%;
        height: 220px;
        right: 100%;
        transition: all ease 0.5s;
    }
    .header nav .wrapper{
        display: flex;
        flex-direction: column;
        text-align: center;
        width: max-content;
        margin: 0 auto;
        text-align: left;
        padding: 10px;
    }
    .header nav.active{
        right: 0;
    }
    .header nav a{
        color: #0f172a;
        font-weight: 600;
        transition: color 0.3s;
    }
    .header nav a:hover{
        color: #00c9ff;
        transition: ease 0.9s;
    }
    .header nav .btn{
        text-align: center;
        background: #fff;
        padding: 8px 5px;
        border-radius: 10px;
        margin-top: 5px;
        color: #4f46e5;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    .header nav .btn:hover{
        background-color: #c7d2fe;
        color: #1e3a8a;
    }

    /*====HERO SECTION====*/
    .hero{
        background: linear-gradient(135deg, #6366f1, #818cf8);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        height: 87vh;
        line-height: normal;
        padding: 10px;
    }
    .hero .wrap{
        color: #fff;
        background: rgba(0, 0, 0, 0.5) ;
        width: 100%;
        margin: 10px auto;
        padding: 60px 20px;
        border-radius: 25px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.25);
        animation: fadeIn ease 2s;
    }
    .hero .heading{
        font-weight: 600;
        font-size: 2.6rem;
        color: #ffffff;
        margin-bottom: 15px;
    }
    .hero p{
        font-weight: 1.25rem;
        margin-bottom: 15px;
    }
    .hero a{
        background: #fff;
        color: #4f46e5;
        width: max-content;
        display: block;
        margin: 0 auto;
        padding: 15px 25px;
        border-radius: 50px;
        font-weight: 600;
        transition: all ease 0.3s;
    }
    .hero a:hover{
        background: #c7d2fe;
        color: #1e3a8a;
    }

    /*====ABOUT SECTION====*/
    .about-div{
        margin-top: 50px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
        line-height: 1.2;
        padding: 15px;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
    }
    .about-div .adboutHeading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        margin-bottom: 10px;
        font-size: 1.4rem;
    }
    .about-div p{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
    }

    /*====FEACTURES SECTION====*/
    .features{
        margin-top: 50px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .features .heading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        font-size: 1.6rem;
    }
    .features .cards{
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    .features .cards .card{
        background: #fff;
        border-radius: 20px;
        padding: 15px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }
    .features .cards .card h3{
        text-align: center;
        color: #1e3a8a;
        font-size: 1.2rem;   
    }
    .features .cards .card .icon{
        width: max-content;
        margin: 0 auto;
    }
    .features .cards .card p{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
        text-align: center;
    }
    .features .cards .card:hover{
        transform: translateY(-3px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
        transition: all ease 0.4s;
        cursor: pointer;
    }
    .features .cards .card .tag{
        width: max-content;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 50px;
        background: #ff9800;
        color: #fff;
        margin-bottom: 5px;
    }

    /*====HOW TO GET STARTED SECTION====*/
    .howto{
        margin-top: 50px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .howto .heading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .howto .grid{
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    .howto .step{
        text-align: center;
        background: #fff;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 13px 10px rgba(0, 0, 0, 0.12);
    }
    .howto .step h3{
        width: max-content;
        margin: 0 auto;
        background: #4f46e5;
        color: #fff;
        border-radius: 100%;
        padding: 10px;
        width: 50px;
        height: 50px;
    }
    .howto .step p{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
        text-align: center;
    }
    .howto .step:hover{
        transform: translateY(-3px);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.12);
        transition: all ease 0.4s;
        cursor: pointer;
    }

    /*====PRICES====*/
    .prices{
        margin-top: 50px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .prices .heading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .prices .wrapCards{
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    .prices .wrapCards .priceCard{
        background: #fff;
        padding: 20px;
        border-radius: 20px;
        line-height: normal;
        box-shadow: 0 15px 10px rgba(0, 0, 0, 0.12);
    }
    .prices .wrapCards .priceCard:hover{
        transform: translateY(-3px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
        transition: all ease 0.4s;
        cursor: pointer;
    }
    .prices .wrapCards .priceCard .head{
        width: max-content;
        margin: 0 auto;
        color: #4f46e5;
        font-size: 1.3rem;
        font-weight: 600;
    }
    .prices .wrapCards .priceCard .discountTag{
        width: max-content;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 50px;
        background: #ff9800;
        color: #fff;
        margin-bottom: 15px;
    }
    .prices .wrapCards .priceCard .subPrice{
        text-align: center;
        font-weight: 600;
        color: #000;
        margin-top: 4px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .prices .wrapCards .priceCard .subPrice span{
        text-decoration: line-through;
    }
    .prices .wrapCards .priceCard ul{
        padding: 15px;
    }
    .prices .wrapCards .priceCard ul li{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
    }
    .prices .wrapCards .priceCard ul li span{
        color: #4f46e5;
        font-size: 1.1rem;
        font-weight: 600;
    }
    .prices .wrapCards .popular{
        border: 2px solid #4f46e5;
    }
    .prices .wrapCards .popular .pop{
        width: max-content;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 50px;
        background: #ff9800;
        color: #fff;
        margin: 0 auto;
    }

    /*====CTA SECTION====*/
    .cta-section{
        text-align: center;
        margin-top: 50px;
        background: #4f46e5;
        padding: 25px;
        color: #fff;
        line-height: normal;
    }
    .cta-section .heading{
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 15px;
    }
    .cta-section p{
        line-height: 1.1;
        color: #fff;
        margin-bottom: 20px;
        font-size: 0.95rem;
        text-align: center;
    }
    .cta-section a{
        font-size: 0.9rem;
        padding: 7px 15px;
        border-radius: 20px;
        background: #fff;
        color: #4f46e5;
        font-weight: 600;
    }
    .cta-section a:hover{
        background: #c7d2fe;
        color: #1e3a8a;
    }

    /*====REGISTER AS PAGE====*/
    .hero2{
        background: linear-gradient(135deg, #6366f1, #818cf8);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        height: 100vh;
        line-height: normal;
        padding: 10px;
    }
    .hero2 .title{
        font-weight: 600;
        font-size: 2.4rem;
    }
    .hero2 .small{
        margin-bottom: 20px;
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
    }
    .hero2 .registerCards{
        color: #fff;
        background: rgba(0, 0, 0, 0.5) ;
        width: 100%;
        margin: 10px auto;
        padding: 60px 20px;
        border-radius: 25px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.25);
        animation: fadeIn ease 2s;
    }
    .hero2 .registerCards .wrap{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        width: 100%;
    }
    .hero2 .registerCards .card{
        background: #fff;
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
        padding: 15px;
        border-radius: 20px;
    }
    .hero2 .registerCards .card:hover{
        background: #c7d2fe;
        transition: all ease 0.3s;
        transform: translateY(-3px);
    }
    .hero2 .registerCards .card .heading{
        font-weight: 600;
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #4f46e5;
    }

    /*====REGISTRATION FORMS====*/
    .signupDiv{
        background: linear-gradient(135deg, #6366f1, #818cf8);
        color: #fff;      
        line-height: normal;
        padding: 10px;
    }
    .signupDiv form{
        background: #fff;
        color: #555;
        padding: 20px;
        border-radius: 30px;
        margin: 20px auto;
        width: 90%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }
    .signupDiv form .icon{
        border: 1px solid #ccc;
        background: #ccc;
        width: max-content;
        margin: 0 auto;
        border-radius: 50%;
        width: 85px;
        height: 85px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    .signupDiv form .heading{
        font-weight: 600;
        text-align: center;
        font-size: 1.5rem;
        color: #4f46e5;
        margin-bottom: 15px;
    }
    .signupDiv form .head{
        font-weight: 600;
        font-size: 1.1rem;
        color: #1e3a8a;
        margin-bottom: 5px;
    }
    .signupDiv form .grid{
        margin-bottom: 15px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        display: grid;
        gap: 6px;
    }
    .signupDiv form .grid .formField label{
        display: block;
        font-weight: 600;
        color: #444;
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    .signupDiv form .grid .formField input{
        padding: 15px;
        border-radius: 12px;
        width: 100%;
        border: 1px solid #ccc;
    }
    .signupDiv form .grid .formField input:focus{
        outline: none;
        border-color: #4f46e5;
        border: 2px solid #4f46e5;
    }
    .signupDiv form .grid .formField select{
        width: 100%;
        padding: 15px;
        border-radius: 12px;
        border: 1px solid #ccc;
        text-align: center;
    }
    .signupDiv form .grid .formField select:focus{
        outline: none;
        border-color: #4f46e5;
        border: 2px solid #4f46e5;
    }
    .signupDiv form button{
        width: 100%;
        padding: 13px;
        border-radius: 12px;
        border: none;
        background: #6366f1;
        color: #fff;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
    }
    .signupDiv form button:hover{
        background: #1e3a8a;
        transition: all ease 0.4s;
    }

    /*====FOOTER====*/
    footer{
        text-align: center;
        background: #1f2937;
        color: #cdb5e1;
        padding: 2rem;
        font-size: 0.8rem;
    } 
}
@media (min-width: 1101px){
    header{
        display: flex;
        background: #4f46e5;
        color: #fff;
        justify-content: space-between;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 10px;
        padding-top: 10px;
        align-items: center;
    }
    header .logo{
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1.6rem;
        gap: 3px;
    }
    header img{
        border-radius: 100%;
        background: #4f46e5;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }
    header .logo img{
        border-radius: 100%;
        background: #fff;
        width: 50px;
        height: 50px;
    }
    header .logo .wrap{
        display: flex;
        flex-direction: column;
        line-height: normal;
    }
    header .logo .wrap span{
        font-size: 0.7rem;
        color: #fff;
    }
    .header nav{
        background: #f0faff;
        position: absolute;
        width: 100%;
        height: 220px;
        right: 100%;
        transition: all ease 0.5s;
    }
    .header nav .wrapper{
        display: flex;
        flex-direction: column;
        text-align: center;
        width: max-content;
        margin: 0 auto;
        text-align: left;
        padding: 10px;
    }
    .header nav.active{
        right: 0;
    }
    .header nav a{
        color: #0f172a;
        font-weight: 600;
        transition: color 0.3s;
    }
    .header nav a:hover{
        color: #00c9ff;
        transition: ease 0.9s;
    }
    .header nav .btn{
        text-align: center;
        background: #fff;
        padding: 8px 5px;
        border-radius: 10px;
        margin-top: 5px;
        color: #4f46e5;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    .header nav .btn:hover{
        background-color: #c7d2fe;
        color: #1e3a8a;
    }

    /*====HERO SECTION====*/
    .hero{
        background: linear-gradient(135deg, #6366f1, #818cf8);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        height: 88vh;
        line-height: normal;
        padding: 10px;
    }
    .hero .wrap{
        color: #fff;
        background: rgba(0, 0, 0, 0.5) ;
        width: 100%;
        margin: 10px auto;
        padding: 60px 20px;
        border-radius: 25px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.25);
        animation: fadeIn ease 2s;
    }
    .hero .heading{
        font-weight: 600;
        font-size: 3rem;
        color: #ffffff;
        margin-bottom: 15px;
    }
    .hero p{
        font-weight: 1.25rem;
        margin-bottom: 15px;
    }
    .hero a{
        background: #fff;
        color: #4f46e5;
        width: max-content;
        display: block;
        margin: 0 auto;
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 600;
        transition: all ease 0.3s;
    }
    .hero a:hover{
        background: #c7d2fe;
        color: #1e3a8a;
    }

    /*====ABOUT SECTION====*/
    .about-div{
        margin-top: 50px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
        line-height: 1.2;
        padding: 35px;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
    }
    .about-div .adboutHeading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        margin-bottom: 10px;
        font-size: 1.4rem;
    }
    .about-div p{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
    }

    /*====FEACTURES SECTION====*/
    .features{
        margin-top: 50px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .features .heading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        font-size: 1.8rem;
    }
    .features .cards{
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    }
    .features .cards .card{
        background: #fff;
        border-radius: 20px;
        padding: 35px;
        box-shadow: 0 10px 7px rgba(0, 0, 0, 0.12);
    }
    .features .cards .card h3{
        text-align: center;
        color: #1e3a8a;
        font-size: 1.4rem;   
    }
    .features .cards .card .icon{
        width: max-content;
        margin: 0 auto;
    }
    .features .cards .card p{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
        text-align: center;
    }
    .features .cards .card:hover{
        transform: translateY(-3px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
        transition: all ease 0.4s;
        cursor: pointer;
    }
    .features .cards .card .tag{
        width: max-content;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 50px;
        background: #ff9800;
        color: #fff;
        margin-bottom: 5px;
    }

    /*====HOW TO GET STARTED SECTION====*/
    .howto{
        margin-top: 50px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .howto .heading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .howto .grid{
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    }
    .howto .step{
        text-align: center;
        background: #fff;
        padding: 35px;
        border-radius: 20px;
        box-shadow: 0 13px 10px rgba(0, 0, 0, 0.12);
    }
    .howto .step h3{
        width: max-content;
        margin: 0 auto;
        background: #4f46e5;
        color: #fff;
        border-radius: 100%;
        padding: 10px;
        width: 50px;
        height: 50px;
    }
    .howto .step p{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
        text-align: center;
    }
    .howto .step:hover{
        transform: translateY(-3px);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.12);
        transition: all ease 0.4s;
        cursor: pointer;
    }

    /*====PRICES====*/
    .prices{
        margin-top: 50px;
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .prices .heading{
        text-align: center;
        font-weight: 600;
        color: #4f46e5;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .prices .wrapCards{
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }
    .prices .wrapCards .priceCard{
        background: #fff;
        padding: 20px;
        border-radius: 20px;
        line-height: normal;
        box-shadow: 0 15px 10px rgba(0, 0, 0, 0.12);
    }
    .prices .wrapCards .priceCard:hover{
        transform: translateY(-3px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
        transition: all ease 0.4s;
        cursor: pointer;
    }
    .prices .wrapCards .priceCard .head{
        width: max-content;
        margin: 0 auto;
        color: #4f46e5;
        font-size: 1.3rem;
        font-weight: 600;
    }
    .prices .wrapCards .priceCard .discountTag{
        width: max-content;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 50px;
        background: #ff9800;
        color: #fff;
        margin-bottom: 15px;
    }
    .prices .wrapCards .priceCard .subPrice{
        text-align: center;
        font-weight: 600;
        color: #000;
        margin-top: 4px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .prices .wrapCards .priceCard .subPrice span{
        text-decoration: line-through;
    }
    .prices .wrapCards .priceCard ul{
        padding: 15px;
    }
    .prices .wrapCards .priceCard ul li{
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
    }
    .prices .wrapCards .priceCard ul li span{
        color: #4f46e5;
        font-size: 1.1rem;
        font-weight: 600;
    }
    .prices .wrapCards .popular{
        border: 2px solid #4f46e5;
    }
    .prices .wrapCards .popular .pop{
        width: max-content;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 50px;
        background: #ff9800;
        color: #fff;
        margin: 0 auto;
    }

    /*====CTA SECTION====*/
    .cta-section{
        text-align: center;
        margin-top: 50px;
        background: #4f46e5;
        padding: 35px;
        color: #fff;
        line-height: normal;
    }
    .cta-section .heading{
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 15px;
    }
    .cta-section p{
        line-height: 1.1;
        color: #fff;
        margin-bottom: 20px;
        font-size: 0.95rem;
        text-align: center;
    }
    .cta-section a{
        font-size: 0.9rem;
        padding: 7px 15px;
        border-radius: 20px;
        background: #fff;
        color: #4f46e5;
        font-weight: 600;
    }
    .cta-section a:hover{
        background: #c7d2fe;
        color: #1e3a8a;
    }

    /*====REGISTER AS PAGE====*/
    .hero2{
        background: linear-gradient(135deg, #6366f1, #818cf8);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        height: 100vh;
        line-height: normal;
        padding: 10px;
    }
    .hero2 .title{
        font-weight: 600;
        font-size: 2.4rem;
    }
    .hero2 .small{
        margin-bottom: 20px;
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
    }
    .hero2 .registerCards{
        color: #fff;
        background: rgba(0, 0, 0, 0.5) ;
        width: 85%;
        margin: 10px auto;
        padding: 60px 20px;
        border-radius: 25px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.25);
        animation: fadeIn ease 2s;
    }
    .hero2 .registerCards .wrap{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    .hero2 .registerCards .card{
        background: #fff;
        line-height: 1.4;
        color: #555;
        font-size: 0.95rem;
        padding: 25px;
        border-radius: 20px;
        width: 100%;
    }
    .hero2 .registerCards .card:hover{
        background: #c7d2fe;
        transition: all ease 0.3s;
        transform: translateY(-3px);
    }
    .hero2 .registerCards .card .heading{
        font-weight: 600;
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #4f46e5;
    }

    /*====REGISTRATION FORMS====*/
    .signupDiv{
        background: linear-gradient(135deg, #6366f1, #818cf8);
        color: #fff;      
        line-height: normal;
        padding: 10px;
    }
    .signupDiv form{
        background: #fff;
        color: #555;
        padding: 20px;
        border-radius: 30px;
        margin: 20px auto;
        width: 90%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }
    .signupDiv form .icon{
        border: 1px solid #ccc;
        background: #ccc;
        width: max-content;
        margin: 0 auto;
        border-radius: 50%;
        width: 85px;
        height: 85px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    .signupDiv form .heading{
        font-weight: 600;
        text-align: center;
        font-size: 1.5rem;
        color: #4f46e5;
        margin-bottom: 15px;
    }
    .signupDiv form .head{
        font-weight: 600;
        font-size: 1.2rem;
        color: #1e3a8a;
        margin-bottom: 5px;
    }
    .signupDiv form .grid{
        margin-bottom: 15px;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        display: grid;
        gap: 6px;
    }
    .signupDiv form .grid .formField label{
        display: block;
        font-weight: 600;
        color: #444;
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    .signupDiv form .grid .formField input{
        padding: 15px;
        border-radius: 12px;
        width: 100%;
        border: 1px solid #ccc;
    }
    .signupDiv form .grid .formField input:focus{
        outline: none;
        border-color: #4f46e5;
        border: 2px solid #4f46e5;
    }
    .signupDiv form .grid .formField select{
        width: 100%;
        padding: 15px;
        border-radius: 12px;
        border: 1px solid #ccc;
        text-align: center;
    }
    .signupDiv form .grid .formField select:focus{
        outline: none;
        border-color: #4f46e5;
        border: 2px solid #4f46e5;
    }
    .signupDiv form button{
        width: 100%;
        padding: 13px;
        border-radius: 12px;
        border: none;
        background: #6366f1;
        color: #fff;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
    }
    .signupDiv form button:hover{
        background: #1e3a8a;
        transition: all ease 0.4s;
    }

    /*====FOOTER====*/
    footer{
        text-align: center;
        background: #1f2937;
        color: #cdb5e1;
        padding: 2rem;
        font-size: 0.8rem;
    }   
}

/*====ANIMATIONS====*/
nav a{
    position: relative;
    text-decoration: none;
}
nav a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    
    background-color: #00c9ff;
    transition: width 0.3s ease;
}
nav a:hover::after{
    width: 100%;
}

.hero-content{
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 2s ease forwards;
}

.hero p{
    opacity: 0;
    transform: translateX(30px);
    animation: fadeUp 2s ease forwards;
    animation-delay: 0.2s;
}

.hero .heading{
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 2s ease forwards;
    animation-delay: 0.4s;
}

.hero2 .title{
    opacity: 0;
    transform: translateX(30px);
    animation: fadeUp 2s ease forwards;
    animation-delay: 0.2s;
}
.hero2 .small{
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeUp 2s ease forwards;
    animation-delay: 0.2s;
}
@keyframes fadeUp {
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.hero{
    background: linear-gradient(135deg, #1e3a8a, #4f46e5);
    background-size: 600% 600%;
    animation: gradientMove 45s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%;}
    50% { background-position: 100% 50%;}
    100% { background-position: 0% 50%;}
}

.reveal{
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}
.reveal.show{
    opacity: 1;
    transform: translateY(0);
}

.hero a, #install-btn{
    animation:  pulse 2.5s infinite;
}
.hero2 .registerCards .card{
    animation:  pulse 2.5s infinite
}
/*@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);}
    70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);}
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);}
}*/
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 150, 255, 0.7);}
    70% { box-shadow: 0 0 0 20px rgba(0, 150, 255, 0);}
    100% { box-shadow: 0 0 0 0 rgba(0, 150, 255, 0);}
}