/* Custom Container */
.custom-container {
  display: flex;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}
/* Custom Tabs Container */
.custom-tabs {
  display: flex;
  flex-direction: column;
  width: 33%;
  background-color: #88b3cb;
  padding-top: 20px;
  border-radius: 20px 0 0 20px;
}
/* Individual Tab in Custom Style */
.custom-tab {
  display: flex;
  /* Use flexbox to align text and icon */
  align-items: center;
  /* Vertically center the content */
  padding: 15px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease, padding-left 0.3s ease;
  position: relative;
  font-family: "Roboto", serif;
  font-size: 1.25rem;
  font-weight: 600;
  border-bottom: white;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}
/* Custom Tab Hover Effects */
.custom-tab:hover {
  background-color: #88b3cb;
}
/* Active Custom Tab Styles */
.custom-tab.active {
  background-color: #88b3cb;
  font-weight: bold;
  padding-left: 35px;
  /* Space for the SVG icon */
  transition: background-color 0.3s ease, padding-left 0.3s ease;
  font-family: "Roboto", serif;
  font-size: 1.25rem;
  font-weight: 600;
  border-bottom: white;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}
/* Active Custom Tab SVG Icon */
.custom-tab.active::before {
  content: "";
  position: absolute;
  left: 10px;
  /* Adjust for the space between the icon and text */
  width: 20px;
  height: 20px;
  background: url("../img/svg/arrow_forward_ios.svg") no-repeat center center;
  /* Your external SVG */
  background-size: contain;
}
/* Custom Content Container */
.custom-content-container {
  display: flex;
  flex-grow: 1;
  font-family: "Bebas Neue", serif;
  background-color: #0b2233;
  width: 66%;
  height: 36rem;
}
/* Custom Text Content */
.custom-text-content {
  flex: 1;
  padding: 3rem 2.4rem;
  color: white;
  border-radius: 20px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}
/* Custom Image Content */
.custom-image-content {
  flex: 1;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* Custom Image Styling */
.custom-image-content img {
  width: 100%;
  /* max-height: 250px; */
  object-fit: cover;
  /* border-radius: 8px; */
  height: 100%;
}
/* Clickable text */
.popup-trigger {
  /* color: blue; */
  /* text-decoration: underline; */
  cursor: pointer;
  /* font-size: 18px; */
}
/* Background overlay */
.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 9999;
}
/* Popup box with sliding animation */
.popup-box {
  position: relative;
  /* background: white; */
  /* padding: 20px; */
  width: 800px;
  text-align: center;
  border-radius: 10px;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); */
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
  display: flex;
  margin: 10px;
}
/* New style for Popup2 */
.popup-box-new-style {
  transform: scale(0.5);           /* Start scaled down */
  transition: transform 0.5s ease, background-color 0.5s ease;
  background-color: white;
  padding: 30px;
  margin: 5%;
  border-radius: 20px;
  width: 25%;
}
/* Close button */
.popup-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  z-index: 9999;
  background-color: #091235;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 100rem;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  border-color: white;
  border-width: 1px;
  border-style: solid;
  /* Ensures it's always on top */
}
.popup-close-btn:hover {
  opacity: 0.6; /* Change to a darker shade */
}

/* youtube */
#offline-image {
  max-width: 100%;
  height: auto;
  display: none;
}

/* Responsive Design for iPad Screens */
@media screen and (max-width: 991px) {
  .custom-tabs {
    display: none;
  }
}
/* Responsive Design for Small Screens */
@media (max-width: 767px) {
  .custom-container {
    flex-direction: column;
    /* margin: 20px; */
  }
  .custom-tabs {
    flex-direction: row;
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #ddd;
    justify-content: space-around;
    padding-top: 0;
    font-family: "Roboto", serif;
    font-size: 1.25 rem;
    font-weight: 600;
  }
  .custom-tab {
    padding: 10px 15px;
  }
  .custom-content-container {
    flex-direction: row;
    width: 100%;
    height: 36rem;
  }
  .popup-box {
    width: 100%;
  }

  .layout_image-wrapper{
    height: auto;
  }
}
@media screen and (max-width: 479px) {
}

