*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: url('images/Blade Services (3).png') no-repeat center center;
    background-size: 100% 100%;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}

.main-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 40px 60px;
}

.left{
    width: 50%;
    color: #f3c623;
}

.left h1{
    font-family: 'Anton', sans-serif;
    font-size: 65px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.tagline{
    font-size: 18px;
    color: #f3c623;
    max-width: 350px;
    margin-bottom: 25px;
}

.services{
    list-style: none;
    font-family: 'Poppins', sans-serif;
}

.services li{
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0;
    color: #f3c623;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon{
    width: 22px;
    height: 22px;
}

.call-btn{
    display: inline-block;
    background: #4e5354;
    color: #f3c623;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    margin: 30px 0;
    text-decoration: none;
    font-family: 'Poppins';
    font-size: 18px;
}

.contact-box{
    color: black;
    font-size: 18px;
    margin-top: 10px;
    line-height: 1.7;
}

.c-icon{
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-right: 10px;
}

.right{
    width: 50%;
    position: relative;
}

/* FIXED Rounded images responsiveness */
.circle-img{
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid white;
    transition: 0.3s ease;
}

/* BIG CIRCLE (desktop original) */
.circle-img.big {
    width: 30vw;
    height: 30vw;
    max-width: 444px;
    max-height: 444px;
    top: -8vw;
    right: 12vw;
}

/* SMALL CIRCLE (desktop original) */
.circle-img.small {
    width: 20vw;
    height: 20vw;
    max-width: 310px;
    max-height: 310px;
    bottom: -6vw;
    right: 4vw;
}

.circle-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TABLET RESPONSIVE FIX (768px - 1024px) */
@media(max-width:1024px){

    .main-wrapper{
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .left, .right{
        width: 100%;
    }

    .circle-img.big {
        width: 55vw;
        height: 55vw;
        top: 0;
        right: 0;
        margin: 0 auto;
        position: relative;
    }

    .circle-img.small {
        width: 35vw;
        height: 35vw;
        position: relative;
        margin: -50px auto 0 auto;
        bottom: 0;
        right: 0;
    }
}

/* MOBILE RESPONSIVE FIX */
@media(max-width:600px){

    .left h1{
        font-size: 42px;
    }

    .circle-img.big{
        width: 70vw;
        height: 70vw;
    }

    .circle-img.small{
        width: 45vw;
        height: 45vw;
        margin-top: -35px;
    }
}

/* SMALL MOBILE FIX */
@media(max-width:400px){

    .left h1{
        font-size: 45px;
        letter-spacing: 3px;
        line-height: 1.2em;
        word-spacing: 10px;
    
    }
    .contact-box{
        line-height: 2.3;
        text-align: left;
        color: white;
    }

    .circle-img.big{
        width: 80vw;
        height: 80vw;
    }

    .circle-img.small{
        width: 55vw;
        height: 55vw;
        margin-top: -40px;
    }
}
