* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--text);
  transition: background 0.3s linear, color 0.3s linear;
}

:root {
  --bg: #ffffff;
  --bg-2: #e9e9e9;
  --text: #111111;
  --text2: #b8b8b8;
  --accent: #3db78b;
  /* change anytime */
  --font: "Inter", sans-serif;
  --max-width: 1200px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: hsl(0, 0%, 6%);

    --bg-2: #1d1d1d;
    --text: #eaeaea;
    --text2: #222222;
    --accent: #3db78b;
  }
}

:root.dark {
  --bg: #0f0f0f;
  --text: #eaeaea;
  --accent: #3db78b;
}

.lazy-section {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.lazy-section.show {
  opacity: 1;
  transform: translateY(0);
}

@font-face {
  font-family: "blackfuture";
  src: url("/assets/fonts/font-blackfuture.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0 auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  color: var(--text);
  background-image: url(/assets/images/background2.webp);
  background-size: 1024px 1024px;
  animation-name: MOVE-BG;
  animation-duration: 400s;
  animation-timing-function: linear;
  animation-iteration-count: 10;
  min-height: 100vh;

}

@keyframes MOVE-BG {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 1024px -1024px;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background-image: url(/assets/images/background.webp);
  }
}

img {
  max-width: 100%;
  display: block;
}
























/* Header */
header {
  width: 100%;
  color: var(--text);
  position: fixed;
  z-index: 9999;
}

header .blur {
  margin: auto;
  padding: 20px 20px 0;
  backdrop-filter: blur(0px) brightness(1);
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  transition:
    backdrop-filter 1s ease;

}

header .logo {
  width: 180px
}

/* Container */
header .container {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0;

  position: relative;

  transition:
    color 0.4s ease;
}

/* Glow underline */
header .container::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0%;
  height: 3px;

  background: white;
  box-shadow: 0 0 0 transparent;

  transform: translateX(-50%);
  transition:
    width 0.35s ease-in-out,
    box-shadow 0.35s ease-in-out;

  border-radius: 3px;
  pointer-events: none;
}

/* Hover effects */
header:hover  .blur {
  backdrop-filter: blur(6px) brightness(1.3);
}

/* Underline animation */
header .container:hover::after {
  width: 100%;
  box-shadow: 0 0 15px var(--accent);
}
/* Hover effects */
header:hover ul.menu li.menu-item>a {
  text-shadow: 0 0 8px rgb(255, 255, 255);
}

/* Logo */

.logo {
  margin-bottom: 10px
}

.logo a {
  color: var(--accent);
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  font-family: blackfuture, sans-serif;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
}

/* Desktop Menu */
nav ul.menu {
  display: flex;
  list-style: none;
  gap: 30px;
}


/* Links */
nav ul.menu li.menu-item>a {
  display: block;
  padding: 10px 15px;
  color: #004544;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: 

  font-weight 0.5s ease
  
}

nav ul.menu li.menu-item>a:hover {
  font-weight: 700;

}


/* Desktop Dropdown */

nav ul.menu li.menu-item .dropdown.full-width {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 92%;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  backdrop-filter: blur(2px) brightness(1.3);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;

  z-index: 10000;
}

nav ul.menu li.menu-item:hover .dropdown.full-width {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-column {
  flex: 1;
  min-width: 200px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
}

.dropdown-column a {
  color: #004544;
  text-decoration: none;
  padding: 5px 0;
  font-weight: 500;
    text-shadow: 0 0 4px #ffffff;
    letter-spacing: 1px;

    transition: letter-spacing 0.4s ease;
}

.dropdown-column a:hover {
  letter-spacing: 4px;
}

.menu .dropdown {
  display: none;
}

/* Show dropdown when parent is active */
.menu-item.active .dropdown {
  display: block;
}

/* Show dropdown on hover (desktop only) */

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
}

/* Let's Talk button */
.letstalk {
  background: #004544;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  margin-bottom: 10px;
}

nav ul.menu li.menu-item .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  /* directly below the parent link */
  left: 0;
  width: 100%;
  /* full width dropdown if needed */
  z-index: 999;
  /* keep it above other content */
  background: var(--bg-2);
  /* adjust to your design */
}

