/* Start custom CSS for html, class: .elementor-element-15807fd *//* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

/* HERO SECTION */

.hero{
    height:100vh;
    background:url('https://heramb.shop/wp-content/uploads/2026/06/chatgpt-9.jpg');
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    width:100%;
    padding:0 80px;
    color:#fff;
}

.hero-tag{
    display:inline-block;
    background:#ffffff20;
    backdrop-filter:blur(10px);
    padding:10px 18px;
    border-radius:30px;
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:78px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    max-width:600px;
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn{
    padding:16px 40px;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#fff;
    color:#111;
}

.btn-primary:hover{
    background:#d4af37;
    color:#fff;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#111;
}

/* MOBILE */

@media(max-width:768px){

.hero{
    height:80vh;
}

.hero-content{
    padding:0 25px;
}

.hero-content h1{
    font-size:48px;
}

.hero-content p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

.btn{
    text-align:center;
}
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7039cae */.specifications{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.spec-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.spec-card:hover{
    transform:translateY(-8px);
}

.spec-card i{
    font-size:40px;
    color:#d4af37;
    margin-bottom:20px;
}

.spec-card h3{
    font-size:22px;
    margin-bottom:12px;
    color:#111;
}

.spec-card p{
    color:#666;
    line-height:1.7;
}

@media(max-width:992px){

.specifications{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.specifications{
    grid-template-columns:1fr;
}

}/* End custom CSS */