@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
    background-color: #F0F8FF;
    /* color: #f0f0f0; */
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: black;
  color: #FFFFFF;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 5.5vh;
  background-size: 400% 400%; /* Makes the gradient larger for animation */
  animation: moveGradient 6s infinite alternate; /* Adjust timing and direction */
}
@keyframes moveGradient {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 0%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.logo-bio {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 500;
}

.logo img {
  height: 4vh;
}

.logo a {
  color: #f7f7f7;
  text-decoration: none;
}

.logo a:hover {
  color: aqua;
}

.nav-links {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-grow: 1;
}

.nav-links li {
  margin: 0 20px;
}

.nav-links a {
  text-decoration: none;
  color: #f7f7f7;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1ba1dd;
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #FFFFFF;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  text-decoration: none;
  color: #000;
}

.dropdown-toggle:hover {
  text-decoration: none;
  color: #000;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  border: 1px solid #1873B5;
  border-radius: 5px;
  left: 0;
  background-color: #F0F8FF;
  padding: 10px;
  display: none;
}

.dropdown-menu li {
  margin-bottom: 10px;
  width: 80px;
  align-items: flex-start;  
  display: flex;
  justify-content: flex-start;
}

.dropdown-menu li a {
  text-decoration: none;
  color: #141414;
  font-weight: 600;
}

.dropdown-menu li a:hover {
  text-decoration: none;
color: #1ba1dd;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
      display: none; /* Hide links by default */
      flex-direction: column;
      position: absolute;

      top: 60px; /* Adjust based on navbar height */
      left: 0;
      width: 100%;
      background: linear-gradient(to right, #0a0a0a, #0c81b8);
      padding: 10px 0;
  }
  .navbar {
    height: 59px;
  }

  .nav-links.active {
      display: flex; /* Show links when active */
  }

  .hamburger {
      display: block; /* Show hamburger icon */
  }

  .logo img {
      margin-left: 80px;
      height: 2.3rem;
  }
}
.nav {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2px;
  margin-top: 10vh;
  margin-left: 5vh;
  font-weight: 800;
}
.nav .hh{
  color:#1ba1dd;
 
}

.nav a {
  text-decoration: none;
  color: #1ebeb6;
  margin-right: 15px;
}

.nav a:hover {
  color: black;
}

.container-team {
  width: 100%; /* Use full width for responsiveness */
  max-width: 800px; /* Set a max width for larger screens */
  background: transparent;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column; /* Stack items vertically */
  justify-content: center;
  align-items: center;
  /* margin: 2000px; */
  margin: 30px auto 1vh; /* Center the container with auto margins */
  border-bottom: 3px solid #1ba1dd;
}

.content {
  text-align: center;
}
.content i{
  color: #1ebeb6;
  font-weight: 900;
}
h1 {
  margin-bottom: 20px; /* Adjust margin for better spacing */
  color: #1ba1dd;
}

p {
  line-height: 1.6;
}

@media (max-width: 768px) {
  .container-team {
      margin: 5vh 1px; /* Adjust margins for smaller screens */
  }
}

@media (max-width: 480px) {
  h1 {
      font-size: 1.5rem; /* Adjust heading size */
  }
}
.body-d {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  top: 0px;
  /* background: linear-gradient(#7782b6, #919bc7); */
}
.card-wrapper {
  max-width: 1100px;
  margin: 0 60px 35px;
  padding: 20px 10px;
  overflow: hidden;
  /* top: 5000px; */
}
.card-list .card-item {
  list-style: none;
}

.card-list .card-item .card-link {
  user-select: none;
/* width: 400px; */
display: flex;
display: block;
background: #fff;
padding: 18px;
text-decoration: none;
border-radius: 10px;
border: 2px solid transparent;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
transition: 0.2s ease;
}
.card-list .card-item .card-link:active {
  cursor: grabbing;
}


.card-list .card-link .card-image {
width: 100%;  
aspect-ratio: 16/9;
object-fit: cover;
border-radius: 40%;
}
.card-list .card-link .badge {
  color: #1ba1dd;
  background: yellow;
  margin: 16px 0 18px;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  width: fit-content;
  border-radius: 50px;
}
.card-list .card-link .badge.services1{
  color: blueviolet;
  background: rgb(146, 94, 94)
}
.card-list .card-link .badge.services2{
  color: rgb(43, 107, 226);
  background: rgb(160, 123, 123)
}
.card-list .card-link .badge.services3{
  color: rgb(192, 226, 43);
  background: rgb(170, 115, 115)
}
.card-list .card-link .badge.services4{
  color: rgb(43, 122, 226);
  background: rgb(156, 125, 125)
}
.card-list .card-link .badge.services5{
  color: rgb(18, 197, 71);
  background: rgb(179, 131, 131)
}
.card-list .card-link .badge.services6{
  color: rgb(226, 43, 58);
  background: rgb(37, 92, 124)
}


.card-list .card-link .card-title {
  font-size: 1.19rem;
  color: #000;
  font-weight: 600;

}
.card-list .card-link .card-button {
  height: 35px;
  width: 35px;
  color: #1ba1dd;
  border-radius: 50%;
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  border: 2px solid #1ba1dd;
  transform: rotate(-45deg);
  transition: 0.4s ease
}
.card-list .card-link:hover .card-button {
  color:white;
  background: #1ba1dd;
}
.card-wrapper .swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: #1ba1dd;
}
.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}
.card-wrapper .swiper-slide-button {
  color: #1ba1dd;
  margin-top: -35px;
}

@media screen and (max-width: 768px){
.card-wrapper {
  margin: 0 10px 25px;
}
.card-wrapper .swiper-slide-button {
  display: none;
}
  
}



.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
  margin-top: 5vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Add padding to the container */
}

.row {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping of columns */
  justify-content: space-between; /* Space between columns */
}

.col-md-4 {
  flex: 1; /* Allow columns to grow equally */
  min-width: 250px; /* Set a minimum width for columns */
  padding: 0 15px; /* Add padding for spacing */
  box-sizing: border-box; /* Include padding in width calculation */
}

.footer-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.social-icons {
  list-style: none;
  padding: 0;
  display: flex;
}

.social-icons li {
  margin-right: 10px;
}
.footer-logo {
  max-width: 100px; /* Adjust size as needed */
  margin-bottom: 20px; /* Add spacing below the logo */
  display: block; /* Ensure proper alignment */
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1ba1dd;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #1ba1dd;
}

.copyright {
  text-align: center;
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .row {
      flex-direction: column; /* Stack columns vertically on smaller screens */
      align-items: center; /* Center items */
  }

  .col-md-4 {
      width: 100%; /* Full width on smaller screens */
      margin-bottom: 20px; /* Add space between stacked columns */
  }

  .social-icons {
      justify-content: center; /* Center social icons */
      margin-bottom: 20px; /* Add space below social icons */
  }
}

@media (max-width: 480px) {
  .footer-heading {
      font-size: 18px; /* Slightly smaller heading on very small screens */
  }

  .social-icons li {
      margin-right: 5px; /* Reduce margin for smaller screens */
  }

  .footer-links a {
      font-size: 14px; /* Smaller font size for links */
  }
}