/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-color: #1e7e4a;
    --secondary-color: #d84a3c;
    --accent-color: #27ae60;
    --text-dark: #1a4d2e;
    --text-light: #5f7867;
    --bg-light: #f0f7f4;
    --bg-white: #ffffff;
    --border-color: #d4e8df;
    --success-color: #27ae60;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Graceful handling of broken images */
img.img-error {
    position: relative;
    min-height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

img.img-error::before {
    content: attr(alt);
    color: white;
    font-size: 1rem;
    text-align: center;
    padding: 20px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Language Switcher - Fancy Edition
   =================================== */
.language-switcher {
    position: fixed;
    top: 110px;
    right: 20px;
    z-index: 1001;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-switcher:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transform: translateY(-2px);
}

.lang-btn {
    padding: 10px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #165c38);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
    z-index: -1;
}

.lang-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.lang-btn:hover::after {
    width: 300px;
    height: 300px;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #165c38);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(30, 126, 74, 0.4),
                0 0 20px rgba(39, 174, 96, 0.3);
    transform: scale(1.05);
}

.lang-btn.active::before {
    opacity: 1;
}

.lang-btn:hover:not(.active) {
    background: linear-gradient(135deg, #f0f7f4, #e8f5ef);
    color: var(--primary-color);
    transform: scale(1.02);
}

.lang-btn.active:hover {
    box-shadow: 0 6px 20px rgba(30, 126, 74, 0.5),
                0 0 30px rgba(39, 174, 96, 0.4);
    transform: scale(1.08);
}

/* ===================================
   Header & Navigation - Fancy Edition
   =================================== */
.header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08),
                0 1px 0 rgba(255, 255, 255, 0.8) inset;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent-color),
        var(--secondary-color),
        var(--accent-color),
        transparent
    );
    opacity: 0.5;
}

.navbar {
    padding: 1.2rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: auto;
    height: 80px;
    object-fit: contain;
    max-width: 350px;
}

.logo-text h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.logo .tagline {
    font-size: 0.9rem;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 10px 20px;
    display: block;
    border-radius: 12px;
    background: transparent;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(39, 174, 96, 0.1), 
        rgba(216, 74, 60, 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: -1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--accent-color), 
        var(--secondary-color)
    );
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

.nav-menu a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover::after {
    width: 70%;
}

.nav-menu a.active {
    background: linear-gradient(135deg, 
        rgba(39, 174, 96, 0.15), 
        rgba(216, 74, 60, 0.15)
    );
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-menu a.active::after {
    width: 70%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(216, 74, 60, 0.1));
    border: 2px solid rgba(39, 174, 96, 0.2);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.2), rgba(216, 74, 60, 0.2));
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===================================
   Hero Section with Background Slider
   =================================== */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    overflow: hidden;
}

/* Background Image Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    animation: kenburns 20s ease-out infinite;
}

/* Ken Burns Effect (Subtle Zoom) */
@keyframes kenburns {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.8) 0%, rgba(30, 126, 74, 0.7) 100%);
    z-index: 1;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    transform: scale(1.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1.4s ease;
}

/* ===================================
   Certification Trust Bar
   =================================== */
.cert-trust-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1.2rem 0;
}

.cert-trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cert-trust-logos img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: opacity 0.2s, filter 0.2s;
}

.cert-trust-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: #b8432f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 74, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===================================
   Products Section
   =================================== */
.products {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 77, 46, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-view:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.product-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   Manufacturing Section
   =================================== */
.manufacturing {
    background: var(--bg-white);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 64px;
    width: 2px;
    height: calc(100% + 1rem);
    background: var(--border-color);
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    font-size: 1rem;
}

.manufacturing-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 10px;
}

.stat-item {
    text-align: center;
    color: var(--bg-white);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    background: var(--bg-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   Cultural Activities Section
   =================================== */
.culture {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fdfb 0%, #ffffff 50%, #f0f9f5 100%);
    position: relative;
    overflow: hidden;
}

.culture-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(30, 126, 74, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(39, 174, 96, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(46, 204, 113, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.culture .container {
    position: relative;
    z-index: 1;
}

/* Culture Gallery */
.culture-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.culture-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.culture-item:hover {
    transform: translateY(-8px);
}

.culture-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    width: 100%;
    background: linear-gradient(135deg, rgba(30, 126, 74, 0.08) 0%, rgba(39, 174, 96, 0.05) 100%);
    padding: 4px;
    box-shadow: 0 8px 25px rgba(30, 126, 74, 0.1),
                0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(30, 126, 74, 0.12);
}

.culture-item:nth-child(1) .culture-frame {
    background: linear-gradient(135deg, rgba(30, 126, 74, 0.1) 0%, rgba(39, 174, 96, 0.06) 100%);
}

.culture-item:nth-child(2) .culture-frame {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(46, 204, 113, 0.06) 100%);
}

.culture-item:nth-child(3) .culture-frame {
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(26, 188, 156, 0.06) 100%);
}

.culture-item:nth-child(4) .culture-frame {
    background: linear-gradient(135deg, rgba(30, 126, 74, 0.09) 0%, rgba(39, 174, 96, 0.05) 100%);
}

.culture-item:nth-child(5) .culture-frame {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.09) 0%, rgba(216, 74, 60, 0.04) 100%);
}

