@import url('https://fonts.googleapis.com/css2?family=Poppins:wgt@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');
body{
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Roboto Slab', serif;
}

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

h1{
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(35,35,85);
}

span{
    font-size: .9rem;
    color:#757373;
}
h2{
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(35,35,85);
}

span{
    font-size: .9rem;
    color:#757373;
}

h6{
    font-size: 1.1rem;
    color: rgb(24,24,49);
}

/*navigation*/
nav{
   display:flex;
   flex-direction: row;
   justify-content: space-between; /*space-between */
   font-family: 'Roboto Slab', serif;
   font-weight: 600;
   padding: 1vw 8vw; /*top and bottom is 1 view point , left and right is 8viewpoint*/
   /* border:2px solid; */
   align-items: center;
   box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
   position: fixed;
   width: 100%;
   background-color: white;
   z-index: 999;
}

nav img{
    width: 150px;
    cursor: pointer;
}

#menu-btn{
  width: 30px;
  height: 30px;
  display: none;
}

#menu-close{
 display: none;
}

nav .navigation{
  display: flex;
}

nav .navigation ul{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /*border:2px solid;*/
    /* margin-top: 10px; */
}

nav .navigation ul li{
    list-style: none;
    margin-left: 30px;
}

nav .navigation ul li a{
    text-decoration: none;
    color:rgb(21,21,100);
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

nav .navigation ul li a.active,
nav .navigation ul li a:hover{
    color: #FDC93B;
}





/* Home */

#home{
    /* background-image:linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url("images/back.jpg"); */
    background-image:linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url("images/network1.webp");
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

#home-contact{
  width: 100%;
  height: 17vh;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  font-size: 13.5px;
  text-align: center;
  padding-bottom: 4px;
  padding-left: 4rem;
  color: rgb(21, 21, 100);
  box-shadow:inset 2px 2px 10px rgba(0,0,0,0.15);
  position: fixed;
  background-color: rgb(21, 21, 100); 
  color: white;
  
}
#home-contact .social{
  display: flex;
 
  /* margin-top:5rem; */
}
#home-contact .social i{
  margin-left: 25px;
}
#home-contact div i{
  /* background-color: #242424;
  padding: 10px;
  border-radius: 30px; */
  /* color: rgb(21, 21, 100); */
  color: white;
}
#home-contact div i:hover{
  transform: scale(1.1);
  transition: .3s ease;
  color: #FDC93B;
  animation: tilt-shaking 0.3s linear infinite;
}

@keyframes tilt-shaking {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(0eg); }
  75% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}


#course-inner{
  /* background-image:linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url("images/back.jpg"); */
  background-image:linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url("images/network1.webp");
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 40px;
}

#course-inner h2{
  color: white;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

#home h2{
    color: white;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

#home p{
    width: 50%;
    color: white;
    font-size: 0.9rem;
    line-height: 25px;
}

#home a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: white;
    font-weight: 600;
    border-radius: 5px;
}

#home button{
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: white;
  font-weight: 600;
  border-radius: 5px;
}

#home .btn{
   margin-top: 30px;
}

#home a.blue{
   color: #fff;
   background: rgb(21,21,100);
   transition: 0.3s ease;
}

