
/* -------------------------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===================================== */

/* -----------------------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------------------------------ */

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

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

#main-area {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  #main-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .content-wrapper {
    display: flex;
    flex-direction: column;
  }
  
  .section {
    margin-bottom: 30px;
  }
  
  .text-module {
    margin-bottom: 35px;
  
  }
  
  .text-module p {
    font-size: 20px;
    color: #333;
   
  }
  
  .text-module a {
    color: #00b7ce;
    text-decoration: none;
  }
  
  .text-module a:hover {
    text-decoration: underline;
  }
  
  .text-module.clickable {
    cursor: pointer;
    font-weight: bold;
    color: #00b7ce;
  }
  
  .text-module em {
    font-style: italic;
    color: #777;
  }
  
  .row {
    display: flex;
    flex-direction: row;
  }
  
  .column {
    width: 100%;
  }
  
  .divider {
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
  }
  
  .bottom-divider {
    border-bottom: 4px solid #333;
    margin-bottom: 20px;
  }
  
  /* Mobile responsiveness */
  @media screen and (max-width: 768px) {
    .row {
      flex-direction: column;
    }
  }


  .mainHead{
    font-size: 25px;
    font-weight: bold;
  }

  /* ------------------------------------ppppppp----------------------------------------- */

/* -----------------------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------------------------------ */

