/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    /* padding: 60px 0; */
}

.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
    /* background: #DCE9F5; */
    /* box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15); */
    height: 100%;
    width: 100%;
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
    /* height: 76%; */
    vertical-align: middle;
}

.team .member .social {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.5s;
    text-align: center;
    height: 95%;
}

.team .member .social span {
    font-size: 12px;
    font-weight: 600;
    padding-bottom: 10px;
}

.team .member .social ul {
    transition: color 0.3s;
    color: #222222;
    padding-top: 7px;
    border-radius: 4px;
    width: 100%;
    height: 300px;
    font-size: 10px;
    background: #3498db;
    display: inline-block;
    transition: ease-in-out 0.3s;
    color: #fff;
    text-align: left;
    list-style-type: disc;
    padding-left: 20px;
    line-height: 2;
    padding-right: 10px;
}

.team .member .social ul li {
    list-style: disc !important;
}


.team .member .social i {
    font-size: 18px;
}

.team .member .member-info {
    padding: 20px;
    text-align: center;
    background-color: #DCE9F5;
    /* height: 24%; */
}


.team .member .member-info span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    font-weight: 600;
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
}

.team .member:hover .social {
    opacity: 1;
    bottom: 15px;
}

/* 
.team .member-parent {
    height: 400px;
} */

/* Carosuel 1 */

.carousel-1 {
    position: relative;
    width: 100%;
    height: 500px;
    /* Adjust the height as needed */
    overflow: hidden;
}

.carousel-1 .carousel-item-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
}

.carousel-1 .carousel-item-1.active {
    opacity: 1;
}

.carousel-1 .carousel-item-1 h3 {
    position: relative;
    z-index: 2;
    font-size: 40px;
    color: #fff;
    opacity: 1;
    visibility: visible;
    line-height: 50px;
    margin-bottom: 15px;
    margin-top: 20%;
    margin-left: 10%;
}
.carousel-1 .carousel-item-1 .buttons{
    margin-left: 10%;
}
.carousel-1 .carousel-item-1 p {
    color: #fff;
    margin-right: 60px;
    margin-bottom: 50px;
    opacity: 1;
    visibility: visible;
    font-size: 20px;
    margin-left: 10%;
}

.carousel-navigation-1 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.carousel-navigation-1 button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

.carousel-navigation-1 button.active {
    background-color: white;
}

.carousel-controls-1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    width: 100%;
}

.prev-container-1 {
    margin-right: 10px;
}

.next-container-1 {
    margin-left: auto;
    margin-right: 2%;
}

.carousel-controls-1 button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
    cursor: pointer;
}

.carousel-controls-1 .next {
    margin-left: auto;
}

.head-content{
    margin-bottom: 3%;
}

/* Blog */

.blog .posts-list article {
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
    padding: 30px;
    height: 100%;
  }
  
  .blog .posts-list article+article {
    margin-top: 60px;
  }
  
  .blog .posts-list .post-img {
    max-height: 240px;
    margin: -30px -30px 0 -30px;
    overflow: hidden;
  }
  
  .blog .posts-list .title {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
  }
  
  .blog .posts-list .title a {
    color: var(--color-secondary);
    transition: 0.3s;
  }
  
  .blog .posts-list .title a:hover {
    color: var(--color-primary);
  }
  
  .blog .posts-list .meta-top {
    margin-top: 20px;
    color: var(--color-gray);
  }
  
  .blog .posts-list .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  .blog .posts-list .meta-top ul li+li {
    padding-left: 20px;
  }
  
  .blog .posts-list .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: rgba(var(--color-primary-rgb), 0.8);
  }
  
  .blog .posts-list .meta-top a {
    color: var(--color-gray);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
  }
  
  .blog .posts-list .content {
    margin-top: 20px;
  }
  
  .blog .posts-list .read-more a {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 30px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
  }
  
  .blog .posts-list .read-more a:hover {
    background: rgba(var(--color-primary-rgb), 0.8);
  }
  .post-box p{
    font-size: 12px;
    line-height: 18px;
  }
  .post-box .meta,.post-box p, .post-box a{
    margin-left: 15px;
    margin-bottom: 10px;
  }
  .post-box .meta{
    color: #000;
    font-weight: 600;
  }
  .post-box a{
    color: #3498db;
    font-size: 13px;
  }


  /* Media Query for Mobile Devices */
  @media (max-width: 480px) {
    .team .member .member-info {
        padding: 25px;
    }
    .team .member-parent{
        height: 300px;
    }
    .carousel-1 .carousel-item-1 h3{
        font-size: 20px;
        line-height: 36px;
        margin-top: 49%;
    }
    .carousel-1{
        height: 430px;
    }
    .head-content{
        padding: 3%;
    }
}
/* .product-head{
    padding: 30px;
} */

.product-head .col-lg-4{
    height: 110%;
}


/* extra style for cards div */
/* .post-box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 450px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}


.post-img img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #f0f0f0;
}

.meta {
  margin: 10px 0;
  font-size: 14px;
  color: #999;
  padding-left: 20px;
}

.post-date {
  font-weight: bold;
  color: #333;
  text-align: justify;
}

p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  padding-left: 20px;
}

.readmore {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-left: 20px;
}

.readmore:hover {
  color: #0056b3;
}

.readmore i {
  margin-left: 8px;
  font-size: 18px;
} */