/* ==========================================================================
   Industry CRM Custom Stylesheet
   ========================================================================== */

.hero-benefits-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    margin-bottom: 30px;
}

.hero-benefit-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(8, 145, 178, 0.35);
    color: #e2e8f0;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-benefit-pill:hover {
    background: rgba(8, 145, 178, 0.2);
    border-color: #0891b2;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-benefit-pill i {
    color: #0891b2;
}

/* Modern Problem Cards */
.problem-card-v2 {
    border-radius: 28px;
    padding: 32px 28px 24px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.problem-card-v2.card-orange {
    background: #ffc2a1;
    border: 1px solid rgba(255, 150, 100, 0.3);
}

.problem-card-v2.card-pink {
    background: #ffbbf0;
    border: 1px solid rgba(255, 130, 220, 0.3);
}

.problem-card-v2.card-green {
    background: #bbf786;
    border: 1px solid rgba(160, 235, 100, 0.3);
}

.problem-card-v2 .card-head-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.problem-card-v2 .card-head-desc {
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 500;
}

.problem-card-v2 .card-img-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.problem-card-v2 .card-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
}

/* Advanced Operations 4-Column Feature Cards */
.adv-poster-card {
    background: transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.adv-poster-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 7, 13, 0.08);
    margin-bottom: 18px;
    background: #ffffff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.adv-poster-card:hover .adv-poster-img-wrap {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(8, 145, 178, 0.2);
}

.adv-poster-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.adv-poster-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 12px;
}

.adv-poster-link {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.adv-poster-link:hover {
    color: #0891b2;
}

.adv-poster-link i {
    transition: transform 0.3s ease;
}

.adv-poster-link:hover i {
    transform: translateX(5px);
}

.school-3d-card {
    background: #ffffff;
    border: 1px solid rgba(4, 87, 134, 0.15);
    border-radius: 24px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 7, 13, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.school-3d-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(8, 145, 178, 0.18);
    border-color: rgba(8, 145, 178, 0.4);
}

.school-3d-img-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 20px;
    text-align: center;
    height: 260px;
}

.school-3d-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.25);
    transition: transform 0.5s ease;
}

.school-3d-card:hover .school-3d-img-box img {
    transform: scale(1.3);
}

.school-3d-card .badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #0891b2;
    background: rgba(8, 145, 178, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.school-3d-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.school-3d-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.feature-deep-box {
    background: #ffffff;
    border: 1px solid rgba(4, 87, 134, 0.15);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(0, 7, 13, 0.04);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-deep-box:hover {
    border-color: rgba(8, 145, 178, 0.35);
    box-shadow: 0 20px 45px rgba(8, 145, 178, 0.12);
}

.feature-deep-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.feature-deep-box p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

.feature-deep-list li {
    font-size: 14.5px;
    color: #334155;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-deep-list li i {
    color: #0891b2;
    font-size: 16px;
}

.stakeholder-card {
    background: #ffffff;
    border: 1px solid rgba(4, 87, 134, 0.15);
    border-radius: 20px;
    padding: 26px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 7, 13, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.stakeholder-card:hover {
    transform: translateY(-6px);
    border-color: rgba(8, 145, 178, 0.4);
    box-shadow: 0 20px 45px rgba(8, 145, 178, 0.15);
}

.stakeholder-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #045786 0%, #0891b2 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 22px rgba(8, 145, 178, 0.3);
    flex-shrink: 0;
}

.stakeholder-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.stakeholder-list li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stakeholder-list li i {
    color: #0891b2 !important;
}

/* Wide Connected Ecosystem Cards */
.attendance-hero-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 50%, #e0e7ff 100%);
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 20px 50px rgba(8, 145, 178, 0.08);
    position: relative;
    overflow: hidden;
}

.attendance-hero-card .hero-eco-img {
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attendance-hero-card:hover .hero-eco-img {
    transform: scale(1.02);
}

.exam-hero-card {
    background: linear-gradient(135deg, #fbf7ff 0%, #f3e8ff 50%, #e0e7ff 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.08);
    position: relative;
    overflow: hidden;
}

.exam-hero-card .hero-eco-img {
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.exam-hero-card:hover .hero-eco-img {
    transform: scale(1.02);
}

/* Utility Helper Classes */
.hero-title-custom {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-desc-custom {
    max-width: 840px;
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
}

.hero-btn-custom {
    gap: 16px;
}

.sec-desc-680 {
    max-width: 680px;
}

.sec-desc-720 {
    max-width: 720px;
}

.text-cyan-brand {
    color: #0891b2 !important;
}

.text-purple-brand {
    color: #8b5cf6 !important;
}

/* RESPONSIVE MEDIA QUERIES (Mobile, Tablet, Laptop) */
@media (max-width: 1199px) {
    .xb-hero-content .sec-title .title { font-size: 40px !important; }
    .attendance-hero-card, .exam-hero-card { padding: 36px !important; }
}

@media (max-width: 991px) {
    .xb-hero-content .sec-title .title { font-size: 34px !important; }
    .attendance-hero-card, .exam-hero-card { padding: 30px 24px !important; border-radius: 24px !important; }
    .feature-deep-box { padding: 26px !important; border-radius: 20px !important; }
    .feature-deep-box h3 { font-size: 22px !important; }
}

@media (max-width: 767px) {
    .xb-hero-content .sec-title .title { font-size: 28px !important; line-height: 1.3 !important; }
    .xb-hero-content .xb-item--content { font-size: 15px !important; }
    .hero-benefits-pills { gap: 8px !important; margin-top: 20px !important; margin-bottom: 24px !important; }
    .hero-benefit-pill { font-size: 12px !important; padding: 6px 14px !important; }
    .problem-card-v2 { padding: 22px 18px !important; border-radius: 20px !important; }
    .problem-card-v2 .card-head-title { font-size: 20px !important; }
    .problem-card-v2 .card-head-desc { font-size: 14px !important; margin-bottom: 18px !important; }
    .school-3d-card { padding: 20px !important; border-radius: 18px !important; }
    .school-3d-card h3 { font-size: 18px !important; }
    .attendance-hero-card, .exam-hero-card { padding: 24px 18px !important; border-radius: 20px !important; }
    .stakeholder-card { padding: 20px 16px !important; border-radius: 16px !important; }
    .stakeholder-title { font-size: 17px !important; }
    .stakeholder-icon { width: 44px !important; height: 44px !important; font-size: 18px !important; }
}

@media (max-width: 575px) {
    .xb-hero-content .sec-title .title { font-size: 24px !important; }
    .hero-benefits-pills { flex-direction: column; align-items: center; }
    .hero-benefit-pill { width: 100%; justify-content: center; }
    .attendance-hero-card, .exam-hero-card { padding: 20px 14px !important; }
}