/* ============================
   MOBILE MENU (max 992px)
============================ */
@media (max-width: 992px) {
  .logo {
    z-index: 100000;
  }

  header .container::after {
    box-shadow: none !important;
    display: none;
  }

  nav {
    justify-content: flex-end;
    /* ensures hamburger aligns properly */
  }

  nav ul.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-2);
    flex-direction: column;
    padding-top: 80px;
    overflow-y: auto;
    transform: translateX(100%);
    /* hidden */
    transition: transform 0.3s ease;
    z-index: 99999;
  }

  nav ul.menu.active {
    transform: translateX(0);
    /* visible */
  }

  nav ul.menu li.menu-item {
    width: 100%;
    border-bottom: 1px solid #222;
    padding: 0;
    position: relative;
    /* for arrow positioning */
  }

  nav ul.menu li.menu-item>a {
    padding: 15px 20px;
    display: block;
    width: 100%;
    color: #fff;
    position: relative;
    /* for arrow */
  }

  /* Hide header underline when mobile menu is active */
  nav ul.menu.active~.container::after,
  header.menu-open .container::after {
    width: 0 !important;
    box-shadow: none !important;
  }

  /* Add arrow for dropdown items */
  nav ul.menu li.menu-item.has-dropdown>a::after {
    content: '\25BC';
    /* downward arrow ▼ */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    pointer-events: none;
  }

  nav ul.menu li.menu-item.active.has-dropdown>a::after {
    transform: translateY(-50%) rotate(-180deg);
    /* rotate up when open */
  }

  /* Dropdown content */
  nav ul.menu li.menu-item .dropdown,
  nav ul.menu li.menu-item .dropdown.full-width {
    display: flex;
    /* always flex */
    flex-direction: column;
    max-height: 0;
    /* hidden */
    overflow: hidden;
    /* hide content */
    opacity: 0;
    /* fade out */
    transition: max-height 0.5s ease, opacity 0.5s ease;
    position: relative;
    /* relative for mobile */
    top: 0;
    background: var(--bg-2);
  }

  nav ul.menu li.menu-item.active .dropdown,
  nav ul.menu li.menu-item.active .dropdown.full-width {
    max-height: 1000px;
    /* large enough for content */
    opacity: 1;
    /* fade in */
  }

  nav ul.menu li.menu-item .dropdown-column {
    padding: 10px 20px;
  }

  nav ul.menu li.menu-item .dropdown-column a {
    padding: 8px 0;
    color: var(--text);
  }

  /* Hamburger Visible */
  .hamburger {
    order: 1;
    display: flex;
    cursor: pointer;
    z-index: 100000;
  }

  .hamburger span {
    background: #fff;
  }

  /* Prevent body scroll when menu open */
  body.no-scroll {
    overflow: hidden;
  }


  /* Prevent gaps between link and dropdown */
  nav ul.menu li.menu-item>a {
    display: inline-block;
    padding: 10px 15px;
  }

  /* Let's Talk on mobile */
  .letstalk {
    margin-left: 10px;
    margin-right: 10px;
  }
}


















.background-gradient {

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, rgb(61 183 139), #2b8988 70%);
  pointer-events: none;
  mix-blend-mode: plus-lighter;
  z-index: -2;
}

.hero {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero .hero-img {

  position: fixed;
  border-radius: 16px;
  height: 83%;
  object-fit: cover;
  display: block;
  object-position: bottom right;
  bottom: 0;
}

.hero .hero-logo {
  position: fixed;
  right: 32%;
  width: 270px;
  top: 46%;
}

/* Overlay text container */
.hero-content {
  position: absolute;
  top: 30%;
  left: 3%;
  text-align: left;
  color: var(--text2);
  z-index: 2;
  max-width: 50%;
  text-transform: capitalize;
  padding: 20px;
}

.hero-content:after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
  backdrop-filter: blur(2px);
}

/* Optional text styling */
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--text);
}

.hero-content p {
  font-size: 1.5rem;
  opacity: 0.9;
  color: var(--text);
}

.hero-content .name {
  color: #004544;
  font-weight: 600;
  font-size: 4.4rem;
}

@media (prefers-color-scheme: dark) {

  .hero-content h1 {
    color: var(--text);
    /* or any color you want */
  }

  .hero-content p {
    color: var(--text);
  }
}


