@charset "UTF-8";

/* Basic Reset & CSS Variables */
:root {
    --bg-color: #ffffff; /* White background */
    --text-color: #333333; /* Dark text */
    --text-muted: #666666;
    --accent-color: #e50914; /* Red accent */
    --accent-hover: #cc0000;
    --card-bg: #ffffff;
    --glass-border: #eaeaea;
    --topbar-bg: #f4f5f7;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

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

@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}

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

/* Topbar */
.topbar {
    background-color: var(--topbar-bg);
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: #555;
    position: relative;
    z-index: 1001;
}

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

.topbar-left {
    display: flex;
    align-items: stretch;
}

.topbar-right {
    display: flex;
    align-items: stretch;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-right: 1px solid #e0e0e0;
    transition: color 0.3s;
}

.topbar-item:first-child {
    border-left: 1px solid #e0e0e0;
}



.topbar-item:hover {
    color: var(--accent-color);
}

.icon-red {
    color: var(--accent-color);
    font-size: 1rem;
}

.topbar-item.social-icon {
    padding: 0 0.9rem;
    color: #888;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(229, 9, 20, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 6px 15px rgba(229, 9, 20, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: var(--text-color);
    font-weight: 600;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.navbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Mega menu hizalamasi icin kritik */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 35px; /* Logo yuksekligini ihtiyaca gore ayarla */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-links > a, 
.nav-dropdown-toggle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
    cursor: pointer;
    display: block;
    padding: 0.5rem 0; /* Bridging the gap from top */
}

.nav-links > a:hover,
.nav-dropdown-toggle:hover,
.active-link {
    color: var(--accent-color) !important;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.mega-dropdown {
    position: static; /* Mega menunun navbar-flex'e gore hizalanmasini saglar */
}

.nav-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 0.3rem;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 1000;
    border-radius: 8px;
    padding: 1rem 0;
    border: 1px solid var(--glass-border);
    flex-direction: column;
}

