/* CSS Variables */
:root {
    --primary-color: #0A2342;
    --secondary-color: #FF4500;
    --accent-color: #008080;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --info-color: #2196F3;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --container-width: 1200px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #FF6347);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    margin-right: 10px;
    color: var(--secondary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
} */


/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: rotate(10deg);
    border-color: var(--accent-color);
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-color);
    line-height: 1.2;
    transition: var(--transition);
}

.logo-tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.logo:hover .logo-main {
    color: var(--secondary-color);
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-main {
        font-size: 1rem;
    }
    
    .logo-tagline {
        display: none; /* Hide tagline on very small screens */
    }
}

/* end */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    /* text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;*/
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
} 

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
 /**/
/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(108, 174, 255, 0.601), rgba(10, 35, 66, 0)),
        url('@img/banner-2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 69, 0, 0.1), transparent 70%);
}

.hero-overlay {
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    color: white;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Stats Banner */
.stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffffe4 100%);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%230A2342" opacity="0.02"/></svg>');
    background-size: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.stat-item:nth-child(2):hover {
    border-color: var(--accent-color);
}

.stat-item:nth-child(3):hover {
    border-color: var(--success-color);
}

.stat-item:nth-child(4):hover {
    border-color: var(--info-color);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 3rem 2.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Certifications Home Section */
.certifications-home {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.certifications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.certifications-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.certifications-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.standards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.standard-item {
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--accent-color);
}

.standard-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.standard-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.certifications-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cert-badge {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.cert-image {
    margin-bottom: 1rem;
}

.cert-image img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto;
}

.cert-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.cert-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cert-date {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--bg-light);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Manufacturing Excellence */
.manufacturing-excellence {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.manufacturing-excellence::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(28, 84, 151, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.manufacturing-excellence::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.manufacturing-excellence .container {
    position: relative;
    z-index: 1;
}

.excellence-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.excellence-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 500px;
}

.image-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.main-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 35, 66, 0.1), rgba(255, 69, 0, 0.05));
}

.secondary-image {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 45%;
    height: 45%;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
    border: 8px solid #ffffff;
    transform: rotate(5deg);
    transition: all 0.3s ease;
}

.secondary-image:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image .gallery-img {
    transform: scale(1.1);
}

.main-image:hover .gallery-img {
    transform: scale(1.2);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #ffffff;
    z-index: 3;
}

.image-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
}

.image-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, #FF4500, #1C5497);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    z-index: 4;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
    }
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 14px;
    white-space: nowrap;
}

.excellence-text {
    flex: 1;
    min-width: 300px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
}

.excellence-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0A2342;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.excellence-text>p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 48px;
    font-weight: 300;
}

.excellence-points {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.point {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    align-items: flex-start;
}

.point:nth-child(1) {
    border-left-color: #1C5497;
}

.point:nth-child(2) {
    border-left-color: #FF4500;
}

.point:nth-child(3) {
    border-left-color: #008080;
}

.point:nth-child(4) {
    border-left-color: #4CAF50;
}

.point:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.point-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5f7fa, #ffffff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1C5497;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.point:hover .point-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.point-content {
    flex: 1;
    min-width: 0;
}

.point-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0A2342;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.point-content p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
    word-wrap: break-word;
}

.excellence-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #ffffff, #f5f7fa);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e6ef;
}

.excellence-stats .stat {
    text-align: center;
    padding: 16px 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}

.excellence-stats .stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(transparent, #c1cad8, transparent);
}

.excellence-stats .stat:last-child::after {
    display: none;
}

.excellence-stats .stat h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FF4500;
    margin-bottom: 6px;
    line-height: 1;
    font-family: 'Poppins', monospace;
    word-break: break-word;
    max-width: 100%;
    padding: 0 5px;
}

.excellence-stats .stat p {
    font-size: 12px;
    color: #666666;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
    max-width: 100%;
    padding: 0 5px;
}

