/* Custom styles for the form and image sections */

/* Heading Styles */
.section-heading {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.section-subheading {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* Left Form Section Styling */
.form-section {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 0; /* Remove bottom margin to prevent empty space */
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Right Image Section Styling */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Vertically aligning images inside image-container */
.image-container {
    display: flex;
    flex-direction: column;  /* Stack images vertically */
    justify-content: center;
    align-items: center;     /* Center images horizontally */
    width: 100%;
}

/* Custom Image Styling */
.custom-image {
    width: 350px;          /* Fixed width */
    height: 450px;         /* Fixed height */
    margin-bottom: 15px;   /* Space between the images */
    border-radius: 10px;   /* Optional: add rounded corners to images */
    object-fit: cover;     /* Ensure the image covers the area without distortion */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .image-section {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .custom-image {
        width: 80%;   /* Reduce width for smaller screens */
        height: auto; /* Adjust height proportionally to maintain aspect ratio */
        margin: 10px 0;  /* Add gap between images in mobile view */
        display: block;
    }

    .form-section {
        margin-bottom: 0; /* Remove bottom margin to avoid space */
    }

    /* Responsive Heading */
    .section-heading {
        font-size: 1.8rem;
    }

    .section-subheading {
        font-size: 1rem;
		text-align:Center;
    }
}

.upload-field input[type="file"] {
  display: block;
  margin-top: 10px;
  font-size: 15px;
}

.form-check-label a {
  color: #d63333;
  text-decoration: none;
  font-weight: 500;
}

.form-check-label a:hover {
  text-decoration: underline;
}

/*** Contact deatils ****/
.contact-info-section {
  background-color: #fff;
  color: #111;
}

.contact-card  {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  cursor:pointer;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon i {
  font-size: 2rem;
  color: #4CAF50; /* Green shade */
}

.contact-text {
  font-size: 1.1rem;
  font-weight: 500;
}
.contact-text-mail {
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-card .custom-link{
    margin-bottom: 15px;
  }
}


/* Basic link style */
.custom-link {
    text-decoration: none;          /* Removes underline from the link */
    color: #000;                 /* Sets the default link color */
    font-size: 1.1em;               /* Sets font size */
    font-weight: 600;               /* Makes the link text bold */
    transition: color 0.3s ease;    /* Smooth color transition on hover */
}

/* Hover effect */
.custom-link:hover {
    color: #ff5722;                 /* Changes color on hover */
    text-decoration:none;     /* Adds an underline on hover */
}

/* Basic link style */
.custom-link-mail {
    text-decoration: none;          /* Removes underline from the link */
    color: #000;                 /* Sets the default link color */
    font-size: 1em;               /* Sets font size */
    font-weight: 600;               /* Makes the link text bold */
    transition: color 0.3s ease;    /* Smooth color transition on hover */
}

/* Hover effect */
.custom-link-mail:hover {
    color: #ff5722;                 /* Changes color on hover */
    text-decoration:none;     /* Adds an underline on hover */
}