@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palettes */
    --bg-primary: #060a08;
    --bg-secondary: #0b110f;
    --bg-tertiary: #111a16;
    --color-primary: #114232; /* RAL 6005 Moss Green */
    --color-primary-rgb: 17, 66, 50;
    --color-primary-light: #1c5c47;
    --color-accent: #10b981; /* Emerald Accent */
    --color-accent-rgb: 16, 185, 129;
    --color-text: #e2e8f0;
    --color-text-muted: #8e9fa5;
    --color-border: rgba(17, 66, 50, 0.4);
    --color-border-hover: rgba(16, 185, 129, 0.6);
    --glass-bg: rgba(11, 17, 15, 0.7);
    --glass-border: rgba(17, 66, 50, 0.3);
    --glow-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-title: 'Outfit', sans-serif;
    
    /* System */
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title span {
    color: var(--color-accent);
    -webkit-text-fill-color: initial;
    background: none;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Background Glowing Orbs */
.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(17, 66, 50, 0.05) 50%, rgba(0,0,0,0) 100%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 20s infinite alternate ease-in-out;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    font-size: 0.95rem;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(17, 66, 50, 0.4);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent) 100%);
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-accent) 0%, #059669 100%);
    color: #060a08;
    font-weight: 700;
}

.btn-accent:hover {
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.glass-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(17, 66, 50, 0.2);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background: rgba(6, 10, 8, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--color-accent);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Navigation Dropdown Menu */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--color-text-muted);
}

.nav-item-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
    color: #ffffff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(6, 10, 8, 0.96);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-sm);
    min-width: 250px;
    padding: 12px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 185, 129, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.3s;
    z-index: 1000;
    margin-top: 10px;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(16, 185, 129, 0.08);
    color: #ffffff;
    padding-left: 24px;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: transparent;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Futuristic graphic inside hero */
.hero-graphic-box {
    width: 100%;
    max-width: 480px;
    height: 380px;
    background: linear-gradient(135deg, rgba(17, 66, 50, 0.2) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic-box::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--color-accent);
    filter: blur(50px);
    opacity: 0.15;
    border-radius: 50%;
    animation: floatAnim 8s infinite alternate ease-in-out;
}

@keyframes floatAnim {
    0% { transform: translate(-30px, -30px); }
    100% { transform: translate(30px, 30px); }
}

