@import url(https://fonts.googleapis.com/);
*{
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
}

body{
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: "Archivo Black", sans-serif;
    align-items: center;
    /* height: 3000px; */
    background-color: #f4f4f4;
}

a{
    color: black;
    font-family: "Poppins", sans-serif;
}

header{
    display: flex;
    background-color: #fff;
    /* background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px); */
    justify-content: space-around;
    /* padding: 1rem 0; */
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 2;
    /* overflow-x: hidden; */
}

.logo{
    display: flex;
    align-items: center;
    color: #192a56;
}

.logo img{
    width: 90px;
    border-radius: 1px;
    color: #192a56;
}

.header-logo{
    font-size: 20px;
    padding: 20px;
}
.nav-list{
    display: flex;
    align-items: center;
}
.nav-item{
    margin: 0 10px;
    font-weight: 600;
}
.nav-link{
    padding: 5px;
    font-size: 1rem;
    border-radius: 5px;
    transition: 0.3s;
    color: #192a56;
    transition: all 1sec;
}
.header-apply-btn button{
    padding: 10px;
    width: 100px;
    background-color: #192a56;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: all ease .5s;
}
.header-apply-btn button:hover {
    background-color: transparent;
    color: #000;
    border: 2px solid #192a56;
    font-weight: 400;
    /* transform: scale(1.1); */
}
.nav-link:hover{
    background-color: #487eb0;
    /* background-color: #007Bff; */
}
.toggle, .close{
    display: none;
}
@media screen and (max-width: 768px){
    header{
        height: 50px;
        justify-content: space-between;
        padding: 0 30px;
        background-color: #fff;
        /* background-color: rgba(255, 255, 255, 0.2); */
        backdrop-filter: blur(5px);
    }
    .logo h1{
        font-size: 1rem;
    }
    .logo img{
        width: 30px;
    }
    .toggle{
        display: inline;
        font-size: 25px;
        color: #192a56;
    }
    .close{
        position: absolute;
        right: 25px;
        display: block;
        font-size: 25px;
        border-radius: 50px;
        color: #192a56;

    }
    .nav{
        position: fixed;
        top: 0;
        right: -100%;
        background-color: #f4f4f4;
        width: 60%;
        height: 100vh;
        padding: 24px;
        z-index: 100;
        transition: 0.5s;
        border-radius: 0 0 0 50%;
        /* box-shadow: 5px 4px 8px rgba(0, 0, 0, 0.1); */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .nav-link:hover{
        background-color: #487eb0;
    }
    .nav-list{
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .nav-item{
        margin: 2rem 0;
    }
    .show{
        right: 0;
    }
}
    .about-us {
      display: flex;
      /* flex-wrap: wrap; */
    }
    .about-img{
      display: flex;
      flex-basis: 100%;
    }
    .about-img img {
      width: 100%;
    }
    .apply {
      display: flex;
      /* flex-wrap: wrap; */
    }
    .apply-img{
      display: flex;
      flex-basis: 100%;
    }
    .apply-img img {
      width: 100%;
    }
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.slider {
    display: flex;
    width: 300%;
    transition: transform 1s ease-in-out;
}
.slide {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}
.content {
    color: white;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}
.content h1, .content p, .btn {
    opacity: 0;
    animation: fadeSlide 1.5s ease-in-out forwards;
}
.content h1 { animation-delay: 0.5s; }
.content p { animation-delay: 1s; }
.btn { animation-delay: 1.5s; }

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff4c4c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}
.btn:hover {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.7;
}
.dot.active {
    background: #ff6b6b;
    opacity: 1;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
  
  
  .desc {
    display: block;
    justify-content: flex-start;
  }
  .hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
  }
  .show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
  .about-row, .apply-row {

    padding-top: 70px;
  }
  .about-header, .apply-header {
    padding-left: 15px;
    margin-left: 15px;
  }
  .about-header h1, .apply-header h1 {
    font-size: 25px;
  }
  .about-us {
    display: flex;
    /* flex-wrap: wrap; */
    margin: 15px;
    padding: 15px;
  }
  .apply {
    display: flex;
  }
  
  .about-img img, .apply-img img{
    width: 450px;
  }
  .about-contents, .apply-contents {
    margin-left: 10px;
    padding: 20px;
  }
  .about-contents h1, .apply-contents h1 {
    font-size: 20px;
  }
  .about-contents p, .apply-contents p {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .about-contents a button, .apply-contents a button{
    padding: 10px;
    background-color: #192a56;
    color: #fff;
    width: 120px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 5px;
    border: none;
    transition: all ease .5s;
  }
  .about-contents a button:hover, .apply-contents a button:hover {
    /* transform: scale(1.1); */
    background-color: transparent;
    color: #192a56;
    border: 2px solid #192a56;
  }

  /* service cards  */
  .services {
    padding: 15px 15px;
  }
  .services .services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}
.service-card {
    height: 250px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform .3s ease;
    /* border: 1px solid #cccc; */
}
.service-card .img-card {
    width: 100%;
    height: 50%;
    margin-top: 10px;
    border: 1px solid #cccc;
    border-radius: 5px;
    /* background-image: url("img/Capture.PNG"); */
    background-position: center;
    background-size: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}
.service-card .img-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    /* background-size: cover; */
    object-fit: cover;
}

.service-card:hover {
  transform: translateY(-10px);
}
.service-card h4{
  font-size: 18px;
  margin: 15px 0;
  color: #000;
}
.service-card p{
  font-size: 15px;
  color: #828282;
}
.icon-bg {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  z-index: 1;
}
.icon-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}
/* color */
.icon-primary {
  color: blue;
}
.icon-yellow {
  color: #febd31;
}
.icon-purple {
  color: #423441;
}
.icon-red {
  color: #ff4349;
}
.icon-green {
  color: lime;
}
.icon-cyan {
  color: rgba(0, 255, 213, 0.712);
}


  .tracking-in-expand-fwd {
	-webkit-animation: tracking-in-expand-fwd 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand-fwd 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
  }
  @-webkit-keyframes tracking-in-expand-fwd {
    0% {
      letter-spacing: -0.5em;
      -webkit-transform: translateZ(-700px);
              transform: translateZ(-700px);
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      opacity: 1;
    }
  }
  @keyframes tracking-in-expand-fwd {
    0% {
      letter-spacing: -0.5em;
      -webkit-transform: translateZ(-700px);
              transform: translateZ(-700px);
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      opacity: 1;
    }
  }
  


  .tracking-in-expand-fwd-top {
	-webkit-animation: tracking-in-expand-fwd-top 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand-fwd-top 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    }

    @-webkit-keyframes tracking-in-expand-fwd-top {
        0% {
          letter-spacing: -0.5em;
          -webkit-transform: translateZ(-700px) translateY(-500px);
                  transform: translateZ(-700px) translateY(-500px);
          opacity: 0;
        }
        40% {
          opacity: 0.6;
        }
        100% {
          -webkit-transform: translateZ(0) translateY(0);
                  transform: translateZ(0) translateY(0);
          opacity: 1;
        }
      }
      @keyframes tracking-in-expand-fwd-top {
        0% {
          letter-spacing: -0.5em;
          -webkit-transform: translateZ(-700px) translateY(-500px);
                  transform: translateZ(-700px) translateY(-500px);
          opacity: 0;
        }
        40% {
          opacity: 0.6;
        }
        100% {
          -webkit-transform: translateZ(0) translateY(0);
                  transform: translateZ(0) translateY(0);
          opacity: 1;
        }
      }
      


  

