/* General styling */
* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;}
.logo{
    animation: flip 3s ease-in-out infinite;
    transform-style: preserve-3d; /* Preserve 3D effect during flip */
}
    @keyframes flip {
        0% {
          transform: rotateY(0deg);
        }
        50%{
            transform: rotateY(180deg);
        }
        100% {
          transform: rotateY(360deg);
        }
      }
.header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url('bg2.jpeg');
  background-position: center;
  background-size: cover;
  position: relative;
}

nav{
  display: flex;
  padding: 0 6%;
  justify-content: space-between;
}

.nav-links{
  flex: 1;
  text-align: center;
}
.nav-links ul li{
  list-style: none;
  display:inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-links ul li a{
  color: #0e09a3;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.nav-links ul li::after{
  content: '';
  width: 0%;
  height: 2px;
  background: #0066cc;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li a:hover{
  color: #0aebf7;
}
.nav-links ul li:hover::after{
  width: 100%;
}
/* Header */
.content {
    background-color: transparent;
    color: #0f0c5f;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 20px;
}

.content .logo img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

.content h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.content .tagline {
    font-size: 18px;
    font-weight: bold;
}

/* Main content */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}


a {
    color: #0f0c5f;
    text-decoration: none;
}

.card-container {
  display: flex;
  justify-content: center;
  width: 60%; /* Adjust width as needed */
  gap: 2px; /* Space between the cards */ 
  margin-left: 22%;  
}

.card {
    background-color: transparent;
    border-radius: 10px;
    box-shadow: none;
    padding: 20px;
    width: 45%; /* Adjust width to fit two cards side by side */
    color: #0f0c5f;
    line-height: 1.5;
    font-size: 15px;
}

.card strong {
    color: #0f0c5f;
}

.card p {
    margin: 10px 0;
}

.card a {
    color: #0066cc;
    text-decoration: none;
}

.card a:hover {
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}

  /* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropbtn {
    color: #0f0c5f;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    min-width: 100px;
    z-index: 1;
    text-align: center;
    right: 100%;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-transform: capitalize;
    font-weight: 300;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  /* Show the dropdown content on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Submenu inside dropdown */
  .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    min-width: 200px;
  }
  
  .dropdown-submenu a {
    padding: 10px 20px;
    font-weight: 300;
  }
  
  .dropdown:hover .dropdown-submenu {
    display: none;
  }
  
  .dropdown:hover .dropdown-content .dropdown:hover .dropdown-submenu {
    display: block;
  }
  
  /* Styling for submenu */
  .dropdown-content .dropdown {
    position: relative;
  }
  
  .dropdown-content .dropdown:hover .dropdown-submenu {
    display: block;
  }
  nav .fa{
    display: none;
  }
  @media(max-width: 700px){
    .card{
      font-size: 12px;
    }
    .card-container{
      flex-direction: column;
    }
    .nav-links ul li{
      display: block;
    }
    .nav-links{
      position: fixed;
      background: #ee8982;
      height: 100vh;
      width: 200px;
      top: 0;
      right: -200px;
      text-align: left;
      z-index: 2;
      transition: 1s;
    }
    nav .fa{
      display: block;
      color: #0f0c5f;
      margin: 10px;
      font-size: 22px;
      cursor: pointer;
    }
    .nav-links ul{
      padding: 30px;
    }
    .card-container {
  display: flex;
  justify-content: center;
  width: 60%; /* Adjust width as needed */
  gap: 2px; /* Space between the cards */ 
  margin-left: 2%;  
}
  }
/*----- working hours------*/

.working-hour{
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}
.h1{
  font-size: 36px;
  font-weight: 600;
}

