/* General HTML Setup */
html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

/* Slide and Accordion Styles */
.slide ul {
  list-style-type: none;
}

.accordion-ul li {
  list-style: none;
  font-size: 14px;
  background-color: none;
  color: white;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
}

.accordion-ul li::marker {
  font-size: 25px;
}

.accordion-ul li:hover {
  background-color: #335596;
  color: white;
}

/* Slider Container Styles */
.slider-container li {
  background-color: #dddddd3c;
  padding: 20px;
  border-radius: 8px;
  right: 20px;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.slider-container li:hover {
  background-color: #335596;
  padding: 20px;
  transform: scale(1.05);
}

/* Card Styles */
.card {
  width: 550px;
  height: 300px;
  margin: 20px 65px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #9fb8e8;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: #74c5b5;
  border: 1px solid #ddd;
  color: white;
}

/* Accordion Card Styles */
.accordioncard {
  margin: 20px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: max-width 0.3s ease-in-out;
}

.accordion .btn {
  color: black;
  font-size: 24px;
}

/* Module Container Styles */
.module-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* Module Backgrounds with Hover Effects */
.module-environmental, .module-social, .module-governance {
  background-size: cover;
  background-position: center;
  background-color: rgba(51, 85, 150, 0.7);
  background-blend-mode: overlay;
  overflow: scroll;
  overflow-x: hidden;
  transition: background-image 0.3s ease;
}

.module-environmental:hover, .module-social:hover, .module-governance:hover {
  background-image: none;
  height: 100%;
}

/* Scrollbar Customization */
.module-environmental::-webkit-scrollbar,
.module-social::-webkit-scrollbar,
.module-governance::-webkit-scrollbar {
  width: 8px;
}

.module-environmental::-webkit-scrollbar-thumb,
.module-social::-webkit-scrollbar-thumb,
.module-governance::-webkit-scrollbar-thumb {
  background-color: rgb(51, 85, 150);
  border-radius: 4px;
}

.module-environmental::-webkit-scrollbar-track,
.module-social::-webkit-scrollbar-track,
.module-governance::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

/* Module Card Styles */
.module-card {
  width: 100%;
  height: 400px;
  border-radius: 7px;
  padding: 20px;
  text-align: center;
  margin: 0px 20px 20px 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease;
}

.module-card:hover {
  background-color: #74c5b5;
  cursor: pointer;
  height: 400px;
}

.module-card.expanded {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 9999;
  overflow: auto;
  border-radius: 0;
  background-color: rgba(51, 85, 150, 1);
  color: white;
  transition: all 0.5s ease-in-out;
}

.module-card:hover .module-text,
.module-card.expanded .module-text {
  display: block;
}

/* Module Icon and Title Styling */
.module-icon {
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
}

.module-card:hover .module-icon,
.module-card.expanded .module-icon {
  display: block;
  color: rgb(51, 85, 150);
}

.module-title {
  display: none;
}

.module-card:hover .module-title,
.module-card.expanded .module-title {
  display: block;
}

/* Close Icon Styles */
.close-icon {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  cursor: pointer;
  color: white;
  font-size: 20px;
  padding: 10px;
  border: solid #74c5b5 3px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.close-icon:hover {
  color: #74c5b5;
  transform: scale(1.2);
}

/* Module Card Expanded State */
.module-card.expanded .close-icon {
  color: white;
}
  
/* Pulse Shadow Animation */
.pulse-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse-animation 3s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(116,197,182, 0.4),
                0 0 0 0 rgba(116,197,182, 0.3),
                0 0 0 0 rgba(116,197,182, 0.2);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(116,197,182, 0),
                0 0 0 10px rgba(116,197,182, 0.3),
                0 0 0 5px rgba(116,197,182, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(116,197,182, 0.4),
                0 0 0 0 rgba(116,197,182, 0.3),
                0 0 0 0 rgba(116,197,182, 0.2);
  }
}