#home a.blue:hover{
    background: #fff;
    color: rgb(21,21,100);
 }

 #home a.yellow{
    color: #fff;
    background: #FDC93B;
    transition: 0.3s ease;
 }
 
 #home a.yellow:hover{
     background: #fff;
     color: rgb(21,21,100);
     
  }

  #home .btn .yellow{
    color: #fff;
    background: #FDC93B;
    transition: 0.3s ease;
 }
 
 #home .btn .yellow:hover{
     background: #fff;
     color: rgb(21,21,100);
     
  }


  /* features */

  #features{
    padding:5vw 8vw 8vw 8vw;
    text-align: center;
    background-color:#F5F5F5;
    
    
  }

  #features .fea-base{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    grid-gap:2rem;
    margin-top: 50px;
    row-gap: 2rem; 

  }

  #features1{
    padding:5vw 8vw 8vw 8vw;
    text-align: center;
    background-color:#F5F5F5;
    align-items: center;
    
  }

  #features1 .fea-base1{
    display: flex;
    /* border:2px solid red; */
    padding: 5vh;
    align-items: stretch;
    background-color: #fff;
    margin-top: 40px;
    border-radius: 20px;
    box-shadow: 0px 8px 6px 1px rgba(0,0,0,0.15);
   
  }

  #features1 .fea-base1 .fea-box1{
    /* border: 2px solid green; */
    line-height: 30px;
    text-align: start;
    text-justify: inter-word;
    padding: 30px;
    flex: 1;
    height: 500px;
    
  }

  #features1 .fea-base1 .fea-box1 img{
    width: 100%; /* Ensures the image resizes horizontally */
  height: 100%; /* Matches the height of the paragraph */
  object-fit: cover; /* Ensures the image maintains its aspect ratio */
  border-radius: 5px; /* Optional: Adds rounded corners */
  }

  #features1 .fea-base1 .fea-box1 p{
    padding-top: 30px;
    padding-bottom: 25px;
    
  }

  #features1 .fea-base1 .fea-box1 a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: white;
    font-weight: 600;
    border-radius: 5px;
    
}

  #features1 .fea-base1 .fea-box1 a.yellow{
    color: #fff;
    background: #FDC93B;
    transition: 0.3s ease;
  }

  #features1 .fea-base1 .fea-box1 a.yellow:hover{
    background: rgb(21,21,100);
    color:#fff;
    
  }
  /* #features1 .fea-base1{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    grid-gap:2rem;
    margin-top: 50px;
    row-gap: 2rem; 
    

  }
  #features1 .fea-box1{
    position: relative;
    width: 400px;
    height: 400px;
    overflow: hidden;
    border:1px solid ;
    padding: 15px 10px;
    line-height: 35px;
  } */

  #features .fea-box{
    /* background-color:#F9F9FF ; */
    /* border:2px solid; */
    position: relative;
    width: 400px;
    height: 200px;
    overflow: hidden;
    border:1px solid #fff;
    text-align: center;
    padding: 15px 10px;
    box-shadow: 0px 8px 6px -5px rgba(0,0,0,0.15);
    border-radius: 4px;
    line-height: 35px;
    transition: transform 0.8s ease;
  }

  #features .fea-box .content{
    position: relative;
    z-index: 2;
    color: #333;
    padding: 20px;
  }

  #features .fea-box .cover{
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:  rgb(44,44,80);
    transition: top 0.3s ease;
    z-index: 1;
  }

  #features .fea-box i{
    font-size: 2.3rem;
    color: rgb(44,44,80);
  }

  

  /* Hover effect */
  #features .fea-box:hover .cover {
  top: 0;
 }

