:root {
    --primary: #6effd9;
    /* Mint/Cyan for buttons and accents */
    --primary-light: #8ffde4;
    --primary-dark: #4dd9b8;
    --accent: #6effd9;
    --bg-dark: #0a1e2e;
    /* Dark navy background */
    --bg-gradient: linear-gradient(135deg, #0a1e2e 0%, #041420 100%);
    /* Dark navy gradient */
    --text-white: #ffffff;
    /* White Text */
    --text-light: #b8d4e0;
    /* Light cyan text */
    --text-dark: #333333;
    --glass-bg: rgba(10, 30, 46, 0.6);
    --glass-border: rgba(110, 255, 217, 0.2);
    --shadow-3d: 0 20px 40px rgba(0, 0, 0, 0.4);
    --transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-white);
    /* Default text to white */
    background-color: var(--bg-dark);
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 3D Parallax Background Canvas */
#molecule-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Header & Nav */
#main-header {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

#main-header.scrolled {
    background: rgba(10, 30, 46, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    height: 70px;
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* Push logo a bit left and nav a bit right */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-right: 2rem; /* extra gap to nav */
}

nav { margin-left: 2rem; }

/* Ensure hero text and buttons sit above the animated canvas */
.hero-content { position: relative; z-index: 2; }

/* Make hero buttons more visible and interactive */
.btn-group .btn {
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s;
    outline: none;
}

/* Explore Products — user requested color #4dd9b8 */
.btn-group .btn-explore {
    background: #4dd9b8;
    color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(77,217,184,0.18);
}

.btn-group .btn-explore:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 40px rgba(77,217,184,0.32); }

