* {
    font-family: "Poppins", serif;
    margin: 0;
    padding: 0;
    
}
body{
    margin: 0;
    font-family: "Poppins", serif;
    background-color: #0F1010;
    color: #ffffff;
}

.banner-img{
    width: 100%;
    height: auto;
}
.res-banner{
    position: relative;
    display: inline-block;
    overflow: hidden;
  }

.res-banner .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 1;
  }
.banner-content {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -70%); 
    text-align: center;
    color: white; 
    z-index: 2; 
    font-family: "Poppins", serif;
}

.banner-content h3{
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.banner-content p{
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 1px;
    max-width: 600px;
}
.banner-divider{
    border: none;
    height: 1px;
    background-color: #ffffff;
    margin: 20px auto; 
    max-width: 100px;
    justify-content: center;
}
.main-container{
    display: flex;
    gap: 200px;
    justify-content: center;
    margin-bottom: 100px;
    margin-top: 100px;
}
.right-sub-container{
    max-width: 550px;
}


.left-sub-container{
    max-width: 630px;
}
.contact-title{
    font-size: 50px;
    font-weight: 600;
}
.contact-text{
    font-size: 17px;
    font-weight: 200;
    letter-spacing: 1px;
    word-spacing: 2px;
}
.title-divider{
    max-width: 150px;
    margin-top: 5px;
    margin-bottom: 30px;
}
.contact-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 40px 0px;
    padding: 20px;
}
.sub-detail h3{
    font-size: 27px;
    margin: 0;
    font-weight: 600;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item img {
    width: 30px;
    height: 30px;
}

.contact-item p {
    margin: 0;
    font-size: 13px;
    font-weight: 200;
}
.details-divider{
    margin-bottom: 35px;
}
.social-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.social-row h1{
    font-size: 27px;
    font-weight: 600;
}
.inner-icons{
    font-size: 25px;
    margin-right: 20px;
}
.right-sub-container h1{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}
.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.Firstrow{
    display: flex;
    gap: 20px;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}
label {
    font-size: 18px;
    margin-bottom: 5px;
}

input, textarea {
    background-color: #272727;
    border: none;
    color: #fff;
    padding: 13px;
    font-size: 17px;
}

input::placeholder, textarea::placeholder {
    color: #aaa;
    font-weight: 600;
}

textarea {
    resize: none;
    height: 100px;
}

button.submit-btn {
    width: 245px;
    height: 45px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

button.submit-btn:hover {
    background-color: #ddd;
}
.map-container{
    display: flex;
    justify-content: center;  
    align-items: center;   
    margin-bottom: 100px;    
}
.map-container iframe{
    width: 1100px;
    height: 500px;
}

@media (max-width: 1700px) {
    .main-container {
        gap: 150px;
    }
    .banner-content h3{
        font-size: 50px;
        margin-bottom: 17px;
    }
}

/* For screens 1440px and below */
@media (max-width: 1440px) {
    .main-container {
        gap: 100px;
        margin-left: 50px;
        margin-right: 50px;
    }
    .social-row {
        justify-content: space-between;
    }
    .banner-content h3{
        font-size: 40px;
        margin-bottom: 15px;
    }
    .banner-content p{
        font-size: 12px;
        max-width: 500px;
    }

    label {
        font-size: 17px;
        margin-bottom: 5px;
    }

    
    input, textarea {
        background-color: #272727;
        border: none;
        color: #fff;
        padding: 13px;
        font-size: 14px;
    }
    .map-container iframe{
        width: 900px;
        height: 400px;
    }
}
@media (max-width: 1220px) {
    .main-container {
        gap: 60px;
        margin-left: 50px;
        margin-right: 50px;
    
    }
    .contact-title{
        font-size: 40px;
    }
    .contact-text{
        font-size: 15px;
    }
    .contact-section{
        margin-top: 20px;
    }
    .social-row h1{
        font-size: 22px;
    }
    .contact-item p{
        font-size: 12px;
    }
    .details-divider{
        margin-bottom: 20px;
    }
    .inner-icons{
        font-size: 22px;
    }
    .right-sub-container h1{
        font-size: 26px;
        margin-bottom: 20px;
    }
    label {
        font-size: 15px;
        margin-bottom: 5px;
    }

    
    input, textarea {
        background-color: #272727;
        border: none;
        color: #fff;
        padding: 13px;
        font-size: 12px;
    }
   
}


/* For screens 1024px and below */
@media (max-width: 1024px) {
    .banner-content h3{
        font-size: 30px;
        margin-bottom: 0px;
    }
    .banner-divider{
        margin: 10px auto;
    }
    .banner-content p{
        font-size: 10px;
        width: 450px;
    }
    .main-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        margin-left: 45px;
        margin-right: 45px;
    }
    .sub-detail h3 {
        font-size: 21px;
    }

    .social-row {
        justify-content: space-between;
    }

    button.submit-btn{
        width: 100%;
    }

    .right-sub-container {
        max-width: 90%;
        width: 80%;
    }

    .left-sub-container {
        max-width: 90%;
    }
    .map-container iframe{
        width: 650px;
        height: 330px;
    }
    
}

/* For screens 748px and below */
@media (max-width: 748px) {
    .res-banner{
        display: flex;
        justify-content: center;
        overflow: hidden;
        width: 100%;
      }
      
      .banner-img{
        width: 130%;
      }
    .banner-content h3{
        font-size: 20px;
        margin-bottom: 0px;
    }
    .banner-content{
        margin-top: 10px;
    }
    .banner-divider{
        margin: 10px auto;
    }
    .banner-content p{
        font-size: 9px;
        width: 300px;
        letter-spacing: 0.5px;
    }
    .main-container{
        margin: 50px 20px 20px 20px;
    }
    .contact-title {
        font-size: 25px;
    }
    .contact-text {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    .sub-detail h3 {
        font-size: 17px;
    }
    .contact-section{
        margin-bottom: 20px;
    }
    .contact-section p{
        font-size: 10px;
    }
    label {
        font-size: 16px;
    }
    input, textarea {
        padding: 10px;
        font-size: 12px;
    }
    .Firstrow{
        gap: 10px;
    }
    button.submit-btn {
        width: 100%;
        height: 40px;
        font-size: 14px;
    }
    .details-divider{
        margin-bottom: 10px;
    }
    .social-row h1{
        font-size: 17px;
    }

    .inner-icons {
        font-size: 20px;
    }
    .map-container{
        margin-top: 70px;
    }
    .map-container iframe{
        width: 400px;
        height: 210px;
    }
}

/* For screens 480px and below */
@media (max-width: 480px) {
    .res-banner{
        display: flex;
        justify-content: center;
        overflow: hidden;
        width: 100%;
      }
      
      .banner-img{
        width: 150%;
      }
    .banner-content{
        margin-top: 20px;
    }
    .banner-content h3{
        font-size: 16px;
        margin-bottom: 0px;
    }
    .banner-divider{
        margin: 10px auto;
    }
    .banner-content p{
        font-size: 8px;
        width: 300px;
        letter-spacing: 0.5px;
    }
    .contact-title {
        font-size: 35px;
    }

    .contact-text {
        font-size: 14px;
        letter-spacing: 0px;
    }

    .sub-detail h3 {
        font-size: 18px;
    }
    .Firstrow{
        display: block;
        
    }
    .email-label{
        margin-top: 20px;
    }
    .contact-title {
        font-size: 20px;
    }
    .contact-text {
        font-size: 10px;
    }
    .title-divider{
        margin-bottom: 20px;
    }
    .sub-detail h3 {
        font-size: 14px;
    }
    .contact-section{
        margin-bottom: 20px;
        padding: 15px;
    }
    .contact-section p{
        font-size: 8px;
    }
    label {
        font-size: 12px;
    }

    input, textarea {
        padding: 8px;
        font-size: 10px;
    }

    button.submit-btn {
        font-size: 12px;
    }

    .inner-icons {
        font-size: 18px;
    }

    .social-row {
        gap: 10px;
    }
    .right-sub-container{
        width: 100%;
        margin-left: 25px;
        margin-right: 25px;
    }

    .main-container {
        margin: 50px auto;
    }
    .map-container{
        margin-top: 70px;
    }
    .map-container iframe{
        width: 330px;
        height: 170px;
    }
}