
/* -------------------------Footer Section------------------------------------- */


/* ======================================footer container start===================================== */

.last-container {
  font-family: Arial, sans-serif;
  background-image: url('/Assets/background-footer.jpg');
  background-size: cover; /* This will ensure the image covers the entire background */
  background-position: center; /* This will center the image */
  background-repeat: no-repeat; /* This will prevent the image from repeating */
  color: white;
  margin: 0;
  padding: 0;
}

footer {
  padding: 40px 90px;
  margin-left: 100px;
}

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

.footer-logo,
.footer-hq,
.footer-facilities {
  margin-bottom: 20px;
}

.footer-logo {
  flex: 1 1 20%;
  margin-top: 90px;
}

.footer-hq {
  flex: 1 1 35%;
}

.footer-facilities {
  flex: 1 1 35%;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 1px solid white;
  display: inline-block;
  color: #8f92a6;
}

.footer-text {
  margin: 5px 0;
  line-height: 1.6;
}

.footer-link {
  color: #60a5fa;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #4b5563;
  padding-top: 20px;
}

.footer-certifications {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.footer-certifications img {
  max-width: 50px;
  height: auto;
}

/* ======================================Media Queries for Responsiveness start footer container End===================================== */

/* Media Queries for Responsiveness */

/* For small devices like mobile phones */
@media (max-width: 768px) {
  footer {
    padding: 20px 20px;
    margin-left: 0;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 20px;

  }

  .footer-hq,
  .footer-facilities {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-heading {
    font-size: 16px;
  }

  .footer-text {
    font-size: 14px;
  }

  .footer-bottom {
    padding: 20px 10px;
    text-align: center;
  }
}

/* For extra-small devices like very small screens */
@media (max-width: 480px) {
  footer {
    padding: 15px 15px;
  }

  .footer-heading {
    font-size: 14px;
  }

  .footer-text {
    font-size: 12px;
  }

  .footer-logo img {
    width: 120px;
  }

  .footer-link {
    font-size: 14px;
  }
}
/* ======================================Media Queries for Responsiveness End footer container End===================================== */

/* -------------------------Footer Section Completed ------------------------------------- */





.video-container {
    position: relative; /* Position relative to contain the absolute elements inside it */
    width: 100%; /* Set to your desired width */
    height: auto; /* Adjust based on your video dimensions or container size */
  }
  
  video {
    width: 100%; /* Make the video fill the container */
    height: auto; /* Maintain aspect ratio */
  }
  
  .overlay-image {
    position: absolute; /* Position the image over the video */
    top: 50%; /* Position the image vertically in the center */
    left: 50%; /* Position the image horizontally in the center */
    transform: translate(-50%, -50%); /* Adjust to perfectly center the image */
    width: 50%; /* Adjust to fit the video */
    height: auto; /* Maintain aspect ratio */
    z-index: 1; /* Make sure the image is above the video */
    opacity: 0.5; /* Optional: Adjust image opacity if you want to see the video through the image */
  }
  
  .video-container video {
    width: 100%;
    height: auto;
  }


  /* ---------------------------Video End-------------------------- */

  .et_pb_row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap; /* Ensures content wraps on smaller screens */
}

.et_pb_column {
    width: 100%; /* Default column takes full width */
    padding: 10px;
    box-sizing: border-box;
}

.et_pb_text_inner {
    padding: 10px;
}

.heading-text, .subheading-text, .description-text {
    text-align: center;
    margin: 10px 0;
}

.heading-text {
    font-size: 2rem;
    font-weight: bold;
}

.subheading-text {
    font-size: 1.5rem;
    color: #555;
}

.description-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}



/* ------------------------ssssssssssssssssssssssssss--------------------------- */
/* Styling for video container */
.video-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  
  .background-video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .overlay-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 80%; /* Adjust the size of the image */
    height: auto;
  }
  
  /* Text sections styling */
  .et_pb_text {
    margin: 20px auto;
    text-align: center;
  }
  
  .et_pb_text_inner {
    font-size: 1.5rem;
    color: #333;
  }
  
  .et_pb_text_1 span {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    color:#00B7CE;
  }
  
  .et_pb_text_2 p {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .et_pb_text_3 p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0 10px;
  }
  
  /* Media queries for responsiveness */
  @media (max-width: 1024px) {
    .et_pb_text_inner {
      font-size: 1.4rem;
    }
  
    .et_pb_text_1 span {
      font-size: 1.8rem;
    }
  
    .et_pb_text_2 p {
      font-size: 1.4rem;
    }
  
    .et_pb_text_3 p {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 768px) {
    .overlay-image {
      max-width: 70%;
    }
  
    .et_pb_text_inner {
      font-size: 1.2rem;
    }
  
    .et_pb_text_1 span {
      font-size: 1.6rem;
    }
  
    .et_pb_text_2 p {
      font-size: 1.3rem;
    }
  
    .et_pb_text_3 p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .overlay-image {
      max-width: 60%;
    }
  
    .et_pb_text_inner {
      font-size: 1rem;
    }
  
    .et_pb_text_1 span {
      font-size: 1.4rem;
    }
  
    .et_pb_text_2 p {
      font-size: 1.2rem;
    }
  
    .et_pb_text_3 p {
      font-size: 0.85rem;
      margin: 0 5px;
    }
  }
  /* --------------------------xxxxxxxxxxxxxxxxxx----------------------- */

/* -----------------------Chatbot start------------------------------ */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.chatbot-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.chatbot-btn img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Chatbox styles */
.chatbox {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  height: 400px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbox-header {
  background-color: #00b7ce;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.chatbox-body {
  padding: 10px;
  overflow-y: auto;
}

.chatbox-body ul {
  list-style: none;
  padding: 0;
}

.chatbox-body .accordion-item {
  margin-bottom: 10px;
}

.accordion-btn {
  background: #f1f1f1;
  padding: 10px;
  width: 100%;
  text-align: left;
  border: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  border-radius: 5px;
  transition: background 0.3s;
}

.accordion-btn:hover {
  background: #00b7ce;
  color: white;
}

.accordion-content {
  padding: 10px;
  background: #f9f9f9;
  display: none;
  border-radius: 5px;
  font-size: 14px;
}

/* Sub-question button styles */
.sub-accordion-btn {
  background: #e9e9e9;
  padding: 8px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 15px;
  cursor: pointer;
  font-weight: normal;
  border-radius: 5px;
  margin-bottom: 5px;
  transition: background 0.3s;
}

.sub-accordion-btn:hover {
  background: #00b7ce;
  color: white;
}

/* Sub-answer styles */
.sub-answer {
  padding-left: 20px;
  font-size: 15px;
  display: none;
  background-color: #f2f2f2;
  margin-bottom: 5px;
  border-left: 2px solid #00b7ce;
}

.sub-answer p {
  margin: 0;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

/* -----------------------Chatbot End------------------------------ */

