/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.3) 0%, rgba(253, 230, 138, 0.2) 50%, rgba(254, 243, 199, 0.3) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(251, 191, 36, 0.1);
    padding: 0.5rem 0;
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: -5px;
}

.nav-logo span {
    font-size: 0.8rem;
    color: #64748b;
    display: block;
}

/* Base Navigation Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        transition: none;
        z-index: auto;
        backdrop-filter: none;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0;
        margin: 0;
        border-radius: 0;
        background: none !important;
        transform: none !important;
    }
    
    .nav-link:hover {
        background: none !important;
        transform: none !important;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #2563eb;
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .hamburger {
        display: none;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(254, 243, 199, 0.95) 0%, rgba(253, 230, 138, 0.95) 50%, rgba(254, 243, 199, 0.95) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 99;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        margin: 0.5rem 0;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(37, 99, 235, 0.1);
        transform: scale(1.05);
    }
    
    .nav-link::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(59, 130, 246, 0.6));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 100px 0 80px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 20%, #fde68a 40%, #fbbf24 60%, #fde68a 80%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(253, 230, 138, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(254, 243, 199, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(251, 191, 36, 0.04) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(251, 191, 36, 0.03) 20px,
            rgba(251, 191, 36, 0.03) 40px
        );
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-5px) rotate(0.5deg);
    }
}

.about-content {
    display: flex;
    justify-content: center;
}

.about-enhanced {
    max-width: 900px;
    width: 100%;
}

.about-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1rem;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text h3:nth-of-type(3)::after {
    display: none;
}

.company-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-item i {
    font-size: 1.5rem;
    color: #2563eb;
    background: white;
    padding: 0.8rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.highlight-item strong {
    color: #1e293b;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.2rem;
}

.highlight-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 3rem 0;
}

.mission-box, .vision-box {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.mission-box {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: #10b981;
}

.mission-box:hover {
    border-color: #059669;
    background: linear-gradient(135deg, #ecfdf5, #a7f3d0);
}

.vision-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #2563eb;
}

.vision-box:hover {
    border-color: #1d4ed8;
    background: linear-gradient(135deg, #eff6ff, #bfdbfe);
}

.mission-box::before, .vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-box:hover::before {
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    opacity: 1;
}

.vision-box:hover::before {
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
    opacity: 1;
}

.box-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mission-box:hover .box-icon {
    transform: rotate(360deg) scale(1.1);
}

.vision-box:hover .box-icon {
    transform: rotate(360deg) scale(1.1);
}

.mission-box .box-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.vision-box .box-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.box-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.mission-box .box-content h4 {
    color: #065f46;
}

.vision-box .box-content h4 {
    color: #1e3a8a;
}

.box-content p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.mission-box .box-content p {
    color: #064e3b;
}

.vision-box .box-content p {
    color: #1e40af;
}

.directors {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    border: 2px solid #cbd5e1;
    position: relative;
}

.director {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: none;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.director:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.director::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.director:hover::before {
    opacity: 1;
}

.director-image {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid #2563eb;
    transition: all 0.3s ease;
}

.director:hover .director-image {
    border-color: #1d4ed8;
    transform: scale(1.05);
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.director:hover .director-image img {
    transform: scale(1.1);
}

.director-info {
    flex: 1;
}

.director h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.director-title {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1.5rem !important;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.director p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.about-text p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Infrastructure Section */
.infrastructure {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.infrastructure::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(37, 99, 235, 0.03) 10px,
        rgba(37, 99, 235, 0.03) 20px
    );
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50px);
    }
}

.infrastructure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.infrastructure-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6, #10b981);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.infrastructure-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease;
}

.standards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.standard-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #2563eb;
    position: relative;
    overflow: hidden;
}

.standard-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.6s ease;
}

.standard-item:hover::before {
    left: 100%;
}

.standard-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-left-color: #10b981;
}

.standard-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.standard-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #2563eb, #3b82f6, #10b981, #2563eb);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.standard-item:hover .standard-icon::after {
    opacity: 1;
}

.standard-item:hover .standard-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.standard-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.standard-item:hover .standard-content h4 {
    color: #2563eb;
}

.standard-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.standard-item:hover .standard-content p {
    color: #475569;
}