.culture-item:hover .culture-frame {
    box-shadow: 0 15px 45px rgba(30, 126, 74, 0.18),
                0 5px 15px rgba(0, 0, 0, 0.08),
                0 0 0 2px rgba(30, 126, 74, 0.15);
    border-color: rgba(30, 126, 74, 0.25);
    transform: scale(1.02);
}

.culture-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.3) 100%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 2;
}

.culture-frame img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    filter: brightness(0.95) saturate(1.05);
    z-index: 1;
}

.culture-item:hover .culture-frame img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1.1);
}

.culture-overlay {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: linear-gradient(135deg, 
        rgba(30, 126, 74, 0.92) 0%, 
        rgba(26, 77, 46, 0.88) 50%,
        rgba(30, 126, 74, 0.92) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.culture-item:hover .culture-overlay {
    opacity: 1;
}

.culture-content {
    text-align: center;
    color: var(--bg-white);
    padding: 1.5rem;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.culture-item:hover .culture-content {
    transform: translateY(0);
}

.culture-content i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
    color: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.culture-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.culture-content p {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.culture-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.culture-item:nth-child(1) .culture-frame {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.culture-item:nth-child(2) .culture-frame {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.culture-item:nth-child(3) .culture-frame {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.culture-item:nth-child(4) .culture-frame {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.culture-item:nth-child(5) .culture-frame {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.culture-item:hover .culture-frame {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
                0 0 0 2px rgba(255, 255, 255, 0.8),
                0 0 60px rgba(102, 126, 234, 0.4);
    transform: rotate(-1deg);
}

.culture-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.8) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.culture-item:hover .culture-frame::before {
    opacity: 1;
}

.culture-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.culture-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.culture-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(135deg, 
        rgba(26, 77, 46, 0.95) 0%, 
        rgba(22, 92, 56, 0.9) 50%,
        rgba(26, 77, 46, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.culture-item:hover .culture-overlay {
    opacity: 1;
}

.culture-content {
    text-align: center;
    color: var(--bg-white);
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.culture-item:hover .culture-content {
    transform: translateY(0);
}

.culture-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    animation: float 3s ease-in-out infinite;
}

.culture-item:nth-child(1) .culture-content i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.culture-item:nth-child(2) .culture-content i {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.culture-item:nth-child(3) .culture-content i {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.culture-item:nth-child(4) .culture-content i {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.culture-item:nth-child(5) .culture-content i {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.culture-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.culture-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.culture-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        transparent 40%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 60%, 
        transparent 100%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.culture-item:hover .culture-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===================================
   Blog Section
   =================================== */
.blog {
    background: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 1rem;
}

/* ===================================
   Certifications Section
   =================================== */
.certifications {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f5ef 100%);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.certificate-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.certificate-card:hover::before {
    transform: scaleX(1);
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.certificate-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 2px solid rgba(30, 126, 74, 0.1);
    transition: var(--transition);
}

.certificate-card:hover .certificate-logo {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(30, 126, 74, 0.15);
}

.certificate-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.certificate-content {
    flex: 1;
}

.certificate-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.certificate-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.certificate-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.certificate-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.certificate-meta i {
    color: var(--accent-color);
}

.certificate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-start;
}

.certificate-btn:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.certificate-btn i {
    font-size: 1rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    opacity: 0.9;
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 15px;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.85rem;
    background: var(--bg-white);
    padding: 0 5px;
    color: var(--accent-color);
}

.form-group select {
    cursor: pointer;
}

.contact-form button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-message {
    margin-top: 1rem;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    width: auto;
    height: 80px;
    object-fit: contain;
    max-width: 320px;
    margin-bottom: 1.5rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.footer-cert-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-cert-logos img {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.footer-cert-logos img:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
}

/* ===================================
   Product Details Modal
   =================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 15px;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-image {
    position: sticky;
    top: 0;
    height: fit-content;
}

.modal-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    max-height: 500px;
}

.modal-details {
    padding: 1rem 0;
}

.modal-details h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-short-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-full-details h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.modal-full-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.modal-full-details ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.6;
}

.modal-full-details ul li i {
    color: var(--success-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.modal-full-details p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.modal-actions .btn {
    flex: 1;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===================================
   Blog Post Modal
   =================================== */
.blog-modal-content {
    max-width: 1200px;
    max-height: 95vh;
}

.blog-modal-body {
    padding: 0;
    max-height: 95vh;
    overflow-y: auto;
}

.blog-modal-header {
    position: relative;
    margin-bottom: 2rem;
}

.blog-modal-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.blog-modal-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 1.5rem 2rem 1rem 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.blog-modal-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-modal-date::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
}

.blog-modal-category {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-modal-header h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin: 0 2rem;
    line-height: 1.3;
}

.blog-modal-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.blog-modal-author i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.blog-modal-content-area {
    padding: 0 2rem 2rem 2rem;
}

.blog-modal-content-area h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.blog-modal-content-area h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 1.5rem 0 0.8rem 0;
}

.blog-modal-content-area p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    text-align: justify;
    font-size: 1.05rem;
}

.blog-modal-content-area ul,
.blog-modal-content-area ol {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.blog-modal-content-area ul li,
.blog-modal-content-area ol li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.blog-modal-content-area strong {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--border-color);
    background: var(--bg-light);
    border-radius: 0 0 15px 15px;
}

.blog-modal-footer .btn {
    flex: 1;
    text-align: center;
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    transition: var(--transition);
    z-index: 998;
}

.scroll-top:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-top.show {
    display: flex;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .logo-image {
        height: 64px;
        max-width: 280px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .slider-dots {
        bottom: 25px;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .manufacturing-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cultural Activities Gallery */
    .culture-gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .culture-frame {
        border-radius: 14px;
    }
    
    .culture-content {
        padding: 1.3rem;
    }
    
    .culture-content h3 {
        font-size: 1.3rem;
    }
    
    .culture-content p {
        font-size: 0.9rem;
    }
    
    .culture-content i {
        font-size: 2.2rem;
    }

    .culture-content {
        padding: 1.5rem;
    }

    .culture-content i {
        font-size: 2.5rem;
    }

    .culture-content h3 {
        font-size: 1.3rem;
    }

    .culture-content p {
        font-size: 0.95rem;
    }

    .culture-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .products-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    /* Modal Responsive */
    .modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .modal-image {
        position: relative;
    }

    .modal-details h2 {
        font-size: 1.6rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    /* Blog Modal Responsive */
    .blog-modal-content {
        max-width: 95%;
        margin: 1rem;
    }

    .blog-modal-header img {
        height: 250px;
    }

    .blog-modal-header h1 {
        font-size: 1.6rem;
        margin: 0 1.5rem;
    }

    .blog-modal-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        margin: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .blog-modal-author {
        margin: 1rem 1.5rem;
    }

    .blog-modal-content-area {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .blog-modal-content-area h3 {
        font-size: 1.4rem;
    }

    .blog-modal-content-area h4 {
        font-size: 1.2rem;
    }

    .blog-modal-content-area p {
        font-size: 1rem;
    }

    .blog-modal-footer {
        flex-direction: column;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .slider-dots {
        bottom: 20px;
    }

    .slider-dots .dot {
        width: 8px;
        height: 8px;
        gap: 8px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .manufacturing-stats {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .certificate-card {
        padding: 1.5rem;
    }

    .certificate-logo {
        width: 100px;
        height: 100px;
        padding: 0.75rem;
    }

    .certificate-content h3 {
        font-size: 1.3rem;
    }

    /* Cultural Activities Gallery */
    .culture-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .culture-frame {
        border-radius: 12px;
    }
    
    .culture-content {
        padding: 1.2rem;
    }
    
    .culture-content h3 {
        font-size: 1.2rem;
    }
    
    .culture-content p {
        font-size: 0.85rem;
    }
    
    .culture-content i {
        font-size: 2rem;
    }

    .culture-frame {
        padding: 5px;
        aspect-ratio: 3/4;
    }

    .culture-content {
        padding: 1.2rem;
    }

    .culture-content i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .culture-content h3 {
        font-size: 1.1rem;
    }

    .culture-content p {
        font-size: 0.85rem;
    }

    .culture-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .language-switcher {
        top: 80px;
        right: 10px;
    }

    .lang-btn {
        padding: 6px 15px;
        font-size: 12px;
    }

    .logo-image {
        height: 52px;
        max-width: 230px;
    }

    .footer-logo {
        height: 65px;
        max-width: 250px;
    }

    /* Modal Mobile */
    .modal-content {
        width: 95%;
        border-radius: 10px;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }

    .modal-details h2 {
        font-size: 1.4rem;
    }

    .modal-full-details h3 {
        font-size: 1.1rem;
    }

    /* Blog Modal 480px */
    .blog-modal-content {
        width: 95%;
        max-height: 100vh;
    }

    .blog-modal-header img {
        height: 200px;
        border-radius: 10px 10px 0 0;
    }

    .blog-modal-header h1 {
        font-size: 1.4rem;
        margin: 0 1rem;
    }

    .blog-modal-meta {
        margin: 1rem;
        font-size: 0.85rem;
    }

    .blog-modal-author {
        margin: 1rem;
        font-size: 0.9rem;
    }

    .blog-modal-content-area {
        padding: 0 1rem 1rem 1rem;
    }

    .blog-modal-content-area h3 {
        font-size: 1.2rem;
    }

    .blog-modal-content-area h4 {
        font-size: 1.1rem;
    }

    .blog-modal-content-area p {
        font-size: 0.95rem;
    }

    .blog-modal-footer {
        padding: 1rem;
    }
}
