
@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');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
 body {
  font-family: "Poppins", sans-serif; 
  

 }
  

ul {
  list-style: none;
}
a {
  text-decoration: none;
}
header {
  position:sticky;
  top: 0;
  background-color: #60b4df;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border-bottom: 3px solid #BE1E2D;
  
     
}
section {
  position: relative;
  height: calc(100vh - 3rem);
  width: 100%;
  overflow: hidden;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(56, 165, 238, 0.5 );
}
.container {
  max-width: 65rem;
  padding: 0 2rem;
  background-color:
  margin: 0 auto;
  display: flex;
  position: relative;
}
 
.logo-container {
  flex: 1;
  display: flex;
  align-items: center;
  
}
.nav-btn {
  flex: 3;
  display: flex;
  margin-top: 10px;
  max-width: 100%;
  
}
 
.nav-links {
  flex: 2;
  
}
.log-sign {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  
}
.logo {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 3rem;
}
.logo span {
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: .5rem 1.3rem;
  font-size: .8rem;
  border: 2px solid #ffd43b;
  border-radius: 2rem;
  line-height: 1;
  margin: 0 .2rem;
  transition: .3s;
  text-transform: uppercase;
  align-items: center;
} 
.transparent {
padding-top: 10px;
  text-align: center;
}
.btn.solid, .btn.transparent:hover{
  background-color: #ffd43b;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px;
  
}
.btn.transparent, .btn.solid:hover{
  background-color: #fff;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px;
}
.nav-links > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-link {
  position: relative;
}
.nav-link > a{
  line-height: 3rem;
  color: #1a1a1a;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 .8rem;
  letter-spacing: 1px;
  font-size: .95rem;
  transition: .5s;
}
.nav-link > a > i{
  margin-left: .2rem;
}
.nav-link:hover > a{
  transform: scale(1.1);
} 
.dropdown ul {
  position: relative;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 10rem;
  transform: translateY();
  opacity: 0;
  pointer-events: none;
  transition: .5s;
}
.dropdown li {
  width: 115%;
}
.dropdown-link li {
  width: 125%;
}
.dropdown-link a {
  display: flex;
  background-color: #69bde7;
  color: #fff;
  padding: .5rem 1rem;
  font-size: 0,9rem;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
}
.dropdown-link:hover > a {
  background-color: #3498bd;
  color: #FFF;
}
.dropdown-link:not(:nth-last-child(2)){
  border-bottom: 1px solid #3498bd;;
}
.dropdown-link i {
  transform: rotate(-90deg);
}
.arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: #3498bd;;
  transform: rotate(45deg);
  cursor: pointer;
  transition: .3s;
  z-index: -1;
}
.dropdown-link:first-child:hover ~ .arrow {
  background-color: #3498bd;
}
.dropdown-link {
  position: relative;
}
.dropdown .second {
  top: 0;
  left: 100%;
  padding-left: .8rem;
  cursor: pointer;
  transform: translateX(10px);
}
.dropdown .second .arrow {
  top: 10px;
  left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover  >.dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}
.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}
.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: #1a1a1a;
  position: relative;
  z-index: 1001;
  transition: .5s;
}
.hamburger-menu div:before, 
.hamburger-menu div:after {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #1a1a1a;
  border-radius: 3px;
  transition: .5s;
}
.hamburger-menu div:before {
transform: translateY(-7px);
}
.hamburger-menu div:after {
  transform: translateY(7px);
  }
  #chack {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    cursor: pointer;
    opacity: 0;
    display: none;
  }
  #chack:checked  ~ .hamburger-menu-container
  .hamburger-menu div {
    background-color: transparent;
  }
  #chack:checked  ~ .hamburger-menu-container
  .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg);
  }

  #chack:checked  ~ .hamburger-menu-container
  .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg);
  }


  /* keyframes */
  @keyframes animation {
    form{
      opacity: 0;
      transform: translateY(15px);
    }
    to{
      opacity: 1;
      transform: translateY(0px);
    }
  }


/* media */

@media (max-width: 920px){
  .hamburger-menu-container {
    display: flex;
  }
  #chack {
    display: block;
  }
  .nav-btn {
    position: fixed;
    height: calc(100vh - 3rem);
    top: 4.5rem;
    left: 0;
    width: 100%;
    background-color: #69bde7;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidder;
    overflow-y: auto;
    transform: translateX(100%);
    transition: .65s;
  }

  #chack:checked ~ .nav-btn {
    transform: translateX(0);
  }
  #chack:checked ~ .nav-btn .nav-link, 
  #chack:checked ~ .nav-btn .log-sign {
    animation: animation .5s ease forwards var(--i);
  }
  .nav-links {
    flex: inherit;
    width: 100%;
  }
  .nav-links > ul{
    flex-direction: column;
  }