/* Optional: Add hover scale effect */
#features .fea-box:hover {
  transform: scale(1.05);
}


  

  #features .fea-box h3{
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(46,46,59);
    padding: 13px 0 7px 0;
  }

  #features .fea-box p{
    font-size: 1rem;
    font-weight: 400;
    color: rgb(70,70,87);
     
  }

  

  #features .fea-box:hover i {
      color: white;
  }

  #features .fea-box:hover h3 {
      color: white;
  }

  #features .fea-box:hover p {
      color: white;
  }

  /* Counter Section */

  #counter-section{
    padding: 6vw 10vw 6vw 10vw;
    text-align: center;
    background-color: #F5F5F5;
    /* border:2px solid; */
    
  }

  #counter-section .counter-base{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap:3rem;
    margin-top: 50px;
    
  
  }

  #counter-section .counter-base .counter-box{
    background: #fff;
    padding: 30px 10px;
    /* box-shadow: 0px 2px 10px rgba(0,0,0,0.15); */
    box-shadow: 0px 8px 6px -5px rgba(0,0,0,0.15);
    
    border-radius:9px;
    transition: 0.5s ease;
    

  }
  #counter-section .counter-base .counter-box:hover{
    box-shadow: 0px 8px 6px 1px rgba(0,0,0,0.15);
   
    transition: 0.5s ease;
    

  }

  #counter-section .counter-box .counter-content{
    position: relative;
    z-index: 2;
    color: #333;
    padding: 10px;
    /* border:2px solid red; */
    border-radius: 10px;
    
   
  }

  #counter-section .counter-box #counter-image{
    width: 70px;
    height: 70px;
  }
  #counter-section .counter-box h3{
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(46,46,59);
    padding: 13px 15px 7px 0;
  }

  #counter-section .counter-box p{
    font-size: 1rem;
    font-weight: 400;
    color: rgb(70,70,87);
     
  }

  /* courses */

  #course{
    padding: 8vw 8vw 8vw 8vw;
    text-align: center;
  }

  #course .course-box{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    grid-gap:1rem;
    margin-top: 50px;
  }
  #course .courses{
    text-align: start;
    background-color: #f9f9f9;
    height: 100%;
    position: relative;
  }

  #course .courses img{
    width: 100%;
    height: 60%;
    background-size: cover;
    background-position: center;

  }

  #course .courses .details{
    padding: 15px 15px 0 15px;
  }

  #course .courses .details i{
    color: #FDC93B;
    font-size: .9rem;
  }

  #course .courses .cost
  {
    background-color: rgb(74,74,136);
    color: #fff;
    line-height: 70px;
    width: 70px;
    height: 70px;
    text-align: center;
    border-radius: 50%;
    position:absolute; /*to move inside div */
    right:15px;
    bottom:75px; /*100*/

  }

  #registration{
    padding: 6vw 8vw 6vw 8vw;
     
    /* background-image: linear-gradient(rgba(99,112,168,0.5),rgba(81,91,233,0.5)),url('images/signup.jpg'); */
    /* background-image: linear-gradient(rgba(31, 44, 102, 0.5),rgba(74, 98, 134, 0.5)),url('images/datacenter.webp'); */
    background-color:rgb(35,35,85);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    text-align: justify;
    justify-content: space-between;
    word-wrap: break-word;
    
    align-items: center;
    line-height: 60px;
  }

  #registration .reminder{
    color: #fff;
    /* padding-right: 3rem; */
     

  }

  #registration .reminder hr {
   width: 75%;
    /* padding-right: 3rem; */
     

  }

  #registration .reminder h1{
    color: #fff;
    margin-bottom: 20px;
    text-align: start;
  }
  #registration .reminder i{
    
    margin-right: 15px;
   
  }

  #registration .reminder a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: white;
    font-weight: 600;
    border-radius: 5px;
  }
  #registration .reminder a.yellow{
    color: #fff;
    background: #FDC93B;
    transition: 0.3s ease;
 }
 
 #registration .reminder a.yellow:hover{
     background: #fff;
     color: rgb(21,21,100);
     
  }
 
