
  .contact-hero-section {
    width: 90%;
    margin: 0 auto;
    background: #ffffff;
    
  }

  .tg-red {
    color: #d63c2f;
    font-weight: 700;
  }


  .hero-eyebrow {
    font-size: 57px;
    font-weight: 500;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 25px;
    letter-spacing: 0.01em;
  }

  .hero-headline {
    font-size: clamp(62px, 15vw, 88px);
    font-weight: 1100;
    color: #000000;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }

.video-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: auto;   /* 🔥 important */
    display: block;
}
  .bottom-bar {
    display: flex;
    width: 100%;
    margin-top: 0;
    gap: 20px;
    align-items: stretch;   /* 🔥 same height */
}

/* LEFT BOX */
.bottom-tag {
    background: #f73427;
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(25px, 1.2vw, 18px);
    padding: 20px;
    flex: 1;   
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* RIGHT BOX */
.bottom-logo {
    flex: 1;  
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* VIDEO FIX */
.bottom-logo video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}



@media (max-width:768px){

     .hero-headline{
        font-size: 32px;
        line-height: 1.2;
        text-align: left;
    }

    .hero-eyebrow{
        font-size: 16px;
        text-align: left;
    }


    .bottom-bar{
        flex-direction: column;  
        gap: 12px;
    }

    /* .bottom-tag{
        width: 100%;
        font-size: 14px;
        padding: 14px;
    } */

    .bottom-tag{
        font-size: 12px;     /* 🔥 text chota */
        padding: 10px 12px;  /* 🔥 height kam */
        line-height: 1.2;
    }

    .bottom-logo{
        width: 100%;
        height: 120px; 
    }

    .bottom-logo video{
        width: 100%;
        height: 55px;
    }
    
    .video-wrapper video {
        height: 120px;
        object-fit: cover;
    }
    
    .hero-eyebrow {
        margin-top: 15px;
        margin-bottom: 12px;
    }
}

/* EXTRA SMALL */
@media (max-width:480px){

    .hero-headline{
        font-size: 26px;   /* 🔥 aur chota */
    }

    .bottom-tag{
        font-size: 11px;
        padding: 8px 10px;
    }

    .bottom-logo{
        height: 100px;
    }

}