.btn-group .btn-contact {
    background: #ffffff; color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.btn-group .btn-contact:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.18); }

@media (max-width: 768px) {
    .logo { margin-right: 1rem; }
    nav { margin-left: 0; }
}

/* CTA Banner — white box with dark text and a #4dd9b8 button */
.cta-banner {
    background: rgba(10, 30, 46, 0.6);
    color: #111111;
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2, .cta-banner p { color: white; }

.cta-banner .btn-eco {
    background: #4dd9b8;
    color: var(--bg-dark);
    padding: 1rem 1.8rem;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(77,217,184,0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.cta-banner .btn-eco:hover { transform: translateY(-6px); box-shadow: 0 22px 40px rgba(77,217,184,0.32); }

@media (max-width: 768px) {
    .cta-banner { padding: 60px 0; }
    .cta-banner .btn-eco { width: 100%; display:block; }
} 



/* Contact page two-column layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
} 

.logo span {
    color: var(--bg-dark);
    background: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Section with 3D Image */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    justify-items: center;
}

/* About Page Hero */
.about-hero { padding: 120px 0; }
.about-hero-grid { display: grid; grid-template-columns: 1fr 500px; gap: 4rem; align-items: center; }
.about-hero-text h1 { font-size: 3.2rem; color: #fff; margin-bottom: 0.6rem; }
.about-hero-text .lead { color: rgba(255,255,255,0.95); font-size: 1.1rem; }
.about-hero-image img { width: 100%; border-radius: 12px; box-shadow: 0 30px 60px rgba(0,0,0,0.45); }

@media (max-width: 992px) { .about-hero-grid { grid-template-columns: 1fr; text-align: center; } .about-hero-image { order: -1; } }

/* Dark animated panels for Mission & Vision */
.mission-vision { padding: 80px 0; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.dark-panel { position: relative; padding: 3rem; border-radius: 12px; color: #fff; overflow: hidden; box-shadow: 0 20px 50px rgba(3,14,30,0.45); background: linear-gradient(135deg, #04243e 0%, #163a63 100%); background-size: 200% 200%; animation: gradientShift 8s ease infinite; }
.dark-panel h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.dark-panel hr { border: none; height: 2px; background: rgba(255,255,255,0.08); margin: 1rem 0 1.5rem; }
.dark-panel p { color: rgba(255,255,255,0.95); line-height: 1.7; }

/* Core Values (animated dark cards) */
.core-values { padding: 80px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border-radius: 12px; padding: 2.2rem; text-align: center; color: #fff; box-shadow: 0 18px 40px rgba(3,14,30,0.45); transition: transform 0.35s, box-shadow 0.35s; background: linear-gradient(135deg,#083049 0%,#12355d 100%); background-size: 200% 200%; animation: gradientShift 8s ease infinite; }
.value-card i { font-size: 2.4rem; display: block; margin-bottom: 1rem; color: #ffd36b; }
.value-card h4 { margin-bottom: 0.6rem; color: #fff; }
.value-card p { color: rgba(255,255,255,0.9); font-size: 0.95rem; line-height: 1.6; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(2,10,30,0.55); }

@media (max-width: 992px) { .values-grid { grid-template-columns: repeat(2, 1fr); } .mission-vision-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }

@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 1rem;
}

.hero h1, .hero-title {
    font-size: 5.5rem;
    line-height: 1.02;
    margin-bottom: 1.2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-sub {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero buttons */
.btn-group .btn-explore {
    background: #244b76; /* Dark bluish */
    color: #fff;
    box-shadow: 0 10px 20px rgba(36,75,118,0.18);
    padding: 1rem 2.4rem;
    border-radius: 8px;
    font-weight: 700;
    margin-right: 1rem;
}

.btn-group .btn-contact {
    background: #fff;
    color: var(--bg-dark);
    padding: 1rem 2.4rem;
    border-radius: 8px;
    font-weight: 700;
    border: none;
}

@media (max-width: 768px) {
    .hero h1, .hero-title { font-size: 3rem; }
    .btn-group .btn-explore, .btn-group .btn-contact { width: 100%; display:block; margin: 0.5rem 0; }
}

.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-img-3d {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-3d);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}

.hero-image-wrapper:hover .hero-img-3d {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}
/* RIGHT SIDE HERO CAROUSEL */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-3d);
}

.carousel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
}

/* Monitor carousel inside Live Neural panel */
.monitor-carousel {
    position: relative;
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.monitor-carousel .monitor-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.monitor-carousel .monitor-img.active { opacity: 1; }

/* Larger monitor carousel used in Live Neural panel */
.monitor-main-carousel {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
.monitor-main-carousel .monitor-main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}
.monitor-main-carousel .monitor-main-img.active { opacity: 1; }

@media (max-width: 768px) { .monitor-carousel { height: 120px; } .monitor-main-carousel { height: 140px; } }


/* Buttons */
.btn {
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 10px 20px rgba(110, 255, 217, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(110, 255, 217, 0.5);
}

/* Sections */
section {
    padding: 120px 0;
}

.white-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: var(--shadow-3d);
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Services grid (screenshot-style) */
.services-section { background: var(--bg-dark); color: var(--text-white); }
.services-section .section-header h2 { color: var(--text-white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    position: relative;
    background: rgba(255,255,255,0.05); /* subtle card contrast on dark bg */
    border-radius: 12px;
    padding: 2.2rem 2.4rem;
    box-shadow: none;
    overflow: hidden;
    border-left: 4px solid rgba(110,255,217,0.06);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s;
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.45); }

.service-card .card-number {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 3rem;
    color: rgba(255,255,255,0.04);
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-size: 1.02rem;
}

.service-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.6; }

@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card .card-number { right: 16px; font-size: 2.4rem; }
}

/* Dynamic Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: rgba(10, 30, 46, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: rgba(10, 30, 46, 0.7);
    border-color: var(--primary);
    transform: translateY(-15px) rotateZ(1deg);
}

.feature-card i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 2rem;
    display: block;
}

/* Image with Nature Blur effect */
.nature-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 2rem;
    filter: brightness(0.9);
    transition: var(--transition);
}

.nature-img:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* Footer */
#main-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 100px 0 40px;
    backdrop-filter: blur(20px);
}

/* 3D Floating Elements */
.float-element {
    animation: floating 6s infinite ease-in-out;
}


@keyframes floating {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* STOP floating animation for hero title */
.hero-title {
    animation: none !important;
    transform: none !important;
}
/* Preloader Full Screen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a1e2e; /* dark professional background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
/* Logo */
#preloader img {
    width: 150px;
    animation: zoom 2s ease-in-out infinite;
}
#preloader h2 {
    color: rgba(255,255,255,0.9);
    margin-top: 1rem;
    font-weight: 600;
}
/* hide & fade */
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s ease, visibility 0.25s ease; }

@keyframes zoom { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* ===== FOOTER STYLES ===== */
#main-footer {
    background: linear-gradient(135deg, #051117 0%, #0a1e2e 50%, #051117 100%);
    color: var(--text-white);
    margin-top: 6rem;
    border-top: 1px solid var(--glass-border);
}

/* Footer Main Content */
.footer-content {
    padding: 4rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 360px 1fr; /* brand | quick links (center) | contact */
    gap: 3rem;
    align-items: start;
}

/* Place Quick Links in the center column */
.footer-links {
    grid-column: 2;
    justify-self: center;
    margin-left: 0;
}

@media (max-width: 992px) {
    /* tablet: two columns, keep quick links full-width in middle area */
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-links { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-links { margin-left: 0; justify-self: stretch; }
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-brand .logo {
    display: inline-flex;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.brand-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(110, 255, 217, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(110, 255, 217, 0.3);
}

/* Footer Links */
.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-services a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a::before,
.footer-services a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links a:hover::before,
.footer-services a:hover::before {
    width: 100%;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Contact Section */
.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    align-items: flex-start;
}

.contact-list i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Newsletter Section */
.footer-newsletter {
    background: rgba(110, 255, 217, 0.05);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 2rem 0;
    margin: 2rem 0;
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.newsletter-content p {
    color: var(--text-light);
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1.2rem;
    border: 1px solid var(--glass-border);
    background: rgba(110, 255, 217, 0.08);
    color: var(--text-white);
    border-radius: 4px;
    transition: var(--transition);
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(184, 212, 224, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(110, 255, 217, 0.12);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(110, 255, 217, 0.2);
}

.newsletter-form .btn {
    padding: 0.75rem 2rem;
    white-space: nowrap;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(5, 17, 23, 0.8);
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Footer Legal Links */
.footer-legal {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-legal li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-legal li a:hover {
    color: var(--primary);
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-content {
        padding: 2rem 0 1rem 0;
    }
}

@media (max-width: 480px) {
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .contact-list li {
        margin-bottom: 1rem;
    }
    
    .newsletter-content h3 {
        font-size: 1.3rem;
    }
}










/* .image-slider {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }    

    .image-slider-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 15px;
    }

    .monitor-main-img {
        width: 100%;
        height: auto;
        display: none;
        border-radius: 15px;
    }

    .monitor-main-img.active {
        display: block;
        animation: fadeIn 0.5s ease-in-out;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .slider-btn {
        background-color: #8ffde4;
        border: none;
        font-size: 24px;
        padding: 15px 20px;
        cursor: pointer;
        border-radius: 10px;
        transition: 0.3s;
        font-weight: bold;
        color: #333;
    }

    .slider-btn:hover {
        background-color: #7ae5d4;
        transform: scale(1.1);
    }

    .image-counter {
        text-align: center;
        margin-top: 15px;
        font-size: 16px;
        color: #666;
    } */