/* 
  #registration .reminder .time{
    display: flex;
    margin-top: 40px;


  }

  #registration .reminder .time .date{
    text-align: center;
    padding: 13px 33px;
    background-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
    border-radius: 10px;
    margin: 0 5px 10px 5px;
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 1.1rem;
    font-weight: 600;
  } */

  #registration .form{
    background-color: #F4F7FA;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 40px;
    align-items: center;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
  }

  #registration .form input{

    margin: 15px 0;
    /* padding: 15px 10px; */
    padding: .469rem 1rem;
        
    line-height: 1.3;
    font-size: inherit;
    font-weight: 400;

    width: 100%;
    background-color: #F5F5F5;
    border: 1px solid #e9e9ea;
    outline: none;
    letter-spacing: 0.5px;
    box-shadow: none;
    background-image: linear-gradient(#242424, #242424), linear-gradient(#e9e9ea, #e9e9ea);
    background-size: 0 1px, 100% 1px;
    background-repeat: no-repeat;
    background-position: center bottom, center calc(100% - -1px);
  }
  

  #registration .form input::placeholder
  {
    color:#413c3c;
    font-weight: 500;
    font-size: 0.9rem;
    
    
  }
  #registration .form .btn{
    margin-top: 20px;
   
  }
  #registration .form a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 55px;
    
    background-color: white;
    font-weight: 600;
    border-radius: 5px;
   
  }
  #registration .form a.yellow{
    color: #fff;
    background: #FDC93B;
    transition: 0.3s ease;
 }
 
 #registration .form a.yellow:hover{
     background: #fff;
     color: rgb(21,21,100);
     
  }

  #experts{
    padding: 8vw 8vw 8vw 8vw;
    text-align: center;
    background-color:#F5F5F5;
    
  }

  #experts .expert-box{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap:3rem;
    margin-top: 50px;
    /* border:2px solid; */
  }

  #experts .expert-box .profile{
    background: #fafaf1;
    padding: 30px 10px;
    /* box-shadow: 0px 2px 10px rgba(0,0,0,0.15); */
    box-shadow: 0px 8px 6px -5px rgba(0,0,0,0.15);
    border-radius:9px;
    transition: 0.5s ease;
  }

  #experts .expert-box .profile:hover{
    
    box-shadow: 0px 8px 6px 1px rgba(0,0,0,0.15);
    
  }

  .pro-links{
    margin-top:10px;
  }

  .pro-links i{
    padding: 10px 13px;
    border: 1px solid rgb(21,21,100);
    cursor: pointer;
    
    
  }
  .pro-links i:hover{
    color: #fafaf1;
    background: rgb(21,21,100);
    cursor: pointer;
    
    transition: 0.9s ease;
  }

  footer{
    padding:3vw; /*7vw*/
    background-color: #101C32;
    display:flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  footer .footer-col{
    padding-bottom: 40px;
  }

  footer .footer-col i{
    color: #fff;
    margin-right:3px;
  }


  footer h3{
    color: rgb(241,240,245);
    font-weight: 600;
    padding-bottom: 20px;
  }

  footer li{
    list-style: none;
    color: #7b838a;
    padding: 10px 0;
    font-size: 15px;
    cursor: pointer;
  }

  footer li:hover{
    color: rgb(241,240,245);
  }
  footer p{
    color: #7b838a;
  }


  footer .subscribe{
    margin-top: 20px;
  }

  footer input{
    width: 220px;
    padding: 12px 15px;
    background:#334F63;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
  }

  footer .subscribe a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 12px 15px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
  }

  footer .subscribe a.yellow{
    color: #fff;
    background: #FDC93B;
    transform: 0.3s ease;
  }

  footer .subscribe a.yellow:hover{
    color: rgb(21,21,100);
    background: #fff;
  }

  footer .copyright{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
  }

  footer .copyright p{
    color:#fff;
  }
  footer .copyright .pro-links{
    margin-top: 0px;
  }

  footer .copyright .pro-links i{
    color: #fff;
    background-color: #5f7185;
    cursor: pointer;
    
  }
  footer .copyright .pro-links i:hover{
    color: #2c2c2c;
    background: #FDC93B;
    cursor: pointer;
    transition: 0.9s ease;
  }

  /* About */

  #about-home{
    /* background-image:linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url("images/back.jpg"); */
    background-image:linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url("images/datacenter1.jpg");
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

#about-home h2{
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

#about-container{
  display: flex;
  align-items: center;
  padding: 8vw 8vw 2vw 8vw;
}

#about-container .about-img{
  width: 60%;
  padding-right:60px;
 

}

#about-container .about-img img{
  width: 100%;
 

}

#about-container .about-text{
  width: 40%;
  
}

#about-container .about-text h2{
  color:#29303B;
  padding-bottom: 15px;
}

#about-container .about-text p{
  color:#29303B;
  font-weight: 300;
}

#about-container .about-text .about-fe{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
}


#about-container .about-text .about-fe img{
  width: 50px;
  background-size: cover;
  background-position: center;
  margin-right: 20px;
}

#about-container .about-text .about-fe .fe-text{
  width: 90%;
}

#about-container .about-text .about-fe .fe-text h5{
  font-size: 16px;
  color: #29303B;
}


#trust{
  text-align: center;
  padding: 8vw;
}

