/*------------------------------------------------------------------
Project:Team layout
Author: The_Krishna        
-------------------------------------------------------------------*/
/*----------------Table of contents Start---------------------------
1.Default css
2.layout-1 section
---------Table of contents End-----------------------------------*/
/*------------------------ [Color codes] ------------------------                     
Background:#FFF
Content:#f9d67c 
-------------------------------------------------------------------*/
/************************ 1.Default css ***************************/
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
}
*, ::after, ::before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
a:focus, a {
    outline: none;
    text-decoration: none;
    cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
svg {
    vertical-align: middle;
}
input {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
    border: none;
    outline: none;
    width: 100%;
}
textarea {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
body {
    font-family: "Jost", sans-serif;
}
.row {
    --bs-gutter-x: 30px;
}
/* ------------- 1. layout-1 section ------------- */
.team-section-1 {
    padding: 20px 0;
}
.heading-title {
    text-align: center;
    margin-bottom: 40px;
}
.heading-title p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
    color: #f9d67c;
}
.heading-title h1 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    line-height: 38px;
    color: #191919;
    display: block;
}
.team-card {
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
}

/*.team-card {
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    border: 2px solid transparent;       /* Initial border invisible */
   /* transition: border-color 0.3s ease;   /* Smooth transition for border color */
/*}*/

/*.team-card:hover {
    border-color: #000000; /* Change to your desired color */
/*}*/
.team-card .team-thamnel {
    width: 80%;
    height: 80%;
    position: relative;
    text-decoration: none;
    transition: all 0.3s;
}
.team-thamnel img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.team-card .team-thamnel .team-card-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0px;
    height: 0px;
    opacity: 0;
    flex-shrink: 0;
    border-radius: 100px 100px 0px 100px;
    background: #4c6aab;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-weight: 500;
    transition: all 0.4s;
    overflow: hidden;
    gap: 5px;
}
.team-card .team-thamnel .team-card-btn .btn-text {
    transition: all 0.2s;
    opacity: 0;
    margin-top: 20px;
}
.team-card .team-thamnel .team-card-btn .icon-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #000000;
    border-radius: 50%;
    transition: all 0.2s;
    opacity: 0;
    font-size: 18px;
}
.team-card:hover .team-thamnel {
    transform-origin: bottom;
    transform: translateY(-12px) translateX(-10px);
}
.team-card:hover .team-thamnel .team-card-btn {
    width: 115px;
    height: 115px;
    opacity: 1;
    transition: all 0.3s;
}
.team-card:hover .team-thamnel .team-card-btn .btn-text {
    opacity: 1;
    transition-delay: 0.2s;
}
.team-card:hover .team-thamnel .team-card-btn .icon-arrow {
    opacity: 1;
    transition-delay: 0.23s;
}
.team-card:hover .team-thamnel img {
    filter: blur(1px);
}
.team-card .team-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5px;
    gap: 8px;
    height: 100%;
}
.team-card .team-body .team-info {
    flex-grow: 1;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}
.team-info p {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
    transition: all .35s ease-in;
}
.team-info span {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    display: block;
}
.mt-2 {
    margin-top: 20px !important;
}
.team-card .team-body .team-info .title::after {
    content: "";
    position: absolute;
    display: inline;
    width: 0%;
    height: 1px;
    left: 0;
    bottom: -2px;
    opacity: 1;
    transition: all 0.3s;
    background-color: #000;
}
.team-card .team-body .team-info .title:hover::after {
    width: 100%;
}
.team-card .team-body .boder-hr {
    width: 1px;
    height: 50px;
    background-color: #030917;
    opacity: 0.1;
}
.socile-icon {
    display: flex;
    gap: 15px;
    transition: all 0.4s;
}
.socile-icon a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s;
}
.socile-icon a:hover {
    transform: translateY(-10px);
    transition: all 0.4s;
}