.nav-link {
  width: 100%;
  opacity: 0;
  transform: translateY(15px);
}
.nav-link  > a {
  line-height: 1;
  padding: 1.6rem 2rem;
}
.nav-link:hover  > a {
transform: scale(1);
background-color: #50a9d6;
}
.dropdown li {
  width: 100%;
}

.dropdown, .dropdown.second {
  position: initial;
  top: initial;
  left: initial;
  transform: initial;
  opacity: 1;
  pointer-events: auto;
  width: 100%;
  padding: 0;
  background-color: #3183ac;
  display: none;
}
.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown {
  display: block;
}
.nav-link:hover > a > i,
.dropdown-link:hover > a > i {
  transform: rotate(360deg);
}


.dropdown-link > a {
  background-color: transparent;
  color: #fff;
  padding: 1.2rem 2rem; 
  line-height: 1;
}
.dropdown.second .dropdown-link > a {
  padding: 1.2rem 2rem 1.2rem 3rem;
}

.dropdown.second .dropdown.second  .dropdown-link > a {
  padding: 1.2rem 2rem 1.2rem 4rem;
}

.dropdown-link:not(:nth-last-child(2)){
  border-bottom: none;
}

.arrow {
  z-index: 1;
  background-color: #69bde7;
  left: 10px;
  transform: scale(1.1) rotate(45deg);
  transition: .5s;
}

.nav-link:hover .arrow {
  background-color: #50a9d6;
}
.dropdown .dropdown .arrow {
  display: none;
}
.dropdown-link:hover > a {
  background-color: #3a91bd;
}

.dropdown-link:first-child:hover ~ .arrow {
  background-color: #50a9d6;
}
.nav-link > a > i {
  font-size: 1.1rem;
  transform: rotate(-90deg);
  transition: .7s;
}
.dropdown i {
  font-size: 1rem;
  transition: .7s;
}

  .log-sign  {
    flex: inherit;
    width: 100%;
    padding: 1.5rem 1.9rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(15px);
  }

}

.btn {
  margin-bottom: 50px;
}


/* end */
  


.overlay {
  position: absolute;
  width: 100%;
  height: 70%;
  top: 0;
  left: 0;
  background-image: url(images/h1.jpg);
  opacity: 0.8;
}
  

    /*---- Home page start---*/
     /*---- Home page start---*/
    
     #hero{
      background-image: url(images/h1.jpg);
      height: 50vh;
      width: 100%;
      background-size: cover;
      background-position: top 25% right 0;
      padding: 0 80px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
    
     
    }  
  
    #hero h1{
      color: #088178;
      font-size: 30px;
    }

    #hero h2{
      font-size: 40px;
    }
    #hero button {
      width: 180px;
      height: 50px;
      margin-top: 10px;
      border:none;
      font-size: 20px;
      font-weight: 700;
      border-radius: 25px;
      background-color: #ffd43b;
      transition: 0.3s;
      
    }
    #hero button:hover {
      
      box-shadow: 0 0 20px #1a1a1a;
      background-color: #1a1a1a;
      color: #ffd43b;
    }
@media (max-width:700px) {
  #hero {
    padding: 10px;
  }

  #hero h1{
    color: #088178;
    font-size: 20px;
  }

  #hero h2{
    font-size: 25px;
  }
  
}
  
     /*---- Home page end---*/
     /*---- Home page end---*/
  
   

   /*----- SERVICES -----*/
    
   .SERVICES{
    width: 80%;
    height: auto;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    
}
h1{
    font-size: 36px;
    font-weight:600;
}
p{
    color: #222;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    text-align:justify;
    
}