#trust .trust-img {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#trust .trust-img img{
  width: 90px;
  height: auto;
}

  /* contact */

  #contact{
    padding: 8vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  #contact .getin{
    width: 350px;;
  }

  #contact .getin h2{

    color: #2c234d;
    font-size: 30px;
    font-weight: 800;
    line-height: .8;
    margin-bottom: 16px;
  }

  #contact .getin p{
    color:#686875;
    line-height: 24px;
    margin-bottom: 33px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e4ad;

  }
  #contact .getin h3{

    color: #2c234d;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 15px;
  }

  #contact .getin .getin-details div{
    display: flex;
  }

  #contact .getin .getin-details div .get{
    font-size: 16px;
    line-height: 22px;
    color: #5838fc;
    margin-right: 20px;

  }

  #contact .getin .getin-details div p{
    font-size: 14px;
    border-bottom: none;
    line-height: 22px;
    margin-bottom: 15px;
    text-align: justify;
  }

  #contact .getin .getin-details .pro-links i{
    margin-right: 8px;
  }

  #contact .form{
    width: 40%;
    background: #f7f6fa;
    padding: 40px;
    border-radius: 10px;
  }
  #contact .maps{
    width: 30%;
    height: 35rem;
    background: #f7f6fa;
    padding: 40px;
    border-radius: 10px;
  }
  #contact .form h4{
    font-size: 24px;
    color: #2c234d;
    line-height: 30px;
    margin-bottom: 8px;
  }

  #contact .form p{
    color: #686875;
    line-height: 24px;
    padding-bottom: 25px;
  }

  #contact .form .form-row{
     display: flex;
     justify-content: space-between;
     width: 100%;
  }

  #contact .form .form-row input{
    width: 48%;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    border:none;
    background: #fff;
    color: #7e7c87;
    outline: none;
    padding: 20px 30px;
    margin-bottom: 20px;
  }
  #contact .form .form-col input{
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    border:none;
    background: #fff;
    color: #7e7c87;
    outline: none;
    padding: 20px 30px;
    margin-bottom: 20px;
  }

  #contact .form .form-col textarea{
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    border:none;
    background: #fff;
    color: #7e7c87;
    outline: none;
    padding: 20px 30px;
    margin-bottom: 20px;
  }

  #contact .form button{
    font-size: .9rem;
    padding: 13px 25px;
    background: rgb(21,21,100);
    border-radius: 5px;
    outline: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
  }

  .address-barcode {
    display: flex;
    justify-content: center;
    height: 100%; /* Adjust based on the container's height */
  }

  #contact .maps .address-barcode img{
    height: 200px;
  }

  #contact .maps .address-location .map-location{
    height:250px;
  }

  /* Testimonal */

  .card {
    width: 300px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
   }

.card-header {
    padding: 20px;
    background-color: rgb(78, 78, 162);
    color: #fff;
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}



.card-body {
    padding: 20px;
}

.card-text {
    margin: 0 0 10px;
    line-height: 1.6;
    word-wrap: break-word;
}

 .testimonal{
  display: grid;
  place-items: center; /* Centers content inside div2 */
  justify-self: center; /* Centers div2 horizontally in its grid cell */
  align-self: center; /* Centers div2 vertically in its grid cell */
  padding: 10px;
   
 }

 #testimonals{
  padding:5vw 8vw 8vw 8vw;
  text-align: center;
  background-color:#F5F5F5;
  
  
}

#testimonals .testimonal-base .card:hover {
  background-color: rgb(78, 78, 162);;
  
  color: white;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

#testimonals .testimonal-base .card:hover .card-header {
  padding: 20px;
  color: rgb(21, 21, 100);
  background-color: #fff;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}






 #testimonals .testimonal-base{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  grid-gap:2rem;
  margin-top: 50px;
  row-gap: 2rem; 
  padding: 1rem;

}

/* Gallery */
#gallery{
  padding:5vw 8vw 8vw 8vw;
  text-align: center;
  background-color:#F5F5F5;
  align-items: center;
  
}
#gallery .gallery-base{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  grid-gap:2rem;
  margin-top: 50px;
  row-gap: 2rem; 

}



#gallery .gallery-base .gallery-box{
  /* border: 2px solid green;  */
  flex: 1;
  
  
}

 #gallery .gallery-base .gallery-box img{
  width: 300px;
  height: 200px;
  padding: 8px;
  box-shadow: 0px 8px 6px 1px rgba(0,0,0,0.15);
 }

 #gallery .gallery-base .gallery-box img:hover{
  transition:  transform .5s;
  
  transform: rotate(6deg);
  
  
 }



/* Blog */
#blog{
  padding:5vw 8vw 8vw 8vw;
  text-align: center;
  background-color:#F5F5F5;
  align-items: center;
  
}
#blog .blog-base{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  grid-gap:5rem;
  margin-top: 50px;
  row-gap: 2rem; 
  /* border:2px solid; */
  padding: 35px;

}

#blog .blog-base .blog-box{
  /* border: 2px solid black; */
  border-radius: 10px ;
  width: 100%; 
  box-shadow: 0px 8px 6px 1px rgba(0,0,0,0.15);
  /* flex: 1; */ 
}

