@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter', sans-serif;
}

body{
    background:#fff;
    color:#fff;
}

/* ================= CONTAINER ================= */
.container{
    width:60%;
    margin:0 auto;
}

/* ================= HEADER ================= */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:transparent;
    transition:.35s;
}

header.scrolled{
    /*background:linear-gradient(180deg,#022d2a,#033c36);*/
    background: linear-gradient(135deg, #0f3d3e, #1b5e63, #2e8b57);
    /*background: linear-gradient(135deg, #081c15, #1b4332, #40916c, #d8f3dc);*/
    box-shadow:0 12px 35px rgba(0,0,0,.35);
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:25px 0;
}

header.scrolled .header-inner{
    padding:18px 0;
}

.logo-img{
    width:150px;
    transition:.35s;
}

header.scrolled .logo-img{
    width:110px;
}

/* NAV */
nav{
    display:flex;
    align-items:center;
    gap:20px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.contact-btn{
    background:#c8ff8a;
    color:#033c36;
    padding:12px 22px;
    border-radius:30px;
    font-weight:600;
}

/* BURGER */
.burger{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
}

.burger span{
    width:26px;
    height:3px;
    background:#fff;
    border-radius:3px;
}

/* ================= HERO ================= */
.hero{
    min-height:100vh;
    /*background:radial-gradient(circle,#03453e,#021d1a 100%);*/
    background: linear-gradient(135deg, #0f3d3e, #1b5e63, #2e8b57);
  /*background: linear-gradient(135deg, #081c15, #1b4332, #40916c, #d8f3dc);*/

}

.hero-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:220px 0 80px;
}

.hero-left{
    max-width:520px;
}

.badge{
    display:inline-block;
    background:#0f4d45;
    padding:14px 22px;
    border-radius:30px;
    color:#8cffc4;
    margin-bottom:22px;
}

.hero-left h1{
    font-family:"Syne",sans-serif;
    font-size:48px;
    line-height:140%;
    margin-bottom:20px;
}

.hero-left p {
    font-family: "Poppins", sans-serif;
    color: #cfdede;
    margin-bottom: 54px;
    font-size: 16px;
    text-align: left;
    line-height: 140%;
}

.btn{
    background:#c8ff8a;
    color:#033c36;
    padding:14px 32px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

/* ================= HERO IMAGE ================= */
.hero-right{
    position:relative;
}

.image-wrap{
    width:500px;
    height:630px;
    padding:18px;
}

.image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:55px;
}

/* FLOAT CARDS */
.float-card{
    position:absolute;
    background:#053c36;
    border-radius:18px;
    padding:15px;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

@keyframes float{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-12px)}
}

.stats-card{
    top:30px;
    right:-40px;
    width:160px;
    animation:float 2.5s infinite;
    border:.5px solid #888;
}

.stats-card h3{
    font-size:26px;
    color:#c8ff8a;
}

.stats-card p{
    font-size:13px;
    color:#cfdede;
    margin-bottom:10px;
}

.stats-card img{
    width:100%;
    border-radius:12px;
}

.chat-card{
    position:absolute;
    bottom:60px;
    left:-80px;
}

/* ================= RESPONSIVE ================= */

/* ≤1600px */
@media(max-width:1600px){
    .container{width:80%}
}

/* ≤800px → BURGER */
@media(max-width:800px){

    .stats-card {
        display: none;
    }

    .chat-card {
        display: none;
    }

    .container{width:100%;padding:0 20px}

    .burger{display:flex}

    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#033c36;
        flex-direction:column;
        padding:20px 0;
        gap:15px;
        display:none;
    }

    nav.active{
        display:flex;
    }

    .hero-inner{
        flex-direction:column;
        text-align:center;
        padding:160px 0 60px;
    }

    .hero-left h1{font-size:38px}

    .image-wrap {
        width: 482px;
        height: 600px;
    }

    .stats-card{
        right:-20px;
        width:150px;
    }

    .chat-card{
        left:-20px;
    }
}

@media(max-width:600px){

    .stats-card {
        display: none;
    }

}

/* ≤576px */
@media(max-width:576px){
    .hero-left h1{font-size:30px}

        .image-wrap {
        width: 330px;
        height: 400px;
    }

    .hero-left p {
    text-align: center;
}

}