.hero-terminal {
    width: 80%;
    height: 60%;
    background: rgba(6, 10, 8, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 0.85rem;
    padding: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    color: #10b981;
}

.terminal-header {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.terminal-dot.r { background: #ef4444; }
.terminal-dot.y { background: #eab308; }
.terminal-dot.g { background: #22c55e; }

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(17, 66, 50, 0.6) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-accent);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link:hover {
    gap: 10px;
}

/* Portfolio Section */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    padding: 8px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(17, 66, 50, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    padding: 0;
    overflow: hidden;
}

.project-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-card:hover .project-img-wrapper img {
    transform: scale(1.1);
}

.project-card-content {
    padding: 24px;
}

.project-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.project-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.project-card-content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Stats Section */
.stats {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3.5rem;
    font-family: var(--font-title);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.stat-item .stat-label {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Contact Section & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: rgba(17, 66, 50, 0.2);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-control {
    width: 100%;
    background: rgba(6, 10, 8, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
    background: rgba(6, 10, 8, 0.8);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Map Embed styling */
.map-embed {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    margin-top: 30px;
}

/* Alert Notification box */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Footer Section */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-widget h3 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-widget p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 15px;
}

/* Details Page / Internal Pages Template */
.page-header {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 140px 0 60px;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-box {
    background: var(--glass-bg);
    border: 1px solid rgba(16, 185, 129, 0.45); /* Highly visible emerald-green border matching card outlines */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.page-content-wrapper {
    padding: 80px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
}

.rich-content {
    line-height: 1.8;
}

.rich-content p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.rich-content h3, .rich-content h4 {
    margin: 35px 0 15px;
}

.rich-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 25px;
    color: var(--color-text-muted);
}

.rich-content li {
    margin-bottom: 8px;
}

.detail-sidebar-box {
    margin-bottom: 30px;
}

/* Testimonials Carousel placeholder container */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonial-card {
    text-align: left;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: 1px solid var(--color-accent);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content p {
        margin: 0 auto 35px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1100;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(6, 10, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        border-left: 1px solid var(--color-border);
        z-index: 1050;
    }
    
    .nav-menu.active {
        right: 0;
    }

    /* Mobile Dropdown styles */
    .nav-menu .nav-item-dropdown {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu .dropdown-toggle {
        justify-content: center;
        width: 100%;
    }
    
    .nav-menu .dropdown-menu {
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        border-left: 2px solid rgba(16, 185, 129, 0.35);
        box-shadow: none;
        padding: 5px 0 5px 15px;
        margin: 10px auto 0 auto;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .nav-menu .nav-item-dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .nav-menu .dropdown-item {
        justify-content: center;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .nav-menu .dropdown-item:hover {
        padding-left: 15px;
        background: transparent;
        color: var(--color-accent);
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Scroll Reveal Animations & Micro-interactions
   ========================================================================== */

.scroll-reveal {
    opacity: 0;
    transition: opacity 1.0s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.0s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-down {
    transform: translateY(-50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-scale {
    transform: scale(0.92);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered Delays for grid lists */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* Pulse animation for glow orbs */
.glow-orb {
    animation: orbFloat 25s infinite alternate ease-in-out, orbPulse 8s infinite alternate ease-in-out;
}

@keyframes orbPulse {
    0% { opacity: 0.8; }
    100% { opacity: 1.2; }
}

/* Floating animation for hero terminals/graphics */
.hero-graphic-box {
    animation: floatTerm 6s ease-in-out infinite alternate;
}

@keyframes floatTerm {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* ==========================================================================
   Infinite Partner Logo Slider Section
   ========================================================================== */
.partner-slider-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.partner-slider-section::before,
.partner-slider-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partner-slider-section::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary) 0%, rgba(11, 17, 15, 0) 100%);
}

.partner-slider-section::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary) 0%, rgba(11, 17, 15, 0) 100%);
}

.partner-slider-container {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.partner-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
    gap: 80px;
    padding-left: 40px;
}

.partner-logo-item {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.partner-logo-item img {
    max-height: 40px;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.5);
    transition: var(--transition);
}

.partner-logo-item:hover img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.08);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Horizontal Timeline / Work Process Section
   ========================================================================== */
.timeline-section {
    padding: 100px 0;
    position: relative;
    background: var(--bg-primary);
}

.timeline-horizontal-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 50px;
}

/* Stepper Track & Nodes */
.timeline-steps-wrapper {
    position: relative;
    margin-bottom: 50px;
    padding: 0 40px;
}

.timeline-progress-bar {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: rgba(17, 66, 50, 0.2);
    border-radius: 2px;
    z-index: 1;
}

.timeline-progress-fill {
    height: 100%;
    background: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
    width: 0%;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.timeline-step-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.step-node-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-muted);
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.step-node-label {
    margin-top: 10px;
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.step-node:hover .step-node-circle {
    border-color: var(--color-accent);
    color: #ffffff;
}

.step-node.active .step-node-circle {
    border-color: var(--color-accent);
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 0 15px var(--color-accent);
    transform: scale(1.1);
}

.step-node.active .step-node-label {
    color: var(--color-accent);
}

/* Stepper Carousel Viewport */
.timeline-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.timeline-carousel-viewport {
    flex-grow: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.timeline-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
}

.timeline-carousel-slide {
    flex-shrink: 0;
    width: 100%;
    padding: 10px;
}

.timeline-horizontal-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(15px);
    transition: var(--transition);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-horizontal-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--glow-shadow);
}

.timeline-step-badge {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.timeline-horizontal-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-horizontal-card p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Nav Buttons */
.timeline-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(17, 66, 50, 0.2);
    border: 1px solid var(--color-border);
    color: var(--color-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.timeline-nav-btn:hover:not(:disabled) {
    background: var(--color-accent);
    color: var(--bg-primary);
    border-color: var(--color-accent);
    box-shadow: 0 0 15px var(--color-accent);
}

.timeline-nav-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .timeline-steps-wrapper {
        padding: 0 10px;
    }
    .timeline-progress-bar {
        left: 10px;
        right: 10px;
    }
    .step-node-label {
        font-size: 0.75rem;
    }
    .timeline-horizontal-card {
        padding: 25px;
    }
    .timeline-nav-btn {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   FAQ Section Styles
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    position: relative;
    background: var(--bg-primary);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: var(--color-border-hover);
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: var(--glow-shadow);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    transition: var(--transition);
    gap: 20px;
}

.faq-question:focus {
    outline: none;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(17, 66, 50, 0.3);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 0.85rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--color-accent);
    color: var(--bg-primary);
    border-color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer-content {
    padding: 0 30px 24px 30px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(17, 66, 50, 0.1);
    padding-top: 20px;
}

/* ==========================================================================
   Aydınlık / Karanlık Tema (Light / Dark Theme)
   ========================================================================== */
body.light-theme {
    --bg-primary: #f2f6f4;
    --bg-secondary: #e6eae7;
    --bg-tertiary: #d8dfdb;
    --color-primary: #1d5b46;
    --color-primary-light: #2c8466;
    --color-text: #111a16;
    --color-text-muted: #51625a;
    --color-border: rgba(29, 91, 70, 0.25);
    --color-border-hover: rgba(16, 185, 129, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(29, 91, 70, 0.15);
    --glow-shadow: 0 0 25px rgba(16, 185, 129, 0.15);
}

body.light-theme h1, 
body.light-theme h2, 
body.light-theme h3, 
body.light-theme h4, 
body.light-theme h5, 
body.light-theme h6,
body.light-theme .logo,
body.light-theme .nav-link,
body.light-theme .faq-question,
body.light-theme .detail-sidebar-box h3 {
    color: #111a16 !important;
}

body.light-theme .nav-link:hover,
body.light-theme .nav-link.active {
    color: var(--color-accent) !important;
}

body.light-theme .hero-terminal {
    background: #0f1814;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

body.light-theme .partner-logo-item img {
    filter: brightness(0) invert(0) opacity(0.5);
}

body.light-theme .partner-logo-item:hover img {
    filter: brightness(0) invert(0) opacity(0.9);
}

body.light-theme .partner-slider-section::before {
    background: linear-gradient(to right, var(--bg-secondary) 0%, rgba(230, 234, 231, 0) 100%);
}

body.light-theme .partner-slider-section::after {
    background: linear-gradient(to left, var(--bg-secondary) 0%, rgba(230, 234, 231, 0) 100%);
}

body.light-theme .btn-secondary {
    background: rgba(29, 91, 70, 0.08);
    color: var(--color-primary);
    border-color: var(--color-border);
}

body.light-theme .btn-secondary:hover {
    background: var(--color-primary);
    color: #ffffff;
}

body.light-theme .glow-orb {
    opacity: 0.4;
}

body.light-theme .rich-content {
    color: #1a2721;
}

/* ==========================================================================
   3D Tilt Card Effects
   ========================================================================== */
.service-card, .project-card, .timeline-horizontal-card, .testimonial-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
}

.tilt-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 65%);
    z-index: 10;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .tilt-glare, 
.project-card:hover .tilt-glare,
.timeline-horizontal-card:hover .tilt-glare,
.testimonial-card:hover .tilt-glare {
    opacity: 1;
}

/* ==========================================================================
   Müşteri Yorumları Slayt (Testimonials Slider)
   ========================================================================== */
.testimonials-slider-container {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
    margin-top: 40px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
}

.testimonial-slide {
    flex-shrink: 0;
    width: 100%;
    padding: 15px;
    opacity: 0.2;
    transform: scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    position: relative;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(17, 66, 50, 0.2);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
    transform: scale(1.2);
}

/* ==========================================================================
   WhatsApp Floating Contact Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    animation: whatsappPulse 2.5s infinite alternate ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    background: #20ba5a;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.7);
    color: #ffffff;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
    }
    100% {
        box-shadow: 0 0 22px rgba(37, 211, 102, 0.7), 0 0 12px var(--color-accent);
    }
}

/* ==========================================================================
   Premium AI Chatbot Styles
   ========================================================================== */
.ai-chat-container {
    position: fixed;
    bottom: 30px;
    right: 105px;
    z-index: 999;
    font-family: inherit;
}

.ai-chat-trigger {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    animation: aiPulse 2.5s infinite alternate ease-in-out;
}

.ai-chat-trigger:hover {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.7);
}

.ai-chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 360px;
    height: 480px;
    background: rgba(20, 24, 33, 0.85);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.3s;
}

.ai-chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.ai-chat-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--color-border);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-avatar-glow {
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.ai-chat-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Custom Scrollbar for messages */
.ai-chat-messages::-webkit-scrollbar {
    width: 4px;
}
.ai-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}
.ai-chat-messages::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 10px;
}

.ai-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
    opacity: 0;
    transform: translateY(10px);
    animation: msgIn 0.3s forwards ease-out;
}

.ai-msg.user {
    align-self: flex-end;
    background: var(--color-primary);
    color: #ffffff;
    border-bottom-right-radius: 2px;
    box-shadow: 0 4px 10px rgba(17, 66, 50, 0.3);
}

.ai-msg.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    border-bottom-left-radius: 2px;
}

.ai-chat-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.01);
}

/* Animations */
@keyframes msgIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aiPulse {
    0% {
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    }
    100% {
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.7);
    }
}

/* Writing dots */
.ai-writing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    border-bottom-left-radius: 2px;
}
.ai-writing-dot {
    width: 6px;
    height: 6px;
    background: var(--color-text-muted);
    border-radius: 50%;
    animation: aiDotBounce 1.4s infinite ease-in-out both;
}
.ai-writing-dot:nth-child(1) { animation-delay: -0.32s; }
.ai-writing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes aiDotBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

/* Mobile responsive styles */
@media (max-width: 480px) {
    .ai-chat-container {
        bottom: 20px;
        right: 85px;
    }
    .ai-chat-window {
        width: 300px;
        height: 400px;
        bottom: 70px;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Premium Glassmorphic Browser Showcase Mockup */
.hero-showcase-browser {
    width: 90%;
    height: 85%;
    background: rgba(10, 16, 12, 0.45);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.browser-header {
    background: rgba(6, 10, 8, 0.85);
    padding: 10px 16px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.browser-dot.close { background: #ef4444; }
.browser-dot.minimize { background: #f59e0b; }
.browser-dot.maximize { background: #10b981; }

.browser-address {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    padding: 4px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
}

.browser-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.browser-action-dot {
    width: 4px;
    height: 4px;
    background: var(--color-text-muted);
    border-radius: 50%;
}

.browser-screen {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    background: #000;
}

.showcase-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.showcase-slide.active {
    opacity: 1;
    visibility: visible;
}

.showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.78) contrast(1.05);
    transition: transform 6s ease-in-out;
}

.showcase-slide.active img {
    transform: scale(1.08);
}

.showcase-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(6, 10, 8, 0.78);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 12px 18px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    max-width: 250px;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.showcase-slide.active .showcase-info {
    transform: translateY(0);
    opacity: 1;
}

.info-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.showcase-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    line-height: 1.3;
}

.showcase-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.showcase-arrow {
    background: rgba(6, 10, 8, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-arrow:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1);
}

.showcase-dots {
    display: flex;
    gap: 6px;
}

.showcase-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.showcase-dot.active {
    background: var(--color-accent);
    transform: scale(1.4);
    box-shadow: 0 0 8px var(--color-accent);
}