/* Logo Circle Hover Effects */
.logocircle2 {
  border: solid #ddd 4px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 8px;
  color: #74c5b5;
  margin-right: 20px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.logocircle2:hover {
  background-color: white;
  border-color: black;
}

.card:hover .logo-container .logocircle img {
  background-color: white;
  border: black solid 1px;
}

/* Switcher Animation and Button Styles */
.contentswitcher {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.switcher-button {
  cursor: pointer;
  padding: 10px 20px;
  background-color: #74c5b5;
  border: 1px solid #ccc;
  border-radius: 20px;
  margin: 20px;
  color: white;
  font-weight: bold;
  display: inline-block;
  position: relative;
  transition: background-color 0.3s ease, border 0.3s ease;
}

.switcher-button.active {
  background-color: #74c5b5;
  color: white;
  border: solid 2px #335596;
}

.content {
  display: none;
  margin: 20px;
}

.content.active {
  display: block;
}

/* Management and Reporting Section */
.mr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  z-index: 1;
  position: relative;
}

.mr-text {
  width: 45%;
  padding: 20px;
  font-size: 20px;
  box-sizing: border-box;
  text-align: center;
  transition: opacity 0.3s ease;
}

.mr-image {
  width: 45%;
  height: 250px;
  position: relative;
  overflow: hidden;
  background-color: #335596;
  border-radius: 8px;
  margin: 20px;
  transition: opacity 0.3s ease-in-out;
}

.mr-image img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease-in-out;
  opacity: 0.2;
  border-radius: 8px;
}

.mr-image:hover img {
  opacity: 1;
}

.image-text {
  position: absolute;
  font-size: 32px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.mr-image:hover .image-text {
  opacity: 0;
}

/* Management Layout */
.management-container {
  display: flex;
  width: 100%;
}

.management-photo {
  width: 30%;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 20px;
}

.management-photo img {
  width: 100%;
  border-radius: 25px;
}

.management-text {
  width: 70%;
  padding: 20px;
}

.management-cards {
  display: flex;
  flex-direction: column;
}

.management-logo {
  border: solid 1px #ccc;
  border-radius: 8px;
  padding: 8px;
  margin: 20px;
}

.management-card {
  display: flex;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.management-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Animation Effects for Module Cards */
.module-card {
  width: 100%;
  height: 400px;
  border-radius: 7px;
  padding: 20px;
  text-align: center;
  margin: 0px 20px 20px 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease, background-color 0.3s ease;
}

.module-card:hover {
  background-color: #74c5b5;
  cursor: pointer;
  height: 400px;
  transform: translateY(-5px);
}

.module-card.expanded {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 9999;
  overflow: auto;
  border-radius: 0;
  background-color: rgba(51, 85, 150, 1);
  color: white;
  transition: all 0.5s ease-in-out;
}

.module-card:hover .module-text,
.module-card.expanded .module-text {
  display: block;
  opacity: 1;
}

.module-icon {
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
}

.module-card:hover .module-icon,
.module-card.expanded .module-icon {
  display: block;
  color: rgb(51, 85, 150);
}

.module-title {
  display: none;
}

.module-card:hover .module-title,
.module-card.expanded .module-title {
  display: block;
}

/* Close Icon Animation */
.close-icon {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  cursor: pointer;
  color: white;
  font-size: 20px;
  padding: 10px;
  border: solid #74c5b5 3px;
  border-radius: 50%;
  transition: transform 0.2s ease, color 0.3s ease;
}

.close-icon:hover {
  color: #74c5b5;
  transform: scale(1.2);
}

.module-card.expanded .close-icon {
  color: white;
}

/* Gallery Background */
.monitor-background {
  background-image: url('/assets/img/esg_pictures/cover.jpg');
  background-size: 100%;
  background-blend-mode: overlay;
  background-color: rgba(51, 85, 150, 1);
  margin-top: 20px;
  padding: 20px;
  height: 100%;
  transition: background-color 0.3s ease, background-image 0.3s ease;
}

/* Gallery End */

/* Slider Styles */
.slider-container {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: rgba(51, 85, 150, 0.6); /* Semi-transparent background */
  color: white;
  border-radius: 8px;
  display: flex;
  height: 100%;
  transition: background-color 0.3s ease;
}

.slider-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slider-inner {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.slide {
  flex: 0 0 100%;
  padding: 10px;
  border-radius: 8px;
}

.slider-button {
  width: 15%;
  text-align: center;
  padding: 10px;
  border-radius: 13px;
  background-color: #74c5b5;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, border 0.3s ease;
}

.slider-button:hover {
  background-color: #335596;
  border: 1px solid #ddd;
}

.slider-button.active {
  background-color: #335596;
  border: solid 2px #ddd;
}

.slidericon {
  background-color: white;
  padding: 10px;
  width: 100%;
  border-radius: 8px;
}

.gif-animation {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.mapping-image {
  width: 100%;
  height: 850px;
}

.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-image {
  max-width: 80%;
  max-height: 80%;
}

/* Card Styles */
.card-chosen {
  height: 100%;
  margin: 20px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-chosen:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.logo-container {
  display: flex;
  align-items: center;
  padding: 10px;
}

.logo {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 22%;
  padding: 5px;
  transition: background-color 0.3s ease, border 0.3s ease;
}

.logo:hover {
  background-color: white;
  border: 1px solid black;
}

.separator, .green-separator, .blue-separator {
  height: 2px;
  margin: 15px 0;
}

.separator {
  background-color: #ddd;
}

.green-separator {
  background-color: #74c5b5;
}

.blue-separator {
  background-color: #335596;
}

.content-header {
  display: flex;
  align-items: center;
}

.esg-module-logos {
  width: 40px;
  margin-right: 10px;
  border: 1px solid #ccc;
  padding: 2px;
  border-radius: 13px;
  background: #fff;
}

/* Card Picture Styles */
.card-pictures {
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 75px;
  height: 75px;
}

/* Link Styles */
a {
  color: #335596;
  transition: color 0.3s ease;
}

a:hover {
  color: #74c5b5;
}

/* Big Title Styles */
.bigtitle {
  display: flex;
}

.bigtitle-logo {
  width: 50px;
  height: 50px;
}

/* Radial Menu */
.radialmenu {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 20px;
}

/* ESG Container Styling */
.middlepart-esg .container-esg {
  width: 700px;
  margin-right: 250px;
  right: 100px;
}

.container-esg {
  position: relative;
  z-index: 5;
}

.middlepart-esg .container-esg #display_box {
  position: absolute;
  top: 10px;
  left: auto;
  right: -45%;
  min-height: 85px;
  width: 350px;
  border: 2px dotted #335596;
  padding: 10px;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  z-index: 11;
}

#display_box1 {
  display: none;
  min-height: 85px;
  width: 100%;
  height: 500px;
  color: white;
  position: relative;
  margin: 20px;
  font-weight: bold;
  border-radius: 13px;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  z-index: 5;
  display: flex;
  background-image: url('/assets/img/esg_pictures/background.gif');
  background-size: cover;
  background-position: center;
}

.displaybox-background {
  background-color: rgba(116, 197, 181, 0.6);
  z-index: 1;
  padding: 20px;
  height: 100%;
  width: 100%;
  border-radius: 13px;
}

#display_box1 h1 {
  font-size: 40px;
  width: 100%;
}

#display_box1 p {
  font-size: 28px;
}

/* Fade-in Animation */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* General Responsive Styles */
@media screen and (max-width: 1400px) {
  .radialmenu {
    align-items: center;
    height: 500px;
    font-weight: bold;
  }

  .module-container {
    flex-direction: column;
    align-items: center;
  }

  .slider-container {
    font-size: 10px;
  }
}

@media screen and (max-width: 1800px) {
  #display_box1 h1 {
    font-size: 30px;
  }

  #display_box1 p {
    font-size: 24px; /* Adjust font size for smaller screens */
  }
}