#blog .blog-base .blog-box:hover{
  transition:  transform .5s;
  
  transform: rotate(2deg);
  animation-name: wobble-vertical-on-hover;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

#blog .blog-base .blog-box .blog-img{
  width: 100%;
  height: auto;
  border-radius: 10px;
  background-color: #fff;
  padding: 15px;
}
#blog .blog-base .blog-box .blog-img img{
  width: 100%;
  height: 250px;
  border-radius: 10px;
}

#blog .blog-base .blog-box .blog-text{
  text-align: start;
  padding-left: 15px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 20px;
}
#blog .blog-base .blog-box .blog-text p{
  margin-top:10px;
  font-size: 12px;
  line-height: 1.5rem;
  text-align: center;
  text-align: start;
}
#blog .blog-base .blog-box .blog-text a{
  text-decoration: none;
  color: rgb(21, 21, 100);
}
#blog .blog-base .blog-box .blog-text #show_more{
  color:rgb(21, 21, 100);
  font-weight: 600;
  padding:15px;
  font-size: 10px;
  
}
#blog .blog-base .blog-box .blog-text #show_more i{
  padding-left:6px;
  transition: .6s ease;
  cursor: pointer;
  
}
#blog .blog-base .blog-box .blog-text #show_more:hover {
  color:#FDC93B;
  font-size: 10px;
}
#blog .blog-base .blog-box .blog-text #show_more:hover #shows{
  
  margin-left:3px;
  font-size: 10px;
  cursor: pointer;
}

/* Blog Article */
#blog-article{
  padding:5vw 8vw 8vw 8vw;
  
  background-color:#F5F5F5;
  
  
}
#blog-article .blog-article-base{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  grid-gap:2rem;
  margin-top: 50px;
  row-gap: 2rem; 
  /* border:2px solid; */
 
}
#blog-article .blog-article-base .blog-article-box .blog-img img{
  width: 80vh;
  height: 80vh;
  border-radius: 20px; 
  
}
#blog-article .blog-article-base .blog-article-box {
  display: flex; 
  justify-content: center;
  align-items: top;
  text-align: center;
  padding: 30px;
  /* border: 2px solid; */
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 8px 6px 1px rgba(0,0,0,0.15);

}

#blog-article .blog-article-base .blog-article-box .blog-text h2{
 padding-top: 20px;;
 padding-left: 50px;
 line-height: 1.5rem;
 text-align: start;
}


/*Individual Blog*/
/* Blog */
#blog1{
  padding:1vw 5vw 5vw 5vw;
  text-align: start;
  color: black;
  background-color:#F5F5F5;
 
  
  border:2px solid;
  
}

#blog1 .blog1-base .blog1-box h1{
  line-height: 1.25;
 
  font-size: 36px;
 padding: 15px;
 
}
#blog1 .blog1-base .blog1-box p{
  line-height: 1.25;
  padding: 15px;
 
}
#blog1 .blog1-base .blog1-box p i{
  margin-left:10px;
}

#blog1 .blog1-base{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  grid-gap:5rem;
  margin-top: 50px;
  row-gap: 2rem; 
  /* border:2px solid; */
  /* padding: 25px; */

}

#blog1 .blog1-base .blog1-box{
  /* border: 2px solid black; */
  /* border-radius: 10px ; */
  width: 100%; 
  /* box-shadow: 0px 8px 6px 1px rgba(0,0,0,0.15); */
  /* flex: 1; */ 
}



#blog1 .blog1-base .blog1-box .blog1-img{
  width: 100%;
  height: auto;
  /* border-radius: 10px; */
  /* background-color: #fff; */
  padding: 10px;
}
#blog1 .blog1-base .blog1-box .blog1-img img{
  width: 100%;
  height: 350px;
  /* border-radius: 10px; */
}

#blog1 .blog1-base .blog1-box .blog1-text{
 align-items: start;
 
  
 
}
#blog1 .blog1-base .blog1-box .blog1-text p{
  margin-top:5px;
  font-size: 15px;
  text-align: start;
  line-height: 1.7rem;
}
#blog1 .blog1-base .blog1-box .blog1-footer{
 text-align: center;

 }

 #blog1 .blog1-base .blog1-box .blog1-footer a{
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: white;
  font-weight: 600;
  border-radius: 5px;
  
}