#first{
    transition-delay: 50ms;
}
#sec{
    transition-delay: 250ms;
}
#third{
    transition-delay: 400ms;
}

.first{
  transition-delay: 50ms;
}
.sec{
  transition-delay: 250ms;
}
.third{
  transition-delay: 400ms;
}

@media (max-width: 815px) {
    .about-us {
        display: flex;
        flex-wrap: wrap;
      }
      .about-img{
        display: flex;
        flex-basis: 100%;
      }
      .about-img img {
        width: 100%;
      }
      .apply {
        display: flex;
        flex-wrap: wrap;
      }
      .apply-img{
        display: flex;
        flex-basis: 100%;
      }
      .apply-img img {
        width: 100%;
      }
}

@media(max-width: 650px) {
    .container1 div{
        flex-basis: 100%;
    }
    .about-contents {
        margin-left: 0;
        padding: 0;
      }
    
    .footer div{
      flex-basis: 100%;
    }
    .container2{
        grid-template-columns: 1fr;
    }
    #first, #sec {
        border-bottom: 1px solid #cccc;
        border-right: 0px solid;
    }
}

@media (max-width: 800px) {
    .container2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.container2 {
    padding: min(45px, 7%);
    background-color: #fff;
}

.card {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #f1f1f1;
    /* color: #cccc; */
}
.card button {
  padding: 5px;
  color: #000;
  background-color: #fff;
  font-size: 15px;
  width: 100px;
  border-radius: 5px;
  font-weight: 500;
  border: none;
  transition: all ease .5s;
}
.card button:hover {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.card h2 {
    padding-bottom: 5px;
    margin-top: 0;
    color: #fff;
    border-bottom: 1px solid #ccc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.card p {
    padding-top: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
}
#card1 {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.6)0%, rgba(0,0,0,0.9)100%), url("1.jpeg");
}
.container2 h1 {
    padding-top: 40px;
    font-size: 25px;
    margin-bottom: 15px;
    margin-top: 0px;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}
.align-center {
    justify-content: center;
    text-align: center;
}
#first, #sec {
    border-right: 1px solid #cccc;
}
.icon {
    padding: 10px;
    background-color: #e7e7e7;
    border-radius: 50%;
    color: #192a56;
    box-shadow: 1px 2px 5px #1a1919cc;
}
.apply div{
  /* margin: 10px 0 10px 20px; */
  padding: 25px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.apply {
  display: flex;
}
.footer{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
  box-sizing: border-box;
  background-color: #001222;
}
.flex-footer {
  flex-basis: 32.3%;
  flex-shrink: 1;
  flex-grow: 0;
  padding: 20px;
}
#f-card1, #f-card2, #f-card3 {
  color: #cccc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#f-card1 h2, #f-card2 h2, #f-card3 h2{
  padding: 10px;
  margin: 10px;
  font-size: 20px;
}
#f-card1 p, #f-card2 li {
  margin-left: 10px;
  padding: 0 0 10px 15px ;
}
#f-card2 li a {
  color: #cccc;
}
#f-card1 p a{
  color: #cccc;
}
#f-card1 p a:hover {
  text-decoration: underline;
}
#f-card2 li a:hover {
  text-decoration: underline;
}
.f-icons {
  margin-left: 10px;
  padding-left: 5px;
}
.f-icons a{
  color: #cccc;
  padding: 0 10px 0 5px;
}
.f-icons a:hover {
  border-bottom: 1px solid #cccc;
}
.copyright {
  background-color: #001222;
  border-top: 1px solid #cccc;
  color: #cccc;
  display: flex;
  justify-content: center;
}
.copyright p, .developer p{
  padding: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.developer {
  background-color: #001222;
  color: #cccc;
  display: flex;
  justify-content: center;
}
.developer p a {
  color: #cccc;
  text-decoration: underline;
}