:root {
    --primary-color: #140f46;
    --secondary-color: #d63a1f;
    --text-color: #333;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
}

* {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.hero-title {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-title .company-name {
    color: var(--secondary-color);
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-description {
    color: #140F46CC;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

/* Section Titles */
.section-title {
    color: var(--secondary-color);
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;

}

.section-description {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.5;
}

.carousel-controls {
    display: flex;
    gap: 12px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    background: #ffffff;
    color: #6c757d;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.carousel-btn:hover {
    border-color: #dc3545;
    color: #dc3545;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

.product-content {
    padding: 24px 0 0 0;
}

.product-title {
    color: #1a365d;
    margin-bottom: 12px;
    font-family: "Inter";
    font-weight: 600;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;

}
.product-subtitle {
    color: var(--secondary-color);
    font-family: "Inter";
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;

}
.product-description {
    color: #000000CC;
    margin: 0;
    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0%;

}

.product-carousel {
    overflow: hidden;
}
.cards-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.product-carousel .card {
    flex: 0 0 auto;
}
.product-carousel .card:not(:last-child) {
    margin-right: 1rem;
}
.card {
    background: #ffffff;
    border-radius: 10px!important;
    border: none;
    overflow: hidden;
}
.card .card-img,
.card .card-img-top,
.card img {
    border-radius: 10px!important;
}

.factory-img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:16px;
}
.slide-text{
    color:#333;
    line-height:1.65;
    font-size:.97rem;
    margin-top:18px;
}

/* Careers Section */
.careers-section {
    padding: 80px 0;
    background: var(--white);
}

.job-card {
    border-radius: 15px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}


.job-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;

}

.job-experience {
    color: #D63A1FCC;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.job-type {
    color: #140F46CC;
    margin-bottom: 1rem;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;

}

.job-salary {
    color: #D63A1FCC;
    margin-bottom: 1rem;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.job-description {
    color: #000;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;

}

@media (max-width: 1199px) {
    .products-row {
        gap: 40px;
    }
    
    .left-section {
        flex: 0 0 280px;
    }
}

@media (min-width: 992px) {
    .product-carousel .card {
        width: calc((100% - 2rem) / 3);
    }
    .product-carousel .projects-cards {
        width: calc((100% - 1rem) / 2);
    }
    .col-lg-2 {
        flex: 0 0 auto;
        width: 20%;
    }
    .col-lg-10 {
        flex: 0 0 auto;
        width: 80%;
    }
}

@media (max-width: 992px) {
    .factory-img{
        height:260px;
    }
    .left-block{
        text-align:center;
        margin-bottom:20px;
    }
    .ctrl-btn{
        width:36px;
        height:36px;
    }

}

@media (max-width: 991px) {
    .products-row {
        flex-direction: column;
        gap: 40px;
    }

    .left-section {
        flex: none;
        text-align: center;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .carousel-controls {
        justify-content: center;
    }

    .product-card {
        flex: 0 0 calc(50% - 10px);
    }
    .factory-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .export-content {
        padding-left: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .products-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .right-section { 
        overflow: hidden; 
    }
    .carousel-container {
        overflow: hidden; 
    }
    .product-card {
        flex: 0 0 100%; 
        max-width: 100%;
        margin: 0; 
    }

    .product-image {
        height: 180px;
    }

    .product-content {
        padding: 20px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
    .factory-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-content,
    .factory-text,
    .project-info,
    .job-card {
        padding: 1.5rem;
    }

}

@media (max-width: 479px) {
    .section-title {
        font-size: 2rem;
    }

    .product-card {
        max-width: 280px;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .product-carousel .card {
        width: calc((100% - 1rem) / 2);
    }
}
@media (max-width: 575.98px) {
    .product-carousel .card {
        width: 100%;
        margin-right: 0 !important;
    }
}
@media (max-width: 991.98px) {
    .product-carousel .projects-cards {
        width: 100%;
        margin-right: 0 !important;
    }
}