@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
*/
/* Header section 

header{
    width: 100%; 
    max-width: 100%;
    padding-left: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

header nav a{
    color: #fff;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 16px;
    transition: 0.2s;
    text-decoration: none;
}

a.active{
    background: #14ff72cb;
    border-radius: 2px;
}

a:hover{
    background: #14ff72cb;
    border-radius: 2px;
}

/* Header section */



/* carousel */
body{
    color: #16163f;
    background-color: white;
}
.carousel{
    width: 100vw;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
    position: relative;
}

.carousel .list .item{
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 1;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3){
    left: 60%;
}

.carousel .list .item:nth-child(4){
    left: calc(60% + 200px);
}

.carousel .list .item:nth-child(5){
    left: calc(60% + 400px);
}

.carousel .list .item:nth-child(6){
    left: calc(60% + 600px);
}

.carousel .list .item:nth-child(n+7){
    left: calc(60% + 800px);
    opacity: 0;
}






.list .item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: none;;
}

.list .item:nth-child(2) .content{
    display: block;
}

.content .title{
    font-size: 100px;
    text-transform: uppercase;
    color: #005A9E;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name{
    font-size: 100px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;
    color:#f8f9fa;
    opacity: 0;
    text-shadow:
     0px 1px 3px rgba(0, 0, 0, 0.5), 
    0px 2px 6px rgba(0, 0, 0, 0.4);
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btnn{
    margin-left: 5px;
    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
    z-index: 100;
}

.content .btnn button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #f8f9fa;
    border: 2px solid #fff;
    background-color: #007BFF;
    border-radius: 25px;
    font-weight: bold;
    z-index: 1000;
}

.content .btnn button:nth-child(1){
    margin-right: 15px;
}

.content .btnn button:nth-child(2){
    background: transparent;
    color: #14ff72cb;
    border: 2px solid #fff;
    transition: 0.3s;
}

.content .btnn button:nth-child(2):hover{
    background-color: #14ff72cb;
    color: #fff;
    border-color: #14ff72cb;
}


@keyframes animate {
    
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* Carousel */






/* next prev arrows */

.arrows{
    position: absolute;
    bottom: 5%;
    right: 34%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #14ff72cb;
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}

.arrows button:hover{
    background: #fff;
    color: #000;
}


/* time running */
.carousel .timeRunning{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 4px;
    background-color: #14ff72cb;
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;
}

@keyframes runningTime {
    
    from{width: 0%;}
    to{width: 100%;}

}


/* Responsive Design */

@media screen and (max-width: 999px){
    
    header{
        padding-left: 50px;
    }

    .list .item .content{
        left: 50px;
    }

    .content .title, .content .name{
        font-size: 70px;
    }

    .content .des{
        font-size: 16px;
    }

}

@media screen and (max-width: 690px){
    header nav a{
        font-size: 14px;
        margin-right: 0;
    }

    .list .item .content{
        top: 60%;
        z-index: 3;
        left:20px;
    }

    .content .title, .content .name{
        font-size: 45px;
    }

    .content .btn button{
        padding: 10px 15px;
        font-size: 14px;
    }
}
@media screen and (max-width:600px) {
    .arrows{
        position: absolute;
        bottom: 1%;
        right: 32%;
        z-index: 100;
        width: 150px;
        max-width: 30%;
        display: flex;
        gap: 5px;
        align-items: center;
        justify-content: center;
    }
    .carousel .list .item{
        width: 100px;
        height: 180px;
        position: absolute;
        top: 80%;
        transform: translateY(-70%);
        left: 70%;
        border-radius: 20px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        background-position: 50% 50%;
        background-size: cover;
        z-index: -1;
        transition: 1s;
    }
    
.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3){
    left: 90%;
}

.carousel .list .item:nth-child(4){
    left: calc(90% + 200px);
}

.carousel .list .item:nth-child(5){
    left: calc(90% + 400px);
}

.carousel .list .item:nth-child(6){
    left: calc(90% + 600px);
}

.carousel .list .item:nth-child(n+7){
    left: calc(90% + 800px);
    opacity: 0;
}    
}

/* our program style */
.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create four equal columns that sits next to each other */
  .column {
    flex: 24%;
    max-width: 25%;
    padding: 0 16px;
    margin-right: 8px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media (max-width: 800px) {
    .column {
      flex: 50%;
      max-width: 50%;
      margin-bottom:8px;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
      margin-bottom:8px;
    }
  }
  /* our program css end here*/
  
  /*Gradient Colors */
  .for-background-gradient{
  background-image: linear-gradient(135deg, #E5BDF6 10%, #D8DEDE 100%);
  }

  /* animation css start here */
.autoshow{
    animation: autoshowanimation both;
    animation-timeline: view(70% 1%);
  }
  @keyframes autoshowanimation {
    from{
      opacity: 0;
      transform:translateY(200px) scale(0.3);
    }
    to{
      opacity: 1;
      transform:translateY(0) scale(1);
    }
  }
/*animation css start here */  

/*success story css start here */

.for-mySlides {display: none}

/* Slideshow container */
.for-slideshow-container {
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.for-prev, .for-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.for-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.for-prev:hover, .for-next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.for-text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.for-numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.for-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.for-active, .for-dot:hover {
  background-color: #717171;
}

/* Fading animation */
.for-fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes for-fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .for-prev, .for-next,.for-text {font-size: 11px}
}


/*success story css end here */

.for-footer-list{
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
/*contact us css start here 
.contact-us-container{
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 1rem;
    margin: 0 auto;
    background-color: white;
}
.contact-item-1{
    flex: 40%;
    background-color: aquamarine;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    border-radius: 25px;
    padding-left: 3rem;
    padding-right: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    
}
.contact-item-2{
    flex: 60%;
    background-color: blueviolet;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    border-radius: 25px;
    padding-left: 3rem;
    padding-right: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    
}
.contact-us-heading{
    color: #9370db;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}
.contact-us-info-item{
    display: flex;
    align-items: center;
    margin-bottom: 0.2;
}
.contact-us-info-icon{
    width: 40px;
    height: 40px;
    background-color: var(--primary-lavender);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--dark-lavender);
    font-size: 1rem;
}
.contact-us-h3{
    color: #0a0e62;
}
.contact-form-group {
    margin-bottom: 0.5rem;
}
.contact-us-button{
    background-color: #0a0e62;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    width: 100%;
    font-size: 16px;
}
.contact-label {
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 600;
}
input, textarea, select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border 0.3s;
    font-size: 16px; /* Prevents iOS zoom on focus 
    input:focus, textarea:focus, select:focus {
    outline: none;
    border-color:#0a0e62;
}
@media (max-width: 767px) {
    .contact-us-container{
        flex-direction: column;
    }
    .contact-item-1{
        flex: 100%;
    }
    .contact-item-2{
        flex: 100%;
    }
    input, 
    textarea, 
    select, 
    .btn {
        padding: 0.8rem;
    }
}
}
*/

  
/*contact us end here */
