
/* @import url('https://fonts.googleapis.com/css2?family=Mate:ital@0;1&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Edu+AU+VIC+WA+NT+Hand:wght@400..700&family=Mate:ital@0;1&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* DM Sans*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
/* "Inter" */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* "Figtree" */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
*{
  box-sizing: border-box !important;
}
html{
  width: 100%;
  overflow-x: hidden;
}

body{
  font-family:"Figtree", sans-serif ;
  line-height: 1.8;
  position: relative;
  width: 100%;
  overflow-x: hidden;

  /* padding-top: 50px; */
}
nav{
  width: 100%;
}

h1,h2,h3,h4,h5,h6{
  font-family: "Figtree", system-ui;
}

.navbar-toggler{
  border: none;
  font-size: 1.25rem;
  color: #03C03C;

  
}
.navbar-toggler:focus{
  box-shadow: none ;
  outline: none;
}

.navbar-toggler:focus, .btn-close:focus{
  box-shadow: none ;
  outline: none;
}
.navbar-brand{
  overflow: hidden;
  height:80px;
  padding: 0;
  margin: 0;
}
.navbar-brand img{
  width:70%;
}
.offcanvas.show {
  height: 100vh; 
  overflow-y: auto; 
  width: 80%; 
  max-width: 400px; 
  background-color: lightgray; 
}
/* Top Bar Styles */
.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  transition: top 0.3s;
  background-color:#2F3B69;
  transition: transform 0.5s ease-in-out;
  color: #fff;
  padding:2px 0;
  margin: 0; 
  overflow: hidden; 
}

.top-bar.hidden {
  transform: translateY(-100%);
}

/* Phone Number Styling */
.top-bar .phone-number {
  font-size: 16px;
  margin-left: 40px;
}

/* Social Media Icons Styling */
.top-bar .social-media-icons a{
  padding: 1px 2px;

}
.top-bar .social-media-icons i {
  color: #FFF ;
  width: 100%;
  /* border-radius: 50%; */
  cursor: pointer;
  font-size: 18px;
  display: inline-block;
  height: 20px;
  width: 20px;
  /* background: rgba(255, 255, 255, 0.2); */
  margin-right: 0 3px 3px 0;
  text-align: center;
  line-height: 40px;
}
.social-media-icons a:hover{
  background: #fff;
}
.social-media-icons a:hover i{
  color: #0BAD73;
}

/* Navigation Bar Adjustment */
.navbar {
  top: 40px; /* Adjust this value based on the height of the top bar */
  z-index: 1;
  transition: top 0.3s;
  width: 100%;
}

/* Hide the top bar on scroll */
.hide-top-bar .top-bar {
  top: -40px; /* Move top bar out of view */
}

/* Adjust navbar position when top bar is hidden */
.hide-top-bar .navbar {
  top: 0;
}




@media (max-width: 768px) {
  .top-bar {
    font-size: 14px; /* Adjust font size for smaller screens */
    padding: 8px 0; /* Reduce padding */
  }

  .top-bar .phone-number, .top-bar .social-media-icons {
    text-align: center; /* Center align content */
  }
}

/* Media Query for Extra Small Screens (max-width: 576px) */
@media (max-width: 576px) {
  .top-bar {
    font-size: 12px; /* Further reduce font size */
    padding: 5px 0; /* Further reduce padding */
  }

  .top-bar .phone-number, .top-bar .social-media-icons {
    display: flex; /* Stack content vertically */
    text-align: center;
  }

  .top-bar .social-media-icons {
    margin-top: 5px; /* Add some space between phone number and social icons */
  }
}
.nav-link{
  color:#2F3B69;
  font-weight: 500;
  position: relative;
  /* to do */
  font-family:"Inter", sans-serif ;

}
.navbar{
  background-color: #fff;
  /* background-color: rgba(36, 32, 32, 0.295); */
  height: 80px;
  /* margin-top: 50px; */
  opacity: 0.7;
  box-shadow: 0 4px 8px #2F3B69; /* Adjust shadow properties */

}
.nav-link:hover, .nav-link.active {
  color:#2F3B69;
  transition: 1s;
}

.dropdown:hover > .dropdown-menu, .dropend:hover > .dropdown-menu {
  display: block;
  color: #2F3B69;
  transition: 1s;
  background-color: #03C03C;


}
.dropdown-item{
  background-color: #03C03C;
}
.dropdown-item:hover{
  background-color: #2F3B69;
  color: #fff;
}
.dropend:hover > .dropdown-menu {
  position: absolute;
  top: 0; 
   left: 100%;
   background-color:#03C03C;
}