.hero-socials-container {

  position: absolute;
  top: 72%;
  left: 3%;
  text-align: left;
  z-index: 2;
  text-transform: capitalize;
  padding: 20px;
  width: 38%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.hero-socials-container p {
  padding: 10px;
}

.hero-socials-container:after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
  backdrop-filter: blur(2px);
}

/* Social Icons Container */
.hero-socials {
  position: relative;
  display: flex;
  gap: 12px;
  backdrop-filter: blur(4px);
  border-radius: 20px;
}

/* Circle Icons */
.hero-socials .icon {
  width: 45px;
  height: 45px;
  border-radius: 25%;
  background: var(--bg);
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

/* Hover effect */
.hero-socials .icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.hero-socials .ig {
  background: #FF6B5B;
  color: #fff;
}

.hero-socials .yt {
  background: #EB7C82;
  color: #fff;
}

.hero-socials .pt {
  background: #9C64C4;
  color: #fff;
}

.hero-socials .tt {
  background: #484FDD;
  color: #fff;
}

.hero-socials .fb {
  background: #1877F2;
  color: #fff;
}

.hero-socials .be {
  background: #2B87FF;
  color: #fff;
}

.hero-socials .li {
  background: #DDB148;
  color: #fff;
}

/* Optional brand colors */
.hero-socials .ig:hover {
  background: #f55c4b;
  color: #fff;
}

.hero-socials .yt:hover {
  background: #ec6b71;
  color: #fff;
}

.hero-socials .pt:hover {
  background: #9758c4;
  color: #fff;
}

.hero-socials .tt:hover {
  background: #3e46db;
  color: #fff;
}

.hero-socials .fb:hover {
  background: #106ee9;
  color: #fff;
}

.hero-socials .be:hover {
  background: #1f7af1;
  color: #fff;
}

.hero-socials .li:hover {
  background: #c99a2d;
  color: #fff;
}


.hero-socials-name {
  position: relative;
  font-size: 1.5rem;

}

/* Responsive: move icons down under image on mobile */
@media (max-width: 768px) {
  .hero {
    padding-top: 15px;
  }

  .hero .hero-img {
    height: 43%;
    top: 20%;
  }

  .hero .hero-logo {
    position: fixed;
    right: 64%;
        width: 130px;
        top: 33%;
        z-index: 0;
  }

  .hero-content {
    max-width: 70vw;
    transform: none;
    left: 15vw;
    top: 55vh;
    padding: 3vw;
    border-radius: 2vw;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.185);
    background: white;
    z-index: 3;
    backdrop-filter: none;

  }

  .hero-content h1 {
    font-size: 4.1vw;
    color: #1d1d1d;

  }

  .hero-content p {
    font-size: 2.3vw;
    color: #1d1d1d;
  }

  .hero-content .name {
    font-size: 5vw;
    color: #ed2024;
  }


  .hero-socials-container {
    width: 100%;
    padding: 0;
    margin: 0;
    left: 0;
    top: 73%;
  }

  .hero-socials {
    bottom: auto;
    left: 0;
    width: 100%;

    justify-content: center;

  }

  .hero-socials .icon {
    width: 8vw;
    height: 8vw;
    font-size: 4.5vw;
  }



}

.services {
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.services h2 {
  margin-bottom: 20px;
  color: #3db78b;
  font-weight: 400;
}

.services-wrapper {
  overflow-x: hidden;
}

.services-container {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.service-item {
  min-width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #919191;
  flex-shrink: 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  padding: 10px;
}

.service-item img {
  position: absolute;
  max-width: 200px;
  border-radius: 10px;
}

.service-item span {
  z-index: 2;
  top: 42%;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
  opacity: .5;
  mix-blend-mode: color-burn;
  color: var(--text);
}

@media (prefers-color-scheme: dark) {
  .service-item span {
    mix-blend-mode: normal;
    opacity: 1;
    color: var(--text2);
  }
}

/* View More Button */
#viewMoreServices {
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  background: #3db78b;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .service-item {

    min-width: 150px;
    height: 150px;
  }

  .services-container {

    gap: 10px;
  }

  .service-item img {

    max-width: 150px;
  }

}

.about-modern {
  padding: 0px 20px;
  display: flex;
  justify-content: center;
}

.about-modern-container {
  position: relative;
  max-width: 1100px;
  width: 100%;
}

