/*=========================================
  WHY UAE
=========================================*/

.why-uae-section {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}


/*=========================================
  SECTION HEADER
=========================================*/

.section-header {
    max-width: 750px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-header h2 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
}


/*=========================================
  GRID
=========================================*/

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/*=========================================
  CARD
=========================================*/

.why-card {

    position: relative;

    background: #ffffff;

    padding: 45px 35px;

    border-radius: 20px;

    overflow: hidden;

    transition: .35s ease;

    box-shadow: 0 10px 35px rgba(15, 23, 42, .05);

    border: 1px solid #e2e8f0;

}


.why-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(90deg, #14B8A6, #2563EB);

}


.why-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(15, 23, 42, .12);

}


/*=========================================
  ICON
=========================================*/

.why-card span {

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    margin-bottom: 25px;

    font-size: 34px;

    background: linear-gradient(135deg, #14B8A6, #2563EB);

    color: #ffffff;

}


/*=========================================
  TITLE
=========================================*/

.why-card h3 {

    font-size: 24px;

    font-weight: 700;

    line-height: 1.4;

    color: #0f172a;

    margin-bottom: 15px;

}


/*=========================================
  TEXT
=========================================*/

.why-card p {

    font-size: 16px;

    line-height: 1.8;

    color: #64748b;

}


/*=========================================
  RESPONSIVE
=========================================*/

@media(max-width:992px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 38px;
    }

}


@media(max-width:768px) {

    .why-uae-section {
        padding: 80px 0;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    .why-card {
        padding: 22px 16px;
    }

    .why-card span {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .why-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .why-card p {
        font-size: 13px;
        line-height: 1.5;
    }

}