*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
  color:white;
  background-color: #ffff;    
    
}
.container{
    padding:15px;
}
/* nav-bar css */
/* header-navbar */
#header-navbar{
    background-color: #3D52A1;
    color:#ffff;
}
nav{
    display:flex;
    align-items: center;
    /* justify-content: space-between; */
    flex-wrap: wrap;
}
nav #logo{
    font-size: 30px;
    margin: 0px 50px;
    font-family: "Kaushan Script", cursive;
    font-weight: 400;
}
nav ul{
    margin-left: 10rem;
}
nav ul li{
    list-style: none;
    display:inline-block;
    margin:20px 30px;
}
nav ul li a{
    text-decoration: none;
    color:white;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 200;
    /* position: relative; */
}
/* browse-mentors btn */
.btn{
    display: inline-block;
    width:fit-content;
    margin-left: 20px;
    border:2px solid #ADBBDA;
    padding:14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color:#ADBBDA;
    background-color: #3D52A1;
    transition: background-color 0.5s;
    box-shadow: 5px 3px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.btn:hover{
    background-color : #ADBBDA;
    color: #3D52A1;
}
.signIn-btn{
    justify-items: end;
}

.hero_section {
    position: relative;
    height: 700px;
    color: white;
    text-align: center;
}

.browse{
    display:flex;
    justify-content: center;
}

.wrapper{
    display: flex;
  }
  .wrapper .static-txt{
    margin-top:6px;
    color:#3D52A1;
    font-size: 50px;
    font-weight: 600;
    font-family: "Adamina", serif;
    padding:3rem;
    text-align: left;
    margin-left: 20px;
  }
  .wrapper .static-txt span{
    font-size: 60px;
  }
  .wrapper .dynamic-txts{
    height: 90px;
    line-height: 90px;
    overflow: hidden;
    font-weight: 600;
  }
  .dynamic-txts li{
    list-style: none;
    color: rgb(15, 9, 54);
    font-size: 60px;
    font-weight: 600;
    position: relative;
    top: 0;
    animation: slide 12s steps(4) infinite;
  }
  @keyframes slide {
    100%{
      top: -360px;
    }
  }
  .dynamic-txts li span{
    position: relative;
    margin: 5px 0;
    line-height: 90px;
  }
  .dynamic-txts li span::after{
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: #ffff;
    border-left: 2px solid #3D52A1;
    animation: typing 3s steps(10) infinite;
  }
  @keyframes typing {
    40%, 60%{
      left: calc(100% + 30px);
    }
    100%{
      left: 0;
    }
  }
  span{
    color:rgb(15, 9, 54);
  }
.wrapper #mentor-btn{
  border-radius: 12px;
}

.brow-animation{
  position: relative;
  display: flex;
}
.landing-img img{
  height:450px;
  width:650px;

}
.landing-img{
  margin-left:0.5rem;
}
/* mentorship facts */