@media (min-width: 991px){
.nav-link::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #03C03C;
  visibility: hidden;
  transition: 0.3s ease-in-out;

}
.nav-link:hover:before, .nav-link.active::before{
  width: 100%;
  visibility: visible ;
}
}

/* ------home section----- */
section{
  padding-top: 80px;
  padding-bottom: 80px;
}
#home{
  background: url(Images/acc2.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  /* height: 100vh; */
  opacity: 1;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;

}
#home::before{
  background-color: rgba(39, 35, 35, 0.5);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
}
@media (max-width: 576px) {
  #home {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text horizontally */
  }

  .getStartedBtn {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
h1{
  text-decoration: none;
  text-align: center;
  padding-top: 15%;
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 69px;
 transition: 0.5s ease;
}
a{
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: 800;
}
.btn{
  padding: 14px 22px;
  transition: all 0.4s ease;
  cursor: pointer;

 
}
.btn-main{
  background: rgba(0,0,0,0.4);
  margin-left: 45%;
  /* margin-right: 45%; */
  border-radius: 100px;
  color: #fff;
  border: none;
  font-weight: 600;
  

}
.btn:hover {
  color: #ffffff;
  transform: translateY(-4px);
  background: #03C03C;
}
.my-4{
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  color: white;
  transition: all 0.4s ease;

}



/*------ about section------ */

#about{
  justify-content: center;
  text-decoration: none;
  margin:50px 0;
}
h2{
  text-align: center;
  text-decoration: none;
  padding-top: 5%;

}
p{
  text-align: center;
  padding: 3px;
}
/* .about-img{
  max-width: 50%;
  
} */

.about-1{
  margin: 30px;
  padding: 5px;
}
.about-item{
  margin-bottom: 10px;
  margin-top: 20px;
  padding: 80px, 30px;
  /* box-shadow: 0 0 9px rgba(0, 0, 0.6); */
  justify-content: center;
  text-align: center;

}
.about-item i{
  background: -webkit-linear-gradient(#2F3B69,#03C03C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color:darkgray;
  font-size: 50px;
}
.about-item hr{
  width: 46px;
  height: 3px;
  background-color: #03C03C;
  margin: 0 auto;
  border: none;
}
.about-content{
  text-align: left;
}
.about-content h2{
  margin-left: 0;
  text-align: left;
  font-size: 48px;
  color:#024550;
}
.about-content p{
  margin-left: 0;
  text-align: left;
  padding-top: 30px;
}
.about-tabs{
  margin-top:35px;
  width: 100%;
}
.about-tabs nav{
  width: 100%;
}
.about-tabs .nav-item{
  text-align: center;
}
.about-tabs .nav-item span {
  width:fit-content;
  display: block;
  border-radius:100px;
  margin:0 5px;
  width: 95%;
  background-color: #F4FAFA;
  padding:8px 0;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.about-tabs .nav .nav-item .active{
  background-color:#03C03C;
  color: #fff;
}
.about-tabs .tab-content p{
  padding-top: 30px;
  text-align: left;
}
.about-tabs .tab-content ol{
  padding-top: 30px;
}

/* ------services section---- */
#services {
  /* background-color:darkgray; */
  padding-top: 10px;
  background-color: #2F3B69;
  border-radius: 1%;
  width: 95%;
  margin:10px auto;
  position: relative;


}
.section-intro h2{
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  width: fit-content;
  padding: 5px 32px;
  margin: 20px auto;

}
.section-intro p{
  color:#fff;
  width:50%;
  margin: 25px auto;
}
.feature h5{
  color:rgba(255, 255, 255, 0.8);
  font-weight: 600;
}
.feature .feature-container{
  width:90%;
  margin: auto;
  background-color:rgba(255, 255, 255, 0.04);
  border-radius:5px;
  padding:10px;
  box-sizing: border-box;

}
.feature .icon{
  width:35%;
  display: block;
  margin: 0 auto;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
}

.couter {
  position: relative; /* Ensure the overlay is positioned correctly */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.couter form {
  width: 100%; /* Adjust the width as needed */
  max-width: 600px; /* Set a maximum width */
  height: auto; /* Adjust the height as needed */
  margin: 0 auto; /* Center the form horizontally */
  text-align: center;
  padding: 20px; /* Add padding for better spacing */
  background-color: rgba(255, 255, 255, 0.9); /* Add a background color with some opacity */
  border-radius: 10px; /* Add rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}
form .input-box {
  display: flex;
  flex-direction: column; /* Stack the input fields vertically */
  gap: 10px; /* Add space between input fields */
  justify-content: space-between;
}
.appoit-btn{
  width: 200px;
  height: 50px;
  background-color: #2F3B69;
  color: #fff;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  border-radius: 50px;
  cursor: pointer;

}
.appoit-btn:hover{
  background-color: #03C03C;
}

form .textarea-field .item{
  resize: none;
  height: 120px;
}
.field .error-txt{
  font-size: 14px;
  color: red;
  text-align: left;
  margin: -5px 0 10px;
  display: none;
}
form .textarea-field .error-txt{
  margin-top: -10px;
}

.field.error .item{
  border: 2px solid red;


}

.field.error .error-txt{
  display: block;
}
.field .item{
  width: 100%;
  padding: 18px;
  background: transparent;
  border: 2px solid #03C03C;
  outline: none;
  border-radius: 10px;
  font-size: 16px;
  color: white;
  margin: 12px 0;
}
.field .item::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
h2{
  padding-top: 4%;
}
.booking{
  margin-top:80px;

}
.booking .content-container{
  text-align: left;
  width:100%;
  margin-top:50px;
}
.booking .content-container h2{
  background-color: rgba(3, 192, 60, 0.5);
  border-radius: 100px;
  padding: 5px 10px;
  font-size: 17px;
  width: fit-content;
  color: #fff;
}
.booking .content-container h3{
  font-size: 48px;
  font-weight: 500;
  line-height: 57px;
  margin:5px 0 20px 0;
}
.booking .content-container p{
  font-size: 18px;
  font-weight: 400;
  display: block;
  margin-left: 0;
  text-align: left;
  margin: 20px 0;
}
.booking .content-container a{
  border-style: none;
  border-radius: 100px;
  background-color: #2F3B69;
  color: #FFF;
  padding: 10px;
  font-weight: 400;
  font-size: 16px;
  transition: all 1s;
}
.booking .content-container a:hover{
  padding: 15px;
  font-weight: 600;
  background-color: rgba(47,59,105,0.9);
}

.booking .image-frame{
  width:100%;
  margin: 20px auto;
  border: 30px solid rgba(47, 59, 105, 0.5);
  box-sizing: border-box;
  border-radius: 5px;
}
.booking .image-frame img{
  width: 100%;
  display: block;
}



 p1{
  text-align: left;
  justify-content: left;
 }

#contact p:hover{
  color: white;
  transition: 1s;
  transform: all 0.3s ease;

}
#contact p{
  display: block;
  transform: all 0.3s ease;
}