.infrastructure-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease backwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #2563eb, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.stat-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.stat-card:hover::after {
    width: 300px;
    height: 300px;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.stat-card:nth-child(2):hover .stat-icon {
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.stat-card:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.stat-card:nth-child(3):hover .stat-icon {
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.stat-content h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #10b981, #2563eb, #f59e0b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-content h4 {
    transform: scale(1.05);
}

.stat-content p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-content p {
    color: #1e293b;
    transform: translateY(-2px);
}

/* Products Section */
.products {
    background: linear-gradient(135deg, #ffffff 0%, #fee2e2 20%, #fecaca 40%, #fca5a5 60%, #fee2e2 80%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(252, 165, 165, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(254, 202, 202, 0.08) 0%, transparent 40%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(252, 165, 165, 0.02) 20px,
            rgba(252, 165, 165, 0.02) 40px
        );
    animation: shimmer 15s linear infinite;
}

/* Product Slideshow */
.product-slideshow {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    color: white;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(5px);
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slide-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slide-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.slide-btn i {
    color: #333;
    font-size: 1.2rem;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    pointer-events: none;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    border: 2px solid transparent;
}

.indicator.active {
    background: #fca5a5;
    border-color: #fca5a5;
}

.indicator:hover {
    background: rgba(252, 165, 165, 0.8);
    transform: scale(1.2);
}

@keyframes shimmer {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(40px) translateY(40px);
    }
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    padding: 1rem;
    box-sizing: border-box;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-content {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #10b981, #059669);
}

.product-icon i {
    font-size: 1.5rem;
    color: white;
}

.product-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.product-card:hover h3 {
    color: #2563eb;
}

.product-card > p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.product-specs {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin-top: auto;
}

.product-specs h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-specs h4::before {
    content: '⚙️';
    font-size: 1.2rem;
}

.product-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-specs li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-specs li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.product-specs li:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 25%, #a5b4fc 50%, #818cf8 75%, #6366f1 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 30px,
            rgba(255, 255, 255, 0.03) 30px,
            rgba(255, 255, 255, 0.03) 60px
        );
    animation: slidePattern 25s linear infinite;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    opacity: 0.2;
    line-height: 1;
}

.service-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-text p {
    color: #64748b;
    line-height: 1.6;
}

/* Worldwide Section */
.worldwide {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 20%, #e0f2fe 40%, #bae6fd 60%, #e0f2fe 80%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.worldwide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(147, 197, 253, 0.06) 0%, transparent 50%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(59, 130, 246, 0.02) 40px,
            rgba(59, 130, 246, 0.02) 80px
        );
    animation: float 25s ease-in-out infinite;
}

.worldwide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.worldwide-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.worldwide-text p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.worldwide-map {
    text-align: center;
}

.worldwide-map img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.worldwide-map img:hover {
    transform: scale(1.02);
}

.industries-section {
    position: relative;
    z-index: 1;
}

.industries-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.industries-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 2px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.industry-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.industry-item i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.industry-item:hover i {
    transform: scale(1.1);
    color: #2563eb;
}

.industry-item span {
    display: block;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}
.quality {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 25%, #86efac 50%, #4ade80 75%, #22c55e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.quality::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 25px,
            rgba(255, 255, 255, 0.04) 25px,
            rgba(255, 255, 255, 0.04) 50px
        );
    animation: float 18s ease-in-out infinite;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quality-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.quality-text p {
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.quality-list {
    list-style: none;
}

.quality-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #475569;
}

.quality-list i {
    color: #10b981;
    font-size: 1.2rem;
}

