
/* ------------------------------------Image and text Section-----------------  */


.sectionTitle{
    font-size: 17px;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: #242850;
   
}

.sectionHeading {
    font-size: 50px; /* Default for larger screens */
    font-weight: bold;
    letter-spacing: 3px;
    line-height: normal;
    text-align: center; /* Ensures text remains centered on all devices */
    color:  #00b7ce;
}

/* For tablets and medium-sized devices */
@media (max-width: 1024px) {
    .sectionHeading {
        font-size: 40px; /* Reduce font size for tablets */
        letter-spacing: 2px;
    }
}

/* For mobile devices */
@media (max-width: 768px) {
    .sectionHeading {
        font-size: 30px; /* Further reduce font size for smaller screens */
        letter-spacing: 1px;
    }
}

/* For extra small devices (e.g., older smartphones) */
@media (max-width: 576px) {
    .sectionHeading {
        font-size: 25px; /* Optimize for very small screens */
        letter-spacing: 0.5px;
    }
}

.sectionText{
    font-size: 23px;
    color: #242850;
    line-height: 1.6;
}


/* ------------------------------------Image and text Section completed-----------------  */




/* ------------------------------------Impacts----------------  */



.impacts{
    background-color: #eaeaea;
    border-radius: 20px;
    padding: 20px;
}

.impactsHeading{
    font-size: 22px;
    font-weight: bolder;
    color:  #055f38;
    letter-spacing: 2px;
}

.impactsText{
    font-size: 16px;
}

/* ------------------------------------Impacts Completed----------------  */



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