.link-hover {
  position: relative;
  transition: color 0.3s;
}

.link-hover:hover {
  color: #03C03C; 
  transition: 0.3s ease-in-out;
  transform: translateX(-50%);

}

.location-container:hover .map-popup{
  display: block;
} 
               
.link-hover:hover::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #03C03C; 
  
}
.icons i{
 
  color: rgba(255,255,255,0.9);
  width: 100%;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: inline-block;
  height: 40px;
  width: 40px;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;

}

.icons i:hover{
  background: white;
  transition: 2s;
  color: black;
}

.read-more-container{
  display:flex ;
  flex-direction: column; 
  color:#fff;
}

.read-more-btn{
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-weight: 700;

}
.read-more-text{
  display: none;
}
.read-more-btn:hover{
  color: rgba(255, 255, 255, 0.9);
}
.read-more-text--show{
  display: inline;
}

/* patners section */
.partners{
  width:100%;
  overflow: hidden;
    background-image: url(Images/pattern.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.partners h2{
  margin:60px auto 90px auto;
  color: #fff;
  background-color: rgba(3, 192, 60, 1);
  border-radius: 100px;
  font-size: 25px;
  width: fit-content;
  padding: 5px 32px;
}


/* --------Our Partners ------- */
.slider {
      width: 100%;
      max-width: 1200px;
      margin: auto;
      overflow: hidden;
      position: relative;
    }

    .slide-track {
      display: flex;
      transition: transform 0.3s linear;
      will-change: transform;
    }

    .slide {
      flex: 0 0 20%;
      padding: 15px;
      transition: transform 0.4s ease;
    }

    .slide img {
      width: 75%;
      height: auto;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.4s ease;
    }

    /* .slide:hover img {
      transform: scale(1.1);
    } */

    @media (max-width: 600px) {
      .slide {
        flex: 0 0 100%;
      }
    }


.popup{
  width: 100%;
  height: 100vh;
  position: fixed;
  justify-content: center;
  display: none;
  z-index:2;
  margin: 0;
  background-color: rgba(0,0,0,0.7);
}
.popup-content{
  height: 95vh;
  width: 50%;
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 5px;
  position: absolute;
  top:2%;
  left:25%;
  display: flex;
  /* margin-top: 2px; */
}
 @media screen and (max-width: 767px ) {
  .popup-content{
    width: 90%;
    left:5%;
  }

 }
input{
  margin: 20px auto;
  display: block;
  width: 50%;
  padding: 8px;
  border: 1px solid #03C03C;
}


/* ------Our Team------- */
.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  /* padding: 20px #2F3B69; */
}

.card-image .card-img{
height: 100%;
width: 100%;
object-fit: cover;
border-radius: 50%;
border: 4px solid #2F3B69;

}
#team{
  min-height: 100vh;
  display: flex;
  align-items: center ;
  justify-content: center;
  background-color: white;
  flex-direction: column; /* Ensure the items stack vertically */
  text-align: center;
}
.card{
  background-color: #fff;
  border-radius: 25px;
  width: 320px;
}
.section-title{
  text-align: center;
  display: block; /* Ensures it behaves as a block element */
}