.quality-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.quality-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.quality-feature i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.quality-feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.quality-feature p {
    color: #64748b;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 20%, #c7d2fe 40%, #a5b4fc 60%, #c7d2fe 80%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(165, 180, 252, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 75% 75%, rgba(199, 210, 254, 0.08) 0%, transparent 45%),
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 35px,
            rgba(165, 180, 252, 0.03) 35px,
            rgba(165, 180, 252, 0.03) 70px
        );
    animation: wave 20s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-10px) translateY(-5px) rotate(1deg);
    }
    50% {
        transform: translateX(10px) translateY(5px) rotate(-1deg);
    }
    75% {
        transform: translateX(-5px) translateY(-10px) rotate(0.5deg);
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-top: 0.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #64748b;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Human Verification (CAPTCHA) Styles */
.captcha-group {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.captcha-label {
    display: block;
    margin-bottom: 10px;
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.captcha-text {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    min-width: 150px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.captcha-container input[type="text"] {
    flex: 1;
    min-width: 120px;
    padding: 10px 15px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.captcha-container input[type="text"]:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Responsive CAPTCHA */
@media (max-width: 768px) {
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-text {
        text-align: center;
        min-width: auto;
    }
    
    .captcha-container input[type="text"] {
        min-width: auto;
    }
}

/* Floating Home Button */
.floating-home-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.floating-home-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-home-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
    transform: translateY(-3px);
}

.floating-home-btn:active {
    transform: translateY(-1px);
}

.floating-home-btn i {
    transition: transform 0.3s ease;
}

.floating-home-btn:hover i {
    transform: scale(1.1);
}

/* Responsive Floating Button */
@media (max-width: 768px) {
    .floating-home-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .floating-home-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section Mobile */
    .hero {
        height: calc(var(--vh, 1vh) * 100);
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
        min-width: 200px;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 40px;
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }

    .about-text h3 {
        font-size: 1.6rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .about-text p {
        font-size: 1rem;
        padding: 0 1rem;
        line-height: 1.6;
    }

    .company-highlights {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin: 1.5rem 1rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 1rem;
    }

    .mission-box, .vision-box {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .box-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .box-content h4 {
        font-size: 1.3rem;
    }

    .box-content p {
        font-size: 0.95rem;
    }

    .directors {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        margin: 2rem 1rem;
    }

    .director {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .director-image {
        width: 120px;
        height: 120px;
    }

    .director h4 {
        font-size: 1.4rem;
    }

    .director-title {
        font-size: 1rem;
    }

    .director p {
        font-size: 0.95rem;
    }

    /* Infrastructure Section Mobile */
    .infrastructure {
        padding: 60px 0;
    }

    .infrastructure-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 1rem;
    }

    .infrastructure-text h3 {
        font-size: 1.6rem;
    }

    .infrastructure-text p {
        font-size: 1rem;
    }

    .standard-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .standard-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .standard-content h4 {
        font-size: 1.2rem;
    }

    .standard-content p {
        font-size: 0.95rem;
    }

    .infrastructure-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-content h4 {
        font-size: 1.8rem;
    }

    .stat-content p {
        font-size: 0.9rem;
    }

    /* Products Section Mobile */
    .products {
        padding: 60px 0;
    }

    .product-slideshow {
        margin: 0 1rem 30px;
        border-radius: 15px;
    }

    .slideshow-container {
        height: 300px;
    }

    .slide-caption {
        padding: 15px;
        font-size: 1rem;
    }

    .slide-btn {
        width: 40px;
        height: 40px;
    }

    .slide-btn i {
        font-size: 1rem;
    }

    .slide-indicators {
        bottom: 15px;
        gap: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .products-grid {
        gap: 2rem;
        padding: 0 1rem;
    }

    .product-card {
        border-radius: 15px;
    }

    .product-content {
        padding: 2rem 1.5rem;
    }

    .product-card h3 {
        font-size: 1.4rem;
    }

    .product-card > p {
        font-size: 0.95rem;
    }

    .product-specs {
        padding: 1rem;
    }

    .product-specs h4 {
        font-size: 1rem;
    }

    .product-specs li {
        font-size: 0.85rem;
    }

    /* Services Section Mobile */
    .services {
        padding: 60px 0;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        margin: 0 1rem 1.5rem;
    }

    .service-number {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .service-text h3 {
        font-size: 1.3rem;
    }

    .service-text p {
        font-size: 0.95rem;
    }

    /* Worldwide Section Mobile */
    .worldwide {
        padding: 60px 0;
    }

    .worldwide-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 1rem;
    }

    .worldwide-text h3 {
        font-size: 1.6rem;
    }

    .worldwide-text p {
        font-size: 1rem;
    }

    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
        padding: 0 1rem;
    }

    .industry-item {
        padding: 1.5rem 1rem;
    }

    .industry-item i {
        font-size: 1.8rem;
    }

    .industry-item span {
        font-size: 0.9rem;
    }

    /* Quality Section Mobile */
    .quality {
        padding: 60px 0;
    }

    .quality-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 1rem;
    }

    .quality-text h3 {
        font-size: 1.6rem;
    }

    .quality-text p {
        font-size: 1rem;
    }

    .quality-list li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .quality-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quality-feature {
        padding: 1.5rem;
        text-align: center;
    }

    .quality-feature i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .quality-feature h4 {
        font-size: 1.2rem;
    }

    .quality-feature p {
        font-size: 0.9rem;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 1rem;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.6rem;
    }

    .contact-info-item {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .btn-submit {
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 20px 1rem;
        font-size: 0.85rem;
    }
}

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

    /* Hero Section Small Mobile */
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-width: 180px;
    }

    /* Section Headers Small Mobile */
    .section-header h2 {
        font-size: 1.7rem;
    }

    .section-header p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    /* About Section Small Mobile */
    .about-text h3 {
        font-size: 1.4rem;
        padding: 0 0.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .company-highlights {
        padding: 1rem;
        margin: 1rem 0.5rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .mission-vision {
        margin: 1.5rem 0.5rem;
        gap: 1rem;
    }

    .mission-box, .vision-box {
        padding: 1.5rem 1rem;
    }

    .box-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .box-content h4 {
        font-size: 1.2rem;
    }

    .box-content p {
        font-size: 0.9rem;
    }

    .directors {
        padding: 1rem 0.5rem;
        gap: 1rem;
        margin: 1.5rem 0.5rem;
    }

    .director {
        padding: 1rem;
    }

    .director-image {
        width: 100px;
        height: 100px;
    }

    .director h4 {
        font-size: 1.2rem;
    }

    .director-title {
        font-size: 0.9rem;
    }

    .director p {
        font-size: 0.9rem;
    }

    /* Infrastructure Section Small Mobile */
    .infrastructure-text h3 {
        font-size: 1.4rem;
    }

    .infrastructure-text p {
        font-size: 0.9rem;
    }

    .standard-item {
        padding: 1rem;
    }

    .standard-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .standard-content h4 {
        font-size: 1.1rem;
    }

    .standard-content p {
        font-size: 0.9rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .stat-content h4 {
        font-size: 1.6rem;
    }

    .stat-content p {
        font-size: 0.85rem;
    }

    /* Products Section Small Mobile */
    .product-slideshow {
        margin: 0 0.5rem 20px;
    }

    .slideshow-container {
        height: 250px;
    }

    .slide-caption {
        padding: 10px;
        font-size: 0.9rem;
    }

    .slide-btn {
        width: 35px;
        height: 35px;
    }

    .slide-btn i {
        font-size: 0.9rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .products-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-content {
        padding: 1.5rem 1rem;
    }

    .product-card h3 {
        font-size: 1.2rem;
    }

    .product-card > p {
        font-size: 0.9rem;
    }

    .product-specs {
        padding: 0.8rem;
    }

    .product-specs h4 {
        font-size: 0.9rem;
    }

    .product-specs li {
        font-size: 0.8rem;
    }

    .product-image {
        height: 200px;
    }

    /* Services Section Small Mobile */
    .service-item {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem 1rem;
    }

    .service-number {
        font-size: 1.8rem;
    }

    .service-text h3 {
        font-size: 1.2rem;
    }

    .service-text p {
        font-size: 0.9rem;
    }

    /* Worldwide Section Small Mobile */
    .worldwide-text h3 {
        font-size: 1.4rem;
    }

    .worldwide-text p {
        font-size: 0.9rem;
    }

    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
        padding: 0 0.5rem;
    }

    .industry-item {
        padding: 1rem 0.5rem;
    }

    .industry-item i {
        font-size: 1.5rem;
    }

    .industry-item span {
        font-size: 0.8rem;
    }

    /* Quality Section Small Mobile */
    .quality-text h3 {
        font-size: 1.4rem;
    }

    .quality-text p {
        font-size: 0.9rem;
    }

    .quality-list li {
        font-size: 0.9rem;
    }

    .quality-feature {
        padding: 1rem;
    }

    .quality-feature i {
        font-size: 1.8rem;
    }

    .quality-feature h4 {
        font-size: 1.1rem;
    }

    .quality-feature p {
        font-size: 0.85rem;
    }

    /* Contact Section Small Mobile */
    .contact-info {
        padding: 1.5rem 1rem;
    }

    .contact-info h3 {
        font-size: 1.4rem;
    }

    .contact-info-item {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .btn-submit {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Footer Small Mobile */
    .footer-content {
        padding: 0 0.5rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 15px 0.5rem;
        font-size: 0.8rem;
    }

    /* Navigation adjustments for very small screens */
    .nav-link {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }

    .nav-logo h1 {
        font-size: 1.5rem;
    }

    .nav-logo span {
        font-size: 0.7rem;
    }

    /* Adjust section spacing for small screens */
    section {
        padding: 50px 0;
    }
}