.p{
  color: #0f0c5f;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}
.row{
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.day{
  flex-basis: 31%;
  background: rgba(4, 58, 113, 0.1);
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 12px;
  box-sizing: border-box;
  transition: 0.5s;
}
h3{
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}
.day:hover{
  box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

@media(max-width: 700px){
  .row{
    flex-direction: column;
  }
}

/*------solution---------*/
.solution{
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}

.solution-col{
  flex-basis: 32%;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.solution-col img{
  display: block;
}
.layer{
  background: transparent;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.layer:hover{
  background: rgb(2, 11, 114, 0.7);
}
.layer h3{
  width: 100%;
  font-weight: 500;
  color: #fff;
  font-size: 20px;
  bottom: 0;
  left: 40%;
  transform: translateX(-40%);
  position: absolute;
  transition: 0.5s;
  opacity: 0;
}
.layer:hover h3{
  bottom: 39%;
  opacity: 1;
}
@media(max-width: 700px) {
  .solution-col img{
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
}
/*------footer--------*/

.footer{
  width: 100%;
  text-align: center;
  padding: 30px 0;
}
.footer h4{
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
}
.icons .fa{
  color: #f44336;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
  font-size: 20px;
}
.AB{
  font-weight: 600;
  color: black;
}
.AB .fa{
  color: #fff;
  background: darkgreen;
  font-size: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

  /*------- aboutus -------*/
 
.sub-header{
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)), 
  url('c7.jpeg');
  background-position: center;
  background-size: cover;
  text-align: center;
}
  .about-us {
    max-width: 80%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}
.sub-header .about-logo{
  height: 100px;
  width: 100px;
}

.about-logo{
  animation: flip 3s ease-in-out infinite;
  transform-style: preserve-3d; /* Preserve 3D effect during flip */
}
h1 {
  font-size: 36px;
  font-weight: 600;
  color: #0f0c5f;
}

p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    color: #0f0c5f;
}

.cards{
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.about-card{
  flex-basis: 31%;
  background: rgba(4, 58, 113, 0.1);
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
}
.icon {
    font-size: 30px;
    color: black;
    margin-bottom: 15px;
    border-radius: 50%;
}

h3 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
  color: #0f0c5f;
}
.about-card:hover{
  box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

@media screen and (max-width: 700px) {
    .cards {
        flex-direction: column;
    }
}
/* ------- service -------*/
.services-wrapper{
  width: 80%;
  margin: auto;
  text-align: center;
  padding: 5% 8%;
  padding-top: 50px;
}

.service{
  top: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.A{
  color: #fff;
  font-size: 40px;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: transparent;
  letter-spacing: 4px;
  background: linear-gradient(8deg,rgb(4,52,83,1)0%,rgba(12,51,95,1)41%,rgba(41,17,45,1)100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.A::after{
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  height: 8px;
  width: 80%;
  border-radius: 10%;
  background: rgba(255, 255, 255, 0.05);
}
.A span{
  position: absolute;
  top: 100%;
  left: 10%;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(12,51,95), rgba(41,17,45));
  animation: anim 5s linear infinite;
}
@keyframes anim {
  95%{
      opacity: 1;
  }
  100%{
      opacity: 0;
      left: 88%;
  }    
}

.service-cards{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 100px;
  gap: 10px;
}

.service-card{
  height: 330px;
  width: 370px;
  background: linear-gradient(150deg, rgba(12,51,95), rgba(41,17,45));
  padding: 10% 5%;
  border: 2px solid rgba(114, 226,174, 0.2);
  border-radius: 8px;
  transition: .6s;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::after{
  content: "";
  position: absolute;
  top: 150%;
  left: -200px;
  width: 120%;
  transform: rotate(50deg);
  background: #fff;
  height: 18px;
  filter: blur(30px);
  opacity: 0.5;
  transition: 1s ease-in-out;
}

.service-card:hover::after{
  width: 225%;
  top: -100%;
}

.service-card i{
  color: #72e2ae;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 4.8rem;
}

.service-card h2{
  color: #fff;
  font-size: 20px;
}
.service-card p{
  text-align: center;
  width: 100%;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.6);

}
.sevice-card:hover{
  background: transparent;
  transform: translateY(-8px);
  border-color: #00ff37;
}
.service-card:hover i{
  color: #00ff37;
}

@media screen and (max-width:1200px){
  .service-cards{
      grid-template-columns: repeat(2,1fr);
  }
}
@media screen and (max-width:700px){
  .service-cards{
      grid-template-columns: repeat(1,1fr);
  }

  .A{
      font-size: 20px;
      top: 15%;
  }
  .service-card{
  height: 330px;
  width: 100%;
  background: linear-gradient(150deg, rgba(12,51,95), rgba(41,17,45));
  padding: 10% 0;
  border: 2px solid rgba(114, 226,174, 0.2);
  border-radius: 8px;
  transition: .6s;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
}
  /* ------- staff details -------*/
  /* google font CDN link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&800');

.wrapper{
  background: rgba(0,51,95);
  margin-top: 0px;
}

.wrapper h1{
  font-family: 'Allura', cursive;
  font-size: 52px;
  margin-bottom: 60px;
  text-align: center;
}

.team{
  display: flex;
  justify-content: center;
  width: auto;
  text-align: center;
  flex-wrap: wrap;
}

.team .team_member{
  background: #fff;
  margin: 5px;
  margin-bottom: 50px;
  width: 300px;
  padding: 20px;
  line-height: 20px;
  color: #8e8b8b;  
  position: relative;
  box-shadow: solid black;
}
.media-icons a{
  height: 35px;
  width: 35px;
  background: #0066cc;
  color: #fff;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  line-height: 33px;
  border: 2px solid transparent;
  font-size: 14px;
  transition: all 0.4s ease;
}
.media-icons a:hover{
  color: #0066cc;
  background: #fff;
}
.scat{
  border-radius: 50%;
  background: #fff;
  border: 3px solid #0066cc;

}
.team .team_member h3{
  color: rgba(0,51,95);
  font-size: 26px;
  margin-top: 50px;
}

.team .team_member p.role{
  color: #4d4b4b;
  margin: 12px 0;
  font-size: 12px;
  text-transform: uppercase;
}

.team .team_member .team_img{
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.team .team_member .team_img img{
  width: 100px;
  height: 100px;
  padding: 5px;
}
/*-------contact us----------*/

.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: #0066cc;
  margin: 10px;
  margin-right: 30px;
}
.contact-col div p{
  padding: 0;
  color: #6c6a6a;
}

.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;
}

.hero-btn{
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 34px;
  font-size: 13px;
  background: #0e09a3;
  position: relative;
  cursor: pointer;
}

.hero-btn:hover{
  border: 1px solid #0f0c5f;
  background: #0f0c5f;
  transition: 1s;
}
@media (max-width: 700px){
  .contact-col div h5{
    font-size: 15px;
  }
  .A{
    margin-top: 40%;
  }
}
