/* ======  intro (laptop) ====== */
/* ======  intro (laptop) ====== */
#intro {
  height: 70vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: -70px;
  padding: 0px;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Prevents content from overflowing */

  /* background-color: #fcde70; */
}

.carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(79, 117, 255, 0.5); /* Semi-transparent */

  z-index: 1; /* Places it below the content */
}

.carousel * {
  position: relative;
  z-index: 2; /* Ensures all child elements are above the overlay */
}

.carousel-image {
  position: absolute;
  width: 100%; /* Responsive width */
  height: 100%;
  object-fit: cover; /* Ensures image or video covers the entire carousel without distortion */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

.carousel-text {
  width: auto;
  max-width: 700px;
  padding: 10px 20px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 2rem;
  font-weight: 700;
  color: black;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.2); /* Darker background overlay */
}

.carousel-text.show {
  opacity: 1;
  transform: translateY(0);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 20px 70px;
  color: white;
  z-index: 3; /* Above the images */
  background-color: rgb(46, 80, 119, 0.8);

  background-color: rgb(54, 60, 101, 0.85);
}

.overlay-container {
  width: 60%;

  /* background-color: rgb(29, 75, 60); */

  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.overlay-container .alt-2 {
  font-size: 45px;
  text-align: center;
  color: #f3f4fa;

  /* margin: 0 0 15px 0; */

  animation: slideInBottom 1.5s ease-out forwards;
}

.overlay-container .alt-3 {
  font-size: 16px;
  text-align: center;
  color: #eee;
  font-weight: bold;

  margin: 15px 0;

  animation: slideInBottom 1.5s ease-out forwards;
}

.overlay-container .alt-4 {
  font-size: 14px;
  text-align: center;
  color: #ccc;

  /* margin: 20px 0; */

  animation: slideInBottom 1.5s ease-out forwards;
}

/* Keyframes for h1 coming from the left */
@keyframes slideInBottom {
  from {
    transform: translateY(300px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ======  intro (4k) ====== */
/* ======  intro (4k) ====== */

@media (min-width: 3840px) and (min-height: 2160px) {
  #intro {
    margin-top: -200px;
  }

  .overlay {
    padding: 50px 150px;
  }

  .overlay-container {
    width: 50%;

    /* background-color: rgb(29, 75, 60); */
  }

  .overlay-container .alt-2 {
    font-size: 100px;
    text-align: center;
    color: #f3f4fa;

    /* margin: 0 0 15px 0; */
  }

  .overlay-container .alt-3 {
    font-size: 40px;

    margin: 50px 0;
  }

  .overlay-container .alt-4 {
    font-size: 35px;

    /* margin: 20px 0; */
  }

  @keyframes slideInBottom {
    from {
      transform: translateY(800px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

/* ======  intro (tab) ====== */
/* ======  intro (tab) ====== */

@media (min-width: 768px) and (max-width: 1200px) {
  #intro {
    padding: 0px;
  }

  .overlay-container {
    width: 70%;

    /* background-color: rgb(29, 75, 60); */
  }

  .overlay-container .alt-2 {
    font-size: 40px;

    /* background-color: #fcde70; */
  }

  .overlay-container .alt-3 {
    font-size: 18px;
  }

  .overlay-container .alt-4 {
    font-size: 14px;
  }
}

/* ======  intro (mobile) ====== */
/* ======  intro (mobile) ====== */

@media (max-width: 768px) {
  #intro {
    padding: 0px;
  }

  .overlay {
    padding: 30px;

    /* background-color: palevioletred; */
  }

  .overlay-container {
    width: 100%;

    /* background-color: rgb(29, 75, 60); */
  }
  .overlay-container .alt-2 {
    font-size: 30px;
    /* background-color: #fcde70; */
  }

  .overlay-container .alt-3 {
    padding-left: 0%;
  }

  .overlay-container .alt-4 {
    font-size: 14px;
  }
}

/* ======  wrapper (laptop) ====== */
/* ======  wrapper (laptop) ====== */

#wrapper {
  margin: 0% 0 50px 0px;
  padding: 0px 70px 50px 70px;
  background-color: #f3f4fa;

  /* background-color: aqua; */

  /* z-index: 1000; */
}

#wrapper .all-boxes {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;

  /* background-color: chartreuse; */
}

#wrapper .all-boxes .box {
  width: 30%;
  padding: 20px;
  margin: 0 20px;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */

  /* background-color: rgb(212, 192, 178); */

  position: relative;
  top: -50px;
  z-index: 900;
}

#wrapper .all-boxes .box i {
  color: #6b77df;
  font-size: 45px;
}

#wrapper .all-boxes .box h3 {
  font-size: 20px;

  margin: 15px 0 20px 0;
}

