
*{
    margin: 0;
    padding: 0;
}/* Get in Touch section styles */
.getintouch-wrapper * {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
   .getintouch-section-1{
background-color:white;
}
.getintouch-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;  
    /* background: linear-gradient(135deg, #1B3C73, #0D1B2A, #1B3C73); */
    background: #37145ce1;

    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    font-family: 'Poppins', sans-serif;
    color:white;
    position: relative;
}

.getintouch-wrapper::before,
.getintouch-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
}

.getintouch-wrapper::after {
    background-color: black;
    opacity: 0.3;
}

.getintouch-wrapper::before {
    background-color: black;
    opacity: 0.4;
}

.getintouch-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: white;
}

.getintouch-form .getintouch-dbl-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.getintouch-field {
    width: 100%;
    position: relative;
}

.getintouch-field input,
.getintouch-message textarea {
    width: 100%;
    height: 50px;
    padding: 0 18px 0 48px;
    border-radius: 5px;
    font-size: 1rem;
    background-color: ghostwhite;
    opacity: 0.9;
    outline: none;
    transition: 0.3s;
}

.getintouch-message textarea {
    min-height: 120px;
    padding-top: 15px;
    resize: none;
}

.getintouch-field input:focus,
.getintouch-message textarea:focus {
    border: 2px solid #5D2F77;
    opacity: 1;
}
.getintouch-message i {
    position: absolute;
    left: 50px;
    top: 64%;
    transform: translateY(-50%);
    color: #bfbfbf;
    pointer-events: none;
    transition: 0.3s;
}
.getintouch-field i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #bfbfbf;
    pointer-events: none;
    transition: 0.3s;
}

.getintouch-field input:focus ~ i,
.getintouch-message textarea:focus ~ i {
    color: #5D2F77;
}

.getintouch-button-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.getintouch-submit-btn {
    width: 100%;
    max-width: 300px;
    font-size: 18px;
    padding: 12px 0;
    border-radius: 5px;
    border: none;
    color: #fff;
    cursor: pointer;
    /* background: linear-gradient(rgb(60,185,110), rgb(45,155,95), rgb(30,130,80)); */
    background-color: #fcc883;
    box-shadow: 0px 1px 5px rgba(100,0,100,0.5);
    transition: 0.3s;
}

.getintouch-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 10px rgba(100,0,100,0.7);
}

.getintouch-button-area span {
    display: none;
    font-size: 0.9rem;
    text-align: center;
    color: #0d6efd;
}

/* Responsive */
@media (min-width: 768px) {
    .getintouch-field1,
    .getintouch-field2 {
        flex: 1;
        display: flex;
        gap: 10px;
    }
}