.about-modern-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  height: auto;
}

/* Floating Card */
.about-modern-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--bg);
  padding: 25px 30px;
  width: 350px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.about-modern-card h3 {
  font-size: 1.4rem;
  color: var(--text);
  /* highlight color */
}

.about-modern-card h2 {
  color: #e4405f;
  font-family: "blackfuture", sans-serif;
  margin: 5px 0;
  font-size: 1.8rem;
}

.about-modern-card p {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-modern-card {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
}

.portfolio {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-header .small-title {
  color: #ff3d54;
  font-weight: 500;
  margin-bottom: 10px;
}

.portfolio-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.portfolio-filters button {
  background: none;
  border: none;
  color: #111;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 10px;
  transition: 0.3s;
}

.portfolio-filters button.active,
.portfolio-filters button:hover {
  color: #ff3d54;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.portfolio-item {
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
}

.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-item h3 {
  padding: 15px;
  font-size: 1.1rem;
  color: #111;
}

.portfolio-button button {
  margin-top: 40px;
  padding: 12px 30px;
  border: 2px solid #ff3d54;
  background: none;
  color: #ff3d54;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.portfolio-button button:hover {
  background: #ff3d54;
  color: #fff;
}


.footer-section {
  background: #008b9a;
  color: white;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
  position: fixed;
  bottom: 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #e3f8fa;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #dff8fa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-social a {
  background: white;
  color: #008b9a;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.footer-social a:hover {
  transform: translateY(-4px);
}

.newsletter-box {
  margin-top: 10px;
  display: flex;
}

.newsletter-box input {
  padding: 10px 15px;
  border: none;
  outline: none;
  border-radius: 6px 0 0 6px;
  flex: 1;
}

.newsletter-box button {
  background: #f7a10a;
  border: none;
  padding: 10px 15px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

/* Responsive for mobile */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-box {
    justify-content: center;
  }
}












/* -------------------- */
/* Gallery Grid */
/* -------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery .thumb {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: 0.25s ease;
  background: radial-gradient(#313131, #ffffff);
  ;
}

.gallery .thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* -------------------- */
/* Lightbox Overlay */
/* -------------------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.95);
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  z-index: 50000;
  overflow-y: auto;
  padding: 10vh;
}

@media (max-width: 600px) {
  .lightbox {
    padding: 0
  }
}

/* Close button */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  z-index: 60000;
}

/* -------------------- */
/* Lightbox Layout */
/* -------------------- */
.lightbox-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  /* left = media, right = details */
  gap: 25px;
  max-width: 1300px;
  width: 100%;
}

/* -------------------- */
/* Left: Media Column */
/* -------------------- */
.lightbox-media {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lightbox-main-media img,
.lightbox-main-media video {
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
  background: radial-gradient(#313131, #ffffff);
  display: block;
}

.carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin: 10px auto;
}

.carousel::-webkit-scrollbar {
  height: 6px;
}

.carousel::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 10px;
}

.carousel-thumb {
  width: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.7;
  transition: 0.25s ease;
  background: radial-gradient(#313131, #ffffff);
  ;
}

.carousel-thumb:hover {
  transform: scale(1.1);
  opacity: 1;
}

.carousel-thumb.active-thumb {
  border: 3px solid var(--accent);
  opacity: 1;
}

/* -------------------- */
/* Right: Details */
/* -------------------- */
.lightbox-details {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px;
  color: #ddd;
  line-height: 1.5;
  font-size: 1rem;
  overflow-y: auto;
}

.lightbox-details::-webkit-scrollbar {
  width: 6px;
}

.lightbox-details::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 10px;
}

/* -------------------- */
/* Navigation Buttons */
/* -------------------- */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 60000;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  transition: 0.25s ease;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.85);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* -------------------- */
/* Responsive Styles */
/* -------------------- */
@media (max-width: 992px) {
  .lightbox-content {
    grid-template-columns: 1fr;
    /* stack vertically */
  }

  .lightbox-details {
    max-height: unset;
    margin-top: 20px;
  }

  .prev,
  .next {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .carousel-thumb {
    width: 80px;
    height: 56px;
  }

  .lightbox-main-media img,
  .lightbox-main-media video {
    max-height: 350px;
  }
}