@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');

* {
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary:#004aad;
  --light: #F0FBFC;
  --light: #f0e4de;
  --dark:#f69050;
}
html {
  scroll-behavior: smooth;
  
}

body {
  background-color: white ;
  
}


header {
  background-color:  white;
  position: fixed;
  top: 0;
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.items {
  user-select: none;
  height: 65px;
  width: 500px;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-shadow: 1px 1px 2px black;
  font-weight: 900;
  letter-spacing: 2px;
}

.items img {
  margin: 0 10px 0 5px;
  height: 76px;
  width: 80px;
  z-index: 1001;
}

.items .cap {
  position: absolute;
  top: -2.5px;         /* Adjust to position above "S" */
  margin-left:5.4rem;
  height: 1.5rem;
  width: 1.5rem;
  z-index: 999;       /* Place cap image behind the text */
}

.items .l1 {
  margin-left: 0.1rem;
  color: rgb(23, 23, 160);
  font-size: 42px;
  position: relative;
  top: -8px;  /* Adjust this value to control the downward shift */
}

.items .l2{
  font-weight: 0;
  position: absolute;
  font-size:75px;
  top:-0.65rem;
  margin-left:6.8rem;
  color: #b48415;
}

.items .l5 {
  margin-left: 1.7rem;
  color: rgb(23, 23, 160);
  font-size: 42px;
  position: relative;
  top: -8px;  /* Adjust this value to control the downward shift */
}



.items .symbol {
  left:1.8rem;
  font-size: 35px;
  color: rgb(23, 23, 160);
  font-weight: 900;
  position: relative;
  top:-7px;  /* Adjust this value as needed */
}


.items .np {
  position: absolute;
  letter-spacing: 3.5px;
  top:2.85rem;
  margin-left:10rem;
  z-index: 1000;
  color: #b48415;
  font-size: 25px;
}

.items .wifi{
  color:black;
  top:0.1rem;
  margin-left:-9px;
  font-size:0.7rem;
  position: absolute;
  z-index: 999; 
}

nav ul {
  display: flex;
  list-style: none;
  margin-top: 18px;
  margin-right: 20px;
}

.menu-toggle {
  display: none;
}
nav ul li {
  
  margin: auto;
}




nav ul li a {
  color: #004aad;
  padding: 10px;
  font-size: 19px;
  font-weight: 1000;
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: none;
  background-color:  #004aad;
  color:   white;
}

#progress {
  position: fixed;
  bottom: 30px;
  left: 8px;
  height: 45px;
  width: 45px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 10000;
}
#progress-value {
  display: block;
  height: calc(100% - 10px);
  width: calc(100% - 10px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  color: #001a2e;
}
/*** Spinner ***/
#spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  display: flex;
  background-color: white;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  z-index: 9999; /* To make sure it stays on top */
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
#spinner i{
  font-size: 4rem;
  color:#004aad;
}


.course-container {
  margin-top:-1.5rem;
  margin-left:1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px; /* Adds space between the sections */
}

.first, .second {
  flex: 1;
}

