/* Reset defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Full-width header */
/* HEADER STYLING */
/* Header Base Styling */
/* Base Header */

.site-header {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 2px solid goldenrod;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: goldenrod;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nav Menu */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav ul li a:hover {
    color: goldenrod;
}

/* Toggle Button */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: goldenrod;
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsive Header */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .logo {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 1.2rem;
        right: 1.5rem;
        z-index: 1100;
    }

    .main-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        margin-top: 1rem;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .main-nav ul li {
        width: 100%;
    }

    .main-nav ul li a {
        display: block;
        width: 100%;
        padding: 1rem;
        border-top: 1px solid #222;
        color: white;
    }

    .main-nav ul li a:hover {
        background-color: #222;
        color: goldenrod;
    }
}


body {
    background-color: black;
}

/* Navbar styling */
nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    padding: 1rem 2rem;
    background-color: black;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    position: relative;
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 10px;
    transition: transform 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: left 0.4s ease;
}

nav ul li a span {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: color 0.4s ease;
}

nav ul li a:hover::after {
    left: 0;
}

nav ul li a:hover span {
    color: goldenrod;
}

nav ul li a:hover {
    transform: scale(1.05);
}


/* Responsive image */
.centered-img {
    width: 100%;
    max-width: 100vw;
    height: auto;
    opacity: 0.5;
    object-fit: contain;
}

/* Animated text on top of image */
.center-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 2rem;
    z-index: 2;
    pointer-events: none;
    /* allow clicks to pass through */
}

.line1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    opacity: 0;
    transform: translateX(-10%);
    animation: slideRight 1s ease-out forwards;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    max-width: 90vw;
    color: white;
    pointer-events: none;
}

.line1:nth-child(1) {
    animation-delay: 0.5s;
}

.line1:nth-child(2) {
    animation-delay: 1.3s;
}

.line1:nth-child(3) {
    animation-delay: 2.1s;
}

@keyframes slideRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Rectangle Box Section */
.rectangle-box-container {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #000;
    flex-wrap: wrap;
}

.rectangle-box {
    flex: 1 1 22%;
    min-width: 200px;
    background-color: #111;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    height: 230px;
}

.rectangle-box:hover {
    background-color: #222;
    transform: translateY(-5px);
}

/* Heading styles */
h1 {
    color: orange;
}

.section-heading {
    text-align: center;
    color: goldenrod;
    background-color: white;
    border-color: gold;
    font-size: 2rem;
    margin-top: 0px;
    margin-bottom: 1rem;
    height: 72px;
    padding: 12px;
    /* position: relative; */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.section-heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #fad358;
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
}

/* Responsive styles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin: 10px 0;
    }

    .center-container {
        height: auto;
        padding: 2rem;
    }

    .centered-img {
        width: 100%;
    }

    .line {
        font-size: 1.6rem;
        padding: 0.8rem 1rem;
    }

    .rectangle-box-container {
        flex-direction: column;
        padding: 1rem;
    }

    .rectangle-box {
        width: 100%;
    }
}

.infinite-slider {
    overflow: hidden;
    background-color: #000;
    padding: 2rem 0;
}

.slider-track {
    display: flex;
    width: calc(250px * 60); /* Adjusted for number of images */
    animation: scrollLeft 120s linear infinite;
}

.slider-track img {
    height: 250px;
    width: auto;
    margin: 0 2rem;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease, transform 0.3s ease;
}

.slider-track img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Tablet screens - slightly slower */
@media (max-width: 1024px) {
    .slider-track {
        animation: scrollLeftTablet 160s linear infinite;
    }

    @keyframes scrollLeftTablet {
        0% { transform: translateX(0); }
        100% { transform: translateX(-200%); }
    }
}

/* Mobile screens - much slower and smaller logos */
@media (max-width: 768px) {
    .slider-track {
        animation: scrollLeftMobile 220s linear infinite; /* Slower speed */
        gap: 1rem;
    }

    @keyframes scrollLeftMobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(-200%); }
    }

    .slider-track img {
        height: 90px; /* Smaller logos for mobile */
        margin: 0 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .slider-track {
        animation: scrollLeftMobileXS 260s linear infinite; /* Even slower for tiny screens */
    }

    @keyframes scrollLeftMobileXS {
        0% { transform: translateX(0); }
        100% { transform: translateX(-200%); }
    }

    .slider-track img {
        height: 70px; /* Smallest size for extra small devices */
        margin: 0 0.5rem;
    }
}


.custom-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem;
    background-color: #000;
    justify-items: center;
}



