
:root {
  --primary-color: #035e9b; /* Example: a shade of blue */
  --secondary-color: #86c8f4; /* Example: a shade of green */
  --text-color-primary: #333;
  --background-color-light: #f8f8f8;
  --highlight-primary: #034775;
  --pale-primary: #e5f1f9;
}

*{
    font-family : "Poppins", sans-serif;
    margin : 0;
    box-sizing: border-box;
}

a {
  text-decoration: none;
  color: white ;
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px); /* slightly shifted down */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}



.process-title{
  font-size: 2rem;
  font-weight: 600;
  margin : 0 auto;
  width: max-content;
  margin-bottom: 40px;

}

.process{
    width: 80%;
    margin : 0 auto;
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;

}



.process-left,
.process-right {
  flex: 1 1 300px;  
  min-width: 300px;  
  max-width: 500px; 
}


.process-right{
    position: relative;
}

.process-right::before{
    content:"";
    position: absolute;
    height: 95%;
    width : 2px;
    background-color: var(--primary-color);
    left: 31.5px;
    top: 10px;
    z-index: -1;

}

.process-widget{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
    padding: 10px;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.process-left > p:first-child{/*Proven Process*/
    font-size: 2.2rem;
    font-weight: 600;
}
.count-circle{
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin-right: 10px;
    width: 45px;
    height:45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.process-widget:hover .count-circle {
  background-color: var(--primary-color);
  color: white;
}

.process-text{
    margin-top: 0px;
}

.process-text > p:first-child{ /*Application Form*/
  font-size: 1.2rem;
  font-weight: 600;
}

.app-button{
    background-color: var(--primary-color);
    color : white;
    border-radius: 10px;
    padding : 10px 15px 10px 15px;
    width: max-content;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.25s ease;

}

.app-button:hover{
    background-color: var(--highlight-primary);
    
}

.test-photo{
    margin : 0 auto;
    height: 60px;
    width : 60px;
    border-radius : 50%;
    overflow: hidden;
}

.test-photo img{
    height : 100%;
    object-fit: cover;
    transform: translateX(-7%);
}

.testimonial{
    /* width:300px; */
    background: linear-gradient(var(--pale-primary), white);
    border: 1px solid var(--pale-primary);
    font-size: 0.8rem;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: smooth;
    transition: border 0.25s ease;
    flex: 1 1 250px;
    min-width: 210px;
    max-width: 300px;
}

.testimonial:hover{
    border: 1px solid var(--primary-color);
}

.test-name{
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials{
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap:10px;
}

.services{
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap:10px;
}

.service{
        /* width:300px; */
    background: linear-gradient(var(--pale-primary), white);
    border: 1px solid var(--pale-primary);
    font-size: 0.9rem;
    padding: 15px;
    /* text-align: center; */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 20px;
    animation: smooth;
    transition: border 0.25s ease, transform 0.25s ease;
    flex: 1 1 300px;
    min-width: 300px;
    max-width: 400px;
}

.service:hover{
    border: 1px solid var(--primary-color);
    transform: translateY(-2%);
}

li{
    list-style-type: none;
}

.service-title{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.service-photo{
    /* margin : 0 auto; */
    height: 60px;
    width : 60px;
    overflow: hidden;
}

.service-photo img{
    height : 100%;
    object-fit: cover;
}

.service-name{
    font-size: 1.4rem;
    font-weight: 600;
    display: inline-block;
    /* color: var(--primary-color) */
}

.learnmore{
    color: var(--primary-color);
    font-weight: 500;
    
}
.service i{
    color: var(--primary-color)
}



/* Contact Form */

.form-container {
  max-width: 500px;
  /* margin: auto; */
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

.form-input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  margin: 8px 0;
  border: 1px solid #aaa;
  font-size: 14px;
}

.schools-description{
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  margin: 8px 0;
  border: 1px solid #aaa;
  font-size: 14px;
}


.form-radio-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0;
  font-size: 14px;
}

.form-radio-group .form-label {
  margin-right: 10px;
  font-weight: bold;
}

.form-radio-group label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-upload {
  margin: 12px 0;
}

.form-upload-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 2px dashed #666;
  border-radius: 8px;
  cursor: pointer;
  color: #333;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.form-upload-label:hover {
  background: #eee;
}

.form-upload-icon {
  width: 20px;
  height: 20px;
}

.form-terms {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  font-size: 14px;
}

.form-submit {
  width: 100%;
  padding: 12px;
  background: var(--primary-color);
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.form-submit:hover {
  background: var(--highlight-primary);
}


.form-div{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* width : 100%; */
    /* margin: 0 auto; */
    gap: 20px;
    margin: 20px;
    
}

.form-left{
    flex: 1 1 200px;
    min-width : 200px;
    max-width: 500px;
    padding: 10px;
}

.form-container{
  flex: 1 1 300px;
  min-width: 300px;
}

.form-fullw{
    width : 100%;
    background: linear-gradient(var(--pale-primary), white);
    display: flex;
    justify-content: center;
}

.footer{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #002d4a;
    color : white;
    padding-bottom: 40px;
    /* font-family: Arial, Helvetica, sans-serif; */
}


.footer-1,
.footer-2,
.footer-3,
.footer-4{
    padding: 10px;
    padding-left: 20px;
    text-wrap: wrap;
}



.footer-1{
    margin-top: 40px;
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
}

.footer-bold{
    font-weight: 500;
}
.footer-2{
        margin-top: 40px;
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
}


.footer-3{    margin-top: 40px;

    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
}


.footer-4{
        margin-top: 40px;

    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
}


/* Why Us */


.whyus{
    width: 100%;
    margin : 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
    gap: 40px;
    /* background: linear-gradient(var(--primary-color), white); */
    
}

.whyus-left{
    max-width: 550px;
    min-width : 310px;
    flex : 1 1 330px;
    /* background-color: #035e9b; */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(var(--pale-primary), white);

}

.whyus-title{
    font-size: 2.3rem;
    font-weight: 600;
    
}
.whyus-points{
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: left;
}

.whyus-point{
    height: 50px;
    width: 50px;
}

.whyus-key{
    font-weight: 600;
    font-size: 1.2rem;
}

.whyus-point img{
    height: 100%;
    object-fit: cover;
    align-self : flex-start;
}

.whyus-right{
    max-width: 550px;
    min-width: 310px;
    flex : 1 1 310px;
    height : auto;
    border-radius : 10px;
    /* overflow : hidden; */
    max-height: 600px;
    position: relative;
}

.whyus-right img{
    /* width: 100%; */
    height: 100%;
    max-width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius : 10px;
    /* transform: translateX(-50%); */
}

.whyus-right::before{
    display: flex;
    justify-content: center;
    align-items: center;
    content : "Quality\A Focus";
    color: var(--primary-color);
    position: absolute;
    top:-10px;
    left: -10px;
    height: 120px;
    width:120px;
    z-index: 1;
    border-radius: 10px;
    background-color: var(--pale-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    white-space: pre-line;   
}

.whyus-right::after{
    display: flex;
    justify-content: center;
    align-items: center;
    content : "Lasting\A Impact";
    color: white;
    /* transform: translate(-50%, -50%); */
    /* margin : 0 auto; */
    position: absolute;
    bottom:-10px;
    right: -10px;
    height: 120px;
    width:120px;
    z-index: 1;
    border-radius: 10px;
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    white-space: pre-line;   
}


/* Lander */
.lander{
    max-width : 100%;
    height: 925px;
    /* position: relative; */
    display: flex;
    flex-direction: column;
    background-image: url("../images/lander.png");
    background-size: cover;
}

.lander-teachers{
    max-width : 100%;
    height: 925px;
    /* position: relative; */
    display: flex;
    flex-direction: column;
    background-image: url("../images/hand_raise2.png");
    background-size: cover;
}

.lander-schools{
    max-width : 100%;
    height: 925px;
    /* position: relative; */
    display: flex;
    flex-direction: column;
    background-image: url("../images/hand_raise3.png");
    background-size: cover;
}

.nav-logo{
    width: 200px;
}

.nav-logo img{
    width: 100%;
    /* aspect-ratio: 1/1; */
}


.lander-nav-wrapper{
    display: flex;
    flex: column;
}
.lander-navbar{
    width : 80%;
    margin: 0 auto;
    padding: 5px 10px;
    /* position: absolute; */
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    /* background-color: #81a8c3; */
    align-items: center;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
    min-width: 700px;

}

.nav-content{
    display: flex;
    flex-direction: row;
    gap: 10px;
    color : white;
}

.nav-mob-content{
    display: none;
    font-size: 1.3rem;
    align-self: center;
}

.nav-mob-view{
    display: none;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    transition: opacity 0.25s ease;
    gap: 10px;
    color: white;
}



@media screen and (width <= 700px){

    .nav-content{
        display: none;
    }
    .nav-mob-content{
        display: block;
    }


    .lander-navbar{
    width : 95%;
    margin: 0 auto;
    padding: 5px 10px;
    /* position: absolute; */
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    /* background-color: #81a8c3; */
    align-items: center;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
    min-width: 300px;

}

}

.lander-main{
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.2vw;
    justify-content: center;
    flex-wrap: wrap;

}


.lander-left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:7px;
    flex: 1 1 450px;
    min-width: 300px;
    max-width: 650px;
    /* font-size: clamp(20px, 400%, 8rem); */
}

.lander-title-teacher{
    /* font-size: 8rem; */
    /* font-size: 800%; */
    max-width: 100%;
    white-space: nowrap; /* prevent breaking into 2 lines */
    font-size: 6rem;
    /* font-size: calc(300% + 8ch); */
    font-weight: 500;
    color: white;
}


.lander-title{
    /* font-size: 8rem; */
    /* font-size: 800%; */
    max-width: 100%;
    white-space: nowrap; /* prevent breaking into 2 lines */
    font-size: 7rem;
    /* font-size: calc(300% + 8ch); */
    font-weight: 500;
    color: white;
}

.lander-description{
    /* margin-top: -35px; */
    /* margin-left: 20px; */
    font-size: 1.5rem;
    color: white;
}

.lander-get-started{
    margin-top: 8px;
    display: inline;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    background-color: white;
    padding : 10px 15px;
    border-radius: 15px;
    /* margin-left: 20px; */
}


.lander-right{
    max-width : 400px;
    flex: 1 1 300px;
    min-width: 300px;
    max-height: 600px;

}

.lander-right img{
    /* max-height: 100%; */
    max-width: 100%;
    /* width: auto; */
    object-fit: cover;
}



@media screen and (max-width : 1050px) {
    .lander-title-teacher{
        font-size : 3.9rem;
    }
    .lander-title {
        font-size: 6rem;
    }

    .lander-get-started,
    .lander-description{
        font-size: 1.3rem;
    }

}

@media screen and (max-width : 940px) {
    .lander-title-teacher{
        font-size: 3rem;
    }
    .lander-title {
        font-size: 4.6rem;
    }

    .lander-get-started,
    .lander-description{
        font-size: 1.2rem;
    }

}


@media screen and (max-width: 807px) {
.lander-title-teacher{
        font-size: 2.2rem;
    }

    .lander-main{
        margin-top: 0px;
    }
    .lander-title {
        font-size: 3rem;
    }
    
    .lander-description{
    /* margin-top: -35px; */
    /* margin-left: 20px; */
    font-size: 1.2rem;
    color: white;
}


.lander-get-started{
    display: inline;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    background-color: white;
    padding : 8px 12px;
    border-radius: 15px;
    /* margin-left: 20px; */
}

}