@keyframes fadeInDown {
  0% {
      opacity: 0;
      transform: translateY(-100px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.second {
  animation: fadeInDown 1s ease-in-out;
  max-width: 30%; /* Adjust width as needed for the second section */
}
.second .fee{
  display: inline;
  background-color: var(--primary);
  color:white;
  border-radius: 50%;
}
.intro h2,.overview h2,.curri .curri-head{
  margin-top:2rem;
  font-weight: 800;
  padding:1rem 1rem 0 1rem;
}
.intro p,.overview p,.curri p{
  text-align: justify;
  font-size: 1rem;
  padding:0 1rem;
}
.badge{
  font-size: 15px;
}

.first .highlight small{
  padding:0 3rem;
}
.curri ul li {
    list-style-type: none;
}

.curri ul li a {
    font-size: 25px;
    color: #4e4e4e !important;
    font-weight: 500;
}

.curri ul li a.active {
    color: #f69050 !important;
}

.curri ul li a:hover {
    color: #f69050 !important;
}

.third{
  max-width:25%;
}
.badge{
  background-color: var(--dark);
}


.buttons a{
  background-color: var(--dark);
  border: none;
  color:white;
}

.buttons:hover a{
  background-color: white;
  border:1px solid var(--dark);
  color: var(--dark);
}

.buttons a{
  font-size: 1.5rem;
}

.button i{
  font-size: 1.5rem;
  color: var(--dark);
}
.button a{
  color: var(--primary);
  text-decoration: none;
  font-size:1rem;
}

.button:hover{
  text-decoration: underline;
}

.button:active{
  transform: scale(1.05);
}

.teacher{
  padding:1.5rem;
}


.image-div {
  display: flex;
  gap: 10px; /* Space between the image and profile section */
  align-items: center; /* Aligns image and profile vertically */
}

.img {
  flex-shrink: 0; /* Prevents the image from shrinking */
}

.profile {
  display: flex;
  flex-direction: column;
}


.description{
  margin-top:1.5rem;
  text-align: justify;
}

.second{
  padding:0 1.5rem;
}
.image-div .img img{
  height: 150px;
  width:150px;
}
/*end*/

/*end*/
@keyframes phone-ring {
  0% { transform: rotate(0); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  50% { transform: rotate(0); }
  100% { transform: rotate(0); }
}
#whatsapp-link i {
  position: fixed;
  animation: phone-ring 2s infinite;
  right: 15px;
  bottom: 20px;
  height:47px;
  width:48px;
  text-align:center;
  border-radius:50%;
  background: #25D366;
  color: white;
  font-size: 48px;
  z-index: 999;
  text-decoration: none;
}


#whatsapp-link i:hover {
  background-color: #20b455;
}
  
  footer{
    
    bottom: 0;
    width: 100%;
    height: 50px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:10px;
    
  }
  footer p{
    color: #004aad;
   font-size: larger;
   font-weight: bolder;
  
  }


  @media (max-width: 1100px) {
    .first .highlight small{
      padding:0 1.2rem;
    }
    .list p{
      font-size:0.98rem;
    }
    .image img{
      height:150px;
      width:200px;
    }
    #whatsapp-link i {
      height:42px;
      width:40px;
      font-size: 43px;
    }
  }
  

@media (max-width: 900px) {
  nav {
    color:   #004aad;
    width: 300px;
    height: 100%;
    background-color: #002f66;
    position: fixed;
    top: 55px;
    right: -430px; /* Hide the menu off the screen */
    transition: right 0.4s ease;
    z-index: 1100; /* Ensure it floats above other elements */
    margin-top: 20px;
  }
  
  nav ul {
    padding-left: 0;
    margin-top: 0;
    width:100%;
    display: flex;
    flex-direction: column;
  }
  
  nav ul li {
    padding:35px 5px 3px 5px;
    margin: 0;

  }
 
  
  nav ul li a {
    width:100%;
    margin:50px 10px 50px 10px;
    padding: 0;
    color:white;
    font-size: 25px;
  }
  
  
  
  
  nav ul li a:hover{
    margin-left:-2px;
    padding:20px 270px 20px 10px;
    color:   #004aad;
    background-color:  white;
  }
  

  
  /* Hamburger icon */
  .menu-toggle {
    display: flex;
    font-weight: 800;
    color: #002f66;
    font-size: 35px;
    cursor: pointer;
    position: fixed;
    top: 7px;
    right: 8px;
    z-index: 1001; 
  }
  
  /* Class to show the nav */
  nav.active {
    right: 0; 
  }
 
  .items {
      height:65px;
      width:550px;
  }
  
  .items img{
      margin-right:0;
  }
  
  .items p {
      padding-left: 0;
      padding-bottom: 2px;
      color: rgb(0, 0, 0);
      font-size: 36px;
      font-weight: 600;
      margin: 8px 0;
      text-shadow: 2px 3px 4px black;
  }
  .items p span{
      font-size:47px;
      font-weight:900;
  }
  

  
  .course-container {
    gap:5px;
  }
  .first .highlight small{
    padding:0 1rem;
  }
  
  .second {
    max-width: 40%;
  }

  .image img{
    height:180px;
    width:200px;
  }
   
  .buttons a{
    font-size:1rem;
  }
  
  .list p{
    font-size:0.95rem;
  }

  .buttons a,.button i{
    font-size: 1rem;
  }

  .intro h2,.overview h2,.curri .curri-head{
    font-size:1.7rem;
  }

 
}


@media (max-width: 768px) {

  
  .course-container{
    display: block;
  }

  .second{
    animation: fadeInUp 1s ease-in-out;
    max-width:100%;
  }
  
  @keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
  .image img{
    height:auto;
    width:100%;
  }

  .buttons a{
    font-size:1.5rem;
  }
  
  .list p{
    font-size:1.3rem;
  }

  .buttons a,.button i{
    font-size: 1.5rem;
  }

  
  /*end*/
  #whatsapp-link i {
    height:39px;
    width:38px;
    font-size: 40px;
  }
   
    
    
  footer{
    height: 50px;
    padding: 1px 0;

  }
  footer p{
    color: #004aad;
    font-size: 20px;
    font-weight: bolder;

  }
  
}