#blog1 .blog1-base .blog1-box .blog1-footer a.yellow{
  color: #fff;
  background: #FDC93B;
  transition: 0.3s ease;
}

#blog1 .blog1-base .blog1-box .blog1-footer a.yellow:hover{
  background: rgb(21,21,100);
  color:#fff;
  
}

/* Services */

/* Blog */
#services{
  padding:5vw 8vw 8vw 8vw;
  text-align: center;
  background-color:#F5F5F5;
  align-items: center;
  
}
#services .services-base{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  grid-gap:6rem;
  margin-top: 50px;
  row-gap: 4rem; 
  /* border:2px solid; */
  

}

#services .services-base .services-box{
  /* border: 2px solid black; */
  border-radius: 20px ;
  width: 100%; 
  /* border:2px solid green; */
  height: 23rem;
  box-shadow: 0px 8px 6px 1px rgba(0,0,0,0.15);
  /* flex: 1; */ 
}
/*Wobble Effect start*/
#services .services-base .services-box:hover{
  animation-name: wobble-vertical-on-hover;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  
}

@keyframes wobble-vertical-on-hover {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.wobble-vertical-on-hover {
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
/*wobble effect end*/



#services .services-base .services-box .services-img{
  width: 100%;
  height: auto;
  /* border:2px solid; */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: #fff;
  padding: 15px;
}
#services .services-base .services-box .services-img img{
  width: 100%;
  height: 240px;
  border-radius: 20px;
}

#services .services-base .services-box .services-text{
  text-align: start;
  padding-left: 15px;
  cursor: pointer;
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-bottom: 7px;;
 
}
#services .services-base .services-box .services-text p{
  font-size: 12px;
  text-align: left;
  background-color: #fff;
  border-radius: 20px;
 
}
#services .services-base .services-box .services-text a{
  text-decoration: none;
  color: rgb(21, 21, 100);
}
#services .services-base .services-box .services-text #show_more{
  color:rgb(21, 21, 100);
  font-weight: 600;
  padding-bottom:3px;
  font-size: 10px;
}
#services .services-base .services-box .services-text #show_more i{
  padding-left:6px;
  transition: .6s ease;
  cursor: pointer;
}
#services .services-base .services-box .services-text #show_more:hover {
  color:#FDC93B;
  font-size: 10px;
}
#services .services-base .services-box .services-text #show_more:hover #shows{
  
  margin-left:3px;
  font-size: 10px;
  cursor: pointer;
}


/*Individual Service*/

#service1{
  padding:1vw 5vw 5vw 5vw;
  text-align: start;
  color: black;
  background-color:#F5F5F5;
 
  
  border:2px solid;
  
}


#service1 .service1-base .service1-box p{
  line-height: 1.25;
  padding: 1vw 0vw 1vw 2vw;
  text-align: justify;
  text-justify: inter-word;
  background-color: #fff;

 
}

#service1 .service1-base{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  grid-gap:2rem;
  margin-top: 50px;
  row-gap: 2rem; 
  
  /* border:2px solid; */
  /* padding: 25px; */
  

}

#service1 .service1-base .service1-box{
  /* border: 2px solid black; */
  /* border-radius: 10px ; */
  width: 100%; 
 background-color: #fff;
 border-radius: 20px;
  box-shadow: 0px 8px 6px 1px rgba(0,0,0,0.15);
  /* flex: 1; */ 
}



#service1 .service1-base .service1-box .service1-img{
  width: 100%;
  height: auto;
  
  /* border-radius: 10px; */
  /* background-color: #fff; */
  padding: 10px;
}
#service1 .service1-base .service1-box .service1-img img{
  width: 100%;
  height: 50%;
  max-height: 30rem;
  /* border-radius: 10px; */
}