@media screen and (max-width: 1600px) {
  #display_box1 h1 {
    font-size: 22px;
  }

  #display_box1 p {
    font-size: 20px; /* Adjust font size for smaller screens */
  }
}

@media screen and (max-width: 1400px) {
  #display_box1 h1 {
    font-size: 24px;
  }

  #display_box1 p {
    font-size: 14px; /* Adjust font size for smaller screens */
  }

  .displaybox-background ul {
    font-size: 12px;
  }
}

@media screen and (max-width: 1300px) {
  #display_box1 h1 {
    font-size: 12px;
  }

  #display_box1 p {
    font-size: 14px; /* Adjust font size for smaller screens */
  }

  .displaybox-background ul {
    font-size: 12px;
  }
}

@media screen and (max-width: 1200px) {
  #display_box1 h1 {
    font-size: 35px;
  }

  #display_box1 p {
    font-size: 16px; /* Adjust font size for smaller screens */
  }

  .radialmenu {
    align-items: center;
    height: 950px;
    font-weight: bold;
    flex-direction: column;
  }

  .middlepart-esg {
    display: flex;
    flex-direction: column;
  }
}

/* Mobile & Tablet Specific Styling */
@media screen and (max-width: 853px) {
  .middlepart-esg .container-esg {
    width: 700px;
    right: 30px;
  }

  .middlepart-esg .container-esg #display_box {
    width: 250px;
    max-height: 400px;
    overflow: scroll;
  }
}

@media screen and (max-width: 820px) {
  .middlepart-esg .container-esg {
    width: 700px;
    right: 50px;
  }

  .middlepart-esg .container-esg #display_box {
    width: 250px;
    max-height: 400px;
    overflow: scroll;
  }
}