.row{
    margin-top: 4%;
    display: flex;
    justify-content: space-between;
    
}
.SERVICES-col{
    flex-basis: 31%;
    background:#69bde7;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    border: none;
  
    
}
.SERVICES-col p a {
  color: #222;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}
.SERVICES-col p a:hover {
  color: #ffd43b;
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.SERVICES-col:hover{
    box-shadow: 0 0 20px #69bde7;
   
}
@media(max-width: 768px){
    .row{
        flex-direction: column;
    }
  
}


    /*----- campus ----*/
    .campus{
      width: 80%;
      height: auto;
      margin: auto;
      text-align: center;
      padding-top: 40px;
    
  }

  @media(max-width: 768px){
      h1{
          font-size: 25px;
          font-weight:600;
      }
  }
 


     /*------ facilities -----*/
    
     .facilities{
      width: 80%;
      height: auto;
      margin: auto;
      text-align: center;
      padding-top: 100px;
      
  }
  .facilities-col{
      flex-basis: 31%;
      border-radius: 10px;
      
      text-align: left;
  }
  .facilities-col img{
      width: 100%;
      border-radius: 10px;
  }
  .facilities-col p{
      padding: 0;
  }
  .facilities-col img:hover {
    box-shadow: 0 0 20px #69bde7;
    transition: 0.3s;
  }



        /*------ call to action------*/

        .cta{
          margin-top:5px;
          width: 100%;
          height: auto;
          background-color: #69bde7;
          background-position: center;
          background-size: cover;
          border-radius: 10px;
          text-align: center;
          padding: 20px 15px;
      
      }
      .cta h1{
          color: #222;
          margin-bottom: 10px;
          padding: 0;
          font-size: 25px;
      }
     
       
      @media(max-width:700px){
          .cta h1{
              font-size: 16px;
              text-align: justify;
          }
          .cta {
            width: 100%;
          }
      }



    /*------- testimonials -----*/
    .Clientsay{
      width: 80%;
      margin: auto;
      text-align: center;
      height: auto;
      
  }
  .Clientsay-col{
      flex-basis: 44%;
      border-radius: 10px;
      margin-bottom: 5%;
      text-align: left; 
      background: #fff3f3;
      padding: 25px;
      cursor: pointer;
      display: flex;
      box-shadow:0  10px #ffd43b;
      transition: 0.3s;
  }
  .Clientsay-col:hover {
    box-shadow: none;
  }
  .Clientsay-col img{
      height: 40px;
      margin-left: 5px;
      margin-right: 30px;
      border-radius: 50%;
  }
  .Clientsay-col p{
       padding: 0;
  }
  .Clientsay-col h3{
      margin: 15px;
      text-align: left;
  }
  
  @media(max-width:700px){
      .Clientsay-col img{
      
          margin-left: 0px;
          margin-right: 15px;
      }
      }


 /*------ footer------*/

 .footer{
  width: 100%;
  text-align: center;
  padding: 30px 0;
  background: #fff3f39d;
  height: 390px;
  margin-top: 15px;
}
.footer h4{
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
}
.icons .fa-brands{
  color: #f44336;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
}
.fa-regular{
  color: #f44336;
}






/*--- whtsapp ---*/

#whatsapp .wtsapp{
  position: fixed;
  transform: all 5.s ease;
  background-color: #25d366;
  display: block;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  color: #fff;
  font-weight: 30px;
  bottom: 70px;
  left: 20px;
  border: 0;
  z-index: 9999;
  width: 50px;
  height: 50px;
  line-height: 50px;
  }
  
  #whatsapp .wtsapp:before{
      content: "";
      position: absolute;
      z-index: -1;
      left: 50%;
      top: 50%;
      transform: translateX(-50%) translateY(-50%);
      display: block;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      border-radius: 50%;
      -webkit-animation: pulse-border 1500ms ease-out infinite;
      animation: pulse-border 1500ms ease-out infinite;
  }
  
  #whatsapp .wtsapp:focus{
      border: none;
      outline: none;
  }
  
  @keyframes pulse-border{
      0% {transform: translateX(-50%) translateY(-50%)translateZ(0) scale(1); opacity: 1;}
      0% {transform: translateX(-50%) translateY(-50%)translateZ(0) scale(1.5); opacity: 0;}
  
  }
  



/*-- blog --*/
#blog-hero {
  background-image: url(images/b1.jpg);
  width: 100%;
  height:300px;

  
}
#blog-hero h2 {
  padding-top: 100px;
  padding-left: 30%;
  font-size: 50px;
  color: #fff;
}


#blog {
  padding: 150px 150px 0 150px;
  height: auto;
}
#blog .blog-box {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  padding-bottom: 90px;
}
#blog .blog-img {
  width: 50%;
  margin-right: 40px;
}
#blog img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 0 10px #987a7a; 
  border-radius: 20px;
}
#blog img:hover{
  border: 1px solid #987a7a;;
}

#blog .blog-details {
  width: 50%;
}
#blog .blog-details a {
  text-decoration: none;
  font-size: 11px;
  color: #000;
  font-weight: 700;
  position: relative;
  transition: 0.3s;
}
#blog .blog-details a::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 4px;
  right: -60px;
}
#blog .blog-details a:hover {
  color: #088178;
}
#blog .blog-details a:hover::after {
  background: #088178;
}

#blog .blog-box h1 {
  position: absolute;
  top: -40px;
  left: 0;
  font-size: 70px;
  font-weight: 700;
  color: #c9cbce;
   z-index: -9;
}

