/* Global Styles */
:root {
    --primary-color: #ff3232; /* Vibrant red */
    --primary-dark: #cc0000; /* Darker red */
    --primary-darker: #500000; /* Even Darker red */
    --dark-bg: #121212; /* Very dark gray, almost black */
    --darker-bg: #0a0a0a; /* Even darker for contrast */
    --darkred-bg: #1b0000; /* Dark Red BG */
    --light-text: #f5f5f5; /* Off-white for text */
    --gray-text: #aaaaaa; /* Gray for secondary text */
    --card-bg: #1e1e1e; /* Slightly lighter than background for cards */
    --nav-bg: #000000AE; /* Black Opacity */
    --gallery-title-bg: #222222; /* Darker gray for title bg */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

.container {
    width: 95%;
    max-width:1200px;
    margin: 0 auto;
    padding: 0 1em;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    color: var(--light-text);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.accent {
    color: var(--primary-color);
}

section {
    padding: 5em 0;
}

/* Header & Navigation */
header {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    background-color: var(--nav-bg);
    top:0;
}

nav.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 0.2 1em rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 0.2;
    color: var(--light-text);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2em;
}

.nav-menu a {
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -0.3125em;
    left: 0;
    width: 0;
    height: 0.2;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.hamburger {
    width: 1.5625em;
    height: 0.1875em;
    background-color: var(--light-text);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 1.5625em;
    height: 0.1875em;
    background-color: var(--light-text);
    transition: all 0.3s ease;
}

.hamburger::before {
    transform: translateY(-0.5em);
}

.hamburger::after {
    transform: translateY(0.5em);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3.75em 1em 1em 1em;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 1em;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 2em;
    color: var(--gray-text);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1em 2em;
    border-radius: 2em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 0.2em solid var(--primary-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}
.kofi-button img {
    transition: transform 0.3s ease;
}

.kofi-button:hover img {
    transform: scale(1.1);
}

/* About Section */
.about-section {
    background-color: var(--darker-bg);
}

.about-content {
    display: flex;
    gap: 1.5em;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1em;
    color: var(--gray-text);
}

.about-image {
    flex: 1;
    margin: 0 1em;
}

.about-image:first-child {
    margin: 0;
}

.about-image:last-child {
    margin: 0;
}

.image-placeholder {
    width: 100%;
    height: 18.75em;
    background-color: var(--card-bg);
    border-radius: 1em;
    position: relative;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.2) 0%, rgba(30, 30, 30, 0.8) 100%);
}

/* Services Section */
.services-section h2 {
    text-align: center;
    margin-bottom: 1.5em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5em, 1fr));
    gap: 2em;
}

.shi-instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(40%,1fr));
    gap: 1.5em;
}

.service-card {
    background-color: var(--card-bg);
    padding: 2em;
    border-radius: 1em;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-1em);
    box-shadow: 0 1em 1em rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 1em;
}

.service-card h3 {
    margin-bottom: 1em;
}

.service-card p {
    color: var(--gray-text);
}

/* Brands Section */
.brands-section {
    background-color: var(--darker-bg);
}

.brands-section h2 {
    text-align: center;
    margin-bottom: 1.5em;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5em, 1fr));
    gap: 2em;
}

.brand-card {
    background-color: var(--card-bg);
    padding: 2em;
    border-radius: 1em;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0.3125em;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.brand-card:hover {
    transform: translateX(0.3125em);
}

.brand-card:hover::before {
    width: 1em;
}

.brand-card h3 {
    margin-bottom: 1em;
}

.brand-card p {
    color: var(--gray-text);
    margin-bottom: 1em;
}

.brand-logo {
    width: 3.75em;
    height: 3.75em;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0 auto;
}

/* Contact Section */
.contact-section h2 {
    text-align: center;
    margin-bottom: 1.5em;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5em;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1em;
}

.contact-item i {
    font-size: 1.5em;
    color: var(--primary-color);
}
.contact-form {
  gap: 1em;
  display: flex;
  flex-direction: column;
}

/* Alt2 Section */
#download.alt2-section {
  background-color: var(--darker-bg);
}
.alt2-section h2 {
    text-align: center;
}
.alt2-section .container p {
  text-align: center;
  margin-bottom: 1.5em;
}
.alt2-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}
.alt2-info h3 {
  text-align: center;
}
.alt2-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2em;
}
.alt2-item p {
  text-align: center;
}
.alt2-item i {
    font-size: 3em;
    color: var(--primary-dark);
}

.social-links {
    display: flex;
    gap: 1em;
    margin-top: 1em;
}