/* Display Box Styling */
.middlepart-esg .container-esg #display_box .links,
.middlepart-esg .container-esg #display_box1 .links {
  width: 50%;
  display: inline-block;
  position: relative;
  font-size: 14px;
  height: 30px;
  vertical-align: bottom;
}

.middlepart-esg .container-esg #display_box .btn,
.middlepart-esg .container-esg #display_box1 .btn {
  background: #74c5b5;
  color: #fff;
  text-transform: capitalize;
  padding: 10px 20px;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

.middlepart-esg .container-esg #display_box .btn:hover,
.middlepart-esg .container-esg #display_box1 .btn:hover {
  background: #335596;
}

.middlepart-esg .container-esg #display_box label,
.middlepart-esg .container-esg #display_box1 label {
  color: #335596;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: bold;
  display: block;
}

.middlepart-esg .container-esg #display_box label.input,
.middlepart-esg .container-esg #display_box1 label.input {
  color: #74c5b5;
}

/* Expanded Blurry Box */
.blurry.expanded {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  overflow: auto;
  background-image: none;
  background-color: rgba(51, 85, 150, 0.7);
  color: white;
  border-radius: 20px;
  z-index: 99;
  transition: all 0.5s ease-in-out;
}

/* Display Box Background */
.displaybox-background {
  background-color: rgba(116, 197, 181, 0.6);
  z-index: 1;
  padding: 20px;
  height: 100%;
  width: 100%;
  border-radius: 13px;
}

  .middlepart-esg #main_circle {
    height: 440px;
    width: 440px;
    margin-top: 54px;
    border: 1px solid #74c5b5;
    border-radius: 50%;
    /*transform: rotate(0deg);*/
    /* transition: transform 3s linear !important;*/
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 5;
    
    
  }
  
  .middlepart-esg #main_circle #child-1,
  .middlepart-esg #main_circle #child-2,
  .middlepart-esg #main_circle #child-3,
  .middlepart-esg #main_circle #child-4,
  .middlepart-esg #main_circle #child-5,
  .middlepart-esg #main_circle #child-6,
  .middlepart-esg #main_circle #child-7,
  .middlepart-esg #main_circle #child-8,
  .middlepart-esg #main_circle #child-9 {
    position: absolute;
    width: 85px;
    height: 85px;
    /* transform: rotate(0deg); */
    transition: transform 0.7s linear;
    top: -20px;
    left: 176px;
    line-height: 1;
    /*left: 0px;
    right: 0;
    margin: 0 auto;*/
  }
  
  .middlepart-esg #main_circle #child-1 img,
  .middlepart-esg #main_circle #child-2 img,
  .middlepart-esg #main_circle #child-3 img,
  .middlepart-esg #main_circle #child-4 img,
  .middlepart-esg #main_circle #child-5 img,
  .middlepart-esg #main_circle #child-6 img,
  .middlepart-esg #main_circle #child-7 img,
  .middlepart-esg #main_circle #child-8 img,
  .middlepart-esg #main_circle #child-9 img {
    max-width: 100%;
    width: 30px;
    height: 30px;
  }
  
  .middlepart-esg #main_circle #child-1 span,
  .middlepart-esg #main_circle #child-2 span,
  .middlepart-esg #main_circle #child-3 span,
  .middlepart-esg #main_circle #child-4 span,
  .middlepart-esg #main_circle #child-5 span,
  .middlepart-esg #main_circle #child-6 span,
  .middlepart-esg #main_circle #child-7 span,
  .middlepart-esg #main_circle #child-8 span,
  .middlepart-esg #main_circle #child-9 span {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
  }
  
  .middlepart-esg #main_circle #child-1 .short_des,
  .middlepart-esg #main_circle #child-2 .short_des,
  .middlepart-esg #main_circle #child-3 .short_des,
  .middlepart-esg #main_circle #child-4 .short_des,
  .middlepart-esg #main_circle #child-5 .short_des,
  .middlepart-esg #main_circle #child-6 .short_des,
  .middlepart-esg #main_circle #child-7 .short_des,
  .middlepart-esg #main_circle #child-8 .short_des,
  .middlepart-esg #main_circle #child-9 .short_des {
    display: none;
    font-size: 11px;
    margin-top: 15px;
    font-weight: bold;
    -webkit-animation: fade-in 3.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in 3.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  }
  
  .middlepart-esg #main_circle #child-1 .short_des label.input,
  .middlepart-esg #main_circle #child-2 .short_des label.input,
  .middlepart-esg #main_circle #child-3 .short_des label.input,
  .middlepart-esg #main_circle #child-4 .short_des label.input,
  .middlepart-esg #main_circle #child-5 .short_des label.input,
  .middlepart-esg #main_circle #child-6 .short_des label.input,
  .middlepart-esg #main_circle #child-7 .short_des label.input,
  .middlepart-esg #main_circle #child-8 .short_des label.input,
  .middlepart-esg #main_circle #child-9 .short_des label.input {
    color: #335596;
  }
  
  .middlepart-esg #main_circle #child-1 .short_des label.output,
  .middlepart-esg #main_circle #child-2 .short_des label.output,
  .middlepart-esg #main_circle #child-3 .short_des label.output,
  .middlepart-esg #main_circle #child-4 .short_des label.output,
  .middlepart-esg #main_circle #child-5 .short_des label.output,
  .middlepart-esg #main_circle #child-6 .short_des label.output,
  .middlepart-esg #main_circle #child-7 .short_des label.output,
  .middlepart-esg #main_circle #child-8 .short_des label.output,
  .middlepart-esg #main_circle #child-9 .short_des label.output {
    color: #74c5b5;
  }
  
  .middlepart-esg #main_circle #child-2 {
    top: 21px;
    left: auto;
    right: 44px;
    transform: rotate(45deg);
  }
  
  .middlepart-esg #main_circle #child-3 {
    top: 182px;
    left: auto;
    right: -20px;
    transform: rotate(80deg);
  }
  
  .middlepart-esg #main_circle #child-4 {
    top: auto;
    left: auto;
    right: -1px;
    bottom: 80px;
    transform: rotate(116deg);
  }
  
  .middlepart-esg #main_circle #child-5 {
    top: auto;
    left: auto;
    right: 90px;
    bottom: -9px;
    transform: rotate(152deg);
  }
  
  .middlepart-esg #main_circle #child-6 {
    top: auto;
    left: 102px;
    right: auto;
    bottom: -15px;
    transform: rotate(202deg);
  }
  
  .middlepart-esg #main_circle #child-7 {
    top: auto;
    left: 0px;
    right: auto;
    bottom: 68px;
    transform: rotate(241deg);
  }
  
  .middlepart-esg #main_circle #child-8 {
    top: 145px;
    left: -24px;
    right: auto;
    bottom: auto;
    transform: rotate(280deg);
  }
  
  .middlepart-esg #main_circle #child-9 {
    top: 26px;
    left: 43px;
    right: auto;
    bottom: auto;
    transform: rotate(315deg);
  }
  
  .middlepart-esg #main_circle .circle {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 1px solid #74c5b5;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px;
    flex-direction: column;
    margin: 0 auto;
    cursor: pointer;
  }
  
  .middlepart-esg #main_circle .circle:hover {
    border: 1px solid #335596;
    background-color: #e0f9f4;
    
  }
  
  .middlepart-esg .block_details {
    display: none;
  }
  
  .middlepart-esg #inner_circle {
    height: 275px;
    width: 275px;
    background-image: url(../img/inner-circle.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 132px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -2;
    
  }
  /* Abdullah's */
  .middlepart-esg #inner_rotator {
    height: 275px;
    width: 275px;
    background-image: url(../img/esg_iconpack/inner-rotator.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 132px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -2;
    
  }
  
  .middlepart-esg #center_circle {
    height: 130px;
    width: 130px;
    background-image: url(../img/center-circle.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 17px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translate(0px, 187px);
    
  }
  
  .middlepart-esg #esg {
    height: 250px;
    width: 250px;
    background-image: url(../img/esg_iconpack/esg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translate(0px, 145px);
    border-radius: 100%;
    z-index: 1;
  }
  
  .middlepart-esg #center_circle:before {
    content: "";
    height: 140px;
    width: 140px;
    background-image: url(../img/dotted-center.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: -5px;
    left: -5px;
    right: 0;
    margin: 0 auto;
    display: block;
    border-radius: 50%;
    -webkit-animation: flower 30s infinite linear;
    animation: flower 30s infinite linear;
    
  }
  
  .middlepart-esg #center_circle:after {
    content: "";
    position: absolute;
    box-shadow: 0px 0px 50px #335596;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation: hvr-ripple-out 2s infinite;
    animation: hvr-ripple-out 2s infinite;
    border-radius: 100%;
    
  }
  
  .middlepart-esg #hover_effect {
    height: 211px;
    width: 131px;
    background-image: url(../img/hover-effect2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 3px;
    left: -12px;
    right: 0;
    margin: 0 auto;
    transform: rotate(4deg);
    z-index: -1;
    
  }
  
  .middlepart-esg #hover_effect:before {
    content: "";
    background-image: url(../img/dotted-hover.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 194px;
    width: 126px;
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 7px;
    position: absolute;
    -webkit-animation: blink-1 5s 3s infinite alternate both;
    animation: blink-1 5s 3s infinite alternate both;
  }
  /* Abdullah's edit */
  .middlepart-esg #dotted_effect {
    content: "";
    background-image: url(../img/dotted_line.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 194px;
    width: 126px;
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 7px;
    position: absolute;
    -webkit-animation: blink-1 5s 3s infinite alternate both;
    animation: blink-1 5s 3s infinite alternate both;
  }
  
  .middlepart-esg #hover_effect #mydot {
    position: relative;
    height: 7px;
    width: 7px;
    display: block;
    z-index: 1;
    background: #74c5b5;
    left: 0;
    right: 0;
    display: block;
    top: 4px;
    margin: 0 auto;
    border-radius: 50%;
  }
  
  .middlepart-esg #hover_effect #mydot2 {
    position: absolute;
    height: 7px;
    width: 7px;
    display: block;
    z-index: 1;
    background: #335596;
    left: 0;
    right: -20px;
    display: block;
    bottom: 12px;
    margin: 0 auto;
    border-radius: 50%;
  }
  

  @media screen and (max-width:950px){
    .middlepart-esg .container-esg #main_circle{
      height:330px;
      width:330px;
      top:20px;
    }
    
    .middlepart-esg .container-esg #main_circle #child-1,
    .middlepart-esg .container-esg #main_circle #child-2,
    .middlepart-esg .container-esg #main_circle #child-4,
    .middlepart-esg .container-esg #main_circle #child-5,
    .middlepart-esg .container-esg #main_circle #child-7,
    .middlepart-esg .container-esg #main_circle #child-8{
      height:63.75px;
      width:63.75px;
    
    }
    .middlepart-esg .container-esg #esg{
      height:187.5px;
      width:187.5px;
    }
    .middlepart-esg .container-esg #inner_circle{
      height:206.25px;
      width:206.25px;
    }
    .middlepart-esg .container-esg #inner_rotator{
      height:206.25px;
      width:206.25;
    }
    .middlepart-esg .container-esg #hover_effect{
      height:158.25px;
      width:98.25px;
      left:-30px;
    }
    .middlepart-esg .container-esg #main_circle #child-4{
      right:-10px;
      top: 200px;
    }
    .middlepart-esg .container-esg #main_circle #child-1{
      transform:rotate(-5deg);
      top: -25px;
      left: 125px;
    }
    .middlepart-esg .container-esg #main_circle #child-2{
      right:35px;
      top: 10px;
      transform:rotate(40deg);
    }
    .middlepart-esg .container-esg #main_circle #child-5{
      right:60px;
      bottom:-5px;
      transform: rotate(150deg);
    }
    .middlepart-esg .container-esg #main_circle #child-7{
      top:220px;
      transform: rotate(235deg);
      
    }
    .middlepart-esg .container-esg #main_circle #child-8{
      left: -28px;
      top: 120px;
      transform: rotate(-90deg);
    }
    .middlepart-esg .container-esg #main_circle #child-8 span,
    .middlepart-esg .container-esg #main_circle #child-7 span{
      font-size: 7px;
      width: 90px;
      line-height:-40px;
    }
    .module-card{
      width: 70%;
      height: 60%;
      overflow: hidden;
    }
   
    .middlepart-esg .container-esg #display_box{
      right: -30%;
    }
  }

  @media screen and (max-width:850px){
    .middlepart-esg .container-esg #display_box{
      right: -20%;
      width: 30%;
      top: 10px;
    }
    .middlepart-esg .container-esg{
      width: 90%;
    }
    .management-logo{
      width:80px;
      height: 80px;
    }
    .management-photo{
      display: none;
    }
    .management-text{
      width: 90%;
    }
  }
  @media screen and (max-width:615px){
    
    .middlepart-esg{
      margin: 0 10px;
      display: block !important;
    }
   
   #display_box{
    height: 150px !important;
    width:250px !important;
    margin-top: 10% !important;
    margin-right: 40% !important;
   } 
   .mr .mr-text{
    font-size: 12px;
   }
   .mr-text{
    padding: 0px;
   }
    #display_box1{
      overflow:scroll;
      display: block;
    } 
    .displaybox-background{
      height: 100%;
    }
    .navbar{
      width: 100%;
    }
   
  }
   @media screen and (max-width:680px){
    .slider-button button{
      font-size:7px;
      overflow:hidden;
      text-align: center;
      min-width:30px;
      z-index:9999;
    }
    #esg{
      left: 90px !important;
    }
    #inner_rotator{
      left: 20% !important;
    }
    #inner_circle{
      left: 89px !important;
    }
    #hover_effect{
      left: 15% !important;
    }
    .container-esg{
      height:600px;
      max-width:600px;
      padding-left: 10%;
      margin-right: 0px !important;
    }
    #display_box1{
      overflow:scroll;
    }
    #display_box{
      left:5% !important;
      width: 100% !important;
      overflow:scroll !important;
      height: 160px;
      top: 80% !important;
    }
   }
  @media screen and (max-width:500px){
    .monitor-background{
      height:600px;
      overflow: scroll;
    }
    .image-text{
      font-size: 25px;
    }
    .mapping-image{
      height: auto;
    }
    .module-container{
      margin-top: 0px;
    }

    .slider-button button{
      padding: 5px;
      font-size: 5px;
      width: 130%;
    }
  }

  @media screen and (max-width:425px){
    #particles-js{
      width: 0%;
    }
    .fade-in .mr{
      display: block;
    }
    .fade-in .mr .mr-text{
      width:80%;
      font-size: 15px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .fade-in .mr .mr-image{
      width: 80%;
      height:140px;
      font-size: 8px;
      margin-left: auto;
      margin-right: auto;
    }
    .management-logo{
      width:60px;
      height:60px;
      margin-top: -5px;
    }
    .management-content h3{
      font-size: 1.2rem;
    }
    .management-content p{
      width:150%;
      position: relative;
      left: -70px;
    
    }
    .management-content .separator{
      width:150%;
      position: relative;
      left: -70px;
    }
    .image-text{ 
      font-size: 20px;
    }
    .container-esg{
      margin-right:0px !important;
    }
    .middlepart-esg{ 
      width: 100% !important;
      max-width: 425px !important;
      min-width: 200px !important;
      overflow: hidden !important;
      margin:0 !important;
      height: 900px;
    }
    #display_box{
     left: 5% !important;
     width: 100% !important;
     margin-right: 0px !important;
     top: 370px !important;
      
    }
    #main_circle{
      width: 280px !important;
      height: 280px !important;
      margin-top: 75px !important;
      position:absolute;
      left: 7% !important;
      
    }
    #inner_rotator{
      margin: 0 auto !important;
    }
    

  #main_circle #child-1 span,
  #main_circle #child-2 span,
  #main_circle #child-7 span,
  #main_circle #child-4 span,
  #main_circle #child-5 span, 
  #main_circle #child-8 span{
    display: none !important;
  }
  #main_circle #child-1{
    top: -25px !important;
    left:110px !important;
  }
  #main_circle #child-2{
    top: 5px !important;
    left:195px !important;
  }
  #main_circle #child-8{
    top: 90px !important;
    left:-25px !important;
  }
  #main_circle #child-4{
    top: 180px !important;
    left:216px !important;
  }
  #main_circle #child-5{
    top: 230px !important; 
    left:156px !important;
  }
  #main_circle #child-7{
    top: 170px !important;
    left:-10px !important;
  }
  .module-card.expanded{
    width: 100% !important;
    height: 100% !important;
   
  }
  
  }

  .nav-list-items{
    background-color: #74c5b5 !important;
    border-radius: 20px !important;
    height: 40px !important;
    margin-left: 10px !important;
  }

   .nav-list-items a{
    color: white !important;   
  }

  .nav-list-items a:hover{
    color: #335596;   
  }

