*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    /* outline: 1px red solid; */
}
.container {
  width: 100%;
  height: 40vh;
  background-image: url(https://i.ibb.co/KpBxB2n7/Chat-GPT-Image-Nov-12-2025-05-08-36-PM.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: left;
}

.sub-container {
  width: 40%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  .container {
    justify-content: center;
    padding-left: 0;
    text-align: center;
  }

  .sub-container {
    width: 80%;
    justify-content: center;
  } 
}

@media (max-width: 576px) {
  .container {
    min-height: 40vh;
    text-align: center;
    padding: 5% 3%;
  }

  h1 {
    font-size: 2.7rem;
  }
}
.contact-section{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-details{
    width: 35%;
    height: max-content;
    background-color: #fff;
    padding-top: 2.5%;
    padding-left: 2.5%;
    padding-right: 1.5%;
}
span{
    font-size: 15px;
    font-weight: 800;
    color: #7141b1;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    text-transform: uppercase;
}
 
h2{
    font-size: 3.3rem;
    color: rgb(2, 2, 2);
    padding-bottom: 15px;
}
.details-para{
    width: 90%;
    padding-bottom:11%;
}
.details-para p{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;    

}

.details-box{
    width: 90%;
    height: max-content;
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 3%;
    border-radius: 5PX;
}
.details-box:hover{
    border-bottom:.1px solid transparent ;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    background-color: rgb(243, 245, 241);
}
.details-info h3{
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 7px;

}

.details-info p{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6c6c6c;

}
.details-icon{
    width: max-content;
    height: max-content;
    margin-right: 25px;
}

.icon-gradient {
    background: linear-gradient(to right, #00eaff, rgba(0, 0, 255, 0.776));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    font-size: 36px;
  }

/* FORM */
.contact-form {
    width: 33%;
    background: linear-gradient(to right, #00eaff, #2e85d0, #7442c8);
    color: #fff;
    padding: 30px;
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form h3 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.contact-form p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #e0f7fa;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.95em;
    color: #fff;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group .required {
    color: #ffeb3b;
}

button {
    background-color: #fff;
    color: #060606;
    border: none;
    padding: 12px 25px;
    border-radius: 3px;
    cursor: pointer;
    font-size: .9em;
    font-weight: 550;
    transition: background-color 0.4s ease;
}

button:hover {
    background-color: #1d02b9;
    color: #ffff;
}



/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        /* flex-direction: column; */
        display: block;
        height: auto;
        padding: 5%;
    }

    .contact-details{
        width: 87%;
        margin-bottom: 10%;
    }

    .contact-form{
        width: 80%;
    }

    .contact-form {
        border-radius: 0 0 8px 8px;
    }

    .sub-container{
        width: 50%;
    }
}

/* Modal container */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

/* Modal content box */
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 350px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Close button */
.close {
    color: #333;
    float: right;
    font-size: 22px;
    font-weight: bold;
    margin-top: -10px;
}

.close:hover,
.close:focus {
    color: red;
    cursor: pointer;
}
