


.profile-image {
  width: 200px;       /* Adjust size to your preference */
  height: 200px;      /* Maintain a square aspect ratio */
  border-radius: 50%; /* Makes the image circular */
  object-fit: cover;  /* Ensures the image covers the area without distortion */
  padding-top:40px;
  padding-bottom: 20px;
}


/* Overlay Content */
.overlay-content {
  position: absolute;
  z-index: 1;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  width: 100vw; /* Ensure full width for centering */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Center both horizontally and vertically */
  box-sizing: border-box;
}



/* Video Background Section */
.overlay-content,
.image-header-container,
.video-background-frame,
.video-background-wrapper {
  height: 25vh !important;
}


.page-container {
display: flex;
flex-direction: column;
min-height: 100vh; /* Ensure full viewport height */
position: relative;
box-sizing: border-box;
}

.header-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 70px;
background-color: white;  
z-index: 10;
padding-bottom: 20px;
}


/* Video Background Section */
.video-background-wrapper {
  position: absolute;
  width: 100vw; /* Ensure full width for centering */
  overflow: hidden;
}

.video-background-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw; /* Ensure full width for centering */
  object-fit: cover;
  z-index: -1;
}


.overlay-text {
font-size: 36px;
font-weight: 500;
color: #78909c;
text-align: center;
justify-content: center;
align-items: center;
margin-top: 30px;
margin-bottom: 20px;
}

/* General Styles */
body {
  color: black;
}

/* Contact Container Styling */
.contact-container {
  font-family: Arial, sans-serif;
  width: 100vw;
  background-color: #455a649a;  /* Make the background dark blue to distinguish */
  color: white;  /* Set text color to white for contrast */
  border-radius: 8px;  /* Rounded corners */
  font-size: 14px;
  color: #283593; /* Lighter blue color */
}


.contact-bottom,
.contact-info {
  text-align: center;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}

.contact-info-sec1 {
padding-bottom: 5px;
}


.contact-info-sec2 {
  padding-bottom: 20px;
}

.contact-heading {
  font-size: 36px;
  margin: 10px 0;
  color: white; 
  text-align: center;
  font-weight: 500; /* Thin weight for headings */
  background: none; /* Ensure no background color */
  padding: 0; /* Remove padding if any */  
}

/* Contact Form Styles */

.contact-form-container {
  width: 50vw;
  margin: 40px auto; /* Adds space around the form and centers it horizontally */
  padding: 40px;
  padding-bottom: 50px;
  background: #f9f9f9; /* Light background color for the form */
  border-radius: 8px; /* Rounded corners for the form container */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for better visibility */
}

/* Heading inside the form */
.contact-form-container h1 {
  font-size: 24px;
  margin-bottom: 35px;
  color: #333; /* Darker color for the heading */
}


/* Form Group Styling */
.form-group {
  margin-bottom: 15px;
  text-align: center; 
}

/* Label Styling */
.form-group label {
  display: block;
  font-weight: 600; /* Bold labels for better readability */
  margin-bottom: 5px;
  
  
  color: #555; /* Darker color for labels */
}

/* Input and Textarea Styling */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd; /* Light border color */
  border-radius: 4px; /* Slightly rounded corners for input fields */
  box-sizing: border-box; /* Ensures padding and border are included in the total width */
  font-size: 16px;
}

textarea {
  text-align: center;
  resize: vertical;
  font-size: 14px !important;  
  text-align: center;     
  justify-content: center; 
  font-family: Arial, sans-serif; 
  color: rgb(185, 185, 185);
  }

textarea::placeholder {
  text-align: center;
  justify-content: center;
  font-size: 14px !important;
  color: rgb(185, 185, 185);
}

/* Textarea Styling */
.form-group textarea {
  resize: vertical; /* Allows vertical resizing only */
}

/* Submit Button Styling */
button[type="submit"] {
  background-color: #007BFF; /* Primary button color */
  color: white; /* Text color for the button */
  border: none;
  padding: 10px 20px;
  border-radius: 4px; /* Rounded corners for the button */
  font-size: 16px;
  cursor: pointer; /* Pointer cursor on hover */
  display: block; /* Ensure the button is a block element */
  margin: 20px auto; /* Center the button horizontally with margin around it */
}

/* Hover Effect for Submit Button */
button[type="submit"]:hover {
  background-color: #0056b3; /* Darker shade on hover */
}

/* Media Query for Centering Text on Screens 1000px or Smaller */

@media screen and (max-width: 1000px) {

  .contact-heading {
      text-align: center; /* Center the heading text */
  }

  .form-group label {
      text-align: center; /* Center labels inside the form group */
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group input[type="number"],
  .form-group textarea {
      display: inline-block; /* Make inputs and textarea inline-block for centering */
      text-align: center; /* Center text inside the input fields */
  }

  button[type="submit"] {
      display: block; /* Ensure the button is a block element */
      margin: 20px auto; /* Center the button horizontally */
  }
}


/* Portrait mode for very small screens (e.g., Galaxy Fold front thin screen) */
@media screen and (max-width: 500px) and (orientation: portrait) {
  .contact-form-container {
      width: 65vw;
  }
  
  .image-header-container {
      height: 100vh; /* Use viewport height for portrait mode */
      width: 100vw; /* Use viewport height for portrait mode */
  
  }

  /* Input and Textarea Styling */
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group input[type="number"],
  .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ddd; /* Light border color */
      border-radius: 4px; /* Slightly rounded corners for input fields */
      box-sizing: border-box; /* Ensures padding and border are included in the total width */
      font-size: 14px;
  }

  textarea{
      font-size: 10px;          
  }

  textarea::placeholder {
      font-size: 10px;          
  }

}


/* Mobile view for screens up to 768px wide */
@media screen and (max-width: 768px) {

  
  .image-header-container {
    height: 100vh; /* Use viewport height for portrait mode */

  }


  .button-link {
    width: 200px; /* Fixed width for buttons */
    height: 50px;
    font-size: 14px;
  }

  .custom-column {
    flex: 1 1 100%; /* Each column takes 100% of width */
    max-width: 100%; /* Ensure each column does not exceed 100% width */
  }
  
  .button-link {
    border: 1px solid #ffffff;
  }

  .header-logo {
    width: 150px;  /* Set desired width */
    height: auto;  /* Maintain aspect ratio */
    display: block; 
    margin: 10px auto 0; 
  }

  .header-text {
    color: white;
    font-size: 10px;
    margin: 2px;
  }
    
}
