*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Montserrat", Sans-serif;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* TOP BAR */
.top-bar{
    background:#43176f;
    height:42px;
    color:#fff;
    display:flex;
    align-items:center;
    font-size:15px;
    font-weight:600;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left span{
    margin-right:22px;
}

.top-left i{
    margin-right:6px;
    font-size:13px;
}

.top-social a{
    width:24px;
    height:24px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    margin-left:9px;
    border-radius:2px;
    font-size:12px;
}

.fb{background:#4267B2;}
.in{background:#0077B5;}
.ig{background:#111;}
.tw{background:#1DA1F2;}
.yt{background:#FF0000;}

/* NAVBAR */
.main-navbar{
    height:120px;
    background:#fff;
    display:flex;
    align-items:center;
}

.logo{
    width:155px;
}

.navbar-nav{
    gap:18px;
    margin-top: 76px;
}

.nav-link{
    color:#222;
    font-weight:700;
    font-size:15px;
}

.nav-link.active,
.nav-link:hover{
    color:#4d55b6;
}

.contact-btn{
    background:#4d55b6;
    color:#fff;
    padding:12px 30px;
    border-radius:30px;
    font-weight:700;
    border:none;
    margin-top: 69px;
}

/* HERO */
.hero{
    position:relative;
    min-height:445px;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        rgba(67,23,111,.92),
        rgba(67,23,111,.72),
        rgba(10,20,50,.65)
    );
    z-index:2;
}

.hero .container{
    position:relative;
    z-index:3;
}

.hero-content-box{
    color:#fff;
    max-width:560px;
}

.hero h1{
    font-size:42px;
    font-weight:800;
    line-height:1.05;
    margin-bottom:22px;
}

.hero p{
    font-size:16px;
    line-height:1.6;
    font-weight:10;
}

.btn-main{
    display:inline-block;
    background:#4d55b6;
    color:#fff;
    padding:13px 35px;
    border-radius:35px;
    font-weight:700;
    margin-top:15px;
}

/* FEATURE CARDS */
.feature-section{
    margin-top:-67px;
    position:relative;
    z-index:2;
}

.feature-card{
    background:#fff;
    height:193px;
    border-radius:7px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.feature-card i{
    font-size:42px;
    color:#43176f;
    margin-bottom:25px;
}

.feature-card h3{
    font-size:18px;
    font-weight:700;
    line-height:1.2;
}

/* ABOUT */
.about{
    padding:90px 0 70px;
}

.section-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:22px;
}

.about p{
    color:#5c6470;
    font-size:16px;
    line-height:1.45;
    margin-bottom:30px;
}

.about-img{
    width:100%;
}

/* PURPOSE */
.purpose{
    min-height:520px;
    background:
    linear-gradient(90deg, rgba(67,23,111,.9), rgba(67,23,111,.65)),
    url("assets/img/Virtualization-and-Cloud-services-super-excel.jpg");
    background-size:cover;
    background-position:center;
    color:#fff;
    display:flex;
    align-items:center;
    position:relative;
}

.purpose h2{
    font-size:38px;
    font-weight:700;
    line-height:1.2;
}

.purpose p{
    max-width:600px;
    font-weight:100;
    line-height:1.5;
}

.stats-box{
    background:#fff;
    color:#222;
    border-radius:7px;
    padding:35px 20px;
    position:absolute;
    left:8%;
    right:8%;
    bottom:-45px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.stat{
    text-align:center;
    border-right:1px solid #eee;
}

.stat:last-child{
    border-right:none;
}

.stat h3{
    color:#43176f;
    font-size:38px;
    font-weight:700;
}

.stat p{
    color:#5c6470;
    margin:0;
}

.offer{
    padding:70px 0 55px;
    text-align:center;
    background:#fff;
}

.offer h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:65px;
}

.offer .container{
    max-width:1140px;
}

.offer-card{
    height:282px;
    background:#fff;
    border-radius:6px;
    box-shadow:0 14px 35px rgba(0,0,0,.10);
    padding:28px 18px 25px;
    text-align:center;
    overflow:hidden;
}

.offer-card i{
    font-size:42px;
    color:#43176f;
    margin-bottom:22px;
    display:block;
}

.offer-card h3{
    font-size:20px;
    font-weight:700;
    line-height:1.15;
    margin-bottom:16px;
}

.offer-card p{
    color:#5c6470;
    font-size:16px;
    line-height:1.45;
    margin:0 auto 16px;
    max-width:220px;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.small-btn{
    background:#4d55b6;
    color:#fff;
    padding:9px 27px;
    border-radius:25px;
    font-size:14px;
    font-weight:700;
    display:inline-block;
}

/* VISION */
.vision{
    padding:30px 0 45px;
}

.info-box{
    display:flex;
    gap:15px;
    background:#fff;
    border:1px solid #eee;
    border-radius:7px;
    padding:22px 15px;
    margin-bottom:18px;
}

.info-box i{
    color:#43176f;
    font-size:36px;
}

.info-box h3{
    font-size:25px;
    font-weight:700;
}

.info-box p{
    color:#5c6470;
    line-height:1.45;
}

/* DIFFERENT */
.different{
    min-height:480px;
    background:
    linear-gradient(90deg, rgba(67,23,111,.95), rgba(67,23,111,.7)),
    url("assets/img/consulting-services-img.jpg");
    background-size:cover;
    background-position:center;
    color:#fff;
    display:flex;
    align-items:center;
}

.different h2{
    font-size:42px;
    font-weight:700;
}

.different p,
.different li{
    font-size:17px;
    font-weight:100;
}

/* TESTIMONIAL */
.testimonial{
    padding:40px 0;
    text-align:center;
}

.sub-title{
    letter-spacing:5px;
    font-size:14px;
    margin-bottom:15px;
    font-weight: 800;
}

.testimonial h2,
.clients h2{
    font-size:42px;
    font-weight:600;
    margin-bottom:35px;
}

.test-card{
    border:1px solid #e5e5e5;
    border-radius:7px;
    min-height:315px;
    padding:48px 32px;
    color:#5c6470;
    font-size:17px;
    line-height:1.4;
}

.test-card strong{
    display:block;
    margin-top:25px;
    color:#5c6470;
}

/* CLIENTS */
.clients{
    background:#f5f5f5;
    padding:45px 0 60px;
    text-align:center;
}

.client-logo{
    background:#fff;
    height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    border-radius:3px;
}

.client-logo img{
    max-width:75%;
    max-height:95px;
}

/* FOOTER */
.footer{
    padding:60px 0 25px;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-logo{
    width:120px;
}

.footer-menu a{
    color:#1d3557;
    font-size:16px;
    margin:0 12px;
    padding-right:12px;
    border-right:1px solid #ccc;
}

.footer-menu a:last-child{
    border-right:none;
}

.footer-social a{
    color:#111;
    margin-left:22px;
    font-size:18px;
}

.copyright{
    border-top:1px solid #ddd;
    margin-top:45px;
    padding-top:30px;
    text-align:center;
    color:#1d3557;
    font-size:14px;
}

@media(max-width:991px){
    .main-navbar{
        height:auto;
        padding:15px 0;
    }

    .hero h1{
        font-size:36px;
    }

    .feature-section{
        margin-top:30px;
    }

    .stats-box{
        position:static;
        margin-top:30px;
    }

    .footer-top{
        flex-direction:column;
        gap:25px;
    }
}







/* // About Us */




.about-banner{
    height:405px;
    background:
    linear-gradient(90deg,rgba(67,23,111,.92),rgba(67,23,111,.70),rgba(10,35,60,.72)),
    url("assets/img/IT-services-banner.png");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.about-banner h1{
    color:#fff;
    font-size:72px;
    font-weight:800;
}

.about-info{
    padding:95px 0 80px;
}

.about-info h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:22px;
}

.about-info p{
    color:#26384a;
    font-size:17px;
    line-height:1.42;
    margin-bottom:20px;
}

.about-info img{
    width:100%;
    height:435px;
    object-fit:cover;
    border-radius:8px;
}

.vm-section{
    padding:85px 0 65px;
    background:
    linear-gradient(rgba(67,23,111,.92),rgba(67,23,111,.92)),
    url("assets/img/Virtualization-and-Cloud-services-super-excel.png");
    background-size:cover;
    background-position:center;
    position:relative;
}

.vm-card{
    height:275px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:8px;
    color:#fff;
    text-align:center;
    padding:33px 28px;
}

.vm-icon{
    width:70px;
    height:70px;
    background:#fff;
    border-radius:5px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 24px;
}

.vm-icon i{
    color:#43176f;
    font-size:32px;
}

.vm-card h3{
    font-size:27px;
    font-weight:800;
    margin-bottom:15px;
}

.vm-card p{
    font-size:17px;
    line-height:1.45;
    font-weight:600;
}

.stats-about{
    background:#fff;
    border-radius:8px;
    padding:30px 0;
    margin-top:30px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.stats-about .stat{
    text-align:center;
    border-right:1px solid #eee;
}

.stats-about .stat:last-child{
    border-right:none;
}

.stats-about h2{
    color:#43176f;
    font-size:42px;
    font-weight:900;
    margin-bottom:3px;
}

.stats-about p{
    color:#344456;
    font-size:16px;
    font-weight:700;
    margin:0;
}

.team-section{
    padding:70px 0 75px;
    background:#fff;
}

.section-heading{
    text-align:center;
    font-size:42px;
    font-weight:800;
    margin-bottom:45px;
}

.team-card{
    height:395px;
    background:#fff;
    border-radius:6px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
    text-align:center;
    padding:18px 15px;
}

.team-card img{
    width:220px;
    height:220px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #f2f2f2;
    margin-bottom:20px;
}

.team-card h4{
    font-size:16px;
    font-weight:800;
    margin-bottom:4px;
}

.team-card span{
    font-size:14px;
    color:#1d3557;
}

.partners{
    background:#f5f5f5;
    padding:58px 0 65px;
    text-align:center;
}

.partners h2,
.deal-section h2{
    font-size:36px;
    font-weight:800;
    margin-bottom:18px;
}

.partners h5{
    font-size:18px;
    font-weight:800;
    margin-bottom:55px;
}

.logo-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
}

.logo-row img{
    max-width:170px;
    max-height:100px;
    object-fit:contain;
}

.deal-section{
    padding:70px 0 85px;
    text-align:center;
    background:#fff;
}

.deal-section h2{
    margin-bottom:75px;
}

.footer{
    padding:55px 0 25px;
    background:#fff;
}

.footer-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.footer-logo{
    width:120px;
}

.footer-menu a{
    color:#344456;
    font-size:16px;
    font-weight:700;
    margin:0 13px;
    padding-right:13px;
    border-right:1px solid #ddd;
}

.footer-menu a:last-child{
    border-right:none;
}

.footer-social a{
    color:#111;
    font-size:18px;
    margin-left:20px;
}

.copyright{
    border-top:1px solid #ddd;
    margin-top:45px;
    padding-top:28px;
    text-align:center;
    color:#344456;
    font-size:14px;
}

@media(max-width:991px){
    .about-banner h1{
        font-size:48px;
    }

    .about-info img{
        margin-top:30px;
        height:auto;
    }

    .vm-card,
    .team-card{
        margin-bottom:25px;
    }

    .logo-row{
        flex-wrap:wrap;
        justify-content:center;
    }

    .footer-top{
        flex-direction:column;
        gap:25px;
    }
}



/* // Career */



.about-banner{
    height:405px;
    background:
    linear-gradient(90deg,rgba(67,23,111,.92),rgba(67,23,111,.70),rgba(10,35,60,.72)),
    url("assets/img/IT-services-banner.png");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.about-banner h1{
    color:#fff;
    font-size:72px;
    font-weight:800;
}

.career-form-section{
    padding:90px 0;
    background:#f8f8f8;
}

.section-title{
    text-align:left;
    font-size:52px;
    font-weight:800;
}

.section-subtitle{
    text-align:center;
    margin-bottom:70px;
    color:#555;
}

.career-image img{
    width:100%;
}

.career-contact{
    text-align:center;
    margin-top:20px;
    font-size:19px;
}

.career-form{
    background:#fff;
    padding:30px;
}

.career-form input,
.career-form textarea{
    width:100%;
    border:none;
    border-bottom:1px solid #ddd;
    padding:10px 0;
    margin-bottom:0px;
    outline:none;
}

.submit-btn{
    width:100%;
    background:#4d55b6;
    color:#fff;
    border:none;
    border-radius:40px;
    padding:15px;
    font-size:18px;
    font-weight:700;
}

.job-opening-section{
    padding:80px 0;
    background:#fff;
}

.job-title{
    text-align:center;
    font-size:55px;
    font-weight:800;
    margin-bottom:50px;
}

.job-box{
    border:1px solid #dcdcdc;
    padding:18px 20px;
    font-size:24px;
    font-weight:700;
    margin-bottom:0;
}

.job-box span{
    margin-right:12px;
    font-size:28px;
}



.job-opening-section{
    padding:80px 0;
    background:#fff;
}

.job-title{
    text-align:center;
    font-size:42px;
    font-weight:800;
    margin-bottom:50px;
}

.job-accordion{
    max-width:1120px;
    margin:auto;
}

.job-accordion .accordion-item{
    border:1px solid #d6dbe0;
    border-radius:0;
}

.job-accordion .accordion-button{
    font-weight:700;
    color:#344456;
    background:#fff;
    box-shadow:none;
    padding:13px 18px;
}

.job-accordion .accordion-button::after{
    display:none;
}

.job-accordion .accordion-button::before{
    content:"+";
    font-size:24px;
    font-weight:800;
    margin-right:14px;
}

.job-accordion .accordion-button:not(.collapsed)::before{
    content:"-";
}

.job-accordion .accordion-body{
    font-size:15px;
    color:#344456;
    line-height:1.6;
    padding:20px 35px;
}

.job-accordion ul{
    margin-top:5px;
    margin-bottom:15px;
}



/* // Our Media */

.certificate-section{
    padding:60px 0 80px;
    background:#fff;
}

.certificate-title{
    text-align:center;
    font-size:52px;
    font-weight:800;
    margin-bottom:50px;
    color:#1d1d1d;
}

.certificate-box{
    text-align:center;
}

.certificate-box img{
    width:100%;
    max-width:330px;
    height:auto;
    display:inline-block;
    transition:.3s;
}

.certificate-box img:hover{
    transform:scale(1.03);
}




/* // Our Products */


.products-banner{
    height:430px;
    background:
    linear-gradient(90deg,rgba(67,23,111,.88),rgba(67,23,111,.70),rgba(11,42,62,.75)),
    url("assets/img/about-banner.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.products-banner h1{
    color:#fff;
    font-size:72px;
    font-weight:800;
}

.partner-products{
    padding:75px 0 95px;
    background:#fff;
}

.partner-card{
    height:210px;
    background:#fff;
    border-radius:7px;
    box-shadow:0 18px 45px rgba(0,0,0,.10);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.partner-card img{
    max-width:240px;
    max-height:100px;
    object-fit:contain;
    margin-bottom:28px;
}

.partner-card h4{
    font-size:20px;
    font-weight:800;
    margin:0;
}

.deals-products{
    padding:10px 0 30px;
    text-align:center;
    background:#fff;
}

.deals-products h2,
.software-list-section h2{
    font-size:38px;
    font-weight:800;
    margin-bottom:38px;
}

.deal-menu{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:0;
}

.deal-menu a{
    color:#344456;
    font-size:16px;
    font-weight:700;
    padding:0 13px;
    border-right:1px solid #cfcfcf;
    line-height:20px;
    text-decoration:none;
}

.deal-menu a:last-child{
    border-right:none;
}

.software-list-section{
    padding:22px 0 40px;
    background:#fff;
}

.software-list-section h2{
    text-align:center;
    margin-bottom:28px;
}

.software-list{
    max-width:1120px;
    margin:auto;
}

.software-list ol{
    margin:0;
    padding-left:25px;
}

.software-list li{
    color:#344456;
    font-size:15px;
    line-height:1.43;
    font-weight:800;
    text-transform:uppercase;
}

.software-list li a{
    color:#344456;
    text-decoration:underline;
}

.product-diagram{
    padding:70px 0 85px;
    text-align:center;
    background:#fff;
}

.product-diagram img{
    max-width:720px;
    width:100%;
}

@media(max-width:991px){
    .products-banner h1{
        font-size:48px;
    }

    .partner-card{
        margin-bottom:25px;
    }

    .product-diagram img{
        max-width:100%;
    }
}
.partner-card{
    background:#fff;
    border-radius:8px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    height:220px;
    text-align:center;
    padding:25px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.partner-card img{
    width:220px;      /* same width for all logos */
    height:90px;      /* same height for all logos */
    object-fit:contain;
    margin-bottom:20px;
}

.partner-card h4{
    font-size:20px;
    font-weight:700;
    margin:0;
}




/* //Our Speciality */

     .about-banner {
            height: 405px;
            background:
                linear-gradient(90deg, rgba(67, 23, 111, .92), rgba(67, 23, 111, .70), rgba(10, 35, 60, .72)),
                url("assets/img/IT-services-banner.png");
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-banner h1 {
            color: #fff;
            font-size: 72px;
            font-weight: 800;
        }

        /* ABOUT */
        .about {
            padding: 55px 0 70px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 22px;
        }

        .about p {
            color: #5c6470;
            font-size: 16px;
            line-height: 1.45;
            margin-bottom: 30px;
        }

        .about-img {
            width: 100%;
        }

        /* // Consulting Services */


        .consulting-section{
    padding:80px 0;
    background:#fff;
}

.service-list{
    list-style:none;
    padding:0;
    margin:0;
}

.service-list li{
     display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 15px;
    /* line-height: 1.6; */
    color: #46566d;
    /* font-weight: 500; */
}

.service-list li i{
    color:#46566d;
    font-size:18px;
    margin-top:6px;
    min-width:18px;
}

.consulting-img{
    width:100%;
    max-width:620px;
    border-radius:10px;
    object-fit:cover;

}


/* //Contact Us */

.contact-banner{
    height:380px;
    background:
    linear-gradient(90deg,rgba(67,23,111,.88),rgba(67,23,111,.72),rgba(11,42,62,.75)),
    url("assets/img/about-banner.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-banner h1{
    color:#fff;
    font-size:62px;
    font-weight:800;
}

.contact-info-section{
    padding:80px 0 40px;
    background:#fff;
    text-align:center;
}

.small-title{
    letter-spacing:1px;
    font-size:13px;
    color:#222;
    margin-bottom:18px;
}

.contact-info-section h2{
    font-size:30px;
    font-weight:700;
    margin-bottom:60px;
}

.contact-card{
    min-height:270px;
    padding:25px 30px;
    text-align:center;
}

.contact-card.active{
    background:#fff;
    box-shadow:0 18px 45px rgba(0,0,0,.10);
    border-radius:6px;
}

.icon-box{
    width:56px;
    height:56px;
    margin:0 auto 20px;
    background:#f5f5f5;
    color:#43176f;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:4px;
    font-size:28px;
}

.contact-card.active .icon-box{
    background:#43176f;
    color:#fff;
}

.contact-card h4{
    font-size:13px;
    letter-spacing:4px;
    margin-bottom:20px;
    font-weight:500;
}

.contact-card p{
    color:#344456;
    font-size:14px;
    font-weight:700;
    line-height:1.45;
    margin-bottom:20px;
}

.map-form-section{
    padding:20px 0 90px;
    background:#fff;
}

.map-box iframe{
    width:100%;
    height:360px;
    border:0;
}

.contact-form-box{
    background:#fff;
    padding:48px 52px;
    border-radius:6px;
    box-shadow:0 18px 45px rgba(0,0,0,.10);
}

.contact-form-box h2{
    font-size:27px;
    font-weight:800;
    margin-bottom:25px;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    border:none;
    border-bottom:1px solid #d7d7d7;
    padding:12px 0;
    margin-bottom:18px;
    outline:none;
    font-size:14px;
}

.contact-form-box textarea{
    height:95px;
    resize:none;
}

.send-btn{
    width:100%;
    background:#4d55b6;
    color:#fff;
    border:none;
    border-radius:30px;
    padding:12px;
    font-weight:700;
}

@media(max-width:991px){
    .contact-banner h1{
        font-size:46px;
    }

    .contact-card{
        margin-bottom:25px;
    }

    .contact-form-box{
        margin-top:30px;
        padding:30px;
    }
}
.whatsapp-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 58px;
    right: 25px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
    line-height: 60px;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
    transition: 0.3s;
}

.whatsapp-float:hover{
    color: #fff;
    transform: scale(1.1);
}

.feature-box{
    opacity: 0;
    transform: translateY(80px);
    animation: slideUp 1s ease forwards;
}

.feature-box:nth-child(1){
    animation-delay: 0.2s;
}

.feature-box:nth-child(2){
    animation-delay: 0.5s;
}

.feature-box:nth-child(3){
    animation-delay: 0.8s;
}

@keyframes slideUp{
    from{
        opacity: 0;
        transform: translateY(80px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.about-text{
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.about-image{
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease;
}

.about-text.show,
.about-image.show{
    opacity: 1;
    transform: translateX(0);
}

.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
}

.popup-box {
  background: white;
  width: 650px;
  margin: 100px auto;
  padding: 35px;
  position: relative;
}

.popup-box input,
.popup-box textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 12px;
  margin-bottom: 15px;
}

.popup-box button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 25px;
  background: #4f58b8;
  color: white;
  font-weight: bold;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
  font-size: 22px;
}