@media (max-width:905px){
  #blog {
    width: 100%;
    padding: 0;
  }
  #blog .blog-box {
    flex-direction: column;
    width: 100%;
    padding-top: 15px;

  }
 
  #blog-hero h2 {
    padding-top: 100px;
    padding-left: 30%;
    font-size: 40px;
}
#blog-hero {
  height: 280px;
  
}
  
}

@media (max-width:499px){
  #blog .blog-img {
    width: 80%;
    margin:10px;
    margin-bottom: 0;
}
#blog .blog-details {
  width: 80%;
  
}
#blog {
  margin-bottom: 0;
}
	#blog-hero h2 {
	font-size:22px;
	}


}

#pagination {
  text-align: center;
  height: auto;
}
#pagination a {
  text-decoration: none;
  background-color: #088178;
  padding: 15px 20px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
}
#pagination a i {
  font-size: 14px;
  font-weight: 600;
}
.section-p1  {
  padding: 20px 20px;
}


/*service-*/




/*about page*/
.about-us{
  width: 80%;
  height: auto;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 30px;

}
.about-col{
  flex-basis: 48%;
  padding: 30px 2px;

}
.about-col img{
  width: 100%;
}
.about-col h1{
  padding-top: 0;
}
.about-col p{
  padding: 15px 0 25px;
  text-align:justify;
}
.red-btn{
  border: 1px solid #f44336;
  background: transparent;
  color: #F44336;
}
.red-btn:hover{
  color: #fff;
}

.our-vision{
margin:auto;
text-align: center;
padding: 10px;
height: auto;
width: 80%;

}
.vision-col{
margin-left: 15%;
margin-right: 15%;
text-align: center;
}



/*-------- contact us page -------*/

.location{
  width: 80%;
  margin: auto;
  padding: 80px 0;
}
.location iframe{
  width: 100%;
}
.contact-us{
  width: 80%;
  margin: auto;
}
.contact-col{
  flex-basis: 48%;
  margin-bottom: 30px;
}
.contact-col div{
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.contact-col div .fa{
  font-size: 28px;
  color: #f44336;
  margin: 10px;
  margin-right: 30px;
}
.contact-col div p{
  padding: 0;
}
.contact-col div h5{
  font-size: 20px;
  margin-bottom: 5px;
  color: #555;
  font-weight: 400;
}

.contact-col input, .contact-col textarea{
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #ccc;
  box-sizing: border-box;

}



/*form-section*/

#form-section {
  background-color: #69bde7;
  display: flex;
  align-items: center;
  height: 700px;
  padding-left: 20%;
  
}  

#form-section form {
border: 3px solid rgba(255, 255, 255, .2);
background: #ffd43b;
box-shadow: 0 0 20px rgba(0, 0, 0, .2);
border-radius: 10px;
width: 50%;
margin-left: 150px;
display: block;
justify-content: column;
padding: 30px;
}
#form-section form input,
#form-section form textarea {
  width: 80%;
  max-height: 40px;
  border: 1px solid #fff;
  padding: 10px;
  margin: 10px;
  border-radius: 15px;
  background:#FFf;
  
  
}

#form-section form button {
  width: 100%;
  height: 40px;
  background-color: #000;
  color: #ffd43b;
  transition: all 0.3s;
  border-radius: 20px;
  border: none;
}

#form-section form button:hover {
  color:#222;
  background-color: #50a9d6;
}

@media (max-width:905px){

  #form-section  {
    
  display: flex;
   align-items: left;
   justify-content: column;
    padding-left: 0px;
  }  

  #form-section form {
   width: 100%;
   margin: 70px;
  }

}

@media (max-width:499px){
  #form-section form {
    margin: 30px;
    width: 100%;
    padding: 0px;
   }

   #form-section form input,
   #form-section form textarea{
    max-height: 25px;
    width: 90%;
    padding: 5px;
    margin: 5px;  
  }
  
  #form-section form button{
height: 30px;
width: 40%;
margin:10px;

  }
}

/*Graphic*/
.graphic h1 {
  width: 100%;
  margin: 10px;
  padding-left: 20px;
  text-align: center;
}
.graphic {
  width: 100%;
padding: 30px;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  
}
.graphic .g-row {
  width: 281px;
  height: 60px;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  margin: 15px 0;
  background-color: #50a9d6;
  box-shadow: 0 0 40px #ede0e0dd;

}
.graphic .g-row:hover {
  box-shadow: 0 0 10px #222222ad;
}
@media (max-width:903px){
  .graphic .g-row {
    width: 350px;
    
  
  }
}
@media (max-width:768px){
  .graphic .g-row {
    width: 290px;
    
  
  }
}
@media (max-width:499px){
  .graphic .g-row {
    width: 400px;
    
  
  }
}
.fa-solid {
  font-size: 18px;
  margin-right: 10px;
  
}