/* Row 2 boxes centered */
.custom-box.center-row:nth-child(4) {
    margin-left: 500px;
    grid-column: 2.5;
}

.custom-box.center-row:nth-child(5) {
    margin-right: 500px;
    grid-column: 3;
}

.custom-box.center-row:nth-child(9) {
    margin-left: 500px;
    grid-column: 2.5;
}

.custom-box.center-row:nth-child(10) {
    margin-right: 500px;
    grid-column: 3;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .custom-grid-layout {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .custom-box.center-row:nth-child(4),
    .custom-box.center-row:nth-child(5),
    .custom-box.center-row:nth-child(9),
    .custom-box.center-row:nth-child(10) {
        margin-right: 500px;
        margin-left: 500px;
        grid-column: 2.5;
    }
}


.custom-box {
    /* Keep all existing styles but remove the default animation */
    background-color: #111;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    width: 100%;
    max-width: 300px;
    height: 350px;
    opacity: 0;
    transform: translateY(30px);
}

/* Only animate when 'visible' class is added via JS */
.custom-box.visible {
    animation: fadeUp 0.8s ease-out forwards;
}


h3 {
    color: orange;
}

.lines {
    margin-top: 20px;
}


/* Footer Styling */
.site-footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 3rem;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1.2s ease-out;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    margin: 0.3rem 0;
    line-height: 1.6;
    color: white;
}

/* Optional animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive footer text size */
@media (max-width: 768px) {
    .footer-text {
        font-size: 0.9rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .main-nav ul li {
        width: 100%;
        margin: 0.5rem 0;
    }

    .center-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 1rem;
        text-align: center;
        align-items: center;
    }

    .line1 {
        font-size: 1.6rem;
        padding: 0.5rem;
    }

    .rectangle-box-container {
        flex-direction: column;
        padding: 1rem;
    }

    .rectangle-box {
        width: 100%;
        margin-bottom: 1rem;
    }

    .slider-track {
        animation: scrollLeftMobile 60s linear infinite;
        gap: 1rem;
    }

    @keyframes scrollLeftMobile {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-300%);
        }
    }

    .slider-track img {
        height: 120px;
        margin: 0 1rem;
    }

    .custom-grid-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        gap: 1.5rem;
    }

    .custom-box {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 1.5rem 1rem;
    }

    .section-heading {
        font-size: 1.5rem;
        padding: 1rem;
        height: auto;
    }

    .site-footer {
        padding: 1rem 0.5rem;
    }
}


/* Services Section */
/* Services Section with HD Fixed Background */
.services-section {
position: relative;
    background: url("images/bg.webp") center center / cover no-repeat fixed;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.section-heading12 {
    color: white;
    justify-content: center;
    display: flex;
    font-size: 40px;
    margin-top: -52px;
    margin-bottom: 30px;
}

/* Overlay to make text readable */
.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Slight dark overlay */
    backdrop-filter: blur(2px);
    z-index: -1;
}


.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-box {
    height: 400px;
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}

.service-box:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    /* padding: 1rem; */
    border-radius: 12px;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.card-front {
    background-color: #111;
    color: white;
    border: 1px solid goldenrod;
}

.card-back {
    background-color: black;
    transform: rotateY(180deg);
}

.card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    top: 0;
    left: 0;
}

/* Animation on scroll */
.service-box {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.service-box.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Zigzag layout: alternate vertical positioning */
.zigzag .service-box:nth-child(even) {
    margin-top: 250px;
}

.zigzag .service-box:nth-child(odd) {
    margin-bottom: 50px;
}

.service-box:hover .card-inner {
    transform: rotateY(180deg) scale(1.03);
}

.services-section::before {
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.5);
}