.social-icon {
    width: 2.5em;
    height: 2.5em;
    background-color: var(--card-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.contact-form .form-group {
    margin-bottom: 1em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1em 1em;
    background-color: var(--card-bg);
    border: 0.1em solid #333;
    border-radius: 0.3125em;
    color: var(--light-text);
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 1em 2em;
    border-radius: 2em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 0.2em solid var(--primary-color);
}

.submit-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}
.warning {
  background-color: var(--primary-dark);
  color: var(--light-text);
  padding: 3em;
  border-radius: 0.4em;
  margin-bottom: 2em;
  font-size: 0.9em;
  line-height: 1.5;
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.alt2-section .container .warning p {
  margin: 0;
}
#download .alt2-item {
    border-bottom: solid 0.1em var(--primary-color);
  margin-bottom: 2em;
  padding: 1em 0em;
}
/* Code Blocks */
.code-block-container {
    position: relative;
    margin-bottom: 1em;
    width:100%;
}

.copy-code-button {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    background-color: var(--card-bg);
    color: var(--light-text);
    border: 1px solid #333;
    border-radius: 0.3125em;
    padding: 0.5em 0.8em;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.copy-code-button:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}

.copy-code-button.is-copied {
    background-color: #28a745;
    border-color: #28a745;
    color: var(--light-text);
}

.copy-code-button.is-failed {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--light-text);
}

.copy-code-button:disabled {
    cursor: default;
    opacity: 0.9;
}

.copy-code-button .fa-check {
    color: #28a745; /* Green check for success */
}

pre {
    padding: 1em;
    border-radius: 0.4em;
    margin-bottom: 1em;
    max-height: 25em; /* Added max-height for scroll */ 
}

/* Gallery Section */
.gallery-section {
    background-color: var(--darkred-bg);
    margin-top: 3em;
}

.gallery-title {
    text-align: center;
    margin-bottom: 1.5em;
    font-size: 1.8em;
}

.scrolling-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    justify-content: center;
    display: flex;
}

.gallery-grid {
    display: flex !important;
    width:90%;
}

.gallery-grid::-webkit-scrollbar { 
    display: none; /* Safari and Chrome */
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 30px;
    text-align: center;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}


.gallery-item {
    background-color: var(--card-bg);
    border-radius: 1em;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-direction: column;
    justify-content: center;
    padding: 1em;
}

.gallery-item:hover {
    transform: translateY(-0.5em);
    box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}
.gallery-item .img-container {
    width: 100%;
    height: auto;
    display: block;
    flex: 1;
   align-content: center;
}

.gallery-item-title {
  padding: 0.8em 0.5em;
  text-align: center;
  font-weight: 600;
  font-size: 0.8em;
  color: var(--light-text);
  background-color: var(--gallery-title-bg);
 min-height: 5em;
  align-content: center;
  margin-top: 1em;
border-radius: 0.8em;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1001;
    padding-top: 6.25em;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    height:70vh;
    max-width: 90vh;
    object-fit: contain;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 43.75em;
    text-align: center;
    color: #ccc;
    padding: 0.625em 0;
    height: 9.375em;
}

.lightbox-close {
    position: absolute;
    top: 1em;
    right: 2.1875em;
    color: #f1f1f1;
    font-size: 2.5em;
    font-weight: bold;
    transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 1em;
    margin-top: -1.375em;
    color: white;
    font-weight: bold;
    font-size: 1.25em;
    transition: 0.3s;
    border-radius: 0 0.1875em 0.1875em 0;
    user-select: none;
}

