/* ===================================
   RESET CSS
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    line-height:1.6;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}


/* ===================================
   HERO SECTION
=================================== */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:url("images/hero-bg.jpg") center center/cover no-repeat;
}

.overlay{
    position:absolute;
    inset:0;
    background:#233B50;
    opacity:.92;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.hero-tag{
    display:inline-block;
    background:#425669;
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.hero h1{
    font-size:62px;
    line-height:1.15;
    color:#fff;
    font-weight:700;
    margin-bottom:20px;
}

.hero h1 span{
    color:#E8672C;
}

.hero p{
    color:#d8d8d8;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
    margin-bottom:35px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:16px 32px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#E8672C;
    color:#fff;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary:hover{
    background:#fff;
    color:#233B50;
}

/* COUNTER */

.hero-counter{
    margin-top:70px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.12);
    border-radius:20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.counter-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:30px 20px;
    border-right:1px solid rgba(255,255,255,.12);
}

.counter-item:last-child{
    border-right:none;
}

.counter-icon{
    width:65px;
    height:65px;
    min-width:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(232,103,44,.15);
    border-radius:50%;
}

.counter-icon i{
    color:#E8672C;
    font-size:24px;
}

.counter-content h3{
    color:#fff;
    font-size:32px;
    line-height:1;
    margin-bottom:6px;
}

.counter-content span{
    color:#e5e5e5;
    font-size:14px;
}

/* ===================================
   ABOUT SECTION
=================================== */

.about{
    padding:100px 0;
    background:#fff;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/* IMAGES */

.about-images{
    position:relative;
}

.main-image img{
    width:100%;
    border-radius:20px;
}

.small-image{
    position:absolute;
    right:-40px;
    bottom:40px;
    width:250px;
}

.small-image img{
    border-radius:20px;
    border:8px solid #fff;
}

/* EXPERIENCE BOX */

.experience-box{
    position:absolute;
    top:30px;
    right:-30px;

    background:#fff;
    border:1px solid #E9EEF3;
    border-radius:15px;

    padding:20px;

    display:flex;
    align-items:center;
    gap:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.experience-box i{
    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#E8672C;
    color:#fff;

    border-radius:50%;
}

/* CONTENT */

.about-content{
    background:#fff;
    border:1px solid #E9EEF3;
    border-radius:20px;
    padding:40px;
}

.section-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:30px;
    background:#f5f7fa;
    color:#E8672C;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h2{
    font-size:48px;
    line-height:1.2;
    color:#233B50;
}

.about-content .highlight{
    color:#E8672C;
    margin-bottom:20px;
}

.about-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

/* FEATURES */

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:12px;

    padding:18px;

    border:1px solid #E9EEF3;
    border-radius:12px;

    transition:.3s;
}

.feature-box:hover{
    border-color:#E8672C;
}

.feature-box i{
    color:#E8672C;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:992px){

    .hero h1{
        font-size:48px;
    }

    .hero-counter{
        grid-template-columns:repeat(2,1fr);
    }

    .counter-item:nth-child(2){
        border-right:none;
    }

    .about-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-content h2{
        font-size:40px;
    }

    .small-image{
        width:220px;
        right:0;
        bottom:20px;
    }

    .experience-box{
        right:20px;
    }
}

@media(max-width:768px){

    
    
    
    
    .hero{
        padding:100px 0;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:row;
    }

    .hero-counter{
        grid-template-columns:1fr;
    }

    .counter-item{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.12);
    }

    .counter-item:last-child{
        border-bottom:none;
    }

     .about{
        padding:70px 0;
    }

    .about-content{
        padding:25px;
        width:100%;
    }

    .container{
        width:94%;
    }
    .about-content h2{
        font-size:28px;
        line-height:1.3;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .small-image{
        width:140px;
        right:0;
        bottom:10px;
    }

    .small-image img{
        border-width:5px;
    }

    .experience-box{
        top:15px;
        right:15px;
        padding:12px;
        gap:10px;
    }

    .experience-box i{
        width:50px;
        height:50px;
        font-size:18px;
    }

    .experience-box h4{
        font-size:16px;
    }

    .experience-box span{
        font-size:12px;
    }

    .feature-box{
        padding:15px;
        font-size:14px;
    }
}