.slide-content{
  margin: 0 40px;
  padding: 45px 20px ; 
}
.image-content, .card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;

}
.name{
  font-size: 18px;
  font-weight: 500;
  color: #2F3B69;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.overlaye{
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #03C03C;
  border-radius: 25px 25px 0 50px;

}
.overlaye::before, .overlaye::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #03C03C ;
}
.overlaye::after{
  border-radius: 0 50px 0 0;
  background-color: white;
}
.image-content{
  row-gap: 5px;
  position: relative;
  padding: 25px 0;
}
.slide-container{
  max-width: 1120px;
  width: 100%;
  background-color: lightgray;
  padding: 40px;
  height: 70vh;
}

 .swiper-navBtn{
  color: white;
  transition: color 0.3s ease;
 }
 .swiper-navBtn:hover{
  color:  #03C03C;
 }
 .swiper-navBtn::before, .swiper-navBtn::after{
  font-size: 40px;
 } 

 .swiper-button-next{
  right: 0; 
 }

 .swiper-button-prev{
  left: 0;
 }

 .swiper-pagination-bullet{
 background-color: #03C03C;
 opacity: 1;
   
 }

 .swiper-pagination-bullet-active{
  background-color: #03C03C;
 }

 @media screen and (max-width: 768px ) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none ;
  }
  .navbar-brand{
  width:58%;
    }
  .navbar-brand img{
    width:90%;
  }
  .top-bar .phone-number{
    margin-top:8px;
    margin-left: 0;
  }
  .top-bar .social-media-icons{
    margin-top: 0px;

  }
  
 }


  /* @media screen and (max-width: 680px) {
    .getStartedBtn {
    margin-left:80px !important;
    }
  } */

  @media (max-width: 576px) {
    .getStartedBtn {
      margin-left: auto;
      margin-right: auto;
      display: block;
    }
  }
  
 
  footer{
    padding:30px 0;
    transform: all 0.3s ease;
    background-color: #2F3B69;
    color: #fff;

  }

  footer h5{
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  width: fit-content;
  padding: 5px 17px;
  margin: 20px 0;
  font-size: 16px;
}
footer h6{
  font-weight: 700;
  color:rgba(255,255,255,0.8);
  padding-left:16px;
  
}
footer p{
  text-align: left;
  padding-left:16px;
  margin:0 0;

}
footer p i{
  padding-right:5px;
  color:rgba(255,255,255,0.8)
}
footer a{
  text-decoration: none;
  color: #fff;
  font-weight: unset;
  margin: 0;
}
footer a:hover{
  text-decoration: none;
  color: #03C03C;
}
footer .map{
  padding-left:17px;
}
footer .map:hover{
  text-decoration: none;
  color:#03C03C;
}


.hero{
  background-image: url(Images/study.jpg);
  background-size:cover;
  background-position: center;
  background-color: #000;
  color: #fff;
  position: relative;

}
.hero .layer{
  background-color: rgba(0,0,0,0.5);
  width: 100%;
  height:100%;
  position: absolute;
  padding-top:50px;
}

.hero .layer .buttons{
  margin-top:30px;
}
.hero .layer .buttons .one button{
  background-color: #03C03C;
  border: none;
  margin-right:5px;
  color: #FFF;
}
.hero .layer .buttons .two button{
  background-color: #2F3B69;
  border:none;
  color: #FFF;
}