.img-container{
  width: 100% !important;
  height: 150px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  position:relative !important;
  cursor: grab !important;
  cursor: pointer !important;
  z-index:2;
  
} 


  
.img-container img{
  width: 150px !important;
  height: 100% !important;
  margin-right: 10px !important;
  display:inline-block !important;
  animation: slide-left 20s linear infinite !important;
}

.img-container:hover img{
  animation-play-state:paused !important;
}

/* @keyframes slide-left {
  0%{ transform: translateX(100%) !important; }
  100%{ transform: translateX(-100%) !important; }
} */

.img-container:hover .slide-track{animation-play-state:paused;}


.slide-track{
    display:inline-flex;              /* one long strip */
    animation:scroll 40s linear infinite;
}

@keyframes scroll{
    from{transform:translateX(0);}
    to  {transform:translateX(calc(-150px * 28));} /* 28 images × 150 px */
}

 /* Progress bar container */
  .progress-container {
  width: 100% !important; 
  margin: 20px 0 !important;
} 

/* Progress bar */
 .progress-bar {
  width: 100% !important;
  height: 5px !important;
  background-color: #ccc !important;
  position: relative !important;
  z-index: 3 !important;
} 
.progress-bar:hover{
  cursor: pointer !important;
}

/* Progress indicator */
 .progress-bar input[type="range"] {
  width: 100% !important;
  appearance: none !important;
  background: transparent !important;
} 
.progress-bar input[type="range"]:hover{
  cursor: pointer !important;
}