.lightbox-next {
    right: 0;
    border-radius: 0.1875em 0 0 0.1875em;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

code {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

details {
    margin: 1em 0;
    background-color: var(--card-bg);
    border-radius: 0.4em;
    border: 0.1em solid #333;
    overflow: hidden;
}

summary {
    padding: 1em 1em;
    cursor: pointer;
    background-color: var(--card-bg);
    font-weight: 600;
    transition: background-color 0.3s ease;
    user-select: none;
    outline: none;
}

summary:hover {
    background-color: #2a2a2a;
}

details[open] summary {
    border-bottom: 0.1em solid #333;
    background-color: #2a2a2a;
}

details pre {
    margin: 0;
    border: none;
    border-radius: 0;
    background-color: var(--darker-bg);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 2em 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.footer-logo {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 0.2;
}

footer p {
    color: var(--gray-text);
    font-size: 0.9em;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    

  .about-image {
    width: 100%;
    margin-bottom: 1em;
    display: flex;
    justify-content: center;
  }   
     .image-placeholder {
    height: 18.75em;
    width: 31.25em;
     }
    
    .contact-content {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        flex: 0 0 calc(50% - 2em);
    }
}

@media (max-width: 768px) {
   .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
      .shi-instructions-grid {
        grid-template-columns: 1fr;
        gap: 1em;
    }
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    nav {
        padding: 1em 1em;
    }
    .warning {
      width: 90%;
    }
    .logo {
        font-size: 1.5em;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 15.625em;
        height: 100vh;
        background-color: var(--darker-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 5em;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1em 0;
    }
    
    .nav-menu a {
        font-size: 1.1em;
        padding: 1em 1em;
    }
    
    header {
        padding: 1em 0;
    }
    
    .hero {
        height: 50vh;
        padding: 3.75em 1em 1em 1em ;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2em;
        line-height: 1.2;
        margin-bottom: 1em;
    }
    
    .hero p {
        font-size: 1em;
        line-height: 1.5;
        margin-bottom: 2em;
    }
    
    .container {
        max-width:760px;
    }
    
    section {
        padding: 1em 0;
    }
    
    code {
        font-size: 0.85em;
        padding: 0.2 0.4em;
        word-break: break-word;
    }
    
    pre {
        font-size: 0.85em;
        padding: 1em;
        overflow-x: auto;
        white-space: pre-wrap;
        word-break: break-word;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        flex: 0 0 calc(100% - 2em);
    }

    section {
        padding: 1em 0;
    }
    
    .hero h1 {
        font-size: 1.8em;
    }
    
    .hero p {
        font-size: 0.95em;
    }
    
    .services-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        gap: 2em;
    }
    
    .about-text {
        padding: 0;
    }
    .warning {
      width: 90%;
    }
    .about-text p {
        font-size: 0.95em;
        line-height: 1.6;
        margin-bottom: 1.2em;
    }

    .gallery-item {
        flex: 0 0 calc(100% - 2em);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5em;
    }
    
    .hero p {
        font-size: 0.9em;
    }
    
    .container {
   max-width: 460px;
    }
    .warning {
      width: 95%;
      padding:2em;
    }
    
    .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
    .image-placeholder {
    height: 10em;
    width: 18em;
  }
    .service-card {
        padding: 1em;
    }
    
    .service-card h3 {
        font-size: 1em;
    }
    
    .service-card p {
        font-size: 0.85em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .nav-menu {
        width: 12.5em;
    }
    
    .about-content {
        gap: 1em;
    }
    
    .about-text p {
        font-size: 0.9em;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-left: 0;
        margin-right: 0;
    }
    
    .logo {
        font-size: 1.3em;
    }
    
    .menu-toggle {
        font-size: 1.2em;
    }
    
    .cta-button {
        padding: 1em 1em;
        font-size: 0.85em;
    }
}
pre[class*="language-" ],
code[class*="language-"] {
    white-space:pre-wrap !important;
    overflow: auto !important;
    word-break: break-word !important;
}

/* Slick Carousel */
.screenshots-section {
    padding: 5em 0;    
    background-color: var(--darkred-bg);
    border-radius: 15px;
    margin-bottom: 40px;
}

.screenshot-carousel-container {
    position: relative;
    width: 100%;
}

.screenshot-carousel {
    padding: 20px 0;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.slick-slide {
    display: none;
    float: left;
    min-height: 1px;
}

.slick-slide img {
    display: block;
}

.slick-initialized .slick-slide {
    display: flex;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--dark-bg);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
    line-height: 0;
    text-indent: 0;
    padding: 0;
}

.slick-arrow:hover {
    background-color: var(--primary-dark);
}

.slick-prev {
    left: -60px !important;
}

.slick-next {
    right: -60px !important;
}

.slick-arrow.slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slick-prev:before,
.slick-next:before {
    content: '';
}

.screenshot {
    margin: 0 10px;
    will-change: transform;
}

@media (max-width: 767px) {
    .screenshot {
        max-width: calc(100% - 20px);
    }
    .screenshot.tablet {
        max-width: calc(100% - 20px);
    }
    .screenshot-carousel-container {
        max-width: 100%;
    }
    .slick-prev {
        left: -40px;
    }
    .slick-next {
        right: -40px;
    }
}

@media (min-width: 768px) {
    .screenshot {
        max-width: 33%;
    }
    .screenshot.tablet {
        max-width: 33%;
    }
    .screenshot-carousel-container {
        max-width: 1000px;
        margin: 0 auto;
    }
}

.screenshot img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--dark-bg);
    max-height: 600px;
    object-fit: contain;
    cursor: pointer;
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker-bg);
    backdrop-filter: blur(5px);
}

.gallery-content {
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 90%;
    max-width: 1200px;
}

.gallery-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.close-gallery {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--light-text);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-darker);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-gallery:hover {
    color: var(--primary-color);
    background-color: var(--dark-bg);
    transform: rotate(90deg);
}

.gallery-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.gallery-nav button {
    background-color: var(--primary-darker);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-nav button:hover {
    background-color: var(--dark-bg);
    transform: scale(1.1);
}
.slick-prev::before, .slick-next::before {
    font-size: 30px !important;
    color: var(--light-text) !important;
  }