@charset "utf-8";
/* CSS Document */



/* =========================
INDUSTRIES PAGE CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#f5f7fb;
    color:#111827;
    line-height:1.8;
}

/* MAIN SECTION */

.industries-page{
    width:100%;
    padding:90px 20px;
    background:#f5f7fb;
}

.industries-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* INDUSTRY CARD */

.industry-full-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    margin-bottom:60px;
    display:grid;
    grid-template-columns:420px 1fr;
    box-shadow:0 15px 40px rgba(0,0,0,.07);
    border:1px solid #e5e7eb;
    transition:.35s;
}

.industry-full-card:hover{
    transform:translateY(-8px);
}

/* IMAGE */

.industry-image{
    position:relative;
    overflow:hidden;
    height:100%;
}

.industry-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.industry-full-card:hover .industry-image img{
    transform:scale(1.08);
}

/* CONTENT */

.industry-content{
    padding:50px;
}

.industry-tag{
    display:inline-block;
    background:#dbeafe;
    color:#1e40af;
    padding:10px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:700;
    margin-bottom:22px;
    letter-spacing:.5px;
}

.industry-content h2{
    font-size:42px;
    margin-bottom:25px;
    color:#111827;
    line-height:1.2;
    font-weight:800;
}

.industry-content p{
    font-size:17px;
    color:#4b5563;
    margin-bottom:22px;
}

/* FEATURES */

.industry-features{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(2,minmax(200px,1fr));
    gap:16px;
    list-style:none;
}

.industry-features li{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    padding:15px 18px;
    border-radius:14px;
    font-size:15px;
    font-weight:600;
    color:#1f2937;
    position:relative;
    padding-left:45px;
    transition:.3s;
}

.industry-features li:hover{
    background:#eff6ff;
    border-color:#bfdbfe;
}

.industry-features li::before{
    content:"✓";
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    width:20px;
    height:20px;
    background:#f59e0b;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}

/* BUTTON */

.read-btn{
    display:inline-block;
    margin-top:35px;
    background:linear-gradient(135deg,#1e3a8a,#2563eb);
    color:#fff;
    padding:16px 34px;
    border-radius:14px;
    font-weight:700;
    font-size:15px;
    transition:.3s;
    text-decoration:none;
}

.read-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(37,99,235,.25);
}

/* RESPONSIVE */

@media(max-width:1100px){

    .industry-full-card{
        grid-template-columns:1fr;
    }

    .industry-image{
        height:320px;
    }

}

@media(max-width:768px){

    .industries-page{
        padding:60px 15px;
    }

    .industry-content{
        padding:30px 24px;
    }

    .industry-content h2{
        font-size:32px;
    }

    .industry-content p{
        font-size:16px;
    }

    .industry-features{
        grid-template-columns:1fr;
    }

    .industry-image{
        height:250px;
    }

}

@media(max-width:480px){

    .industry-content h2{
        font-size:28px;
    }

    .industry-tag{
        font-size:12px;
    }

    .industry-features li{
        font-size:14px;
    }

}
/* =========================
INDUSTRY DETAIL SECTION CSS
========================= */

.industry-detail-section{
    padding:90px 20px;
    background:#ffffff;
}

.gray-bg{
    background:#f5f7fb;
}

.industry-detail-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

.industry-detail-container.reverse{
    flex-direction:row-reverse;
}

.industry-detail-image{
    flex:1;
}

.industry-detail-image img{
    width:100%;
    border-radius:24px;
    object-fit:cover;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.industry-detail-content{
    flex:1;
}

.industry-tag{
    display:inline-block;
    padding:8px 18px;
    background:#dbeafe;
    color:#ef4444;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.industry-detail-content h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:25px;
    color:#111827;
    font-weight:800;
}

.industry-detail-content p{
    font-size:17px;
    line-height:1.9;
    color:#4b5563;
    margin-bottom:22px;
}

.industry-features{
    list-style:none;
    margin-top:25px;
}

.industry-features li{
    margin-bottom:14px;
    font-size:16px;
    color:#111827;
    font-weight:600;
}

@media(max-width:992px){

    .industry-detail-container,
    .industry-detail-container.reverse{
        flex-direction:column;
    }

    .industry-detail-content h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    .industry-detail-section{
        padding:70px 20px;
    }

    .industry-detail-content h2{
        font-size:28px;
    }

    .industry-detail-content p{
        font-size:16px;
    }

}

