@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0F1019;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: #0F1019;
    z-index: 1000;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #FF0037;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF0037;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-switcher a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-switcher span {
    color: #FFFFFF;
}

.lang-switcher a.active {
    color: #FF0037;
    font-weight: 500;
}

/* Hamburger Menü - Desktop'ta gizli */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobil Sidebar - Desktop'ta gizli */
.mobile-sidebar {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: #0F1019;
    z-index: 1002;
    transition: top 0.3s ease;
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-sidebar.active {
    top: 0;
}

.sidebar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.sidebar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF0037;
    text-decoration: none;
}

.close-sidebar {
    background: none;
    border: none;
    color: #fff;
    position: absolute;
    right: 0;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.close-sidebar:hover {
    transform: rotate(90deg);
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.sidebar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.sidebar-links a:hover {
    color: #FF0037;
}

.sidebar-lang {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-lang a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sidebar-lang a.active {
    color: #FF0037;
}

.sidebar-lang span {
    color: rgba(255, 255, 255, 0.5);
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}


.hero {
    padding: 100px 4rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}


/* ----- PROJECTS BÖLÜMÜ BAŞLANGICI ----- */

.projects {
    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-left: 4rem;
    padding-right: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    line-height: 1.1;
}

.section-subtitle {
    color: #FF0037;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-align: center;
}


.projects-showcase {
    display: flex;
    flex-direction: column;
}

.project-item {
    text-align: left;
    margin-bottom: 6rem;
}

.project-item:last-child {
    margin-bottom: 0;
}

.project-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ACT Tracker Card */
.act-tracker-card {
    background: #1E1E1E;
    border-radius: 16px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 6rem;
    overflow: hidden;
}

.act-tracker-card .act-content {
    flex: 1;
    max-width: 500px;
}

.act-tracker-card .act-tag {
    color: #C0F205;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.act-tracker-card .act-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 24px 0;
    color: #C0F205;
}

.act-tracker-card .act-title span {
    color: #FFFFFF;
    display: block;
    font-weight: 300;
}

.act-tracker-card .act-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.act-tracker-card .act-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.act-tracker-card .act-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.act-tracker-card .act-btn.primary {
    background: #C0F205;
    color: #000000;
}

.act-tracker-card .act-btn.primary:hover {
    background: #a8d104;
    transform: translateY(-2px);
}

.act-tracker-card .act-btn.secondary {
    background: #0D0D0D;
    color: #FFFFFF;
    border: 2px solid #0D0D0D;
}

.act-tracker-card .act-btn.secondary:hover {
    background: #0D0D0D;
}

.act-tracker-card .tech-stack {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    align-items: center;
}

.act-tracker-card .tech-stack img {
    width: 32px;
    height: 32px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(0.2);
    cursor: pointer;
}


.act-tracker-card .act-images {
    display: flex;
    gap: 20px;
    align-items: center;
}

.act-tracker-card .act-images img {
    width: 220px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.act-tracker-card .act-images img:nth-child(2) {
    width: 240px;
}

/* Exper Bank Card - Mavi Tema */
.exper-bank-card {
    background: linear-gradient(135deg, #1A4D6D 0%, #2B7A9F 100%);
    overflow: hidden;
}

.exper-bank-card .act-tag {
    color: #85D8F5;
}

.exper-bank-card .act-title {
    color: #85D8F5;
}

.exper-bank-card .act-btn.primary {
    background: #85D8F5;
    color: #0A2840;
}

.exper-bank-card .act-btn.primary:hover {
    background: #6BC8E8;
}

.exper-bank-card .act-btn.secondary {
    background: #FFFFFF;
    color: #85D8F5;
    border-color: #FFFFFF;
}

.exper-bank-card .act-btn.secondary:hover {
    background: #FFFFFF;
}

.exper-bank-card .act-images {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.exper-bank-card .act-images img {
    width: 220px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.exper-bank-card .act-images img:nth-child(2) {
    width: 220px;
}

/* Coinoz Card - Turuncu Tema (Açık Arka Plan) */
.coinoz-card {
    background: #E8E8E8;
    overflow: hidden;
}

.coinoz-card .act-tag {
    color: #E67E22;
}

.coinoz-card .act-title {
    color: #E67E22;
}

.coinoz-card .act-description {
    color: #4A4A4A;
}

.coinoz-card .act-btn.primary {
    background: #E67E22;
    color: #FFFFFF;
}

.coinoz-card .act-btn.primary:hover {
    background: #D35400;
}

.coinoz-card .act-btn.secondary {
    background: #FFFFFF;
    color: #E67E22;
    border-color: #FFFFFF;
}

.coinoz-card .act-btn.secondary:hover {
    background: #FFFFFF;
}

.coinoz-card .act-images {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.coinoz-card .act-images img {
    width: 220px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.coinoz-card .act-images img:nth-child(2) {
    width: 240px;
}

/* Let VPN Card - Mor/Turuncu Tema */
.letvpn-card {
    background: linear-gradient(135deg, #6B5B95 0%, #7D6FA8 100%);
    overflow: hidden;
}

.letvpn-card .act-tag {
    color: #07051D;
}

.letvpn-card .act-title {
    color: #07051D;
}

.letvpn-card .act-description {
    color: #E8E8E8;
}

.letvpn-card .act-btn.primary {
    background: #07051D;
    color: #FFFFFF;
}

.letvpn-card .act-btn.primary:hover {
    background: #0D0A2E;
    color: #FFFFFF;
}

.letvpn-card .act-btn.secondary {
    background: #07051D;
    color: #FD5E00;
    border-color: #07051D;
}

.letvpn-card .act-btn.secondary:hover {
    background: #07051D;
}

.letvpn-card .act-images {
    display: flex;
    gap: 20px;
    align-items: center;
}

.letvpn-card .act-images img {
    width: 220px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.letvpn-card .act-images img:nth-child(2) {
    width: 240px;
}

/* Berst Fashion Card - Açık Gri Tema */
.berst-card {
    background: #C8C8C8;
    overflow: hidden;
}

.berst-card .act-tag {
    color: #4A4A4A;
}

.berst-card .act-title {
    color: #1E1E1E;
}

.berst-card .act-description {
    color: #4A4A4A;
}

.berst-card .act-btn.primary {
    background: #FFFFFF;
    color: #1E1E1E;
}

.berst-card .act-btn.primary:hover {
    background: #F0F0F0;
}

.berst-card .act-btn.secondary {
    background: #1E1E1E;
    color: #FFFFFF;
    border-color: #1E1E1E;
}

.berst-card .act-btn.secondary:hover {
    background: #2E2E2E;
}

.berst-card .act-images {
    display: flex;
    gap: 20px;
    align-items: center;
}

.berst-card .act-images img {
    width: 220px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.berst-card .act-images img:nth-child(2) {
    width: 240px;
}

/* BestBite Card - Yeşil/Sarı Tema */
.bestbite-card {
    background: linear-gradient(135deg, #096C47 0%, #0A7D52 100%);
    overflow: hidden;
}

.bestbite-card .act-tag {
    color: #FFFFFF;
}

.bestbite-card .act-title {
    color: #FFD700;
}

.bestbite-card .act-title span {
    color: #FFFFFF;
}

.bestbite-card .act-description {
    color: #E8E8E8;
}

.bestbite-card .act-btn.primary {
    background: #FFD700;
    color: #1E1E1E;
}

.bestbite-card .act-btn.primary:hover {
    background: #FFC700;
}

.bestbite-card .act-btn.secondary {
    background: #FFFFFF;
    color: #096C47;
    border-color: #FFFFFF;
}

.bestbite-card .act-btn.secondary:hover {
    background: #F0F0F0;
}

.bestbite-card .act-images {
    display: flex;
    gap: 20px;
    align-items: center;
}

.bestbite-card .act-images img {
    width: 220px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bestbite-card .act-images img:nth-child(2) {
    width: 240px;
}

/* Reverbe Card - Mavi/Koyu Tema */
.reverbe-card {
    background: #080808;
    overflow: hidden;
}

.reverbe-card .act-tag {
    color: #1DB954;
}

.reverbe-card .act-title {
    color: #1DB954;
}

.reverbe-card .act-description {
    color: #E8E8E8;
}

.reverbe-card .act-btn.primary {
    background: #1E1E1E;
    color: #1DB954;
}

.reverbe-card .act-btn.primary:hover {
    background: #1E1E1E;
}

.reverbe-card .act-btn.secondary {

    color: #1DB954;
}

.reverbe-card .act-images {
    display: flex;
    gap: 20px;
    align-items: center;
}

.reverbe-card .act-images img {
    width: 220px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.reverbe-card .act-images img:nth-child(2) {
    width: 240px;
}

/* ----- PROJECTS BÖLÜMÜ BİTİŞİ ----- */

.hero-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 40px;
}

.hero-text {
    flex-grow: 1;
}

.hero-text span {
    color: #FF0037;
    font-size: 1.5rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 2rem;
    max-width: 680px;
}

.cv-container {
    margin-top: 2rem;
}

.cv-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cv-link:hover {
    transform: translateY(-3px);
}

.cv-icon svg {
    width: 42px;
    height: 42px;
}

.cv-text strong {
    font-size: 1.5rem;
    color: #FFFFFF;
    font-weight: 600;
}

.cv-text span {
    font-size: 1.125rem;
    color: #FFFFFF;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.social-links a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-links a:hover img {
    transform: translateY(-5px);
}

.divider {
    border: none;
    border-top: 1px solid #25283B;
    margin: 4rem 0 4rem 0;
}

.divider2 {
    border: none;
    border-top: 1px solid #25283B;
}

.divider3 {
    border: none;
    border-top: 1px solid #25283B;
    margin: 4rem 0 4rem 0;
}



#contact .section-header {
    text-align: left;
    margin-bottom: 0;
    margin-top: 80px;
}

.contact-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: -80px;
}

.email-container {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.email-icon img {
    width: 32px;
    height: 32px;
    margin-top: 4px;
    filter: invert(15%) sepia(95%) saturate(6932%) hue-rotate(343deg) brightness(94%) contrast(120%);
}

.email-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-email {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #FF0037;
}

.email-note {
    font-size: 14px;
    color: #8E8E8E;
    margin: 0;
}

/* Footer Styles */
.contact-footer {
    padding: 60px 120px;
    background-color: #0F1019;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-reach {
    font-size: 14px;
    color: #FF0037;
    margin-bottom: 8px;
}

.contact-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

.contact-right .contact-email {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-right .contact-email:hover {
    color: #FF0037;
}



/*RESPONSIVE STYLES*/

@media (max-width: 992px) {
    .hero {
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cv-link {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

    /* Mobilde hamburger menüyü göster */
    .hamburger {
        display: flex;
    }

    /* Desktop lang-switcher'ı mobilde gizle */
    .navbar .lang-switcher {
        display: none;
    }

    .hero {
        padding: 80px 2rem 2rem;
    }

    .section-header {
        text-align: left;
    }

    .hero-image img {
        width: 320px;
        height: 400px;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }


    .projects {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 3rem;
    }

    .projects-showcase {
        padding-top: 1rem;
    }

    .section-title {
        font-size: 3rem;
        text-align: left;
    }

    .section-subtitle {
        color: #FF0037;
        font-size: 1rem;
        font-weight: 500;
        margin-top: 0.5rem;
        text-align: left;
        display: block;
    }

    .contact-layout {
        padding: 10px 0;
    }

    #contact .section-header {
        text-align: left;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .contact-content {
        justify-content: center;
        margin-top: 20px;
    }

    .email-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .email-text {
        align-items: center;
    }

    .contact-email {
        font-size: 24px;
    }

    .email-note {
        font-size: 13px;
    }

    .project-item {
        margin-bottom: 4rem;
    }

    .project-item:first-child {
        margin-top: 1.5rem;
    }

    .project-item img {
        width: 100%;
        height: auto;
        margin-bottom: 1.5rem;
    }

    /* ACT Tracker Responsive */
    .act-tracker-card {
        flex-direction: column-reverse;
        padding: 30px;
        gap: 30px;
        margin-top: 0;
    }

    .act-tracker-card .act-content {
        max-width: 100%;
        text-align: center;
    }

    .act-tracker-card .act-title {
        font-size: 32px;
    }

    .act-tracker-card .act-description {
        font-size: 14px;
    }

    .act-tracker-card .act-buttons {
        justify-content: center;
    }

    .act-tracker-card .act-btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }

    .act-tracker-card .act-images {
        width: 100%;
        justify-content: center;
        gap: 12px;
        align-items: flex-end;
        min-height: 280px;
        display: flex;
        padding-top: 1.5rem;
        margin-bottom: 0;
    }

    .act-tracker-card .act-images img {
        width: 38%;
        max-width: 200px;
    }

    .act-tracker-card .act-images img:nth-child(2) {
        width: 38%;
        max-width: 220px;
        transform: translateY(10px);
    }

    .act-tracker-card .act-content {
        padding: 30px;
        max-width: 100%;
        text-align: center;
    }

    .act-tracker-card .act-title {
        font-size: 32px;
    }

    .act-tracker-card .act-buttons {
        flex-direction: column;
        width: 100%;
    }

    .act-tracker-card .act-btn {
        width: 100%;
        justify-content: center;
    }

    .act-tracker-card .act-images {
        position: relative;
        width: 100%;
        height: 290px;
        justify-content: center;
        padding: 1.5rem 20px 0;
        align-items: flex-end;
    }

    .act-tracker-card .act-img-1,
    .act-tracker-card .act-img-2,
    .act-tracker-card .act-img-3 {
        position: relative;
        width: 30%;
        height: auto;
        max-height: 200px;
        right: auto;
        top: auto;
        margin: 0 5px;
    }

    .act-tracker-card .act-img-2 {
        width: 32%;
        max-height: 220px;
    }

    /* Exper Bank Mobil - Ekranlar kart içinde kalacak */
    .exper-bank-card .act-images {
        width: 100%;
        justify-content: center;
        gap: 12px;
        align-items: flex-end;
        min-height: 280px;
        display: flex;
        padding-top: 1.5rem;
        margin-bottom: 0;
    }

    .exper-bank-card .act-images img {
        width: 38%;
        max-width: 200px;
    }

    .exper-bank-card .act-images img:nth-child(2) {
        width: 38%;
        max-width: 220px;
    }

    /* Coinoz Mobil - Ekranlar kart içinde */
    .coinoz-card .act-images {
        align-items: flex-end;
        min-height: 280px;
        display: flex;
        padding-top: 1.5rem;
        margin-bottom: 0;
    }

    /* Let VPN Mobil - Ekranlar kart içinde */
    .letvpn-card .act-images {
        align-items: flex-end;
        min-height: 280px;
        display: flex;
        padding-top: 1.5rem;
        margin-bottom: 0;
    }

    /* Berst Fashion Mobil - Ekranlar kart içinde */
    .berst-card .act-images {
        align-items: flex-end;
        min-height: 280px;
        display: flex;
        padding-top: 1.5rem;
        margin-bottom: 0;
    }

    /* BestBite Mobil - Ekranlar kart içinde */
    .bestbite-card .act-images {
        align-items: flex-end;
        min-height: 280px;
        display: flex;
        padding-top: 1.5rem;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-image img {
        max-width: 280px;
        height: auto;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .projects {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .project-item {
        margin-bottom: 3rem;
    }

    .onyx-slide {
        width: calc(100vw - 3rem);
        margin-right: 10px;
    }

    .onyx-slider-container {
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .project-item img {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    /* ACT Tracker Mobile Adjustments */
    .act-tracker-card {
        height: auto;
        min-height: 350px;
        padding: 25px;
    }

    .act-tracker-card .act-content {
        padding: 20px;
    }

    .act-tracker-card .act-title {
        font-size: 28px;
    }

    .act-tracker-card .act-description {
        font-size: 13px;
    }

    .act-tracker-card .act-images {
        height: 200px;
        padding: 1rem 10px 0;
    }

    .act-tracker-card .act-img-1,
    .act-tracker-card .act-img-2,
    .act-tracker-card .act-img-3 {
        position: relative;
        width: 28%;
        height: auto;
        max-height: 180px;
        right: auto;
        top: auto;
        margin: 0 2%;
    }

    .act-tracker-card .act-img-2 {
        width: 30%;
        max-height: 190px;
    }
}

/* Footer Styles */
.main-footer {
    color: #fff;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    color: #999;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-social img:hover {
    opacity: 1;
}

/* Onyx Project Styles */
.onyx-project {
    margin: 0 0 4rem 0;
    width: 100%;
}

.onyx-header {
    margin-bottom: 2rem;
    text-align: left;
}

.onyx-header h2 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    line-height: 1.1;
}

.onyx-header .onyx-subtitle {
    color: #FF0037;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.2rem;
    display: block;
}

.onyx-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.onyx-slider,
.kargo-slider,
.reverbe-lp-slider {
    display: flex;
    gap: 10px;
    padding: 20px 0;
    animation: scroll-left 30s linear infinite;
    width: max-content;
    will-change: transform;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.onyx-slide {
    flex-shrink: 0;
    width: 500px;
    height: auto;
    background: transparent;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.onyx-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.reverbe-lp-slider .onyx-slide img {
    border: none;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-social {
        margin-top: 0.5rem;
    }

    .onyx-header {
        text-align: left;
    }

    .onyx-header h2 {
        font-size: 3rem;
        text-align: left;
    }

    .onyx-header .onyx-subtitle {
        text-align: left;
        margin-top: 0.5rem;
    }

    #contact .section-title {
        text-align: center;
    }

    #contact .section-subtitle {
        text-align: center;
    }

    .onyx-slide {
        width: calc(100vw - 4rem);
        padding: 5px;
        margin-right: 15px;
    }

    .onyx-slide img {
        max-width: 100%;
        height: auto;
        width: 100%;
        object-fit: contain;
    }

    .onyx-slider-container {
        overflow: hidden;
        margin: 0 -2rem;
        padding: 0 2rem;
        width: 100vw;
    }

    .onyx-slider,
    .kargo-slider,
    .reverbe-lp-slider {
        padding: 15px 0;
    }

    .onyx-slider-nav {
        width: calc(100% - 20px);
        margin: 0 auto;
    }

    .onyx-prev,
    .onyx-next,
    .kargo-prev,
    .kargo-next {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}