@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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "poppins", sans-serif;
  scroll-behavior: smooth;
}
:root {
  /* --main-color: #00ffee; */
  /* --main-color: #0ef; */
  --main-color:#6262ff;
  /* --main-color:#50ff78; */
}
body {
  background-color: black;
}
section {
  display: flex;
  justify-content: center;
  align-items: center;
}
header {
  width: 1600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
  position: fixed;
  top: 0;
  z-index: 999;
  transition:  all .5s ease-in-out;
}
.sticky{
    background-color: #000000;
    border-bottom: 2px solid var(--main-color);
}
.logo h2 {
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: all .4s ease-in-out;
}
.logo h2:hover{
    transform: scale(1.1);
}

.logo h2 span {
  color: var(--main-color);
  filter: drop-shadow(0 0 10px var(--main-color));
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
nav p {
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  position: relative;
}
nav p:after{
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--main-color);
    transition: all .5s ease-in-out;
}
nav p:hover{
    color: var(--main-color);
}
nav p:hover:after{
    width: 100%;
}
button {
  width: 180px;
  height: 50px;
  background-color: var(--main-color);
  border-radius: 25px;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
button:hover {
  box-shadow: 0 0 30px var(--main-color);
}
.bars {
  font-size: 20px;
  display: none;
  color: var(--main-color);
  filter: drop-shadow(0 0 20px var(--main-color));
}

/* hero */
.hero_wrapper{
    min-height: 100vh;
}
.hero{
    width: 1600px;
    padding: 80px 0 ;
    padding-top:120px ;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero_info{
    width: 45%;
}
.hero_info h1{
    font-size: 50px;
    margin-bottom: 20px;
}
.hero_info h1 span{
    color: var(--main-color);
    filter: drop-shadow(0 0 10px var(--main-color));
}
.hero_info h2{
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 400;
}
.hero_info h2 span{
    color: var(--main-color);
}
.hero_info p{
    margin-bottom: 20px;
}
.hero_info .social_icons{
    margin-bottom: 30px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 20px;
}
.hero_info .btns{
    display: flex;
    align-items: center;
    gap: 20px;
}
.hero_info .btns button:nth-child(2){
    background-color: transparent;
    border: 2px solid var(--main-color);
    color: #fff;
}
.hero_info .social_icons i{
    height: 40px;
    width: 40px;
    font-size: 20px;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    box-shadow: 0 0 10px var(--main-color);
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .2s ease-in-out;
    cursor: pointer;
}
.hero_info .social_icons i:hover{
    transform: scale(1.1);
}
.hero_img{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    
}
.hero_img img{
    /* background-color: #00c1b4; */
    background-color:#6262ff ;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    box-shadow: 0 0 100px var(--main-color);
    animation:  glowing  3s linear infinite;
}
@keyframes glowing {
    0% {box-shadow: 0 0 20px var(--main-color)}
    50% {box-shadow: 0 0 150px var(--main-color)}
    100% {box-shadow: 0 0 20px var(--main-color)}
}
.hero_img img:hover{
    box-shadow: 0 0 150px var(--main-color);
}

/* education */

.education{
    display: flex;
    flex-direction: column;
    padding: 80px 0;
    width: 1500px;
    color: #fff;
    align-items: center;
}
.education h2{
    font-size: 50px;
    margin-bottom: 50px;
}
.timeline_box{
    width: 30%;
    border: 2px solid var(--main-color);
    border-radius: 100px;
    padding: 20px 50px;
    position: relative;
    margin-top: 40px;
    box-shadow: 0 0 10px var(--main-color);
    transition: all .4s ease-in-out;
}
.timeline_box:hover{
    box-shadow: 0 0 50px var(--main-color);
    /* transform: scale(1.1); */
}

.timeline{
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    width: 100%;
    position: relative;
}
.timeline:after{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--main-color);
}

.timeline_box h3{
    margin-bottom: 20px;
}
.timeline_box span{
    color: var(--main-color);
    font-size: 20px;
}
.timeline .left{
    margin-left: 18%;
    text-align: right;
}
.timeline .right{
   margin-left: 52%;
}

.timeline .left:after,.timeline .right:after {

    position: absolute;
    content: "";
    top: 0;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: var(--main-color);
    box-shadow: 0 0 50px var(--main-color);
}
.timeline .left:after{
    right: -9.5%;
}
.timeline .right:after{
    left: -8.5%;
}

/* services */

.services{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 1600px;
    padding: 80px 0;
}
.services h2{
    font-size: 50px;
    color: #fff;
}
.services_cards{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.services_card{
    width: 35%;
    height: 200px;
    background-color: var(--main-color);
    color: #000;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    z-index: 10;
    /* border: 2px solid var(--main-color); */
    transition: all .5s ease-in-out;
    overflow: hidden;
}
.services_card::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0;
    z-index: -1;
    background-color: var(--main-color);
}
.services_card:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    background-color: white;
    z-index: -1;
    transition: all .7s ease-in-out;
}
.services_card:hover{
    /* background-color: #fff; */
    transform: scale(1.05);
}
.services_card:hover:after{
    left: 0;
}
.services_card h3{
    font-size: 25px;
    margin-bottom: 10px;
}