.section-heading{
  color:#3D52A1;
  font-family: "Adamina", serif;
  text-align: left;
  margin: 3rem;
  font-weight: 600;
  margin-left: 4rem;
}
.facts-container{
  height:250px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.facts-box{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  height:200px;
  width:300px;
  color:#120725;
  transition:transform 0.5s,
   background 0.6s;
  background-color:#8eaef3;
  box-shadow: 7px 3px 8px rgba(0, 0, 0,0.2);
}
.facts-box:hover{
  transform: translateY(-15px);
  color:white;
  background-color:#120725;
}
.facts-box:hover .fa-calendar-days,.fa-arrow-up-right-dots,.fa-people-roof{
  color:#ffff;
}
.facts-box:hover .fa-arrow-up-right-dots{
  color:#ffff;
}
.facts-box:hover .fa-people-roof{
  color:#ffff;
}
.facts-box h3{
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding:10px;
}
.fa-calendar-days,.fa-arrow-up-right-dots,.fa-people-roof{
  color:#120725;
  font-size: 50px;
  margin-bottom: 5px;;
}

/* carousel */
/* Carousel Heading */
.hero-txt{
  color:black;
  display:flex;
  justify-content: center;
  font-size:larger;
  font-size: 60px;
}
/* Carousel styles */
@keyframes slide {
100% {
    top: -360px;
}
}

@keyframes typing {
40%, 60% {
    left: calc(100% + 30px);
}
100% {
    left: 0;
}
}

span {
color: rgb(15, 9, 54);
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel {
height: 250px;
margin: auto;
position: relative;
width: 90%;
display: flex;
align-items: center;
justify-content: space-between;
overflow: hidden;
border-radius: 15px;
/* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); */
background-color:#ffff;
}

.hero-carousel {
display: flex;
width: calc(250px * 12);
animation: scroll 30s linear infinite;
}

.hero-carousel:hover {
animation-play-state: paused;
}

@keyframes scroll {
0% {
    transform: translateX(0);
}
100% {
    transform: translateX(calc(-250px * 6));
}
}

.slide {
height: 100px;
width: 250px;
display: flex;
align-items: center;
justify-content: center;
padding: 15px;
perspective: 100px;
transition: transform 0.5s;
   border-radius: 10px;
}

.slide img {
height:300%;
border-radius: 10px;
transition: transform 0.3s ease, box-shadow 0.1s ease; /* Add transition for box-shadow */
filter: brightness(0.8);
}

.slide img:hover {
transform: translateZ(20px) scale(0.9);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5); /* Box-shadow on hover */
}

.carousel::before,
.carousel::after {

height: 100%;
position: absolute;
width: 15%;
z-index: 2;
pointer-events: none;
}

.carousel::before {
left: 0;
top: 0;
}

.carousel::after {
right: 0;
top: 0;
transform: rotateZ(90deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.carousel {
    height: 200px;
}

.slide {
    width: 200px;
}

.hero-carousel {
    width: calc(200px * 12);
}
}
/* Number Counter */
.counters-section {
  display: flex;
  justify-content: space-around;
  padding: 50px 0;
  background-color:#3D52A1;
  text-align: center;
}

.counter-box {
  margin: 20px;
}
.counter-box .fa-people-group,.fa-user-plus,.fa-graduation-cap,.fa-chalkboard-user{
  color:#EDE8F5;
  font-size: 30px;
}
.counter {
  font-size: 48px;
  font-weight: bold;
  color:#8eaef3;
  margin:1rem 0;
}

.counter-box p {
  font-size: 18px;
  color:#EDE8F5;
  font-family: "Poppins", sans-serif;
}


/* Contact Us*/
.row{
  display:flex;
  justify-content: space-between;
  margin:3rem;
}
.contact-left{
  flex-basis: 35%;
  text-align: left;
}
.contact-right{
  flex-basis: 60%;
}
.contact-left p{
  margin-top: 30px;
  color: #120725;
}
.contact-left p i{
  margin-right: 15px;
  color:#3D52A1;
  font-size: 25px;
}
.contact-left .sub-title{
  margin: 0;
}
.contact-para{
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.social-icons a{
  text-decoration: none;
  font-size: 30px;
  margin-right: 15px;
  color:#ababab;
  display: inline-block;
  transition: transform 0.5s;
}
.social-icons a:hover{
  color:#6EACDA;
  transform: translateY(-5px);
}

.contact-right form{
  width:100%;
}
form input,form textarea{
  width:100%;
  border:0;
  outline: none;
  background-color:#EDE8F5;
  padding: 15px;
  margin: 15px 0;
  border-radius: 5px;
  color:white;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}
form .btn2{
  padding:14px 60px;
  font-size: 18px;
  margin-top: 20px;
  cursor:pointer;
}

/* Footer */
.footer {
  background-color:#EDE8F5;
  color:#3D52A1;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  flex-wrap: wrap; 
}

.footer-row {
  flex: 1;
  min-width: 220px;
  margin-bottom: 20px;
}

.footer-row h4 {
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.footer-row p, 
.footer-row ul {
  font-size: 15px;
  margin: 0;
  font-family: "Asar", serif;
}

.footer-row ul {
  list-style: none;
  padding: 0;
}

.footer-row ul li {
  margin-bottom: 10px;
}

.footer-row ul li a {
  color:#3D52A1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-row ul li a:hover {
  color: #f39c12;
}

/* Social Media Icons */
.footer-social{
  display: flex;
  flex-direction: column;
  gap:1rem;
}
.footer-social a {
  display: inline-block;
  margin-right: 15px;
  text-decoration: none;
  color: #3D52A1;
}

/* Bottom Section of Footer */
.footer-bottom {
  background-color:#EDE8F5;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}

.footer-bottom p {
  font-size: 13px;
  margin: 0;
}

/* Responsive Footer for Small Screens */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column; /* Stacks the content vertically on smaller screens */
      text-align: center;
  }

  .footer-social {
      margin-top: 10px;
  }
}