@media  (max-width: 640px) {
    
  nav {
      width: 250px;
  }
  
  
  .menu-toggle {
      top: 13px;
      font-size: 30px;
  }   
   
  #progress {
    height: 40px;
    width: 40px;
  }
  #progress-value {
    font-size:25px
  }

  footer{
      height: 35px;

  }
  footer p{
      font-size: 18px;

 }    

}



@media  (max-width: 475px) {

  header {
    height:54px;
}

.items img {
    margin: 0 10px 0 5px;
    height: 50px;
    width: 55px;
}

.items .cap {
    top: -2.5px;         /* Adjust to position above "S" */
    margin-left:3.8rem;
    height: 1.3rem;
    width: 1.3rem;
}

.items .l1 {
    margin-left: 0.1rem;
    font-size: 32px;
    top: -5px;  /* Adjust this value to control the downward shift */
}

.items .l2{
    font-weight: 0;
    position: absolute;
    font-size:56px;
    top:-0.6rem;
    margin-left:5.1rem;
}

.items .l5 {
    margin-left: 1.3rem;
    font-size: 32px;
    top: -5px;  /* Adjust this value to control the downward shift */
}



.items .symbol {
    left:1.3rem;
    font-size: 26px;
    top:-5px;  /* Adjust this value as needed */
}


.items .np {
    letter-spacing: 3.5px;
    top:2rem;
    margin-left:7.6rem;
    font-size: 18px;
}

.items .wifi{
    top:0.2rem;
    margin-left:-6px;
    font-size:0.3rem;
    
}


nav {
top:34px;
width: 180px;
}
nav ul li {
  padding:20px 10px 5px 5px;
  margin: 0;

}

  
nav ul li a {

  width:100%;
  margin:50px 10px 50px 10px;
  padding: 0;
  color:white;
  font-size: 20px;
}


nav ul li a:hover{
  margin-left:-2px;
  padding:12px 150px 12px 10px;
  color:   #004aad;
  background-color:  white;
}
.menu-toggle{
  font-size: 25px;
}
.course-container{
  margin-left: 0;
}

.intro h2,.overview h2,.curri .curri-head{
  font-size: 1.3rem;
}

.intro p,.overview p,.curri p{
  font-size: 0.9rem;
}

.first .highlight{
  margin-left:1rem;
}
.first .highlight small{
  font-size:0.7rem;
  padding:0 ;
}
.badge {
  font-size: 0.8rem;
}
.image-div .img img{
  height: 130px;
  width:130px;
}

footer{
  height: 35px;
  padding: 1px 0;

}
footer p{
  color: #004aad;
  font-size: 15px;
  font-weight: bolder;
}

#whatsapp-link i {
  height:36px;
  width:37px;
  font-size: 37px;
}
}


@media (max-width: 368px){
    
  header {
    height:51px;
}

.items img {
    margin: 1px 10px 0 5px;
    height: 50px;
    width: 55px;
}

.items .cap {
    top: -2.5px;         /* Adjust to position above "S" */
    margin-left:3.8rem;
    height: 1.18rem;
    width: 1.18rem;
}

.items .l1 {
    margin-left: 0.1rem;
    font-size: 30px;
    top: -5px;  /* Adjust this value to control the downward shift */
}

.items .l2{
    font-weight: 0;
    position: absolute;
    font-size:53px;
    top:-0.6rem;
    margin-left:5.3rem;
}

.items .l5 {
    margin-left: 1.3rem;
    font-size: 30px;
    top: -5px;  /* Adjust this value to control the downward shift */
}



.items .symbol {
    left:1.4rem;
    font-size: 23px;
    top:-5px;  /* Adjust this value as needed */
}


.items .np {
  letter-spacing: 3.5px;
  top:2rem;
  margin-left:7.7rem;
  font-size: 15px;
}

.items .wifi{
  top:0.2rem;
  margin-left:-7px;
  font-size:0.4rem;  
}


nav {
top:31px;
width: 150px;
}
  nav ul li a {
      font-size:18px;
  }

  .menu-toggle{
      right:15px;
      top:10px;
      font-size: 25px;
      font-weight:1000;
  }

  #progress {
    height: 30px;
    width: 30px;
  }
  #progress-value {
    font-size:20px
  }
  
  .image-div .img img{
    height:140px;
    width:110px;
  }
  .list p{
    font-size:1rem;
  }
  
  footer{
    height: 50px;

}
  footer p{
      color: #004aad;
      font-size: 10px;
      font-weight: bolder;
  }
  #whatsapp-link i {
    height:34px;
    width:35px;
    font-size: 35px;
  }
  
}
