/* ===== PROCESS SECTION ===== */

.process {
    padding: 80px 0;
    background: #f5f5f5;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 50px;
}

.process-item {
    text-align: center;
    padding: 40px 25px;
    border-right: 1px solid #ddd;
    transition: 0.3s;
}

.process-item:last-child {
    border-right: none;
}

.process-number {
    font-size: 70px;
    font-weight: bold;
    color: #0E766B;
    margin-bottom: 20px;
}

.process-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.process-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.process-item:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===== SERVICES SECTION ===== */

.services {
    padding: 70px 0;
    background: #f7f7f7;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #0E766B;
    font-weight: bold;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #0E766B;
    display: block;
    margin: 15px auto 0;
    border-radius: 2px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: 0.3s;
}

.service-card h3 {
    padding: 20px;
    font-size: 18px;
    color: #0E766B;
    font-weight: bold;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card:hover img {
    transform: scale(1.05);
}

/* ===== TABLET ===== */

@media (max-width:1024px){

.process-grid{
    grid-template-columns: repeat(2, 1fr);
}

.process-item{
    border-right:none;
    border-bottom:1px solid #ddd;
}

.service-grid{
    grid-template-columns: repeat(2, 1fr);
}

}

/* ===== MOBILE ===== */

@media (max-width:768px){

.process{
    padding:40px 0;
}

.process-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.process-item{
    border:none;
    padding:25px 20px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.process-number{
    font-size:50px;
}

.process-item h3{
    font-size:18px;
}

.process-item p{
    font-size:14px;
}

.services{
    padding:40px 0;
}

.section-title{
    font-size:26px;
    margin-bottom:30px;
}

.service-grid{
    grid-template-columns: repeat(2, 1fr);
    gap:15px;
}

.service-card img{
    height:130px;
}

.service-card h3{
    font-size:15px;
    padding:12px;
}

}