/* Header Top */
.header-top {
  /* background-color: #f2f2f2; */
  background: linear-gradient(45deg, #003679 15%, #20A7DB 32%);
  color: #333;
  text-align: center;
  /* padding: 15px; */
  padding: 15px 46px 15px 15px;
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

/* Header Main */
.header-main {
  background-color: #f2f2f2;
  /* background: linear-gradient(45deg, white 19%, #003679 46%, #20A7DB 78%); */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 41px 15px 15px;
  height: 85px;
}

.enquiry-div {
  display: flex;
  gap: 10px;
}

.header-main .logo {
  font-size: 24px;
  font-weight: bold;
  width: 106px;
  margin-left: 30px;
}

#logo1 {
  Width: 100%;
}


.nav-div {
  display: flex;
  align-items: center;
  gap: 69px;

}

.navbarr {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbarr ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navbarr ul li a {
  color: #003679;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.btns {
  background-color: #003679;
  border: none;
  color: #20A7DB;
  padding: 12px 32px;
  font-size: 15px;
  cursor: pointer;
  color: white;
  margin-left: 0%;
  border-radius: 25px;
  font-weight: bold;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.close-btn {
  display: none;
}


.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: linear-gradient(135deg, #003679, #20A7DB);
  padding: 20px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  /* Limit the modal height */
  overflow-y: auto;
  /* Enable vertical scrolling */
  border-radius: 8px;
  position: relative;
}


/* Scrollbar styling (optional) */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.modal-content h2 {
  margin-bottom: 15px;
}

.modal-content label {
  display: block;
  margin: 10px 0 5px;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.captcha-display {
  font-size: 24px;
  letter-spacing: 3px;
  color: #FFEE8C;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.close-modal {
  color: black;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

.success-message {
  display: none;
  color: green;
  text-align: center;
  margin-top: 10px;
}

.form-label {
  color: #f2f2f2;
}

.but-div {
  padding: 10px;
  display: flex;
  justify-content: center;
}

.contact-formm {
  padding: 20px;
  /* background: #333; */
  color: white;
  padding: 20px;
  border-radius: 5px;
  width: 100%;
  /* max-width: 400px; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-formm h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-groupp {
  margin-bottom: 8px;
}

.form-groupp label {
  font-size: 17px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.form-groupp input,
.form-groupp textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-groupp textarea {
  height: 80px;
  resize: vertical;
}

/* .form-groupp button {
    background-color: #20A7DB;
    color: white;
    padding: 10px 32px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
  } */

.success-message {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  justify-content: center;
  color: green;
}

/* .form-groupp button:hover {
    background-color: #45a049;
  } */

/* Responsive design */
@media (max-width: 768px) {
  .contact-formm {
    padding: 15px;
    margin: 20px;
  }

  .contact-formm h2 {
    font-size: 24px;
  }

  .form-groupp input,
  .form-groupp textarea {
    padding: 10px;
    font-size: 14px;
  }

  .form-groupp button {
    padding: 12px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .contact-formm h2 {
    font-size: 20px;
  }

  .form-groupp input,
  .form-groupp textarea {
    font-size: 13px;
  }

  .form-groupp button {
    padding: 10px;
    font-size: 16px;
  }
}

/* Sidebar Style for Mobile */
@media (max-width: 768px) {
  .navbarr {
    margin-top: 0px !important;
    text-align: left !important;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100%;
    width: 250px;
    background-color: #003366;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    transition: left 0.3s ease;
    padding-top: 20px;
  }

  .header-top {
    display: none !important;
    background: linear-gradient(45deg, #20A7DB 15%, #003679 75%);
    color: #333;
    text-align: center;
    padding: 5px;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .header-top_txt {
    font-size: 12px !important;
  }

  .btns {
    font-size: 12px;
    padding: 4px 12px;
  }

  .navbarr ul li a {
    color: #f2f2f2 !important;
  }

  .header-main {
    background-color: #f2f2f2;
    padding: 16px 8px 15px 15px;
  }

  .navbarr.active {
    left: 0;
  }

  .navbarr ul {
    flex-direction: column;
    gap: 15px;
  }

  .close-btn {
    align-self: flex-end;
    margin-right: 20px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    display: block;
    /* display: none; */
  }

  .apply-form button {
    width: 52% !important;
  }

  .hamburger {
    display: block;
    color: black;
  }

  .carrer-h_one {
    padding-top: 25% !important;
  }

  .header-main .logo {
    width: 24%
  }

  .job-card {
    flex-direction: column;
  }

  .job-info,
  .job-details {
    width: 100% !important;
  }
}

/* Services */

/* Container for the whole section */
.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.85rem;
  max-width: 1547px;
  /* margin: 0 auto; */
  padding: 6px 11px 34px 11px;
}

/* Individual service box */
.service-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
}

/* Icon container */
.icon-circle {
  width: 165px;
  height: 165px;
  /* background-color: #20A7DB;  */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* Icon inside the circle */
.icon-circle img {
  width: 87%;
  height: 87%;
}

/* Text below the icon */
.service-text {
  font-weight: 800;
  font-size: 16px;
  color: #003679;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-container {
    /*flex-direction: column;*/
    gap: 0.5rem;
  }

  .lasttextdiv {
    flex-direction: column;
  }

  .service-box {
    width: 120px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .service-text {
    font-size: 0.9rem;
  }

  .cta-area {
    padding-top: 14%;
  }

  .work-head {
    padding-top: 35% !important;
  }
}

@media (max-width: 480px) {
  .service-box {
    width: 100px;
  }

  .icon-circle {
    width: 73px;
    height: 73px;
  }

  .service-text {
    font-size: 0.8rem;
  }
  .ch_3{
    padding: 0px 20px;
    text-align: justify !important;
    font-weight:normal !important;
  }
  .job-card{
      padding:13px !important;
  }
}


/* Carrer P{Age  */

.carrer-h_one {
  padding-top: 11%;
  text-align: center;
  /* padding: 2rem 0; */
}

.carrer-h_one h1 {
  font-weight: bold;
  color: #003679;
  font-size: 2rem;
}

.carrer-h_one h1 span {
  color: #20A7DB;
}

.carrer-h_two {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* width:70%; */
}

.ch_one {
  text-align: justify;
  line-height: 1;
  font-size: 20px;
  margin-top: 10px;
  font-weight: 600;
}

.ch_3 {
  font-size: 18px;
  color: #003679;
  font-weight: 500;
  text-align: center;
}


.job-listings {
  /* margin-top: 10%; */
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}

.job-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  width: 100%;
  gap: 1rem;
  padding: 1.75rem;
}

.job-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* flex: 1; */
  width: 45%;
}

.job-img {
  margin-top: 15px;
  width: 90%;
}

.job-details h2 {
  font-weight: 700;
  font-size: 1.5rem;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}

.job-details h2 span {
  color: #20A7DB;
}

.job-details p {
  margin: 0.5rem 0;
  font-size: 16px;
}

.job-info p {
  margin: 0.5rem 0;
}

.job-details {
  text-align: left;
  background-color: #E0FFFF;
  border-radius: 8px;
  padding: 1rem;
  width: 55%;
}

.job-details a {
  background-color: #003679;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none !important;
}
.job-apply-button{
  margin-top:20px;
}

/* Work.php */

.work-head {
  padding-top: 7%;
}

/* Contact.php */

.main-container1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}

.contact-form1,
.contact-info1 {
  flex: 1 1 300px;
  padding: 20px;
  background-color: #003366;
  color: #fff;
  border-radius: 8px;
}

.contact-form1 h2,
.contact-info1 h3 {
  color: #29a1f2;
}

.contact-form1 form label,
.contact-form1 form input,
.contact-form1 form textarea {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  color: #333;
}

.contact-form1 form input,
.contact-form1 form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.contact-form1 form button {
  background-color: #29a1f2;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
}

.social-icons a:hover {
  color: #29a1f2;
}

/* Footer */

.footer {
  background-color: #031e3e;
  color: white;
  padding: 40px 20px 20px 36px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-section h3 {
  color: #52b8e9;
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 20px;
}

.contact-item {
  font-size: 17px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 15px;
}

.location-item {
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.location-item img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-top: 4px;
}

.contact-item img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  margin-top: 4px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a img {
  width: 48px;
  height: 48px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 10px 0;
  color: #7dbde7;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 15px;
    /* text-align: center; */
  }

  .footer-section {
    flex: none;
    min-width: auto;
    width: 100%;
  }

}