.hero{
    position: relative;
    width: 100%;
    height: min(70vh,680px);
    min-height: 480px;
    overflow: hidden;

}
.hero img{
    width: 100%;
    height: 100%;
    display: block;
}
.hero::after{
    content: "";
    position: absolute;
    inset: 0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.55)
    );
    z-index: 1;
}

.hero-content{
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 6%;
}

.hero-title{
    width: fit-content;
    margin: 0 auto;
    text-align: left;
    font-weight: 700;
    line-height: 1.6;
    font-size: 42px;
}
.hero-title .line{
    display: block;
}
.hero-title .l2{
    padding-left:2em;
}
.hero-title .l3{
    padding-left: 4em;
}
.hero-content p {
    font-size:24px;
    margin-left: 23rem;
    margin-bottom: 32px;
    max-width: 640px;
    line-height: 1.8;
}

.hero-buttons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:15px;
  flex-wrap: nowrap;
}
.btn{
    padding: 14px 26px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
}
.btn.gold{
    background: #ffc20e;
    color: #000;
}
.concept{
    max-width: 900px;
    margin: 40px auto;
    background: #7a7a7a;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    border: 3px solid #0b2c3a;
}
.concept h2{
    color: #ffd700;
    margin-bottom: 12px;
}

.services{
    max-width: 900px;
    margin: 40px auto;
    background: #444;
    padding: 40px 20px;
    border-radius: 30px;
}

.services h2{
    text-align: center;
    color: #ffd700;
    margin-bottom: 30px;
}

.service-card{
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #888;
    padding: 1.6rem 2rem;
    border-radius: 16px;
    margin-bottom: 4px;
    margin-left: 8rem;
    
}
.service-icon{
    width: 130px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.service-card h3{
    margin-bottom: 6px;
}
.service-card p{
    font-size: 0.95rem;
    opacity: 0.9;
}
.service-card a{
    margin-left: auto;
    background: #1f6fb2;
    border-radius: 6px;
    padding: 3px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}




@media(max-width: 768px){ 
    .hero{
        height: auto;
        min-height: auto;
    }
    .hero-content{
        position: absolute;
        padding: 0 20px;
        text-align: left;
    }
    .hero-title{
        font-size: 26px;
    }
    .hero-title l2{
        padding-left: 1em;
    }
    .hero-title l3{
        padding-left: 2em;
    }
    .hero-content p{

        font-size: 18px;
        margin-top: 20px;
        margin-left: 19px;
    }
    .hero-buttons{
        flex-direction: row;
        gap: 10px;
    }
    .btn{
        padding: 10px 16px;
        font-size: 14px;
    }
    .concept{
        margin: 30px 16px;
        padding: 20px;
    }
    .services{
        margin:30px 16px;
        padding: 30px 16px;
    }
    .service-card{
        width: 100%;
        flex-direction: column;
        text-align: center;
        margin-left: 0;
    }
    .service-icon{
        width:100px;
        height: 100px;
    }
    .service-card{
        margin:12px 0 0 0;
    }   

}