/* testimonials */

/* testimonial */


.testimonial_main{
    width: 1600px;
    padding: 80px 0;
    color: #fff;
}
.testimonial_main h2{
    font-size: 50px;
    text-align: center;
    margin-bottom: 40px;
    ;
}

.testimonial_detail button {
    margin-top: 40px;
    width: 200px;
    height: 50px;
    font-size: 18px;
    color: #FFB100;
    cursor: pointer;
    border: 1px solid #FFB100;
    background-color: transparent;
    transition: all .5s ease-in-out;
}

.testimonial_detail button:hover {
    color: #062265;
    background-color: #FFB100;
}
.testimonial_detail p{
    color: rgba(0, 0, 0, 0.6);
    font-size: 18px;
}
.testimonial_slider{
    width: 66%;
    display: flex;
    gap: 2%;
}
.swiper {
    width: 100%;
    overflow-x: hidden;
}

.swiper-slide {
    display: flex;
}
.testimonial_sec{
    border: 1px solid var(--main-color);
    padding: 30px;
}
.testimonial_sec:hover{
    /* box-shadow: 0 0 30px var(--main-color); */
    /* transform: scale(1.02); */
    box-shadow: 0 0 40px var(--main-color) inset;
}

.testimonial_sec p{
   
    font-size: 18px;
    line-height: 40px;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
}
.testimonial_user{
    margin-top: 30px;
    display: flex;
    gap: 20px;
}
.testimonial_user img{
    border-radius: 50%;
}
.testimonial_user h4{
    font-size: 20px;
    color: var(--main-color);
}

/* contact */

.contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 1600px;
    padding: 80px 0;
}
.contact h2{
    font-size: 50px;
    margin-bottom: 40px;
}
.contact h2 span{
    color: var(--main-color);
}

