.theme-btn-color {
  background-color: #46BDC6;
  color: #fff; 
  border: none; 
  padding: 10px 20px; 
  text-decoration: none; 
  display: inline-block; 
  border-radius: 4px; 
  font-size: 16px; 
  text-align: center; 
}

/* Optional: Add a hover effect */
.theme-btn-color:hover {
  background-color: #3ba3b1; /* Slightly darker shade for hover effect */
}
.theme-text-color{
  color: #46BDC6;
}

.bg-custom-client {
  background-color: #46BDC6;
  min-height: 200px; /* Adjust the height as needed */
  display: flex;
  color:#ffff;
  justify-content: center;
  align-items: center;
}
.stat-box {
  margin: 25px; /* Add margin to create gaps between the boxes */
}

/* Optional: Adjust the font size and padding for better appearance */
.stat-box h1 {
  font-size: 2.5rem;
}

.stat-box p {
  font-size: 1.2rem;
}
.navbar {
    background-color: white;
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .btn-primary {
    background-color: #46BDC6;
    border-color: #46BDC6;
}

.navbar .btn-primary:hover {
    background-color: #45ABB7;
    border-color: #45ABB7;
}

.navbar .nav-link:hover {
    color: #46BDC6;
}
.carousel-item {
    height: 600px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    text-align: left;
}
.carousel-caption h5 {
    font-size: 2.5rem; /* Adjust the size as needed */
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.25rem; /* Adjust the size as needed */
}
.slider-container {
    overflow: hidden;
    border: none; /* Remove border style */
  }
  
  .cards-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px; /* Add gap between cards */
  }
  
  .slider-controls {
    text-align: center;
    margin-top: 20px;
  }
  
  /* Add styles for slider navigation controls */
  .slider-controls span {
    cursor: pointer;
    padding: 5px 10px;
    background-color: #f1f1f1;
    border-radius: 50%;
    margin: 0 5px;
  }
  
  /* Initially show 4 cards per row */
  .card {
    flex: 0 0 calc(33.33% - 20px); /* Show 3 cards per row */
    border: none;
  }
  
  /* Media query for screens that can hold 2 cards per row */
  @media (max-width: 1200px) {
    .card {
      flex: 0 0 calc(50% - 20px); /* Show 2 cards per row */
    }
  }
  
  /* Media query for screens that can hold 1 card per row */
  @media (max-width: 768px) {
    .card {
      flex: 0 0 100%; /* Show 1 card per row */
    }
  }
  
  .project-card {
    margin-bottom: 20px;
}
.card-img-top {
  width: 100%;
  height: 15vw; /* Default height for larger screens */
  object-fit: cover;
  max-height: 300px; /* Maximum height in pixels */
}

@media (max-width: 1200px) {
  .card-img-top {
    height: 20vw; /* Adjust height for smaller screens */
  }
}

@media (max-width: 992px) {
  .card-img-top {
    height: 25vw; /* Adjust height for even smaller screens */
  }
}

@media (max-width: 768px) {
  .card-img-top {
    height: 30vw; /* Adjust height for tablets */
  }
}

@media (max-width: 576px) {
  .card-img-top {
    height: 40vw; /* Adjust height for mobile devices */
  }
}

.project-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-btn {
    background-color: #46BDC6;
    color: #fff;
}

.project-btn:hover {
    background-color: #3ba3b1;
}

.project-footer {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.project-info {
    margin-left: 20px; /* Adjust this for spacing between button and info */
    color:grey;
}


.icon-circle {
  background-color: #45ABB7;
  font-size: 5rem;
  padding: 20px;
  border-radius: 50%;
  color: white;
}

.footer {
  background-color: #00535b;
  padding: 30px 5px;
}
.footer ul {
  list-style: none;
  padding-left: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer .social-icons a {
  color: #333;
  font-size: 20px;
  margin-right: 10px;
}
.footer p,h5{
  color: #fff;
}
.footer .navlink{
  color: #fff;
  text-decoration: none;
}

.footer .navlink:hover {
  color: #ccc; /* Hover color */
}

.form-inline {
  display: flex; /* Aligns items in a row */
  align-items: center; /* Centers items vertically */
  position: relative; /* Allows absolute positioning inside */
}
.form-inline input[type="text"] {
  flex-grow: 1; /* Allows the input to grow and fill available space */
  padding: 9px;
  border: 1px solid #ddd;
  border-radius: 30px;
}
.form-inline button {
  position: absolute; /* Positions the button over the input field */
  right: 0; /* Aligns the button to the right */
  padding: 10px 20px;
  margin-left: -40px; /* Negative margin to create overlap */
  border: none;
  background-color: darkcyan;
  color: white;
  border-radius: 30px;
  cursor: pointer;
}
.form-inline button:hover {
  background-color: #45ABB7;
}




 /* Code for Aboutuspage*/

 .mission-card {
  margin: 20px 20px 20px 20px;
  padding: 20px; /* Add padding for better spacing */
  box-shadow: 8px 4px 4px 0px rgba(0, 0, 0, 0.1); /* Add a slight shadow effect */
  transition: box-shadow 0.3s ease; /* Add transition for the shadow effect */
  background-color: #fff; /* Set initial background color */
  color: #000; /* Set initial text color */
  height: 450px; /* Increase height */
  width:340px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center along y-axis */
  align-items: center; /* Center along x-axis */
}

.mission-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mission-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
  background-color: #46BDC6; /* Change background color on hover */
  color: #fff; /* Change text color on hover */
  background-size: 100% 200%; /* Start background color animation from bottom */
  background-position: 0 100%; /* Position background color at bottom */
  transition: box-shadow 0.3s ease, background 0.5s ease; /* Add transition for hover effects */
}

.profile-card {
  width: 270px;
  min-height: 410px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: inline-block; /* Change to inline-block for nowrap */
  margin-right: 20px; /* Add margin for spacing */
}

.profile-picture {
  width: 100%;
  height: 337px;
}

.profile-info {
  padding: 10px;
  text-align: center;
}

.profile-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.profile-role {
  font-size: 14px;
  color: #666;
}

.profile-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.profile-slider {
  display: inline-block; /* Change to inline-block */
  white-space: nowrap; /* Prevent wrapping */
  transition: transform 0.5s ease;
}

.founder-section{
  background-color: whitesmoke;
  height: 500px;
  width: 100%;
}
.founder-card {
  max-width: 340px;
  margin: auto;
  text-align: center;
}
.founder-img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-top: 15px;
}
.founder-name {
  margin-top: 15px;
  font-size: 22px;
  font-weight: bold;
}
.founder-title {
  font-size: 18px;
  color: #6c757d;
}
.founder-quote {
  font-style: italic;
  margin-top: 15px;
}

/* Code for Project Page*/
.project-img{
  border-radius: 50%;
  background-image: url('assets/image/pro-img.png');
}