/* Global Styles */
:root {
    --primary-color: #1a3a5f;
    --secondary-color: #d4a017;
    --accent-color: #c1272d;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.justify-text {
    text-align: justify;
}

/* Header */
header {
    background-color: white;
    padding: 30px 0;
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logos-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.management-logo img, .company-logo img {
    height: 60px;
    max-width: 150px;
    object-fit: contain;
    transition: var(--transition);
}

.management-logo img:hover, .company-logo img:hover {
    transform: translateY(-3px);
}

.company-info {
    text-align: right;
}

.company-info h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.company-info p {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Global Language Toggle */
.global-language-toggle {
    background-color: white;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.global-language-toggle .container {
    display: flex;
    justify-content: center;
}

.global-lang-btn {
    background-color: white;
    border: 1px solid #ddd;
    padding: 8px 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius);
    margin-left: 5px;
}

.global-lang-btn:first-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    margin-left: 0;
}

.global-lang-btn:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.global-lang-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Tab Navigation */
.tab-navigation {
    background-color: var(--primary-color);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
}

.tab-navigation::-webkit-scrollbar {
    display: none; 
}

.tab-navigation .container {
    display: flex;
    justify-content: center; 
    min-width: max-content;
    padding: 0;
}

.tab-btn {
    background: none;
    border: none;
    color: white;
    padding: 20px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary-color);
}

.tab-btn i {
    margin-right: 10px;
}

/* Tab Content */
.tab-content {
    min-height: 70vh;
    padding: 0;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s;
    padding-top: 15px;
}

.tab-panel.active {
    display: block;
}

#home {
    padding-top: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.welcome-hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 80px;
    overflow: hidden;
}

.welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 58, 95, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.welcome-overlay .container {
    text-align: center;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
}

.hero-slider {
    width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    animation: slideFadeIn 0.6s ease-in-out;
    padding: 20px 0;
}

.hero-slide.active {
    display: flex;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-slide[data-slide="home"] h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.hero-slide[data-slide="home"] h1::after {
    display: none;
}

.hero-slide[data-slide="home"] p {
    color: white;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0;
}

.hero-slide[data-slide]:not([data-slide="home"]) h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    border: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.hero-slide[data-slide]:not([data-slide="home"]) p {
    color: white;
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.7;
}

.slide-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.cta-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.hero-slide[data-slide="home"] .company-description {
    max-width: 700px;
    color: white;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    margin: 0 0 30px 0;
}

.hero-slide[data-slide="home"] .welcome-stats {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin: 0;
}

.hero-slide[data-slide="home"] .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 220px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-slide[data-slide="home"] .stat-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.hero-slide[data-slide="home"] .stat-item i {
    font-size: 2rem;
    color: #d4a017;
}

.hero-slide[data-slide="home"] .stat-item h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: white;
}

.hero-slide[data-slide="home"] .stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.arrow-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 100;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.1);
}

.arrow-btn:active {
    transform: scale(0.95);
}

.arrow-btn:focus {
    outline: none;
}

/* About Section */
.about-section {
    margin-top: 10px;
    margin-bottom: 50px;
}

.about-section h2 {
    margin-top: 10px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.commitment-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    text-align: center;
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.commitment-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.commitment-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.commitment-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    max-width: 800px;
    margin: 0 auto;
}

.vision-mission-section {
    margin: 40px 0;
}