#wrapper .all-boxes .box p {
  font-size: 15px;

  /* margin: 15px 0 20px 0; */
}

/* ======  wrapper (4k) ====== */
/* ======  wrapper (4k) ====== */

@media (min-width: 3840px) and (min-height: 2160px) {
  #wrapper .all-boxes .box {
    width: 30%;
    padding: 80px;
    margin: 50px;

    top: -200px;
  }

  #wrapper .all-boxes .box i {
    color: #6b77df;
    font-size: 100px;
  }

  #wrapper .all-boxes .box h3 {
    font-size: 50px;

    margin: 40px 0 50px 0;
  }

  #wrapper .all-boxes .box p {
    font-size: 30px;

    /* margin: 15px 0 20px 0; */
  }
}

/* ======  wrapper (tab) ====== */
/* ======  wrapper (tab) ====== */

@media (min-width: 768px) and (max-width: 1200px) {
  #wrapper {
    margin: 0 0 0px 0px;
    padding: 0px 20px 0px 20px;
    background-color: #f3f4fa;

    /* background-color: aqua; */
  }

  #wrapper .heading h2 {
    font-size: 30px;
    text-align: center;
    color: #363c65;
  }

  #wrapper .all-boxes .box {
    margin: 10px;
  }

  #wrapper .all-boxes .box {
    position: relative;
    top: -100px;
    z-index: 900;
    margin: 0 10px;
  }
}

/* ======  wrapper (mobile) ====== */
/* ======  wrapper (mobile) ====== */

@media (max-width: 768px) {
  #wrapper {
    margin: 0 0 50px 0px;
    padding: 20px;
    background-color: #f3f4fa;

    /* background-color: aqua; */
  }

  #wrapper .all-boxes {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* background-color: chartreuse; */
  }

  #wrapper .all-boxes .box {
    width: 100%;
    /* padding: 20px; */
    margin: 20px 0px;

    top: 0px;
  }
}

/* ======  container (laptop) ====== */
/* ======  container (laptop) ====== */

#container {
  margin: 0 0 50px 0px;
  padding: 20px 70px 100px 70px;
  /* background-color: #f3f4fa; */

  /* background-color: aqua; */
}

#container .heading {
  margin: 20px 0;
  padding: 20px 0;
}

#container .heading h2 {
  font-size: 40px;
  text-align: center;
  color: #363c65;
}

#container .heading p {
  text-align: center;
  padding: 10px 0;
}

#container .all-boxes {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;

  /* background-color: chartreuse; */
}

#container .all-boxes .box {
  width: 30%;
  padding: 20px;
  margin: 20px;
  /* background-color: #fff; */
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */

  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */

  /* background-color: rgb(212, 192, 178); */
}

#container .all-boxes .box div {

  position: relative;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: flex-end;

  /* background-color: rgb(255, 148, 71); */
}

#container .all-boxes .box div h1 {
  color: #e6e6e6;
  font-size: 90px;
  position: absolute;
  bottom: 0;
  left: 10px;
  z-index: 1;
}

#container .all-boxes .box div h3 {
  font-size: 22px;
  position: absolute;
  bottom: 30px;
  left: 0px;
  z-index: 2;
  padding: 2px 0px;
}



/* ======  container (4k) ====== */
/* ======  container (4k) ====== */