.back-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.back-image-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.back-image-slider img.active {
    opacity: 1;
    z-index: 2;
}
/* Responsive container width and grid */
@media (max-width: 1200px) {
    .service-container {
        padding: 0 2rem;
    }

    .zigzag .service-box:nth-child(even) {
        margin-top: 150px;
    }

    .zigzag .service-box:nth-child(odd) {
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .service-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .section-heading12 {
        font-size: 32px;
        margin-top: -30px;
    }

    .service-box {
        height: 380px;
    }

    .card-front h2 {
        font-size: 20px;
        text-align: center;
    }

    .card-front p {
        font-size: 14px;
        padding: 0 10px;
        text-align: center;
    }

    .zigzag .service-box:nth-child(even),
    .zigzag .service-box:nth-child(odd) {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav li a {
        display: block;
        padding: 1rem;
    }

    .service-box {
        height: 360px;
    }

    .section-heading12 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .service-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .section-heading12 {
        font-size: 24px;
        margin-top: -20px;
    }

    .card-front h2 {
        font-size: 18px;
    }

    .card-front p {
        font-size: 13px;
    }

    .service-box {
        height: 340px;
    }
}


/* client css starting*/
.bg {
    position: relative;
    background: url("images/bg4.webp") center center / cover no-repeat fixed;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.client-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
    color: black;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.client-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
}

.client-card img {
    width: 100%;
    height: auto;
    display: block;
}

.client-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 1rem 0.5rem;
    line-height: 1.4;
}

.client-card p {
    font-size: 0.95rem;
    margin: 0 1rem 1.5rem;
    color: #555;
    line-height: 1.6;
}
@media(max-width: 768px){
    .client-card{
        margin-right: 50px;
    }
}

/*contact page starts here*/
.contact-hero {
    text-align: center;
    padding: 80px 20px 40px;
    background: linear-gradient(to right, black, #e9f0f2);
    height: 450px;
}

.contact-hero h1 {
    font-size: 36px;
    margin-top: 120px;
    letter-spacing: 1px;
    margin: 100px;
}

.contact-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #fff;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.contact-box {
    width: 300px;
    margin: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.contact-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-box h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-box .line {
    width: 40px;
    height: 2px;
    background: #000;
    margin: 10px auto 20px;
}

.contact-box p {
    margin: 8px 0;
    font-size: 16px;
}

/* Delays for staggered animation */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        align-items: center;
    }

    .contact-box {
        width: 90%;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-hero p {
        font-size: 16px;
    }
}

/* gallary starts here */

/* body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #111;
  color: #fff;
} */

.gallery-section {
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 1400px;
    /* Limit max width to center the gallery */
    text-align: center;
}

.gallery-title {
    font-size: 2.5rem;
    padding: 5px;
    color: white;
    /* background: #000; */
    margin: 0 0 30px 0;
    border-radius: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 6 columns always */
    gap: 15px;
    padding: 0 20px;
    justify-content: center;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    /* Makes each grid item a square */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f0f0f0;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image covers the square */
    display: block;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.grid-item:hover {
    transform: scale(1.02);
    z-index: 2;
}

.grid-item:hover img {
    transform: scale(1.05);
}

/* Responsive: Reduce columns on smaller devices */
@media (max-width: 1200px) {
    .grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    cursor: default;
    margin-left: 20px;
}
/* Strong close button override */
#lightbox .close-btn,
.close-btn {
  position: fixed !important;    /* fixed to viewport */
  top: 70px !important;
  right: 16px !important;
  z-index: 2147483647 !important; /* extremely high to beat anything else */
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-size: 1.6rem;
  line-height: 1;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  pointer-events: auto;
  transition: background 0.18s, transform 0.12s;
}

/* hover/touch feedback */
#lightbox .close-btn:hover,
.close-btn:hover {
  background: rgba(255,215,0,0.95);
  color: #000;
  transform: scale(1.08);
}

/* make sure prev/next don't overlap the close button */
#lightbox .prev-btn,
#lightbox .next-btn {
  z-index: 2147483646; /* just below close */
}

/* mobile tweak */
@media (max-width: 480px) {
  #lightbox .close-btn {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
    top: 12px;
    right: 12px;
  }
}


/* Active lightbox — button slides in */
.lightbox.active .close-btn {
    opacity: 1;
    transform: translate(0, 0);
}


/* ✨ Golden animated lines */
/* body {
  margin: 0;
  padding: 0;
  background-color: black;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* ✨ Golden animated lines background */
.lines-container {
    position: fixed; /* Stay in place while scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Fill the screen */
    pointer-events: none; /* So it doesn't block clicks */
    display: flex;
    justify-content: space-around;
    z-index: -1; /* Behind all content */
}

.line {
    width: 2px;
    height: 200%; /* Make taller so it animates smoothly */
    background: linear-gradient(to bottom, gold, transparent);
    animation: moveDown 4s linear infinite;
    opacity: 0.6;
}

.line:nth-child(odd) {
    animation-delay: 1s;
    opacity: 0.3;
}

.line:nth-child(even) {
    animation-delay: 2s;
    opacity: 0.5;
}

@keyframes moveDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0%);
    }
}

/* Navigation buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 2rem;
    border-radius: 50%;
    transition: background 0.3s;
    user-select: none;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 215, 0, 0.6);
    color: black;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Make buttons smaller on mobile */
@media (max-width: 768px) {
    .prev-btn, .next-btn {
        font-size: 1.5rem;
        padding: 8px 12px;
    }
}
