/* Google Fonts - Poppins */
body {
    font-family: 'Poppins', sans-serif;
    color: #555c63;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222d35;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

strong {
    font-weight: 700;
}

/* Custom Colors */
:root {
    --primary-color: #efb700;
    --dark-color: #062135;
    --text-color: #555c63;
    --light-bg: #f8f8f8;
    --footer-bg: #757A80;
}

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

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Base Topbar */
.topbar {
    background-color: #232c34;
    color: #fff;
    font-size: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar a {
    color: #fff;
    margin-right: 25px;
    font-weight: 500;
}

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

.topbar i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 13px;
}

.topbar-divider {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 15px;
}

/* Header */
.header {
    background-color: #757A80;
    padding: 0;
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.logo {
    padding: 20px 0;
}

.logo img {
    max-height: 55px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav ul li {
    margin-left: 30px;
    position: relative;
    padding: 35px 0;
}

.main-nav ul li a {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.main-nav ul li.active a,
.main-nav ul li a:hover {
    color: var(--primary-color);
}

.main-nav ul li.active::after,
.main-nav ul li:hover::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 10;
}

.lang-switch img {
    margin-right: 5px;
    width: 20px;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 240px 0 160px;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 33, 53, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h5 {
    color: #fff;
    font-size: 35px;
    font-weight: 300;
    margin-bottom: 5px;
    line-height: 1.2;
}

.hero h2 {
    color: #fff;
    font-size: 85px;
    font-weight: 300;
    margin-bottom: 50px;
    line-height: 1;
}

.hero h2 strong {
    font-weight: 700;
}

.btn-custom {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-custom:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Sections Global */
section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 40px;
}

.subtitle {
    color: #c3002f;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 25px;
    font-weight: 400;
}

.section-title h2 strong {
    font-weight: 700;
}

.title-separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 30px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Base Image Wrapper styling similar to original */
.image-wrapper img {
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* About Section Overlay */
.about-section {
    position: relative;
    z-index: 10;
    margin-top: -120px;
    padding-bottom: 80px;
    padding-top: 0;
}

.about-container {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
}

.about-subtitle {
    color: var(--primary-color) !important;
    font-weight: 500;
}

.about-title {
    font-size: 38px;
    font-weight: 400;
    color: var(--dark-color);
}

.about-title strong {
    font-weight: 800;
}

.icon-card {
    border: 1px solid #f9f9f9;
    background: #fff;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.icon-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.icon-card h4 {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--dark-color);
}

.icon-card p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-color);
}

/* Yellow border on image */
.about-image-wrapper {
    position: relative;
    z-index: 1;
    padding-top: 25px;
    padding-left: 25px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 25px);
    height: calc(100% - 25px);
    border: 8px solid var(--primary-color);
    z-index: -1;
}

.about-image-wrapper img {
    box-shadow: none;
    border-radius: 0;
    position: relative;
    z-index: 2;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* Usage Areas */
.usage-box {
    display: flex;
    align-items: center;
    padding: 25px;
    background: #fff;
    border: 1px solid #eaeaea;
    transition: all 0.3s;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.usage-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.usage-box i {
    font-size: 38px;
    color: var(--primary-color);
    margin-right: 20px;
}

.usage-box h5 {
    margin: 0;
    font-size: 19px;
    font-weight: 400;
    color: var(--dark-color);
}

.usage-box h5 strong {
    font-weight: 700;
}

.btn-outline-custom {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--primary-color);
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-outline-custom.light {
    border-color: var(--primary-color);
    color: #fff;
}

.btn-outline-custom.light:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-outline-grey {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #777;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-outline-grey:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: #fff;
}

.btn-outline-white {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    background: transparent;
    letter-spacing: 1px;
}

.btn-outline-white:hover {
    background-color: #fff;
    color: var(--dark-color);
}

/* Products */
.products-section {
    padding-bottom: 80px;
}

.product-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.product-title {
    color: var(--dark-color);
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 0px;
}

.product-title strong {
    font-weight: 800;
}

.product-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: #eee;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-overlay-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75%;
    height: 35%;
    background-color: var(--primary-color);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px 25px;
    pointer-events: none;
}

.product-overlay-shape h3 {
    color: #fff;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

.product-overlay-shape h3 a {
    color: #fff;
    pointer-events: auto;
}

/* Career CTA */
.career-cta {
    background-color: var(--dark-color) !important;
    padding: 80px 0;
    background-image: url('https://akartekstil.com/wp-content/uploads/2022/10/service-background.png');
    background-blend-mode: overlay;
    background-position: center;
}

.career-cta h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
}

.career-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Production */
.production-section {
    background-color: #fff;
}

.production-list {
    margin-top: 40px;
}

.prod-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--dark-color);
    font-weight: 500;
}

.prod-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 20px;
}

.prod-item:hover i {
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: var(--footer-bg) !important;
    font-size: 15px;
    color: #999;
}

.footer-title {
    color: #fff;
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: #fff;
    transition: color 0.3s;
}

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

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

.contact-info li {
    margin-bottom: 20px;
    display: flex;
    line-height: 1.5;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 3px;
    transition: all 0.3s;
    margin-right: 10px;
}

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

.footer-bottom {
    background-color: #0e1317;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    padding: 25px 0;
}

/* Responsive */
@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .main-nav.mobile-open {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 99;
        border-top: 1px solid #eee;
    }

    .main-nav.mobile-open ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 0;
    }

    .main-nav.mobile-open ul li {
        width: 100%;
        margin: 0;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .main-nav.mobile-open ul li a {
        color: var(--dark-color) !important;
        display: block;
    }

    .main-nav.mobile-open ul li::after {
        display: none;
    }

    .hero {
        padding: 180px 0 160px;
    }

    .hero h5 {
        font-size: 24px;
    }

    .hero h2 {
        font-size: 45px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .product-item {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 150px 0 140px;
    }

    .hero h2 {
        font-size: 36px;
    }

    .usage-box {
        margin-bottom: 20px;
    }
}

/* Sticky Header Update */
.header {
    background-color: #757A80;
    padding: 0;
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    position: relative;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    border-bottom: 4px solid var(--primary-color);
    animation: slideDown 0.5s ease;
}

.header.sticky .main-nav ul li a {
    color: var(--dark-color);
}

.header.sticky .main-nav ul li.active a,
.header.sticky .main-nav ul li a:hover {
    color: var(--primary-color);
}

.header.sticky .mobile-menu-btn {
    color: var(--dark-color);
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}