/* Styling the range slider */
 .progress-bar input[type="range"]::-webkit-slider-runnable-track {
  height: 5px !important;
  background: #74c5b5 !important;
 }

.progress-bar input[type="range"]::-webkit-slider-thumb {
  appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  background:#74c5b5 !important;
  border:2px solid #335596 !important;
  border-radius: 50% !important; 
  margin-top: -7px !important;
  background-image: url(/assets/img/logo.png) !important;
  background-position-x:42.7% !important;
  background-position-y:-5% !important;
  background-size:1000% !important;
  background-repeat: no-repeat !important;
  
}

.container1{
  text-align: center;
}

.esg-btn{
  width: 250px !important;
  height: 70px !important;
  color: white !important;
  background-color: #74c5b5;
  transition: transform .25s ease, box-shadow .25s ease;
}

.esg-btn:hover{
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
    background-color: #74c5b5 !important;
}

.btn-container-ug{
  width: 30%;
  margin: 50px auto;
}
.ship-container{
  /* display: flex !important; */
  justify-content: space-between !important;
  width: 90vw !important;
  margin: 0 auto !important;
}

.overview{ 
  font-size: 30px;
  background-color: #74c5b5;
  width: 400px;
  margin: 0 auto;
  color: white;
  text-align: center;
  height: 60px;
  padding: 10px;
  border-radius: 30px;
}
  .card-container {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      background-color: transparent;
      position: relative;
      z-index: 1;
      height: 900px;
      flex-wrap: wrap;
    }

