.solutions-wrapper {
    width: 85%;
    max-width: 1400px;
    margin: 60px auto;
}

.solution-box {
    display: flex;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: .3s;
}

.solution-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.solution-info {
    width: 40%;
    padding: 25px;
    background: #fafafa;
    border-right: 1px solid #eee;
    margin: auto;
}

.solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 10px;
}

.solution-title {
    font-size: 34px;
    color: #0f172a;
    line-height: 1.4;
}

.solution-content {
    width: 60%;
    padding: 25px;
}

.solution-description {
    color: #64748b;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.solution-heading {
    color: var(--tanspot-base);
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.solution-capabilities {
    display: flex;
    justify-content: space-between;
}

.solution-list {
    width: 48%;
}

.solution-item {
    list-style: none;
    margin-bottom: 18px;
    color: #475569;
    font-size: 17px;
    position: relative;
    padding-left: 20px;
}

.solution-item::before {
    content: "•";
    color: var(--tanspot-base);
    font-size: 22px;
    position: absolute;
    left: 0;
    top: -2px;
}

/*====== industry=====*/

.industry-section {
    padding: 60px 0;
}

.industry-container {
    width: 85%;
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.industry-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px;
    transition: .3s;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}
.industry-icon-heading{
    display: flex;
    gap: 15px;
    align-items: center;
}

.industry-icon {
    width: 60px;
    height: 60px;
    border: 1px solid #dbe3ee;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    margin-bottom: 25px;
}

.industry-card h3 {
    font-size: 28px;
    color: #2d3137;
    margin-bottom: 25px;
    font-weight: 700;
}

.industry-card p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 18px;
}

.industry-home-section{
    padding:80px 7%;
}

.industry-home-container{
    display:flex;
    gap:50px;
    align-items:center;
}

.industry-home-left{
    flex:1;
}

.industry-home-right{
    flex:1;
}

.industry-home-left h2{
    font-size:52px;
    line-height:1.2;
    color:#072c3f;
    margin-bottom:25px;
}

.industry-home-desc{
    font-size:17px;
    line-height:1.8;
    color:#666;
    margin-bottom:40px;
}

.industry-home-list{
    list-style:none;
}

.industry-home-list li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;
    border-bottom:1px solid #e5e5e5;
    cursor:pointer;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}

.industry-home-list li:hover,
.industry-home-list li.industry-home-active{
    color: var(--tanspot-base);
    padding-left:10px;
}

.industry-home-arrow{
    font-size:20px;
}

.industry-home-image-box{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.industry-home-image-box img{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.industry-home-image-box img:hover{
    transform:scale(1.05);
}

.industry-home-content-box{
    background:#fff;
    padding:25px;
    margin-top:20px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.industry-home-content-box h3{
    color:#072c3f;
    margin-bottom:10px;
    font-size:28px;
}

.industry-home-content-box p{
    color:#666;
    line-height:1.8;
}



