.profile-slider .caption {
  position: absolute;
  bottom: 1px;
  left: 0%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 4px 20px;
  border-radius: 10px;
  font-size: 1.75rem;
  text-align: center;
}

/* --- Layout Base --- */
.profile-content {
  height: 100vh;
  font-family: 'Garamond', serif;
  align-items: stretch;
  position: relative;
}

/* --- Left Side --- */
.profile-left {
  flex: 1;
  background-color: #0D1B2A;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path:none;
  position: relative;
  z-index: 2;
}
.profile-text {
  text-align: left;
}
.profile-text h1 {
  font-size: 3.5rem;
  color: yellow;
  margin-bottom: 15px;
}
.profile-text h3 {
  padding-top: 1.6rem;
  font-size: 1rem;
  color: white;
}
.profile-text img {
  vertical-align: middle;
  margin-left: 10px;
}

/* --- Right Slider --- */
.profile-slider {
  flex: 2;
  position: relative;
  overflow: hidden;
  clip-path: none;
  background-color: #000;
}
.slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caption {
  position: absolute;
  bottom: 50px;
  left: 50px;
  background: rgba(13, 27, 42, 0.65);
  color: #FFF7DD;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease-in-out;
}
.slide.active .caption {
  transform: translateY(0);
  opacity: 1;
}

/* --- Navigation Arrows --- */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 27, 42, 0.5);
  color: #FFF;
  border: none;
  font-size: 2.5rem;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 5;
}
.nav:hover {
  background: rgba(13, 27, 42, 0.8);
}
.prev { left: 25px; }
.next { right: 25px; }

/* --- Responsive --- */
@media (max-width: 992px) {
  .profile-content {
    flex-direction: column;
    height: auto;
  }

  .profile-left {
    clip-path: none;
    width: 100%;
    padding: 50px 20px;
    text-align: center;
  }
  .profile-text {
    padding: 0;
  }
  .profile-text h1 {
    font-size: 2.4rem;
  }
  .profile-text h3 {
    font-size: 1.1rem;
  }

  .profile-slider {
    clip-path: none;
    width: 100%;
    height: 60vh;
  }

  .caption {
    left: 20px;
    right: 20px;
    bottom: 30px;
    font-size: 1rem;
    text-align: center;
  }
  .nav {
    font-size: 2rem;
  }
}

.carousel-container {
  position: relative;
  overflow: hidden;
  background-color: #739EC9;
}

.carousel-slide {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-color: #739EC9;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
  background-color: #739EC9;
}

.fullscreen {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Custom CSS */
.dark-background-box {
  position: relative;
}

.dark-background-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/space/sunrise.jpg');
  background-size: cover;
  background-position: top center;
  opacity: 0.5;
  z-index: 6;
}

/* Final Section */
.profile-left {
  flex: 0 0 40%;
  background: #001B2A;
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.white-bg {
  background-color: #fff;
  opacity: 0.8;
  height: 100px;
  width: 100px;
}

.tagline {
  font-size: 24px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  position: relative;
}

.setu-logo {
  height: 48px;
  width: auto;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 3;
}
.div-logo {
  position: relative;
  left: 40px;
  bottom: 20px;
}

.profile-content {
  display: flex;
  position: relative;
  width: 100%;
  height: 500px;
}

.profile-left {
  flex: 1;
  background: #001b2a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-slider {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.setu-logo {
  position: absolute;
  top: 50%;
  left: 33.33%;
  transform: translate(-50%, -50%);
  height: 80px;
  z-index: 10;
  background: white;
  border-radius: 8px;
  padding: 5px;
}


.profile-content {
    display: flex;               /* left + right side */
    position: relative;          /* logo absolute relative to this */
    width: 100%;
    gap: 0;
 }

 
  /* left and right columns */
  .profile-left {
    flex: 0 0 33.33%;           /* fixed 1/3 width */
    box-sizing: border-box;
    padding: 20px;
    background: #2E7D32;
  }

  .profile-slider {
    flex: 0 0 66.66%;           /* fixed 2/3 width */
    box-sizing: border-box;
    padding: 8px;
    background: yellow;
    border: 1px solid #ccc;
  }
  
  .middle-slider {
    flex: 0 0 100%;           /* full width */
    box-sizing: border-box;
    padding: 8px;
    background: yellow;
    border: 1px solid #ccc;
  }
  

  /* logo centered on vertical divider */
  #setu-logo {
    position: absolute;
    right: -2.4rem;               /* seam between left/right */
    top: 90%;
    transform: translate(-50%, -50%);
    height: 80px;
    z-index: 20;
    background: white;
    padding: 6px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  }

  /* slide images and captions */
  .slides img { max-width: 100%; display: block; }
  .caption { font-size: 14px; margin-top: 6px; }

.my-custom-font {
  font-family: 'Courier New', Courier, monospace;
}

@font-face {
  font-family: brush-script;
  src: url(webfonts/Brush-Script.otf) format("opentype");
}



.my-custom-font{
    font-family: 'Courier New', Courier, monospace;
}

@font-face {
  font-family: brush-script;
  src: url(webfonts/Brush-Script.otf) format("opentype");
}