.card-container2{
  display: flex;
  flex-wrap: wrap;
  height: 1200px;
}

.card_item img{
  width: 100% !important;
}
.card_item{
  overflow: hidden;
  margin: 20px;
  max-width: 750px;
  transition: transform .25s ease, box-shadow .25s ease;
  border-radius: 20px;
}
.card_item h2{
  font-size: 20px;
}

.card_item:hover{
  background-color: #74c5b5;
  height: fit-content;
  transform: translateY(-8px) scale(1.03);   /* “pop-up” effect   */
  box-shadow: 0 12px 24px rgba(0,0,0,.15);
}

.card-img{
  width: 100px;
  margin: 0 auto;
}

.card:hover h3{
  color: white !important;
}

.slide-track img{
  height: 120px !important;
  width: auto !important;
}
.container-one {
    width: 80%;
    margin: 0 auto;
}
.container-one .title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}
.container-one .feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.container-one .feature-icon {
    font-size: 1.5rem;
    margin-right: 20px;
}
.container-one .feature-text {
    font-size: 1.1rem;
}

.container-two{
    width: 80%;
    margin: 0 auto;
}
.container-two .title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}
.container-two .solution {
    margin-bottom: 20px;
}
.container-two .solution-header {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: start;
}
.container-two .solution-description {
    font-size: 1.1rem;
    text-align: left;
}

.top-container{
  display: flex;
  margin-top: 50px;
}

.container-one .feature, .container-two .solution {
    opacity: 1;
    transform: translateY(20px); /* Move the element down */
    transition: opacity 0.4s ease, transform 0.4s ease; /* Apply the transition for both opacity and transform */
}

/* Hover state */
.container-one .feature:hover, .container-two .solution:hover {
    opacity: 1; /* Make the element visible */
    transform: translateY(0); /* Bring the element to its normal position */
    cursor: pointer;
}

@media screen and (max-width: 2400px){
  .card_item{
    max-width: 43vw;
  }
}

@media screen and (max-width: 1200px){
  .card_item{
    max-width: 85vw;
    margin: 20px auto;
  }
}