/* TOP BRAND TEXT */
.brand-name {
    font-weight: 600;
    font-size: 16px;
    color: #C71F52;
}

/* MAIN HEADING */
.main-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #0A1A2F;
}

/* VIEW ALL BUTTON */
.view-all-btn {
    font-size: 18px;
    font-weight: 600;
    color: #C71F52;
    text-decoration: none;
}
.view-all-btn span {
    font-size: 22px;
}

/* CARD WRAPPER */
.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: .3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.service-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* CONTENT */
.service-content {
    padding: 25px;
}
.service-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0A1A2F;
}
.service-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.service-btn {
    display: inline-block;
    background: #E02850;
    color: #fff;
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-heading {
        font-size: 32px;
    }
    .service-img {
        height: 220px;
    }
}

/* page */
/* service section */

/* HERO */
.corp-hero{
    padding:90px 0;
    background:#ffffff;
}

.corp-tag{
    display:inline-block;
    background:#fbe3ea;
    color:#e02850;
    font-weight:700;
    font-size:13px;
    padding:6px 14px;
    border-radius:4px;
    margin-bottom:15px;
}

.corp-title{
    font-size:42px;
    font-weight:800;
    line-height:1.25;
    color:#0F2C49;
}

.corp-title span{
    color:#e02850;
}

.corp-desc{
    margin-top:15px;
    font-size:16px;
    color:#444;
    max-width:520px;
}

.corp-btns{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.corp-btn-primary{
    background:#e02850;
    color:#fff;
    padding:12px 26px;
    font-weight:700;
    border-radius:4px;
    text-decoration:none;
}
.corp-btn-primary:hover{
    background:#c81f44;
}

.corp-btn-secondary{
    border:2px solid #e02850;
    color:#e02850;
    padding:12px 26px;
    font-weight:700;
    border-radius:4px;
    text-decoration:none;
}
.corp-btn-secondary:hover{
    background:#e02850;
    color:#fff;
}

/* IMAGE */
.corp-image-box{
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}
.corp-image-box img{
    width:100%;
    height:auto;
}

/* STATS */
.corp-stats{
    background:#0F2C49;
    padding:50px 0;
    color:#fff;
}

.stat-box h3{
    font-size:32px;
    font-weight:800;
    color:#e02850;
}
.stat-box p{
    margin:0;
    font-size:14px;
    opacity:0.9;
}

/* SERVICES */
.corp-services{
    padding:80px 0;
    background:#f7f7f7;
}

.corp-head h2{
    font-size:34px;
    font-weight:800;
    color:#0F2C49;
}
.corp-head span{
    color:#e02850;
}
.corp-head p{
    margin-top:10px;
    color:#555;
}

.corp-service-card{
    background:#fff;
    padding:30px 25px;
    border-radius:6px;
    height:100%;
    border-top:4px solid #e02850;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:.3s;
}
.corp-service-card:hover{
    transform:translateY(-8px);
}

.corp-service-card h5{
    font-weight:700;
    color:#0F2C49;
    margin-bottom:8px;

    display:-webkit-box;
    -webkit-line-clamp:1;   /* single line */
    -webkit-box-orient:vertical;
    overflow:hidden;
}


.corp-service-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;

    display:-webkit-box;
    -webkit-line-clamp:2;   /* number of lines */
    -webkit-box-orient:vertical;
    overflow:hidden;
}


.corp-view-link{
    border-bottom:1px solid transparent;
}
.corp-view-link:hover{
    border-bottom:1px solid #e02850;
}


/* RESPONSIVE */

@media (min-width: 992px){
    .corp-service-card:hover p{
        -webkit-line-clamp:unset;
    }
}


@media (max-width: 768px) {

    .corp-hero {
        padding: 60px 0;
        text-align: left;
    }

    .corp-tag {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .corp-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .corp-desc {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .corp-btns {
        flex-direction: column;
        gap: 12px;
    }

    .corp-btn-primary,
    .corp-btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 15px;
    }

    .corp-image-box {
        margin-top: 35px;
    }
}

@media (max-width: 768px) {

    .corp-stats {
        padding: 40px 0;
    }

    .stat-box {
        margin-bottom: 20px;
    }

    .stat-box h3 {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .stat-box p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {

    .corp-services {
        padding: 60px 0;
    }

    .corp-head h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .corp-head p {
        font-size: 14px;
        margin-top: 8px;
    }

    .corp-service-card {
        padding: 25px 20px;
        margin-bottom: 10px;
    }

    .corp-service-card h5 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .corp-service-card p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {

    .corp-title {
        font-size: 24px;
    }

    .corp-desc {
        font-size: 14px;
    }

    .corp-tag {
        font-size: 11px;
    }

    .stat-box h3 {
        font-size: 24px;
    }
}
