    @font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/BarlowCondensed-SemiBold.ttf') format('truetype');
  font-style: normal;
}


 *{
        margin:0;
        padding:0;
        box-sizing:border-box;
        font-family: Arial, sans-serif;
        
    }

    /* ---------- HEADER ---------- */
    /* HEADER PERMANENT SOLUTION */
header{
    width:100%;
    padding:0.5rem 5vw;
    background:#fff;
    display:flex;
        justify-content: space-between;
    align-items:center;
    position:relative; 
      height: 12vh;        /* Needed for button positioning */
}

/* Centered Logo */
header .logo{
    height:4rem;
    width:auto;
}

/* Button fixed on right */
header {
    width: 100%;
    padding: 0.5rem 5vw;
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    height: 12vh;
}

.btn {
    padding: 1rem;
    background: #19d63a;
    border: none;
    color: #000;
    font-size: 1.2rem;
    border-radius: 0.4rem;
    cursor: pointer;
    font-weight: bold;
    width: 25%;
    text-align: center;
    text-decoration: none;
}

    /* ---------- MAIN SECTION ---------- */
    .main-section{
        width:100%;
        height:90vh;
        display:flex;
        gap:2vw;
           padding: 1vh 8vh;
            background: #fff;
    }

    /* Left Section – Image Box */
    .left-box{
        width:70%;
        background:#0E0F0E;
        display:flex;
        flex-direction:column;
        justify-content:space-between;
        align-items: center;
        padding:1rem;
        border-radius:1rem;
        border:0.2rem solid #1aff52;
    }

 .left-box img {
    width: 90%;
    height: 58vh;
    object-fit: cover;
    border-radius: 0.8rem;
 }

.img-mobile {
    display: none;
}

    .left-box button{
        margin-top:1rem;
        padding:1rem;
        background:#19d63a;
        border:none;
        color:#000;
        font-size:1.2rem;
        border-radius:0.4rem;
        cursor:pointer;
        font-weight:bold;
        width: 30%;
    }

    /* Right Section – Form Box */
 .right-box {
    width: 30%;
    background: #1a1f16;
    padding: 20px 20px 20px 20px;
    border-radius: 1rem;
    border: 0.2rem solid #1aff52;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
}

    .right-box h2{
        font-size:1.5rem;
        margin-bottom:0.5rem;
    }

    .right-box label{
        margin-top:0.5rem;
        font-size:1rem;
    }

    .right-box input{
        width:100%;
        margin-top:0.5rem;
        padding:0.8rem;
        border-radius:0.4rem;
        border:none;
    }

    .right-box .submit-btn{
        margin-top:2rem;
        padding:1rem;
        background:#19d63a;
        border:none;
        font-size:1.2rem;
        cursor:pointer;
        border-radius:0.4rem;
        font-weight:700;
    }

    /* ---------- Responsive ---------- */
    @media(max-width:768px){
        header{
            align-items: flex-start;
            justify-content: space-between;
            gap:1rem;
            padding: 1rem 5vw 0rem 5vw;
        }

        .main-section{
            flex-direction:column;
            height:auto;
            padding: 0vh 3vh 1vh 3vh;
        }

        .left-box,
        .right-box{
            width:100%;
            height:auto;
        }

        .left-box button {
    width: 60%;
}

.left-box img {
    width: 100%;
    height: 66vh;
    object-fit: cover;
    /* object-position: 100% 100%; */
    border-radius: 0.8rem;
}

.btn
 {
    width: 70%;
    }

     .img-desktop {
        display: none;
    }
    .img-mobile {
        display: block;
    }
}