.excellence-text .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Featured Products */
.featured-products {
    padding: 5rem 0;
    background: var(--bg-light);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.featured-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.featured-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.featured-card:hover .featured-image {
    transform: scale(1.05);
}

.featured-content {
    padding: 2rem;
}

.featured-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.featured-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Testimonial */
.testimonial {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d6d 100%);
    color: white;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Global Presence */
.global-presence {
    padding: 5rem 0;
    background: var(--bg-light);
}

.presence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.region {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.region:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.region:nth-child(1):hover {
    border-top-color: var(--secondary-color);
}

.region:nth-child(2):hover {
    border-top-color: var(--accent-color);
}

.region:nth-child(3):hover {
    border-top-color: var(--success-color);
}

.region:nth-child(4):hover {
    border-top-color: var(--info-color);
}

.region-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.region h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.region p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.region-stats {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FF6347 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0b336a03 100%);
    color: white;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./@img/#');
    background-size: cover;
}

.page-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Page Styles */
.contact-page {
    padding: 3rem 0 5rem;
    background: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.info-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(5px);
    border-left-color: var(--secondary-color);
}

.info-icon {
    font-size: 1.8rem;
    margin-right: 1.5rem;
    color: var(--secondary-color);
    min-width: 40px;
    margin-top: 0.2rem;
}

.info-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.info-text p {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1rem;
    line-height: 1.6;
}

.info-text p strong {
    color: var(--primary-color);
    font-weight: 600;
    min-width: 120px;
    display: inline-block;
}

.info-text p em {
    color: var(--accent-color);
    font-style: italic;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.emergency-contact {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FF6347 100%);
    border-radius: var(--border-radius);
    color: white;
    margin-top: 2rem;
    border-left: 4px solid #ff0000;
}

.emergency-contact h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.emergency-contact strong {
    color: white;
}

/* Contact Form */
.contact-form {
    padding: 2.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    padding: 0.5rem;
    border: 2px dashed var(--border-color);
    background: var(--bg-light);
    cursor: pointer;
    color: var(--text-dark);
}

.file-upload input[type="file"]:hover {
    border-color: var(--accent-color);
    background: rgba(0, 128, 128, 0.05);
}

.file-upload small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    color: var(--text-dark);
    line-height: 1.6;
}

.checkbox label a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.checkbox label a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.form-note {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.6;
}

.btn .btn-text {
    margin-right: 8px;
}