.vision-mission-section h2 {
    margin-top: 10px;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.vision-mission-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.vision-card, .mission-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.card-icon i {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.vision-card h3, .mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.vision-card p, .mission-card p {
    color: var(--dark-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.mission-card ol {
    padding-left: 20px;
    margin-bottom: 0;
}

.mission-card li {
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.6;
}

.addresses-section {
    margin-top: 30px;
    margin-bottom: 60px;
}

.addresses-section h3 {
    margin-top: 10px;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.addresses-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.address-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.address-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.address-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Products */
#products .container {
    padding-top: 15px;
}

#products h2 {
    margin-top: 10px;
}

.product-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.product-tab-btn {
    background-color: var(--light-color);
    border: 1px solid #ddd;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.product-tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.product-panel {
    display: none;
}

.product-panel.active {
    display: block;
    animation: fadeIn 0.5s;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-header img {
    width: 220px;
    height: 165px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-header h3 {
    font-size: 1.9rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.product-header p {
    font-size: 1.05rem;
    color: var(--dark-color);
    line-height: 1.5;
}

.product-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.table-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.table-container h4 {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.product-table thead th {
    background-color: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid var(--secondary-color);
}

.product-table tbody td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    transition: var(--transition);
}

.product-table tbody tr:hover {
    background-color: rgba(212, 160, 23, 0.15);
}

.product-table tbody tr:nth-child(even) {
    background-color: rgba(248, 249, 250, 0.5);
}

.product-table tbody td:first-child {
    font-weight: 500;
    color: var(--primary-color);
    background-color: rgba(26, 58, 95, 0.05);
    min-width: 150px;
}

.product-table tbody td:last-child {
    font-weight: 600;
    color: var(--secondary-color);
    background-color: rgba(248, 249, 250, 0.7);
    min-width: 100px;
}

.table-container:nth-child(2) .product-table tbody td:nth-child(2) {
    font-style: italic;
    color: var(--dark-color);
    background-color: rgba(212, 160, 23, 0.05);
    text-align: left;
    padding-left: 20px;
}

.table-container:nth-child(2) .product-table tbody td:nth-child(3) {
    font-weight: 600;
    color: var(--accent-color);
    background-color: rgba(26, 58, 95, 0.05);
    min-width: 120px;
}

/* Technologies */
#technologies .container {
    padding-top: 15px;
    padding-bottom: 40px;
}

#technologies h2 {
    margin-top: 10px;
}

.tech-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-color);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.tech-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tech-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tech-card p {
    color: var(--dark-color);
    line-height: 1.6;
}

/* Certificates */
#certificates .container {
    padding-top: 15px;
    padding-bottom: 40px;
}

#certificates h2 {
    margin-top: 10px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.certificate-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.certificate-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.certificate-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.certificate-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.certificate-info p {
    color: var(--dark-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    margin-bottom: 10px;
    align-items: center;
}

.footer-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-management img, .footer-company img {
    height: 50px;
    max-width: 130px;
    object-fit: contain;
    transition: var(--transition);
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 5px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-contact-details {
    display: flex;
    gap: 20px;
}

.footer-contact-block {
    flex: 1;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #ddd;
    font-size: 0.85rem;
    line-height: 1.3;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--secondary-color);
    width: 18px;
    text-align: center;
}

.copyright {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .logos-left {
        justify-content: center;
    }
    
    .company-info {
        text-align: center;
        border-top: 2px solid var(--secondary-color);
        padding-top: 20px;
    }
    
    .product-tables {
        grid-template-columns: 1fr;
    }
    
    .hero-slide {
        position: relative;
        z-index: 1;
    }
    
    .hero-slide[data-slide="home"] .stat-item {
        margin: 0;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .tab-navigation .container {
        justify-content: flex-start;
    }
    
    .tab-btn {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .product-header {
        flex-direction: column;
        text-align: center;
    }
    
    .product-header img {
        width: 100%;
        max-width: 250px;
        height: auto;
        object-fit: contain;
    }
    
    .product-header h3 {
        font-size: 1.5rem;
        margin-top: 15px;
    }
    
    .product-header p {
        font-size: 0.95rem;
    }
    
    .product-table {
        font-size: 0.9rem;
    }
    
    .product-table thead th,
    .product-table tbody td {
        padding: 10px;
    }
    
    .table-container:nth-child(2) .product-table tbody td:nth-child(2) {
        text-align: center;
        padding-left: 10px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-logos {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }
    
    .footer-management img, .footer-company img {
        height: 40px;
        max-width: 100px;
    }
    
    .footer-contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .welcome-hero {
        min-height: auto;
        height: 100vh;
        padding: 0;
    }
    
    .welcome-overlay {
        padding: 15px;
    }
    
    .welcome-overlay .container {
        padding: 0 5px;
    }
    
    .hero-slide {
        padding: 15px 0;
    }
    
    .hero-slide[data-slide="home"] h1,
    .hero-slide[data-slide]:not([data-slide="home"]) h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 10px;
        padding: 0 15px;
    }
    
    .hero-slide[data-slide="home"] p,
    .hero-slide[data-slide]:not([data-slide="home"]) p {
        font-size: 0.9rem;
        line-height: 1.3;
        padding: 0 20px;
        margin-bottom: 10px;
    }
    
    .hero-slide[data-slide="home"] .company-description {
        font-size: 0.8rem;
        line-height: 1.3;
        padding: 10px 15px;
        margin: 0 15px 15px;
        border-radius: 8px;
    }
    
    .hero-slide[data-slide="home"] .welcome-stats {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 15px;
    }
    
    .hero-slide[data-slide="home"] .stat-item {
        max-width: 100%;
        padding: 12px;
        border-radius: 8px;
    }
    
    .hero-slide[data-slide="home"] .stat-item i {
        font-size: 1.5rem;
    }
    
    .hero-slide[data-slide="home"] .stat-item h3 {
        font-size: 1.3rem;
    }
    
    .hero-slide[data-slide="home"] .stat-item p {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-top: 10px;
    }
    
    .arrow-navigation {
        padding: 0 5px;
        top: 45%;
    }
    
    .arrow-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        background-color: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-card {
        margin: 30px 0;
        padding: 25px 20px;
    }
    
    .commitment-card h3 {
        font-size: 22px;
    }
    
    .commitment-card p {
        font-size: 15px;
    }
    
    .certificate-card img {
        height: 150px;
        object-fit: contain;
        padding: 10px;
        background-color: #f9f9f9;
    }
    
    .certificate-info {
        padding: 15px;
    }
    
    .certificate-info h3 {
        font-size: 1.3rem;
    }
    
    .certificate-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-slide[data-slide="home"] h1,
    .hero-slide[data-slide]:not([data-slide="home"]) h1 {
        font-size: 1.4rem;
        padding: 0 10px;
    }
    
    .hero-slide[data-slide="home"] p,
    .hero-slide[data-slide]:not([data-slide="home"]) p {
        font-size: 0.85rem;
        padding: 0 15px;
        line-height: 1.2;
    }
    
    .hero-slide[data-slide="home"] .company-description {
        font-size: 0.75rem;
        padding: 8px 12px;
        margin: 0 10px 10px;
    }
    
    .hero-slide[data-slide="home"] .stat-item {
        padding: 10px;
    }
    
    .hero-slide[data-slide="home"] .stat-item i {
        font-size: 1.3rem;
    }
    
    .hero-slide[data-slide="home"] .stat-item h3 {
        font-size: 1.2rem;
    }
    
    .hero-slide[data-slide="home"] .stat-item p {
        font-size: 0.75rem;
    }
    
    .arrow-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .tab-btn {
        padding: 12px 15px;
        font-size: 0.8rem;
    }
    
    .footer-contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-logos {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .footer-management img, .footer-company img {
        height: 35px;
        max-width: 90px;
    }
    
    .product-header img {
        max-width: 200px;
    }
    
    .certificate-card img {
        height: 120px;
        padding: 8px;
    }
    
    .certificate-info h3 {
        font-size: 1.2rem;
    }
    
    .certificate-info p {
        font-size: 0.85rem;
    }
}