@media (min-width: 3840px) and (min-height: 2160px) {
  #container .heading {
    margin: 50px 0;
    padding: 50px 0;
  }

  #container .heading h2 {
    font-size: 80px;
  }

  #container .all-boxes .box {
    width: 30%;
    padding: 50px;
    margin: 50px;

    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */

    /* background-color: rgb(212, 192, 178); */
  }


  #container .all-boxes .box div {

    height: 300px;
 
    /* background-color: rgb(255, 148, 71); */
  }
  
  #container .all-boxes .box div h1 {

    font-size: 200px;
    bottom: 0;
    left: 20px;

  }
  
  #container .all-boxes .box div h3 {
    font-size:50px;
   
    bottom: 60px;
  
  }
}

/* ======  container (tab) ====== */
/* ======  container (tab) ====== */

@media (min-width: 768px) and (max-width: 1200px) {
  #container {
    margin: 0 0 50px 0px;
    padding: 20px;
    /* background-color: #f3f4fa; */

    /* background-color: aqua; */
  }

  #container .heading h2 {
    font-size: 30px;
    text-align: center;
    color: #363c65;
  }

  #container .all-boxes .box {
    margin: 10px;
  }


}

/* ======  container (mobile) ====== */
/* ======  container (mobile) ====== */

@media (max-width: 768px) {
  #container {
    margin: 0 0 50px 0px;
    padding: 20px;
    /* background-color: #f3f4fa; */

    /* background-color: aqua; */
  }

  #container .heading h2 {
    font-size: 30px;
  }

  #container .all-boxes {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* background-color: chartreuse; */
  }

  #container .all-boxes .box {
    width: 100%;
    /* padding: 20px; */
    margin: 5px 0px;

    /* background-color: blue; */
  }
}

/* ======  choose-us (laptop) ====== */
/* ======  choose-us (laptop) ====== */

#choose-us {
  margin: 50px 0px;
  padding: 0px 0px 0px 0px;
  background-color: #f3f4fa;

  /* background-color: aqua; */

  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
}

.choose-us-container-1 {
  width: 50%;
  height: auto;

  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;

  position: relative;
  overflow: hidden;

  /* background-color: chartreuse; */
}

.choose-us-container-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-us-container-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(54, 60, 101, 0.6), rgba(54, 60, 101, 0.6));

  z-index: 1;
  pointer-events: none;
}

.choose-us-container-1 img {
  z-index: 0;
}

.choose-us-container-2 {
  width: 50%;
  padding: 0 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-content: center;

  /* background-color: #f5901d; */
}

.choose-us-container-2 .heading {
  width: 100%;

  /* background-color: #bffd2e; */
}

.choose-us-container-2 .heading h2 {
  font-size: 35px;
  text-align: left;
  padding-bottom: 10px;
}

.choose-us-container-2 .heading p {
  text-align: left;
}

.choose-us-container-2 .accordion-container {
  width: 100%;
  margin: 20px auto;
  /* background: #fff; */
  overflow: hidden;

  /* background-color: blue; */
}

.accordion {
  max-width: 100%;
  width: 100%;

  /* background-color: #fff; */
}

details {
  margin-bottom: 5px;
  overflow: hidden;
  transition: all 1s ease;
  padding: 5px 0;
  max-height: 100px;

  /* background-color: #a2a4fa; */
}

details[open] {
  max-height: 500px;
}

details > summary {
  font-weight: bold;
  color: #6b77d5;
  padding: 5px 10px;
  cursor: pointer;
  text-decoration: none;
  list-style: none; /* Reset list-style to remove marker */
  /* border-bottom: 1px solid #ccc; */

  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;

  display: flex;
  justify-content: space-between;

  transition: 0.3s;
}

details > summary::-webkit-details-marker {
  display: none; /* Remove arrow in WebKit-based browsers */
}

details > summary:hover {
  color: #a2a4ba;
}

details > summary::marker {
  display: none; /* Remove arrow in modern browsers supporting ::marker */
}

details > p {
  font-size: 14px;
  padding: 5px 10px 10px 20px;
}