.btn .btn-icon {
    font-size: 1.2rem;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.map-container {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    height: 400px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.map-placeholder:hover img {
    transform: scale(1.05);
}

.map-info {
    padding: 2.5rem;
}

.map-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.transport-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.transport-option {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.transport-option:hover {
    background: white;
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
}

.transport-option h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transport-option p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    line-height: 1.6;
}

/* Regional Offices */
.regional-offices {
    padding: 5rem 0;
    background: white;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.office-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.office-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.office-card:nth-child(1):hover {
    border-top-color: var(--secondary-color);
}

.office-card:nth-child(2):hover {
    border-top-color: var(--accent-color);
}

.office-card:nth-child(3):hover {
    border-top-color: var(--success-color);
}

.office-card:nth-child(4):hover {
    border-top-color: var(--info-color);
}

.office-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.office-card p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--secondary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d6d 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.cta-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.phone-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.phone-number:hover {
    color: var(--secondary-color);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* About Story */
.about-story {
    padding: 5rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.milestone {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.milestone:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.milestone h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.milestone:hover h3 {
    color: white;
}

.milestone p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.story-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transform: rotate(2deg);
    transition: var(--transition);
}

.story-image:hover {
    transform: rotate(0) scale(1.02);
}

.story-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: var(--transition);
}

.story-image:hover img {
    transform: scale(1.1);
}

/* Mission Vision */
.mission-vision {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.mv-card {
    padding: 3rem 2.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.mv-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.mv-list {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.mv-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.mv-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Values */
.values {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2.5rem 2rem;
    text-align: center;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-card:nth-child(1):hover {
    border-top-color: var(--secondary-color);
}

.value-card:nth-child(2):hover {
    border-top-color: var(--success-color);
}

.value-card:nth-child(3):hover {
    border-top-color: var(--accent-color);
}

.value-card:nth-child(4):hover {
    border-top-color: var(--info-color);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Values Beyond Business */
.values-beyond {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.beyond-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.beyond-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.beyond-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.beyond-image {
    height: 100%;
    overflow: hidden;
}

.beyond-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.beyond-card:hover .beyond-image img {
    transform: scale(1.1);
}

.beyond-content {
    padding: 2.5rem;
}

.beyond-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.beyond-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.beyond-content>p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.beyond-details {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.beyond-details p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.beyond-details ul {
    list-style: none;
    margin: 1rem 0;
}

.beyond-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.beyond-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Empowerment */
.empowerment {
    padding: 5rem 0;
    background: var(--bg-light);
}

.empowerment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.empowerment-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.empowerment-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.empowerment-image:hover img {
    transform: scale(1.1);
}

.empowerment-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.empowerment-list {
    list-style: none;
    margin: 2rem 0;
}

.empowerment-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.empowerment-list li:last-child {
    border-bottom: none;
}

.empowerment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.empowerment-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.empowerment-stats .stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

.empowerment-stats .stat h4 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.empowerment-stats .stat p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Manufacturing Details */
.manufacturing-details {
    padding: 5rem 0;
    background: white;
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.manufacturing-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.manufacturing-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.manu-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.manufacturing-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.manufacturing-item p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.manufacturing-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.manu-image {
    text-align: center;
}

.manu-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.manu-image:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.manu-image p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
}

/* Certifications */
.certifications {
    padding: 5rem 0;
    background: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.cert-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.cert-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.cert-item p {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.cert-desc {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: normal;
}

/* Team */
.team {
    padding: 5rem 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--bg-light);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-member .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Recognition Section */
.recognition {
    padding: 5rem 0;
    background: var(--bg-light);
}

.recognition-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.award:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.award-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.award-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.award-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Products Page Styles */
.products-page {
    padding: 3rem 0 5rem;
    background: white;
}

/* Category Navigation */
.category-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.cat-btn.active,
.cat-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cat-btn.active .cat-icon,
.cat-btn:hover .cat-icon {
    transform: scale(1.2);
}

.cat-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.mobile-category-selector {
    display: none;
    width: 100%;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background-color: white;
    color: var(--text-dark);
}

/* Category Sections */
.category-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.category-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    border-radius: var(--border-radius-lg);
    border-left: 5px solid var(--secondary-color);
}

.category-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-header p {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Category Slider */
.category-slider {
    margin-bottom: 4rem;
}

.slider-container {
    position: relative;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 2rem;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    min-height: 500px;
}

.slider-slide {
    min-width: 100%;
    display: none;
    padding: 2rem;
    align-items: center;
    gap: 3rem;
}

.slider-slide.active {
    display: flex;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-height: 400px;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.slide-image:hover img {
    transform: scale(1.05);
}

.slide-content {
    flex: 1;
    padding: 1rem;
}

.slide-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.slide-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slide-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.slide-features i {
    color: var(--success-color);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.slider-prev,
.slider-next {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.dot:hover:not(.active) {
    background: var(--text-light);
}

/* Auto-play Controls */
.slider-auto {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.auto-toggle {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.auto-toggle:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.auto-toggle.active {
    background: var(--secondary-color);
}

/* Current Variants Display */
.current-variants {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.current-variants h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.variant-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.variant-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.variant-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.variant-card:hover .variant-image {
    transform: scale(1.1);
}

.variant-content {
    padding: 1.5rem;
}

.variant-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.variant-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Product Gallery Styles */
.product-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.product-gallery-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.product-gallery-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-gallery-main {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
}

.product-gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-gallery-thumbnails {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    background: rgba(20, 20, 20, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    overflow-x: auto;
}

.product-thumbnail {
    width: 120px;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.product-thumbnail.active,
.product-thumbnail:hover {
    opacity: 1;
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 2;
}

.product-gallery-prev,
.product-gallery-next {
    background: rgba(255, 69, 0, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.product-gallery-prev:hover,
.product-gallery-next:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.product-gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 69, 0, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.8rem;
    z-index: 3;
    transition: all 0.3s ease;
}

.product-gallery-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg);
}

.product-gallery-info {
    position: absolute;
    bottom: calc(20vh + 20px);
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.product-gallery-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.product-gallery-autoplay {
    position: absolute;
    top: 20px;
    right: 80px;
    color: white;
    font-size: 0.9rem;
    background: rgba(0, 128, 0, 0.7);
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.product-gallery-autoplay:hover {
    background: rgba(0, 128, 0, 0.9);
}

.product-gallery-autoplay.paused {
    background: rgba(255, 69, 0, 0.7);
}

/* new */

/* Certifications Section Styles */
.certifications-home {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.certifications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.certifications-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.certifications-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.standards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.standard-item {
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--accent-color);
}

.standard-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.standard-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.certifications-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cert-badge {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.cert-image {
    margin-bottom: 1rem;
}

.cert-image img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto;
}

.cert-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.cert-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cert-date {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--bg-light);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Certifications Grid */
.certifications {
    padding: 5rem 0;
    background: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.cert-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    min-width: 160px;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: white;
}

.cert-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(0);
    transition: filter 0.3s ease;
}

.cert-item:hover img {
    filter: grayscale(0);
}

.cert-item p {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.cert-desc {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: normal;
}

/* Recognition Section */
.recognition {
    padding: 5rem 0;
    background: var(--bg-light);
}

.recognition-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.award:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left: 4px solid var(--secondary-color);
}

.award-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
}

.award-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.award-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Responsive Design for Certifications */
@media (max-width: 1024px) {
    .certifications-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-display {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .certifications-display {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recognition-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-badge {
        padding: 1rem;
    }
    
    .cert-image img {
        width: 80px;
        height: 80px;
    }
}


/* end */

/* Product Grid Styles */
.product-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e6ef;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.product-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

.product-gallery-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 2;
}

.product-card:hover .product-gallery-btn {
    opacity: 1;
}

.product-gallery-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

/* Product Details Modal */
.product-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.product-details-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.product-details-container {
    position: relative;
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.product-details-modal.active .product-details-container {
    transform: translateY(0);
}

.product-details-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 69, 0, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.product-details-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg);
}

.product-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.product-details-gallery {
    position: relative;
}

.product-details-main-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-details-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-details-main-image:hover img {
    transform: scale(1.05);
}

.product-details-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.product-details-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.product-details-thumbnail.active,
.product-details-thumbnail:hover {
    opacity: 1;
    border-color: var(--secondary-color);
}

.product-details-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-details-info h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-details-info .price {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.product-details-specs {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.product-details-specs h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.product-details-specs ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}

.product-details-specs li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-details-specs li:last-child {
    border-bottom: none;
}

.product-details-specs .spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.product-details-specs .spec-value {
    color: var(--text-light);
}

.product-details-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.product-details-actions .btn {
    flex: 1;
    min-width: 200px;
}

/* Application Areas */
.applications {
    padding: 5rem 0;
    background: var(--bg-light);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.app-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.app-card:nth-child(1):hover {
    border-top-color: var(--secondary-color);
}

.app-card:nth-child(2):hover {
    border-top-color: var(--accent-color);
}

.app-card:nth-child(3):hover {
    border-top-color: var(--success-color);
}

.app-card:nth-child(4):hover {
    border-top-color: var(--info-color);
}

.app-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.app-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.app-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%23FF4500" opacity="0.05"/></svg>');
    background-size: cover;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-about {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links li a::before {
    content: '›';
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.footer-links li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-info strong {
    color: white;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slider-slide {
        flex-direction: column;
        text-align: center;
    }

    .slide-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .product-details-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-details-main-image {
        height: 350px;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .story-content,
    .empowerment-content,
    .contact-layout,
    .certifications-content,
    .excellence-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .standards-grid {
        grid-template-columns: 1fr;
    }

    .beyond-card {
        grid-template-columns: 1fr;
    }

    .beyond-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .category-nav {
        display: none;
    }

    .mobile-category-selector {
        display: block;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .features-grid,
    .mv-grid,
    .values-grid,
    .team-grid,
    .applications-grid,
    .offices-grid,
    .faq-grid,
    .certifications-display,
    .presence-grid,
    .manufacturing-grid,
    .recognition-content,
    .transport-info,
    .product-grid-view {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .slider-slide {
        padding: 1.5rem;
    }

    .slider-wrapper {
        min-height: 400px;
    }

    .slide-content h3 {
        font-size: 1.6rem;
    }

    .variants-grid {
        grid-template-columns: 1fr;
    }

    .manufacturing-images {
        grid-template-columns: 1fr;
    }

    .excellence-points {
        gap: 1rem;
    }

    .point {
        flex-direction: column;
        text-align: center;
    }

    .point-icon {
        margin-bottom: 0.5rem;
    }

    .empowerment-stats {
        grid-template-columns: 1fr 1fr;
    }

    .award {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cta-phone {
        flex-direction: column;
        padding: 1.5rem;
    }

    .phone-number {
        font-size: 1.3rem;
    }

    .product-details-content {
        padding: 20px;
    }

    .product-details-actions .btn {
        min-width: 100%;
    }

    .product-gallery-container {
        width: 95%;
        height: 85vh;
    }

    .product-gallery-main {
        height: 60vh;
    }

    .product-gallery-thumbnails {
        height: 15vh;
    }

    .product-thumbnail {
        width: 100px;
        height: 75px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .featured-grid,
    .cert-grid,
    .offices-grid {
        grid-template-columns: 1fr;
    }

    .empowerment-stats {
        grid-template-columns: 1fr;
    }

    .slider-controls {
        padding: 1rem;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }

    .slide-features {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cert-badge {
        padding: 1rem;
    }

    .cert-image img {
        width: 80px;
        height: 80px;
    }

    .region,
    .office-card,
    .faq-item,
    .info-item {
        padding: 1.5rem 1rem;
    }

    .beyond-content,
    .contact-form {
        padding: 1.5rem;
    }

    .emergency-contact {
        padding: 1.5rem;
    }

    .excellence-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .excellence-stats .stat::after {
        display: none;
    }

    .product-gallery-controls {
        padding: 0 10px;
    }

    .product-gallery-prev,
    .product-gallery-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .product-gallery-counter,
    .product-gallery-autoplay {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .product-gallery-autoplay {
        right: 70px;
    }

    .product-gallery-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .product-details-specs ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .excellence-text h2 {
        font-size: 1.8rem;
    }

    .excellence-stats .stat h3 {
        font-size: 1.5rem;
    }

    .excellence-stats .stat p {
        font-size: 11px;
    }

    .product-gallery-thumbnails {
        padding: 10px;
    }

    .product-thumbnail {
        width: 80px;
        height: 60px;
    }

    .product-details-actions {
        flex-direction: column;
    }

    .product-details-actions .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .footer,
    .cta,
    .contact-cta,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .hero,
    .page-header {
        margin-top: 0;
        padding: 2rem 0;
        background: #fff !important;
        color: #000;
    }

    .hero-title,
    .page-title {
        color: #000;
        text-shadow: none;
        font-size: 24pt;
    }

    .hero-subtitle,
    .page-subtitle {
        color: #000;
        font-size: 14pt;
    }

    .section-title {
        color: #000;
        font-size: 18pt;
    }

    .section-title::after {
        background: #000;
    }

    .feature-card,
    .stat-item,
    .value-card,
    .team-member,
    .app-card,
    .product-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }

    a {
        color: #000;
        text-decoration: none;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }

    .no-print {
        display: none !important;
    }
}





































































































































/* Contact Page Mobile Responsive Fixes */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .info-item {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
        flex-direction: column !important;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0 !important;
        margin-bottom: 0.5rem !important;
        font-size: 1.5rem !important;
    }
    
    .info-text {
        text-align: center;
    }
    
    .info-text h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .info-text p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.3rem !important;
    }
    
    .emergency-contact {
        padding: 1rem !important;
        margin-top: 1.5rem !important;
        text-align: center;
    }
    
    .emergency-contact h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .emergency-contact p {
        font-size: 0.9rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .map-container {
        margin: 0 -20px !important;
        border-radius: 0 !important;
    }
    
    .map-placeholder {
        height: 300px !important;
    }
    
    .map-info {
        padding: 1.5rem !important;
    }
    
    .map-info h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        text-align: center;
    }
    
    .transport-info {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .transport-option {
        padding: 1rem !important;
        text-align: center;
    }
    
    .transport-option h4 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
        justify-content: center;
    }
    
    .transport-option p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    .offices-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .office-card {
        padding: 1.5rem !important;
        text-align: center;
    }
    
    .office-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .office-card p {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.4 !important;
        justify-content: center !important;
    }
    
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .faq-item {
        padding: 1.5rem !important;
    }
    
    .faq-item h3 {
        font-size: 1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .faq-item p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .contact-cta .cta-content {
        padding: 2rem 1rem !important;
    }
    
    .cta-phone {
        flex-direction: column !important;
        padding: 1rem !important;
        text-align: center;
        gap: 0.5rem !important;
    }
    
    .phone-icon {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .phone-number {
        font-size: 1.2rem !important;
    }
    
    .cta-note {
        font-size: 0.85rem !important;
        margin-top: 0.5rem !important;
    }
    
    /* Form specific fixes */
    .contact-form {
        padding: 1.5rem !important;
    }
    
    .contact-form h2 {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .form-intro {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .form-group {
        margin-bottom: 1rem !important;
    }
    
    .form-group label {
        font-size: 0.9rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.9rem !important;
    }
    
    .form-group textarea {
        min-height: 120px !important;
    }
    
    .checkbox {
        align-items: flex-start !important;
    }
    
    .checkbox label {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.8rem 1.5rem !important;
    }
    
    .form-note {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-top: 1rem !important;
    }
    
    /* File upload fixes */
    .file-upload small {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 7rem 0 3rem !important;
    }
    
    .page-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .page-subtitle {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
    
    .contact-intro {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .info-item {
        padding: 1rem 0.8rem !important;
    }
    
    .info-text p {
        font-size: 0.85rem !important;
    }
    
    .contact-form {
        padding: 1.2rem !important;
    }
    
    .map-placeholder {
        height: 250px !important;
    }
    
    .map-info {
        padding: 1rem !important;
    }
    
    .office-card {
        padding: 1.2rem !important;
    }
    
    .faq-item {
        padding: 1.2rem !important;
    }
    
    .contact-cta .cta-content h2 {
        font-size: 1.5rem !important;
    }
    
    .contact-cta .cta-content p {
        font-size: 1rem !important;
    }
    
    /* Footer fixes for contact page */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        justify-content: center !important;
    }
    
    .footer-section h3::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .footer-links li a {
        justify-content: center !important;
    }
    
    .contact-info p {
        justify-content: center !important;
        text-align: center;
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .contact-info strong {
        margin-right: 0;
    }
    
    .footer-social {
        justify-content: center !important;
    }
}

/* Extra fixes for very small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 15px !important;
    }
    
    .info-item {
        padding: 0.8rem !important;
    }
    
    .contact-form {
        padding: 1rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.5rem 0.7rem !important;
        font-size: 0.85rem !important;
    }
    
    .btn {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.9rem !important;
    }
    
    .map-placeholder {
        height: 200px !important;
    }
    
    .transport-option {
        padding: 0.8rem !important;
    }
    
    .office-card {
        padding: 1rem !important;
    }
    
    .faq-item {
        padding: 1rem !important;
    }
}

/* Fix for form elements in dark mode */
@media (prefers-color-scheme: dark) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        background-color: #2a2a2a !important;
        color: #ffffff !important;
        border-color: #444 !important;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--secondary-color) !important;
        background-color: #333 !important;
    }
    
    .info-item {
        background: #2a2a2a !important;
        border-color: #444 !important;
    }
    
    .emergency-contact {
        background: linear-gradient(135deg, #333 0%, #222 100%) !important;
    }
}

/* Additional utility classes for contact page */
.contact-page {
    position: relative;
    overflow: hidden;
}

/* Smooth transitions */
.contact-page * {
    transition: all 0.3s ease;
}

/* Loading animation for form submission */
.form-loading {
    position: relative;
    opacity: 0.7;
    pointer-events: none;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success message styling */
.success-message {
    animation: slideIn 0.5s ease;
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-radius: var(--border-radius);
    text-align: center;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error message styling */
.error-message {
    animation: shake 0.5s ease;
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    border-radius: var(--border-radius);
    text-align: center;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Accessibility improvements */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles for contact form */
@media print {
    .navbar,
    .footer,
    .contact-cta,
    .btn {
        display: none !important;
    }
    
    .contact-layout {
        display: block !important;
    }
    
    .contact-info,
    .contact-form {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .page-title,
    .section-title {
        color: black !important;
    }
}

	.back-to-top {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #e55a00);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: linear-gradient(135deg, #e55a00, var(--accent));
            transform: translateY(-5px);
        }
		
		#btn-back-to-top {
			position: fixed;
			bottom: 40px;
			right: 40px;
			display: none;
			z-index: 99;
			}

        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            left: 25px;
            width: 60px;
            height: 60px;
            z-index: 1000;
        }

        .whatsapp-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background-color: #25D366;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-link:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-link i {
            font-size: 28px;
            color: white;
        }