/* Invisible bridge to keep hover state active while moving mouse down */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav-dropdown-menu a {
    padding: 0.6rem 1.5rem;
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background-color: #fafafa;
    color: var(--accent-color);
    padding-left: 1.8rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

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

/* Mega Menu Customizations */
.mega-menu {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    transform: none !important;
    max-width: none !important;
    padding: 2rem 0 !important;
    border-radius: 0 0 12px 12px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    background-color: #ffffff !important;
}

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

.mega-dropdown:hover .mega-menu {
    animation: fadeInMega 0.3s ease-out forwards;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.mega-column h4 {
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 0.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-column a {
    padding: 0.4rem 1rem !important;
    font-size: 0.8rem !important;
    white-space: normal !important;
    line-height: 1.3;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1002;
    padding: 0.5rem;
}

.mobile-cta {
    display: none !important; /* Hide on desktop */
    margin-top: 1rem;
    text-align: center;
}

.desktop-cta {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #fafafa;
    overflow: hidden;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    width: 100%;
}

.hero-content {
    flex: 1; /* Actually flex: 0 0 50% is better if it shouldn't push the image */
    max-width: 50%;
    text-align: left;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50vw;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    opacity: 0;
    animation: slideLeft 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.2s;
    z-index: 1;
    pointer-events: none;
}

.hero-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    object-position: right center;
    border-radius: 0;
    box-shadow: none;
    transform: scale(1.05);
    transition: transform 0.5s ease;
    pointer-events: auto;
}

.hero-img:hover {
    transform: scale(1.08); /* slightly bumps */
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    opacity: 0;
    animation: slideRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.15s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    opacity: 0;
    animation: slideRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Ticker Band */
.ticker-band {
    background-color: #141414; /* Fixed explicit dark grey */
    color: #fff;
    padding: 0.8rem 0; /* Reduced to make band narrower */
    margin-top: 1rem; /* Gap reduced by 75% */
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    animation: scrollTicker 30s linear infinite;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.ticker-content span {
    display: inline-block;
    padding-right: 0.5rem;
}

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

/* Typography Utilities */
.nowrap {
    white-space: nowrap;
}
br.mobile-break {
    display: none;
}

/* CTA Banner */
.cta-banner {
    background-color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.cta-banner-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-banner-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.cta-banner-btn:hover {
    transform: scale(1.06) !important;
    background-color: var(--accent-color) !important;
    box-shadow: 0 6px 18px rgba(229, 9, 20, 0.28) !important;
}

/* Services */
.services {
    padding: 5rem 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
}

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

.service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.08);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
    height: 72px; /* Lock height so all subsequent h3 headers start at exact same line */
}

.service-card .icon .service-icon-img {
    height: 72px; /* Increased by 150% */
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.service-card .icon .service-icon-img.hover {
    position: absolute;
    left: 0;
    opacity: 0;
}

.service-card:hover .icon .service-icon-img.base {
    opacity: 0;
}

.service-card:hover .icon .service-icon-img.hover {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #111;
    min-height: 3.2rem; /* Reserve 2 lines of space so all paragraphs underneath align perfectly */
}

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

/* About */
.about {
    padding: 5rem 0;
    background-color: #fafafa;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    color: var(--text-muted);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
}

/* Stats Banner */
.stats-banner {
    background: #ffffff;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 4rem;
    color: var(--accent-color);
    display: inline-block;
    margin: 0;
    font-weight: 800;
}

.stat-item .plus {
    font-size: 3.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

.stat-item p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}


@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1.5rem;
    }
    .stat-item h3 {
        font-size: 3rem;
    }
    .stat-item .plus {
        font-size: 2.5rem;
    }
    .stat-item p {
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    background-color: #0c0c0c;
    color: #fff;
    padding: 5rem 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 1.8rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-logo img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.footer-col p, .footer-col a {
    color: #999;
    display: block;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.footer-social a:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px) !important;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem !important;
}

.contact-item i {
    color: var(--accent-color);
    margin-top: 0.3rem;
    font-size: 1.1rem;
}

.contact-item span, .contact-item a {
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(229,9,20,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: #c40812;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(229,9,20,0.6);
}

/* Responsive */
@media (max-width: 1100px) {
    .nav-links {
        gap: 1.2rem;
    }
    .nav-links > a, 
    .nav-dropdown-toggle {
        font-size: 0.9rem;
    }
    .logo img {
        height: 30px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        gap: 0.8rem;
    }
    .nav-links > a, 
    .nav-dropdown-toggle {
        font-size: 0.85rem;
    }
    .desktop-cta {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    .topbar-flex {
        flex-direction: column;
        gap: 1rem;
    }
    .topbar-item {
        border: none;
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .hamburger {
        display: block;
    }
    
    .desktop-cta {
        display: none !important;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        gap: 1rem;
    }

    .nav-links > a, 
    .nav-dropdown-toggle {
        font-size: 1.1rem !important;
        width: 100%;
        padding: 0.8rem 0;
        border-bottom: 1px solid #eee;
        text-align: left;
        color: var(--text-color);
    }

    .nav-dropdown {
        width: 100%;
        display: block;
    }

    .nav-dropdown.active .nav-dropdown-toggle {
        color: var(--accent-color) !important;
    }

    .nav-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        min-width: unset;
        margin-top: 0.5rem;
    }

    .mega-menu {
        transform: none !important;
        left: 0;
        width: 100%;
        padding: 0 !important;
    }
    
    .nav-dropdown.active .mega-menu {
        animation: none !important;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 1.5rem 1rem;
    }

    .mega-column h4 {
        font-size: 1.1rem;
        padding-bottom: 0.8rem;
        margin-bottom: 1.2rem;
        border-bottom: 2px solid var(--accent-color);
        padding-left: 0;
        letter-spacing: 1px;
    }
    
    .mega-column a {
        white-space: normal !important;
        padding: 0.7rem 0 !important;
        font-size: 1rem !important;
        border-bottom: 1px solid #f4f4f4;
        display: block;
    }

    .mega-column a:last-child {
        border-bottom: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none; 
    }
    
    .nav-dropdown:hover .nav-arrow {
        transform: rotate(0deg);
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        display: flex;
    }

    .nav-dropdown.active .nav-arrow,
    .nav-dropdown.active:hover .nav-arrow {
        transform: rotate(180deg);
    }

    .mobile-cta {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 1.5rem;
        padding: 1.1rem !important;
        font-size: 1.1rem !important;
        border-radius: 8px !important;
        text-align: center !important;
        color: #fff !important;
        background-color: var(--accent-color) !important;
        box-shadow: 0 8px 20px rgba(229,9,20,0.3) !important;
        border-bottom: none !important;
    }
    
    .mobile-cta:hover {
        transform: translateY(-2px) !important;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        display: block;
        margin-bottom: 1rem;
    }

    br.mobile-break {
        display: block;
    }
    
    .hero {
        flex-direction: column;
        min-height: auto;
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
        text-align: center;
        letter-spacing: -1px;
    }
    
    .hero h1 br.mobile-hide {
        display: none;
    }

    .hero-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 1rem;
        padding-bottom: 0; /* Remove bottom padding to close gap */
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero p {
        width: 85%;
        max-width: 500px;
        text-align: center;
        font-size: 0.95rem; /* Biraz daha kucuk */
        line-height: 1.5;
        margin: 0 auto 0 auto; /* Remove bottom margin to close gap completely */
    }

    .hero-buttons {
        display: none;
    }

    .hero-image {
        position: relative; 
        width: 100%;
        margin-top: 0;
        display: block;
        text-align: center;
        opacity: 0;
        animation: slideLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        animation-delay: 0.4s;
    }

    .hero-img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
        transform: scale(1.1); /* Bir tik daha buyuk */
        transform-origin: top center;
    }
    
    .about-flex {
        flex-direction: column;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

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

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

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Power Section */
.power-section {
    background-color: #000000;
    padding: 4.5rem 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--glass-border);
}

.power-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 3rem;
}

.power-text {
    flex: 1;
    margin-left: -2rem; /* Metni biraz daha sola kaydirmak icin */
}

.power-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.power-img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(255, 255, 255, 0.05));
    transform: scale(1.05); /* slightly bigger to stand out against black bg */
}

.power-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .power-flex {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .power-text {
        margin-left: 0;
    }
    .power-text h2 {
        font-size: 2.5rem;
    }
    .power-image {
        justify-content: center;
        margin-top: 1rem;
    }
    .power-img {
        max-width: 80%;
    }
}

/* Sale Section */
.sale-section {
    background-color: #ffffff;
    padding: 4.5rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.sale-img-col {
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .sale-img-col {
        justify-content: center;
    }
}

.text-red {
    color: var(--accent-color) !important;
}

/* Logo Slider Section */
.logo-slider-section {
    background-color: #f9f9f9;
    padding: 2.4rem 0;
    overflow: hidden;
}

.logo-slider-header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-slider-header p {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
}

.logo-slider-track-wrapper {
    overflow: hidden;
    position: relative;
    /* Fade edges for a premium look */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: logoScroll 30s linear infinite;
    gap: 0;
}

.logo-slider-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.logo-slide img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.45);
    transition: filter 0.35s ease, transform 0.35s ease;
}

.logo-slide:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.12);
    cursor: pointer;
}

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

@media (max-width: 768px) {
    .logo-slide img {
        height: 28px;
    }
    .logo-slider-track {
        gap: 0;
        animation-duration: 20s;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.9);
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    animation-name: zoom;
    animation-duration: 0.6s;
    object-fit: contain;
}
@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}
.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
}
.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}
.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.lightbox-prev {
    left: 0;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--accent-color);
}
#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-size: 1.2rem;
}
#lightbox-caption strong {
    color: #fff;
    font-size: 1.5rem;
}

/* Portfolio Hover Overlay */
.portfolio-image {
    position: relative;
    cursor: pointer;
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(229, 9, 20, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.portfolio-overlay i {
    color: white;
    font-size: 3rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-item:hover .portfolio-overlay i {
    transform: translateY(0);
}