#service1 .service1-base .service1-box .service1-text{
 align-items: start;
 
  
 
}
#service1 .service1-base .service1-box .service1-text p{
  
  font-size: 15px;
  text-align: start;
  line-height: 1.2rem;
}

  @media (max-width:769px) {

    nav {
      padding: 15px 20px;
     }
    nav img{
      width: 130px;
    }

    #menu-btn{
      
      display: initial;
    }
    
    #menu-close{
     display: initial;
     font-size: 1.6rem;
     color: white;
     padding: 30px 0 20px 20px;
    }

    nav .navigation ul{
      position: absolute;
      top: 0;
      right: -220px;
      display: flex;
      width: 220px;
      height: 100vh;
      background-color: rgba(17,20,104,0.45);
      backdrop-filter: blur(4.5px);
      border: 1px solid rgba(255,255,255,0.18);
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      transition: 0.8s ease;
    }

    nav .navigation ul.active{
      right: 0;
      transition: 0.8s ease;
    }

    nav .navigation ul li{
      padding: 20px 0px 20px 40px;
      margin-left: 0;
    }

    nav .navigation ul li a{
      color: white;
    }

    #home p{
      width: 90%;
    }

    #home{
      padding-top:0px;
    }

    #features{
      padding: 8vw 4vw 0 4vw;
      
    }

    #course{
      padding: 8vw 4vw 0 8vw;
    
    }

    #registration{
      margin-top: 20px;
      padding: 6vw 4vw 6vw 4vw;
     
    }

    #registration .reminder h1{
     
      
      text-align: center;
    }
    #registration .reminder p{
     
      
      text-align: start;
      padding: 0vw 0vw 0vw 10vw;
    }
    #registration .reminder hr{
     
      display: none;
    }
    #registration .reminder a{
     
      
      
      margin: 0vw 0vw 0vw 10vw;
    }

    

    #experts{
      padding: 8vw 8vw 4vw 8vw;
      text-align: center;
    }

    footer .copyright .pro-links{
      margin-top: 15px;
    }

    #features1 .fea-base1{
      display: flex;
      /* border:2px solid; */ 
      padding: 5vh;
      flex-direction: column;
      box-shadow: 0px 8px 6px 1px rgba(0,0,0,0.15);
   
    }
    #features1 .fea-base1 .fea-box1 img{
      width: 100%;
    }

    #registration{
      display: flex;
      flex-direction: column;
      text-justify: justify;
      row-gap: 2rem;
    }
    
    #contact{
      flex-direction: column;
      width: 100%;
      row-gap: 3rem;
      padding: 8vw 4vw;
    }

    
    #contact .form{
      width: 100%;
    }

    #contact .maps{
      width: 100%;
    }

    /* about */
    #about-container{
      padding: 8vw 4vw 2vw 4vw;
    }
    
    #about-container .about-img{
      padding-right:30px;
    }
    #trust .trust-img img {
      width: 50px;
      height: auto;
    }

    #blog .blog-base{
      
      padding: 0;
    
    }:hob
    #blog-article .blog-article-base .blog-article-box .blog-img img{
      margin-top:30px;
      
    }

    #blog-article .blog-article-base .blog-article-box {
      flex-direction: column;
      /* width: 40vh; */
    
    }

    #blog-article .blog-article-base .blog-article-box .blog-img img{
      width: 30vh;
      height: 40vh;
      border-radius: 20px; 
      
    }
    
    #home-contact{
      display: none;
    }
    #home-contact .social{
      display: none;
      /* margin-top:5rem; */
    }

    
  }

  @media (max-width:475px) {

    #home-contact .social{
      display: none;
      /* margin-top:5rem; */
    }

    #registration{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    #registration{
      display: flex;
      flex-direction: column;
      
    }

    #contact{
      flex-direction: column;
      width: 100%;
      row-gap: 3rem;
    
    }


    #contact .form{
      width: 100%;
    }

    #contact .maps{
      width: 100%;
    }
    /* About */
    #about-container{
      flex-direction: column-reverse;
    }
    #about-container .about-img {
      width: 100%;
      padding-right: 0;
    }
    #about-container .about-text {
      width: 100%;
      padding-bottom: 20px;
     
    }
  
  #trust .trust-img {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
  }
   
  #trust .trust-img img{
    width: 60px;
    margin: 10px 15px;
    height: auto;
  }

  #blog-article .blog-article-base .blog-article-box .blog-img img{
    margin-top:30px;
    
  }
  }

  @media (max-width:376px) {
     
    #home-contact .social{
      display: none;
      /* margin-top:5rem; */
    }
      footer-input{
        width: 100%;
        margin-bottom: 20px;
      }

  }



  