/* Increase the navbar height */
.navbar {
  padding-top: 20px; /* Adjust the value to increase/decrease the height */
  padding-bottom: 20px; /* Adjust the value to increase/decrease the height */
}

.bg-custom {
  background: #00d2ff;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #3a7bd5, #00d2ff);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #3a7bd5, #00d2ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/* Adjust the navbar brand alignment */
.navbar-brand {
  display: flex;
  align-items: center;
  height: 100%; /* Maintain full height of navbar */
}

.navbar-brand img {
  margin-right: 10px; /* Adjust as needed */
  height: 50px; /* Adjust as needed */
  width: auto;
}

/* Style the navbar links to be horizontal */
.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none; /* Remove bullet points */
  margin: 0; /* Remove default margin */
  flex-direction: row;
}

.navbar-nav .nav-item {
  margin-right: 15px; /* Adjust spacing between items */
  margin-left: 0;
}

.navbar-nav .nav-link {
  color: white; /* Set the font color */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s; /* Add transition effect */
  margin-right: 40px;
}

.navbar-nav .nav-link:hover {
  color: #000000; /* Change color on hover to a contrasting color */
}

.navbar-nav .nav-link h4 {
  color: #000000;
  font-size: 1rem;
  font-weight: bold;
}

/*----------MAIN CONTENT-----------------*/
* {
  font-family: Nunito, sans-serif;
}

.responsive-cell-block {
  min-height: 75px;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: space-evenly;
}

.team-head-text {
  font-size: 48px;
  font-weight: 900;
  text-align: center;
}

.team-head-text {
  line-height: 50px;
  width: 100%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
}

.container {
  max-width: 1380px;
  margin-top: 60px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  padding-top: 0px;
  padding-right: 30px;
  padding-bottom: 0px;
  padding-left: 30px;
}

.card {
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  padding-right: 25px;
  padding-bottom: 30px;
  padding-left: 25px;
}

.card-container {
  width: 280px;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 25px;
  margin-left: 10px;
}

.name {
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
  font-size: 18px;
  font-weight: 800;
}

.position {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.feature-text {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  color: rgb(122, 122, 122);
  line-height: 30px;
}

.social-icons {
  width: 70px;
  display: flex;
  justify-content: space-between;
}

.team-image-wrapper {
  clip-path: circle(50% at 50% 50%);
  width: 130px;
  height: 130px;
}

.team-member-image {
  max-width: 100%;
}

/*-------------------------------------------------------------------------------*/
/*Footer START HERE*/

#footer {
  background: #00d2ff;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #3a7bd5, #00d2ff);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #3a7bd5, #00d2ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  text-align: center;
  padding-top: 0px; /* Decreased padding-top */
  padding-bottom: 5px; /* Decreased padding-bottom */
  height: auto; /* Removed fixed height */
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.block{
  margin-top: 37px;
}

.footer-contant h3 {
  color: #ffffff;
  font-size: 24px; /* Decreased font size */
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  margin: 0px;
  padding-bottom: 15px; /* Decreased padding */
}

.social-icon a {
  margin-right: 10px;
  display: inline-block;
  text-decoration: none; /* Added to remove underline on social icons */
}

.social-icon a i {
  border-radius: 100%;
  color: #ffffff;
  font-size: 24px; /* Decreased font size */
  height: 36px; /* Decreased height */
  width: 36px; /* Decreased width */
  line-height: 36px; /* Adjusted line-height */
  text-align: center;
}

.support-link {
  padding-top: 16px; /* Adjusted padding-top */
  padding-bottom: 10px; /* Added padding-bottom */
}

.support-link ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style-type: none;
  padding: 0; /* Add this to remove default padding */
}

.support-link li {
  margin-right: 20px; /* Decreased margin-right */
}

.support-link a {
  color: #ffffff; /* Changed text color to white */
  font-size: 18px;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
}

.support-link a::after {
  content: "";
  margin-bottom: 48px;
  position: absolute;
  width: 100%;
  height: 1px; /* Adjust the thickness of the underline as needed */
  bottom: 0;
  left: 0;
  background-color: #ffffff; /* Adjust the color of the underline as needed */
}

/* Media Querry For Mobile */
@media (max-width: 576px) {
  .navbar {
    padding-top: 20px; /* Adjust the value to increase/decrease the height */
    padding-bottom: 20px; /* Adjust the value to increase/decrease the height */
  }
  
  .bg-custom {
  background: #00d2ff;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #3a7bd5, #00d2ff);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #3a7bd5, #00d2ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }
  
  
  .navbar-brand {
    display: flex;
    align-items: center;
    height: 100%; /* Maintain full height of navbar */
    margin-left: 70px;
  }
  

  .navbar-brand img {
  height: 40px;
  width: 149px;
  margin-left: 7px;
  margin-right: 25px;
}


  h3 {
    margin: 0px 2px 0; /* Reset default margin */
    font-size: 1.5rem;
    color: white;
  }

  .navbar-nav {
    display: flex;
    margin: 0 1px -20px 18px;
    flex-direction: row;
    margin-left: 42px;

  }

  .navbar-nav .nav-item {
    margin-right: -5px; /* Adjust spacing between items */
  }

  .navbar-nav .nav-link {
    transition: color 0.3s; /* Add transition effect */
    margin-right: 26px;
  }

  .navbar-nav .nav-link:hover {
    color: #000000; /* Change color on hover to a contrasting color */
  }

  .navbar-nav .nav-link h4 {
    font-size: 10px;
  }

  /*-----------------TEXT------------------------------------------*/
  h1, .h1 {
    font-size: 33px;
}

p {
font-size: 14px;
text-align: initial;
}
	
.feature-text{
	text-align: center;
}
	
 /*--------------FOOTER---------------------------------------------------*/
  #footer {
    padding-top: 1px;
    padding-bottom: 1px;
  }
	
  .container {
  margin-top: 31px;
}
	
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
  
  .footer-contant h3 {
    font-size: 22px;
    padding-bottom: 10px;
  }
  
  .social-icon a {
    margin-right: 10px;
    display: inline-block; /* Add this line to make icons display properly */
  }
  
  .social-icon a i {
    font-size: 25px;
    line-height: 40px;
  }
  
  .support-link {
    padding-top: 6px;
  }
  
  .support-link a {
    font-size: 15px;
    font-weight: bold;
  }
	
	.support-link ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style-type: none;
    padding: 0 0 0 22px;
}

}



@media (max-width: 500px) {
  .card-container {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 25px;
    margin-left: 0px;
  }
}