#ec{
    margin: 0!Important;
}
img{
    max-width: 100%;
    height: auto;
}
.text-justify{
    text-align: justify;
}
.fw-600{
    font-weight: 600;
}
.primary-light-bg{
    background-color: #fdfafa;
}
.bg-common{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.line-clamp-2{
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3{
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-4{
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sec-btn{
    background: var(--billdins-black);
}
.sec-btn:hover{
    background: var(--billdins-base);
}
.sec-btn:hover .hover-btn{
    background: var(--billdins-base);
}
.pt-70{
    padding-top: 70px;
}
.pb-70{
    padding-bottom: 70px;
}
.ptb-70{
    padding: 70px 0;
}
.pt-80{
    padding-top: 80px;
}
.pb-80{
    padding-bottom: 80px;
}
.ptb-80{
    padding: 80px 0;
}
.pt-100{
    padding-top: 100px;
}
.pb-100{
    padding-bottom: 100px;
}
.ptb-100{
    padding: 100px 0;
}
/* Hero Banner Section */
.hero-banner {
    padding: 50px 0;
    position: relative;
    background-image: url('/Content/img/bg/hero-bg-2.jpg');
    background-size: cover;
    background-position: center center;
    min-height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)); 
    z-index: 1;
}

/* Content Styling */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
}
.hero-content h1 {
    color: #fff;
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 30px;
}
.portfolio-two__single .content-box .project-description{
    font-size: 14px;
}
.location-card {
    position: relative;
    overflow: hidden;
    height: 100%;
}
.location-card.first{
    max-height: 648px;
}
.location-right-col .location-card{
    height: calc(324px - 30px);
}
.location-img {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.location-img img {
    border-radius: 10px;
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    height: 100%;
}
.location-img::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
    border-radius: 10px;
}
.location-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    z-index: 2;
}
.location-content h3{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.location-content p {
    color: #fff;
}
/* Team */
.team-bio p {
    font-size: 14px;
    line-height: 1.6;
    transition: all 500ms ease;
}
.team-two__single:hover .team-bio p{
    color: #fff;
}
/* Blog */
.blog-item{
    border: 1px solid #E3E2E2;
    overflow: hidden;
}
.blog-item .blog-img img{
    width: 100%;
}
.blog-item-content{
    padding: 25px 30px;
}
.blog-item .blog-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}
.blog-item .blog-title a{
    color: var(--billdins-black);
}
.blog-item .blog-title a:hover{
    color: #0a58ca;
}
.blog-item-content p{
    font-size: 16px;
    margin-bottom: 16px;
}
.blog-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.blog-btn span{
    transition: all 0.5s;
}
.blog-btn:hover span{
    transform: translateX(10px);
}
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6
{
    font-weight: 700;
    margin-bottom: 20px;
}
.blog-content ul, .blog-content ol, .list-disc{
    padding-left: 30px;
}
.blog-content ul li {
    list-style: disc !important;
}
.blog-content ol li{
    list-style: decimal;
}
.blog-content ul li, .blog-content ol li{
    margin-bottom: 10px;
}
/* Career */
.job-card{
    padding: 30px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.job-card .job-title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}
.job-card p{
    font-size: 16px;
    margin-bottom: 16px;
}
.job-point-list li{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 8px;
}
.job-point-list li:last-child{
    margin-bottom: 0;
}
.job-point-list li i{
    color: var(--billdins-base);
    width: 16px;
}
.job-details-btn{
    display: block;
    background: var(--billdins-base);
    color: #fff;
    padding: 8px 16px;
    text-align: center;
    border-radius: 5px;
    margin-top: 16px;
}
.job-details-btn:hover{
    background: var(--billdins-black);
    color: #fff;
}
.culture-card {
    background: #fff;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(200, 200, 200, 0.2);
    border-radius: 10px;
}

.culture-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.culture-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--billdins-base);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 28px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}
.culture-icon i{
    color: #fff;

}
.culture-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #222;
    font-weight: 600;
}

.culture-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
.benefit-card {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 15px;
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-2px);
    border-color: var(--billdins-base);
    box-shadow: 0 8px 32px -4px #cb212717;
}

.icon-container {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #ffeeef;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container i {
    font-size: 20px;
    color: var(--billdins-base);
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.benefit-description {
    font-size: 15px;
    line-height: 1.6;
}
.job-item {
    display: block;
    padding: 15px 20px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
}
.job-item:last-child {
    border-bottom: none;
}
.job-item:hover {
    background-color: #ffffff;
    transform: translateX(2px);
}
.job-header {
    margin-bottom: 5px;
}
.job-title {
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.005em;
    line-height: 1.4;
}
.job-meta {
    margin-bottom: 5px;
    gap: 5px;
}
.job-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #64748b;
}
.job-location i {
    color: var(--billdins-base);
    font-size: 14px;
}
.job-position {
    font-size: 12px;
    background: #fef2f2;
    color: var(--billdins-base);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.4;
}
.job-salary {
    font-size: 15px;
    color: var(--billdins-base);
    font-weight: 600;
}
.file-upload::file-selector-button {
    border: none;
    background: var(--billdins-base);
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    transition: 0.5s;
    margin-left: 0px;
    padding: 6px 16px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}
.file-upload[type=file]:hover::file-selector-button {
    background: var(--billdins-black) !important;
    color: #fff;
}
/* Sub Services */
.sub-service{
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
}
.sub-service .sub-service-img img{
    width: 100%;
}
.sub-service .service-content{
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sub-service h3{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}
.sub-service p{
    font-size: 16px;
}
/* Responsive */
@media (max-width: 991px){
    .hero-banner{
        min-height: 55vh;
    }
    .hero-content h1 {
        font-size: 48px;
    }
    .pt-100{
        padding-top: 80px;
    }
    .pb-100{
        padding-bottom: 80px;
    }
    .ptb-100{
        padding: 80px 0;
    }
    .location-card {
        max-height: none;
    }
    .location-card.first{
        max-height: none;
    }
    .location-right-col .location-card {
        height: auto;
    }
    .location-img {
        height: auto;
    }
    .location-content {
        padding: 25px;
    }
    .sidebar {
        position: unset;
        overflow: hidden;
    }
}
@media only screen (min-width: 768px) and (max-width: 991px){
    .page-header{
        padding: 70px 0;
    }
    .page-header__inner .page-title{
        font-size: 36px;
    }
}
@media (max-width: 475px) {
    .logo-one a img{
        width: 180px;
    }
    .hero-banner{
        min-height: 55vh;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 22px;
    }
    .location-card {
        min-height: 350px;
        max-height: none;
    }
    .location-card.first{
        min-height: 350px;
        max-height: none;
    }
    .location-right-col .location-card {
        height: 350px;
    }
    .location-img, .location-img img {
        height: 100%;
    }
    .location-content {
        padding: 25px;
    }
    .sidebar__recent-post-list li{
        display: block;
    }
    .sidebar__recent-post-list li .img-box{
        width: 100%;
    }
    .sidebar__recent-post-list li .text-box{
        margin-left: 0;
        margin-top: 10px;
    }
}