/* Premium Dark Mode CSS for SPV Metal */
:root {
    --bg-dark: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text-main: #f0f0f5;
    --text-muted: #9ba1a6;
    --primary: #c39a3e; /* Golden/metallic accent */
    --primary-glow: rgba(195, 154, 62, 0.4);
    --secondary: #1d4ed8; /* Blue accent for technology */
    
    --glass-bg: rgba(15, 15, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #f0f0f5 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 3rem;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.dark-section {
    background-color: #0d0d12;
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid var(--bg-card);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.loader-text {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: 0.5; } }

/* Navbar - Glassmorphism */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

nav.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo .brand-logo {
    max-height: 50px; /* Reduced to fit navbar */
    object-fit: contain;
    transition: var(--transition-smooth);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-main);
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    border-left: 1px solid var(--glass-border);
    padding-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-btn:hover, .lang-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-card);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 2rem;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }

    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
}

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

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05); /* for parallax init */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Öndeki yazılar silindiği için arka planın net görünmesi sağlandı. Sadece en altta kesişim yumuşatıldı. */
    background: linear-gradient(180deg, rgba(10,10,12,0) 70%, rgba(10,10,12,1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: #000;
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    background-color: #dfb248;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.scroll-down:hover {
    opacity: 1;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* Marquee Section */
.marquee-section {
    background: linear-gradient(90deg, #111316 0%, #171410 100%);
    border-top: 1px solid rgba(195, 154, 62, 0.15); /* Subtle gold border */
    border-bottom: 1px solid rgba(195, 154, 62, 0.15);
    padding: 1.2rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-inner {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: #a0a4ab; /* Soft premium gray */
    align-items: center;
    gap: 0; /* Gaps will be handled by the group */
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
}

.marquee-inner span.highlight {
    color: #e2b74b; /* Vibrant premium gold */
    font-weight: 700;
    text-shadow: 0 0 12px rgba(195, 154, 62, 0.4);
}

.marquee-inner .dot {
    width: 6px;
    height: 6px;
    background: #c39a3e; /* Theme primary gold */
    border-radius: 50%;
}

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

/* Layout Splits */
.layout-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.layout-reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.split-image:hover img {
    transform: scale(1.05);
}

.split-text {
    flex: 1;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.split-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Glass Panels */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
}

.experience-card {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.experience-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Capabilities Cards */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cap-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.cap-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cap-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.cap-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cap-card:hover .cap-image img {
    transform: scale(1.1);
}

.cap-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--bg-card) 0%, transparent 100%);
}

.cap-content {
    padding: 2rem;
    position: relative;
}

.cap-icon {
    position: absolute;
    top: -24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #000;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px var(--primary-glow);
}

.cap-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cap-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.cap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cap-list li {
    font-size: 0.85rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.cap-list li i {
    color: var(--primary);
    font-size: 1rem;
}

/* Horizontal Gallery Scroll for Production Stages */
.gallery-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    margin-top: 3rem;
}

.gallery-scroll img {
    height: 350px;
    width: auto;
    border-radius: 12px;
    scroll-snap-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.gallery-scroll img:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 4px;
}

/* Masonry Projects (Real Images) */
.masonry-grid {
    column-count: 3;
    column-gap: 2rem;
    margin-top: 3rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.item-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.item-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.item-overlay span {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.masonry-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.masonry-item:hover .item-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Certificate Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.cert-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    height: 250px;
    transition: var(--transition-smooth);
}

.cert-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.cert-item:hover {
    transform: scale(1.03);
    border-color: var(--primary);
}

/* Specific Section Modifications */
.arge-img {
    height: 450px;
    width: 100%;
}

.message-icon {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    display: block;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    border-radius: 8px;
    animation: zoom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoom {
    from {transform:scale(0.9); opacity:0;}
    to {transform:scale(1); opacity:1;}
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* Footer */
footer {
    background-color: #050507;
    padding-top: 5rem;
    border-top: 1px solid var(--glass-border);
}

.footer-cta {
    max-width: 700px;
    margin: 0 auto 5rem;
}

.footer-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.footer-cta p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact li {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 992px) {
    .layout-split {
        flex-direction: column;
    }
    .layout-reverse {
        flex-direction: column;
    }
    .experience-card {
        right: 2rem;
        bottom: 2rem;
    }
    .masonry-grid {
        column-count: 2;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        transition: right 0.4s ease;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-links.active {
        right: 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .masonry-grid {
        column-count: 1;
    }
}

/* Helpers */
.text-center { text-align: center; }
.pointer-none { pointer-events: none; }
.mt-4 { margin-top: 1.5rem; }
.cursor-zoom { cursor: zoom-in; }

/* Clickable Design Items */
.clickable-detail {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.clickable-detail:hover {
    background: rgba(195, 154, 62, 0.1);
    transform: translateX(5px);
}

.clickable-detail i {
    transition: var(--transition-smooth);
}

.clickable-detail:hover i {
    transform: scale(1.2);
    color: var(--primary);
}

/* Detail Modal (Side Sidebar or Overlay) */
.detail-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.detail-modal.show {
    display: flex;
    opacity: 1;
}

.detail-modal-content {
    background: #111316;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    width: 100%;
    max-width: 1000px;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.detail-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.detail-modal-close:hover {
    background: var(--primary);
    color: #000;
}

.detail-modal-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-modal-img {
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 65vh;
    border-bottom: 1px solid var(--glass-border);
}

.detail-modal-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.detail-modal-text {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #16181d 0%, #111316 100%);
}

.detail-modal-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.detail-modal-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .detail-modal-img {
        max-height: 350px;
    }
    .detail-modal-text {
        padding: 2rem;
    }
}
.sector-group-header {
    text-align: left;
    margin: 4rem 0 2rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary);
}

.sector-group-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: var(--text-main);
}