/* ======  choose-us (4k) ====== */
/* ======  choose-us (4k) ====== */
@media (min-width: 3840px) and (min-height: 2160px) {
  .choose-us-container-2 {
    width: 50%;
    padding: 0 70px 70px 70px;

    /* background-color: #f5901d; */
  }

  .choose-us-container-2 .heading h2 {
    font-size: 70px;
    text-align: left;
    padding-bottom: 50px;
  }

  .choose-us-container-2 .accordion-container {
    margin: 50px auto;

    /* background-color: blue; */
  }

  details {
    margin-bottom: 20px;
    padding: 10px 0;
    max-height: 200px;

    /* background-color: #a2a4fa; */
  }

  details[open] {
    max-height: 1000px;
  }

  details > summary {
    font-size: 35px;
    padding: 20px 50px;
    box-shadow: rgb(38, 57, 77, 0.3) 0px 20px 30px -10px;
  }
  details > p {
    font-size: 28px;
    padding: 50px 30px 30px 70px;
  }
}

/* ======  choose-us (tab) ====== */
/* ======  choose-us (tab) ====== */

@media (min-width: 768px) and (max-width: 1200px) {
  #choose-us {
    margin: 50px 0px;
    padding: 0px;

    /* background-color: aqua; */

    display: flex;
    /* flex-direction: column; */
  }

  .choose-us-container-2 .heading h2 {
    font-size: 30px;
  }

  details > summary {
    font-size: 14px;

    /* background-color: black; */
  }

  details > p {
    font-size: 12px;
  }
}

/* ======  choose-us (mobile) ====== */
/* ======  choose-us (mobile) ====== */

@media (max-width: 768px) {
  #choose-us {
    margin: 50px 0px;
    padding: 20px;

    /* background-color: aqua; */

    display: flex;
    flex-direction: column;
  }

  .choose-us-container-2 .heading h2 {
    font-size: 30px;
  }

  .choose-us-container-1 {
    width: 100%;
    height: 100%;
    /* background-color: chartreuse; */
  }

  .choose-us-container-2 {
    width: 100%;
    padding: 50px 0px 20px 0px;

    /* background-color: #f5901d; */
  }
}

/* ======  figures (laptop) ====== */
/* ======  figures (laptop) ====== */

#figures {
  margin: 0 0 50px 0px;
  padding: 20px 70px 20px 70px;

  /* background-color: aqua; */

  display: flex;
  justify-content: center;
  align-items: center;
}

.figures-container {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  background-color: transparent;

  /* background-color: #cd55eb; */
}

.figures-container .heading {
  /* width: 20%; */
  margin-right: 5px;

  /* background-color: #bffd2e; */
}

.figures-container .heading h2 {
  font-size: 20px;
  text-align: left;
  padding-bottom: 10px;
}

.figures-container .heading p {
  text-align: left;
  font-size: 13px;
}

.figures-container .all-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;

  /* background-color: #d8ff7d; */

  margin: 0px 10px;
}

.figures-container .all-boxes .box {
  width: 23%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;

  /* background-color: #ffa51f; */

  margin: 0px 5px;
}

.figures-container .all-boxes .box h1 {
  font-size: 50px;
  color: #6b77d5;

  margin-right: 20px;
}

.figures-container .all-boxes .box p {
  font-weight: bold;

}
/* ======  figures (4k) ====== */
/* ======  figures (4k) ====== */

@media (min-width: 3840px) and (min-height: 2160px) {

  #figures {
    margin: 200px 0 100px 0px;
    padding: 50px 120px 50px 120px;
  
    /* background-color: aqua; */

  }

  .figures-container {
    width: 90%;
    padding: 50px 0;

    /* background-color: #cd55eb; */
  }

  .figures-container .heading h2 {
    font-size: 50px;
    text-align: left;
    padding-bottom: 30px;
  }

  
.figures-container .heading p {
  text-align: left;
  font-size: 30px;
}

.figures-container .all-boxes .box {
  width: 23%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;

  /* background-color: #ffa51f; */

  margin: 0px 20px;
}

.figures-container .all-boxes .box h1 {
  font-size: 130px;
  color: #6b77d5;

  margin-right: 50px;
}

}

/* ======  figures (tab) ====== */
/* ======  figures (tab) ====== */

