@charset "UTF-8";
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --title-color: hsl(244, 12%, 12%);
  --text-color: hsl(244, 4%, 36%);
  /* --body-color: hsl(208, 97%, 85%); */
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --h2-font-size: 1.25rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
}

/* Media queries and other styles */
/* Rest of your CSS rules... */

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: var(--body-color);
  font-family: var(--body-font);
  color: var(--text-color);
}

input,
button,
select {
  font-family: var(--body-font);
  border: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== LOGIN FORM ===============*/
.login-container .login-content,
.login-container .login-form,
.login-container .login-inputs {
  display: grid;
}

.login-content {
  display: flex;
  justify-content: center;
  /* Center the content horizontally */
  align-items: center;
  /* Center the content vertically */
}

.login-form {
  margin: 20px;
  padding: 15px 7px;
}

.login-container .login-content {
  position: relative;
  height: 100vh;
  align-items: center;
}

.login-container {
  height: 1100px;
  background: url(./images/aboutus.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 350px) {
  .login-container {
    height: 1200px;
  }
}

.login-container .login-form {
  position: relative;
  background-color: hsla(249, 17%, 92%, 0.477);
  border: 2px solid hsla(244, 16%, 92%, 0.75);
  margin-inline: 1rem;
  row-gap: 1.25rem;
  backdrop-filter: blur(3px);
  padding: 2rem;
  border-radius: 1rem;
}

.login-container .login-title {
  text-align: center;
  font-weight: bolder;
  color: var(--title-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.login-container .login-title span {
  color: var(--first-color);
}

.login-container .login-description {
  font-size: var(--small-font-size);
}

.login-container .login-inputs {
  row-gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.login-container .login-label {
  display: block;
  color: var(--title-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.25rem;
}

.login-container .login-input {
  width: 100%;
  padding: 14px 12px;
  border-radius: 6px;
  border: 2px solid var(--text-color);
  background-color: hsla(244, 16%, 92%, 0.6);
  color: var(--title-color);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  transition: border 0.4s;
}

.login-container .login-input::placeholder {
  color: var(--text-color);
}

.login-container .login-button {
  width: 100%;
  padding: 14px 2rem;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--first-color), var(--second-color));
  color: #fff;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  box-shadow: 0 6px 24px hsla(244, 75%, 48%, 0.5);
  margin-bottom: 1rem;
  cursor: pointer;
}

.login-buttons .login-button {
  font-size: 1.2rem;
  padding: 14px 2px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--first-color), var(--second-color));
  color: black;
  font-weight: var(--font-semi-bold);
  box-shadow: 0 6px 24px hsla(244, 75%, 48%, 0.5);
  margin-bottom: 1rem;
  cursor: pointer;
}

.login-buttons .login-button:hover {
  color: green;
  filter: brightness(90%);
}

/* ***************************************** */

/* career pages styling */

.jobs {
  padding: 15px 7px;
}

.jobh2 {
  text-align: center;
  color: green;
  font-size: 2.5rem;
  font-weight: bolder;
}

.job-container {
  background-color: #ffffff;
  border: 2px solid #ffa500; /* Orange border */
  border-radius: 10px;
  box-shadow: 7px -4px 20px 10px rgba(0, 0, 0, 0.1); /* Box shadow */
  padding: 20px;
  margin: 20px;
}

.job-container h2 {
  color: #008000; /* Green text */
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.job-container p {
  color: #333333; /* Dark text */
  font-size: 16px;
  margin-bottom: 10px;
}

.job-container ul {
  list-style-type: none;
  padding: 12px;
}

.job-container ul li {
  color: #333333; /* Dark text */
  font-size: 16px;
  margin-bottom: 5px;
}


/* ****************************************************** 
*/

/* services pages section  */

.custom-container {
    color: green;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff; /* White */
    border-radius: 10px;
    border: 2px solid orange;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Light shadow */
}

.custom-heading {
    color: #ff7f00; /* Orange */
    text-align: center; /* Center align */
    font-weight: bold; /* Bold */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Box shadow */
    padding: 10px; /* Add padding for box shadow */
}

.custom-paragraph {
    line-height: 1.6;
}

.form-heading {
    text-align: center; /* Center align */
    margin-bottom: 20px;
}

.enquiry-form {
    opacity: 0;
    transition: opacity 1s;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

select .form-control{
  width: 100%;
    padding: 10px;
    border: 1px solid #cccccc; /* Light gray */
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light shadow */
}

input[type="text"],
input[type="email"],
input[type="tel"],

input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc; /* Light gray */
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light shadow */
}

input[type="submit"] {
    background-color: #ff7f00; /* Orange */
    color: #ffffff; /* White text */
    border: none;
    cursor: pointer;
}


/* ******** */

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff; /* White */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Light shadow */
}

.terms-heading {
    color: #ff7f00; /* Orange */
    text-align: center;
}

.terms-content {
    padding: 20px 0;
}

.terms-subheading {
    color: #ff7f00; /* Orange */
    margin-top: 20px;
}

.terms-paragraph {
    line-height: 1.6;
    margin-bottom: 20px;
}