.contact_container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.contact_detail{
    width: 40%;
}
.contact_detail h3{
    font-size: 30px;
    margin-bottom: 30px;
    color: var(--main-color);
}
.contact_detail h4{
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 20px;
}
.contact_detail p{
    font-size: 18px;
}
.contact_detail div{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.contact_detail i{
    font-size: 25px;
}
.contact_form{
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
 .contact_form input,.contact_form textarea{
    width: 80%;
    height: 50px;
    background-color: transparent;
    border: 2px solid var(--main-color);
    border-radius: 10PX;
    padding: 10px;
    color: #fff;
    font-size: 18px;
}
.contact_form textarea{
    height: 120px !important;
    margin-bottom: 30px;
}

/* footer */

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 30px 0;
    background-color: #1b1b1b;
}
footer .social_links{
    display: flex;
    align-items: center;
    gap: 20px;
}
footer .social_links i{
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border: 1px solid var(--main-color);
    border-radius:50%;
    transition: all .3s ;
}
footer a{
    color: #fff;
}
footer .social_links i:hover{
    background-color: var(--main-color);
    color: #000;
    transform: scale(1.3) translateY(-5px);
    box-shadow: 0 0 25px var(--main-color);
}

footer .links{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
footer p{
    font-size: 18px;
    text-align: center;
}
footer p span{
    color: var(--main-color);
    cursor: pointer;
}

@media (max-width: 1700px) {
  header {
    width: 100%;
    padding: 20px 5%;
  }
  .hero{
    width: 100%;
    padding: 80px 5%;
    padding-top: 120px ;
  }
  .education,.services,.testimonial_main,.contact{
    width: 100%;
    padding: 80px 5%;
  }
}
@media (max-width: 1400px) {
    .hero_img img{
        width: 400px;
        height: 400px;
    }
    .timeline_box{
        width: 40%;
    }
    .timeline .left{
        margin-left: 8%;
        text-align: right;
    }
    .timeline .right{
       margin-left: 52%;
    }
    .timeline .left:after{
        right: -7.5%;
    }
    .timeline .right:after{
        left: -6.5%;
    }
    .services_card{
        width: 40% ;
    }
}
@media (max-width: 1024px) {
    .hero{
        flex-direction: column-reverse;
    }
    .hero_img img{
        width: 350px;
        height: 350px;
    }
    .hero_info{
        width: 100%;
        margin-top: 50px;
    }
    .timeline:after{
        display: none;
    }
    .timeline .left:after,.timeline .right:after{
        display: none;
    }
    .timeline_box{
        width: 50%;
    }
    .timeline .left{
        margin-left: 0;
    }
    .services_card{
        width: 45% ;
    }
}
@media (max-width: 900px) {
  .bars {
    display: block;
  }
  nav {
    position: absolute;
    top: 100%;
    left: 0%;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
  }
  nav p{
    color: #000;
  }
  .show {
    height: 280px;
    padding: 30px;
  }
  .services_card{
    width: 90%;
    height: 280px;
  }
  .contact_container{
    flex-direction: column-reverse;
  }
  .contact_form{
    width: 80%;
  }
  .contact_detail{
    margin-top: 50px;
    width: 100%;
  }
}
@media (max-width: 768px) {
    .hero_info h1{
        font-size: 40px;
    }
    .hero_info h2{
        font-size: 20px;
    }
    .timeline_box{
        width: 100%;
    }
    .timeline .left{
        margin-left: 0%;
        text-align: left;
    }
    .timeline .right{
        margin-left: 0%;
    }
}
@media (max-width: 500px) {
    .testimonial_main h2,.services h2,.education h2{
        font-size: 40px;
    }
    .testimonial_sec{
        width: 90%;
        margin-left: 5%;
    }
    .contact_form{
        width: 100%;
    }
    footer{
        
    gap: 30px;
    padding: 30px 5%;
    }
}
.blue-link {
    color: blue;
    text-decoration: none; /* Optional: Removes underline */
}

.blue-link:hover {
    text-decoration: underline; /* Optional: Underlines the link on hover */
}

html {
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
}
.about-wrapper{
    height: 100vh;
}
.about-left{
    background-color: #21D4FD;
    background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color:#fff
}
.about-left-content > div{
    background: #12192c;
    padding: 4rem 4rem 2.5rem 5rem;
    text-align: center;
    
    border-radius: 12px 12px 0 0;
}
.about-left-content{
    box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.39);
    -webkit-box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.39);
    -moz-box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.39);
    border-radius: 12px;
    width:80%;
}
.about-img img{
    display: block;
    width: 200px;
}
.about-img{
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
}
.shadow{
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    width: 200px;
    height: 200px;
}



.about-left-content h2{
    font-size: 2rem;
    margin: 2.2rem 0 0.6rem 0;
    line-height: 1.2;
    padding-bottom: 1rem;
    border-bottom: 2px solid #B721FF;
}
.about-left-content h3{
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 5px;
    margin-top: 1.2rem;
}
.icons{
    background: #12192c;
    display: flex;
    justify-content: center;
    padding: 0.8rem 0;
    border-radius: 0 0 12px 12px;
}
.icons li{
    list-style-type: none;
    background: #B721FF;
    color: #fff;
    width: 40px;
    height: 40px;
    margin: 0 0.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.icons li:hover{
    background: #edffec;
    color: #000;
}
.about-right{
    background: #12192c;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5rem;
    text-align: center;
    color:#fff
}
.about-right h1{
    font-size: 5rem;
    text-transform: uppercase;
}
.about-right h1 span{
    color: #B721FF;
}
.about-right h2{
    font-weight: 600;
}
.about-btns{
    display: flex;
    margin: 2rem 0;
}
.btn{
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 0.55rem 0;
    width: 130px;
    font-weight: 600;
    background: transparent;
    margin: 0 0.5rem;
    cursor: pointer;
    color:#fff
}
.btn.btn-pink{
    background: #B721FF;
    color: #fff;
    border-color: #B721FF;
    transition: all 0.5s ease-in-out;
}
.btn.btn-pink:hover{
    background: transparent;
    border-color: #fff;
    color: #fff;
}
.btn.btn-white{
    transition: all 0.5s ease-in-out;
}
.btn.btn-white:hover{
    background: #B721FF;
    border-color: #B721FF;
    color: #fff;
}
.about-para p{
    font-weight: 300;
    padding: 0.5rem;
    opacity: 0.8;
}

@media screen and (min-width: 992px){
    .about-wrapper{
        display: grid;
        grid-template-columns: repeat(2, 2fr);
    }

    .about-left{
        position: relative;
    }
    .about-left-content{
        position: absolute;
        width:80%
    
    }
}
.credit{
    text-align: center;
    color: #fff;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.credit a{
    text-decoration: none;
    color:#B721FF;
    font-weight: bold;
} 