@media (min-width: 768px) and (max-width: 1200px) {
  #figures {
    margin: 50px 0px;
    padding: 20px;

    /* background-color: aqua; */

    display: flex;
    /* flex-direction: column; */
  }

  .figures-container {
    width: 100%;
    padding: 20px;
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    align-items: center;
    align-content: center;
    background-color: transparent;

    /* background-color: #cd55eb; */
  }

  .figures-container .heading h2 {
    font-size: 18px;
    text-align: left;
    padding-bottom: 10px;
  }

  .figures-container .all-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;

    /* background-color: #d8ff7d; */

    /* margin: 0px 10px; */
  }

  .figures-container .all-boxes .box {
    width: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;

    /* background-color: #516326; */

    margin: 5px;
  }

  .figures-container .all-boxes .box h1 {
    font-size: 35px;
    color: #6b77d5;

    /* background-color: #bffd2e; */

    margin-right: 20px;
  }
}

/* ======  figures (mobile) ====== */
/* ======  figures (mobile) ====== */

@media (max-width: 768px) {
  #figures {
    margin: 50px 0px;
    padding: 20px;

    /* background-color: aqua; */

    display: flex;
    flex-direction: column;
  }

  .figures-container {
    width: 100%;
    padding: 20px 0px;
    display: flex;
    flex-direction: column;

    /* background-color: #cd55eb; */
  }

  .figures-container .heading {
    /* width: 20%; */
    margin: 0px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;

    /* background-color: #bffd2e; */
  }

  .figures-container .all-boxes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;

    /* background-color: #d8ff7d; */

    margin: 20px;
  }

  .figures-container .all-boxes .box {
    width: 100%;
    display: flex;
    flex-direction: column;

    /* background-color: #d8ff7d; */

    margin: 20px 0;
  }

  .figures-container .all-boxes .box h1 {
    font-size: 35px;
    color: #6b77d5;

    margin: 0px;
  }
}
/* ======  join (laptop) ====== */
/* ======  join (laptop) ====== */

#join {
  margin: 20px 0px;
  padding: 20px;

  /* background-color: aqua; */

  display: flex;
  justify-content: center;
  align-items: center;
}

.join-container {
  width: 80%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.join-container .heading {
  width: 70%;

  /* background-color: #bffd2e; */
}

.join-container .heading h2 {
  font-size: 22px;
  text-align: left;
  color: #6b77d5;
  padding-bottom: 10px;
}

.join-container .heading p {
  text-align: left;
}

.join-btn {
  background-color: #6b77d5;
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
}

.join-btn p {
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  font-family: "Montserrat", sans-serif;
  /* margin-left: 10px; */
}

/* ======  join (4k) ====== */
/* ======  join (4k) ====== */

@media (min-width: 3840px) and (min-height: 2160px) {
  #join {
    margin: 50px 0px;
    padding: 50px;

    /* background-color: aqua; */
  }

  .join-container {
    width: 80%;
    padding: 70px;
    display: flex;
  }

  .join-container .heading {
    width: 70%;

    /* background-color: #bffd2e; */
  }

  .join-container .heading h2 {
    font-size: 50px;
    text-align: left;
    color: #6b77d5;
    padding-bottom: 10px;
  }

  .join-btn {
    background-color: #6b77d5;

    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    margin: 0px 0 0 0;
  }

  .join-btn p {
    font-size: 30px;
    padding: 20px 50px;
  }
}

/* ======  join (tab) ====== */
/* ======  join (tab) ====== */

@media (min-width: 768px) and (max-width: 1200px) {
  #join {
    margin: 20px 0;
    padding: 20px;
  }

  .join-container {
    width: 90%;
    padding: 10px;
  }

  .join-container .heading {
    width: 70%;

    /* background-color: #cc3c3c; */
  }

  .join-container .heading h2 {
    font-size: 18px;
  }

  .join-container .heading p {
    text-align: left;
  }

  .join-container .heading p {
    font-size: 14px;
  }
}

/* ======  join (mobile) ====== */
/* ======  join (mobile) ====== */

@media (max-width: 768px) {
  #join {
    margin: 20px 0;
    padding: 20px;
  }

  .join-container {
    width: 100%;
    padding: 10px;

    flex-direction: column;
  }

  .join-container .heading {
    width: 90%;

    /* background-color: #cc3c3c; */
  }

  .join-container .heading h2 {
    font-size: 20px;
  }

  .join-container .heading p {
    text-align: left;
    margin: 20px 0;
  }

  .join-btn {
    margin: 30px 0;
  }
}
