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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-light: #f8fafc;
    --gray-medium: #9ca3af;
    --gray-dark: #374151;
    --black: #000000;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --header-height: 88px;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Preloader — hide quickly; do not wait for large hero video */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader::before {
    content: '';
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-light);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

/* Back to Top Button */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 52px;
    width: 52px;
    padding: 0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 400ms linear, visibility 400ms linear, transform 400ms linear, background-color 0.2s ease, box-shadow 0.2s ease;
    background: #2b6df2;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(43, 109, 242, 0.35);
}

.progress-wrap i {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
}

.progress-wrap:hover {
    background: #1d5ad8;
    box-shadow: 0 6px 18px rgba(43, 109, 242, 0.45);
}

.progress-wrap:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header Styles */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-area.sticky {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: var(--shadow-lg);
}

.logo a {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.logo img {
    width: 150px;
    height: 80px;
    object-fit: contain;
    display: block;
    max-width: 100%;
}

/* Sidebar and Footer Logo Styles */
.sidebar__logo img,
.footer__logo img {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

/* New Menu Styles */
.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin-right: 30px;
    position: relative;
}

.nav-item:last-child {
    margin-right: 0;
}

.nav-link {
  /*  color: var(--text-dark);*/color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 15px 0;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}
.a.nav-link {
    color: #FFFFFF !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    box-sizing: border-box;
}

.hamburger-btn span {
    display: block;
    height: 4px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover span {
    background: var(--primary-color);
}

/* Header: larger, visible hamburger on dark background */
.header-area .hamburger-btn span {
    background: #ffffff;
}

.header-area .hamburger-btn:hover span {
    background: var(--primary-color);
}

@media (max-width: 991.98px) {
    .header-area .row > .col-md-6:nth-child(2),
    .header-area .row > .col-6:nth-child(2) {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .header-area .menu-area {
        position: absolute;
        width: 0;
        height: 0;
        overflow: hidden;
        pointer-events: none;
    }

    .header-area .mobile-menu-toggle {
        margin-left: auto;
    }

    .header-area .hamburger-btn {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
        gap: 7px;
        padding: 14px;
    }

    .header-area .hamburger-btn span {
        height: 4px;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Sidebar */
.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: var(--text-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu-sidebar.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-logo img {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary-color);
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 10px;
}

.mobile-nav-link {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.mobile-menu-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Language Selector Styles */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.language-selector {
    position: relative;
}

.language-selector select {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 35px;
    min-width: 80px;
}

.language-selector select:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.header-info {
    display: flex;
    gap: 30px;
}

.info-item span {
    display: block;
    font-size: 12px;
    color: var(--gray-medium);
    margin-bottom: 5px;
}

.info-item h5 {
    margin: 0;
    font-size: 14px;
    color: var(--white);
}

.info-item h5 a {
    color: var(--white);
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

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

.hero-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-loader {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.45);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-video-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-video-loader-ring {
    width: 52px;
    height: 52px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

.hero-video-loader-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-video.is-ready {
    opacity: 1;
    z-index: 1;
}

.hero-video.is-loading {
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-medium);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    margin-bottom: 50px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--text-dark);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--gray-medium);
    font-size: 14px;
    margin: 0;
}

/* Lens Showcase */
.lens-showcase {
    position: relative;
    height: 500px;
}

.lens-item {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.lens-item:hover {
    transform: scale(1.1);
    z-index: 10;
}

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

.lens-1 {
    top: 50px;
    left: 50px;
    animation: float 6s ease-in-out infinite;
}

.lens-2 {
    top: 100px;
    right: 100px;
    animation: float 6s ease-in-out infinite 2s;
}

.lens-3 {
    bottom: 100px;
    left: 100px;
    animation: float 6s ease-in-out infinite 4s;
}

.lens-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 15px;
    text-align: center;
}

.lens-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.lens-info p {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Products Section */
.products-showcase {
    padding: 100px 0;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.product-overlay .product-info {
    text-align: center;
    color: white;
    padding: 1rem;
}

.product-overlay .product-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-overlay .product-info p {
    font-size: 0.9rem;
    margin: 0;
}

.product-overlay img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.product-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
    min-height: calc(1.7em * 3 + 10px * 2); /* 3 rows + spacing */
}

.product-features li {
    padding: 5px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Technology Section */
.technology-section {
    background: var(--gray-light);
}

.technology-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
}

.technology-image {
    position: relative;
}

.technology-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.tech-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

/* About Section */
.about-image {
    position: relative;
    overflow: visible;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.about-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 300px;
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.video-container {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    display: block;
}

/* About Video Section */
.about-video {
    padding: 20px;
}

.video-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.video-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.about-video .video-container {
    width: 100%;
    height: 315px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
}

.about-video .video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.stat-box {
    text-align: center;
    padding: 0 20px;
}

.stat-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.about-features {
    margin: 30px 0;
}

.about-features .feature-item {
    margin-bottom: 15px;
}

.about-features .feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

/* Quality Section */
.quality-section {
    background: var(--gradient-primary);
}

.quality-card {
    text-align: center;
    padding: 40px 20px;
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.quality-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.quality-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Team Section */
.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

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

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

.team-content {
    padding: 30px 20px;
}

.team-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.team-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-view-all-link {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.team-view-all-link:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

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

.team-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-dark);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin: 0;
}

.btn-light {
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--gray-light);
    border-color: var(--gray-light);
    color: var(--text-dark);
}

/* Footer Styles */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer__widget-title {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__links ul {
    list-style: none;
    padding: 0;
}

.footer__links ul li {
    margin-bottom: 10px;
}

.footer__links ul li a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links ul li a:hover {
    color: var(--white);
}

.footer__copyright {
    border-top: 1px solid #374151;
    padding-top: 20px;
    margin-top: 40px;
}

/* Utility Classes */
.py-5 { padding: 80px 0; }
.mb-4 { margin-bottom: 30px; }
.mb-5 { margin-bottom: 50px; }
.me-3 { margin-right: 20px; }
.text-center { text-align: center; }
.text-end { text-align: right; }
.bg-light { background-color: var(--gray-light); }
.bg-primary { background: var(--gradient-primary); }
.bg-dark { background: var(--gradient-dark); }
.text-white { color: var(--white); }
.text-white-50 { color: rgba(255, 255, 255, 0.5); }

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .lens-showcase {
        height: 400px;
    }
    
    .lens-item {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .lens-showcase {
        height: 300px;
        margin-top: 50px;
    }
    
    .about-stats {
        position: static;
        transform: none;
        margin-top: 30px;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .video-container {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .btn-lg {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .lens-showcase {
        display: none;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-section .row {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .about-stats {
        position: static;
        transform: none;
        margin-top: 20px;
        width: 100%;
        padding: 15px;
    }
    
    .video-container {
        height: 200px;
    }
    
    .video-container iframe {
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .about-video {
        padding: 15px;
        margin-top: 30px;
    }
    
    .about-video .video-container {
        height: 250px;
    }
    
    .video-title {
        font-size: 1.3rem;
    }
    
    .about-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .timeline-item {
        min-width: auto;
    }
    
    .timeline-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-box {
        padding: 0 10px;
    }
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Sidebar Styles */
.sidebar__area {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.sidebar__area.active {
    right: 0;
}

.sidebar__wrapper {
    padding: 30px;
    height: 100%;
}

.sidebar__close {
    text-align: right;
    margin-bottom: 30px;
}

.sidebar__close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

.sidebar__search {
    margin-bottom: 30px;
}

.sidebar__search form {
    position: relative;
}

.sidebar__search input {
    width: 100%;
    padding: 15px 50px 15px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    font-size: 16px;
}

.sidebar__search button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

.sidebar__contact h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sidebar__contact ul {
    list-style: none;
    padding: 0;
}

.sidebar__contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.sidebar__contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.sidebar__contact-text a {
    color: var(--text-light);
    text-decoration: none;
}

.sidebar__social {
    margin-top: 30px;
}

.sidebar__social ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
}

.sidebar__social ul li a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar__social ul li a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Body Overlay */
.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.body-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Toggle */
.side-menu-icon {
    display: none;
}

@media (max-width: 991px) {
    .side-menu-icon {
        display: block;
    }
    
    .main-menu {
        display: none;
    }
    
    .header-info {
        display: none;
    }
}

/* Page Header Styles (about, products, services, contact) */
.page-header {
    position: relative;
    z-index: 2;
    padding: calc(var(--header-height) + 2rem) 0 4rem;
    background: var(--gradient-dark);
    overflow: hidden;
    transition: padding 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.page-header.is-scrolled {
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 2rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.page-header > .container {
    position: relative;
    z-index: 3;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/personel/p01.jpg') center/cover;
    z-index: 0;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.page-header + section {
    position: relative;
    z-index: 3;
    background: #fff;
    padding-top: 4rem !important;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    transition: font-size 0.35s ease, margin 0.35s ease;
}

.page-header.is-scrolled .page-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.page-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    transition: opacity 0.3s ease, max-height 0.35s ease, margin 0.35s ease;
}

.page-header.is-scrolled .page-description {
    opacity: 0;
    max-height: 0;
    margin: 0;
    overflow: hidden;
}

.page-header.is-scrolled .breadcrumb {
    margin-top: 0;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--gray-medium);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-medium);
}

/* Product Detail Styles */
.product-detail-content {
    padding: 40px 0;
}

.product-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.8em * 4); /* Fallback for browsers without webkit-line-clamp support */
}

.product-features {
    margin-bottom: 30px;
}

.product-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.product-features .feature-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
}

.product-specs {
    background: var(--gray-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.product-specs h5 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.product-specs ul li {
    padding: 5px 0;
    color: var(--text-light);
}

.product-specs ul li strong {
    color: var(--text-dark);
}

/* Product Image Styles - Updated for 200x200px with full image visibility */
.product-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.product-overlay img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.product-image:hover .product-overlay {
    opacity: 1;
}

.product-info {
    text-align: center;
    color: var(--white);
}

.product-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-info p {
    margin: 0;
    opacity: 0.9;
}

/* Comparison Table Styles */
.comparison-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table .table {
    margin: 0;
}

.comparison-table .table thead th {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 20px;
    font-weight: 600;
}

.comparison-table .table tbody td {
    padding: 15px 20px;
    border-color: #e5e7eb;
    vertical-align: middle;
}

.comparison-table .table tbody tr:nth-child(even) {
    background: var(--gray-light);
}

/* About Timeline Styles */
.about-timeline {
    margin-top: 40px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    position: relative;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.about-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color));
    z-index: 1;
}

.timeline-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    position: relative;
    z-index: 2;
    flex: 1 !important;
    max-width: 200px;
    min-width: 150px;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    z-index: 1;
    transform: translateX(50%);
}

.timeline-year {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
}

/* Mission Vision Cards */
.mission-card, .vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.mission-card h3, .vision-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-card p, .vision-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

/* Values Cards */
.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.value-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Team Bio Styles */
.team-bio {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Facility Cards */
.facility-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-image {
    height: 200px;
    overflow: hidden;
}

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

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

.facility-content {
    padding: 25px;
}

.facility-content h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.facility-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Contact Cards */
.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.contact-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-card p a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-card p a:hover {
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Map Styles */
.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    border-radius: 15px;
}

/* FAQ Styles */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    background: var(--white);
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 25px;
    background: var(--gray-light);
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design for New Pages */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item:not(:last-child)::after {
        display: none;
    }
    
    .timeline-year {
        margin: 0 auto 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    :root {
        --header-height: 80px;
    }

    .page-header {
        padding-top: calc(var(--header-height) + 1.75rem);
        padding-bottom: 3rem;
    }

    .page-header.is-scrolled .page-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 72px;
    }

    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .page-header {
        padding-bottom: 2.5rem;
    }

    .page-header + section {
        padding-top: 3rem !important;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
}

/* Services Page Styles */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
}

.service-card h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.step-content h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Standard Cards */
.standard-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.standard-card:hover {
    transform: translateY(-5px);
}

.standard-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
}

.standard-card h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.standard-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Brands Section Styles */
.brand-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.brand-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.brand-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.brand-content h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.brand-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Exhibitions Section Styles */
.exhibition-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.exhibition-card:hover {
    transform: translateY(-5px);
}

.exhibition-image {
    height: 200px;
    overflow: hidden;
}

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

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

.exhibition-content {
    padding: 20px;
}

.exhibition-content h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.exhibition-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
}

/* Why Adellens Section Styles */
.why-adellens {
    background: var(--gray-light);
}

.why-content {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.why-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    font-style: italic;
}

.why-features {
    margin-top: 30px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
}

.why-feature:hover {
    transform: translateY(-3px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content h5 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Product Categories Styles */
.product-categories {
    background: var(--white);
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--gray-light);
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.brand-section {
    margin-bottom: 60px;
    padding: 30px;
    border-radius: 15px;
    background: var(--gray-light);
    transition: all 0.3s ease;
}

.brand-section.hidden {
    display: none;
}

.brand-header {
    text-align: center;
    margin-bottom: 40px;
}

.brand-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.brand-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.brand-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.collection-section {
    margin-top: 40px;
}

.collection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.collection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.product-code {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Brands Showcase Styles */
.brands-showcase {
    background: var(--white);
}

.brand-section {
    margin-bottom: 80px;
    padding: 40px 0;
    border-radius: 15px;
    background: var(--gray-light);
}

.brand-info {
    padding: 20px;
}

.brand-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.brand-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.brand-features {
    margin-bottom: 30px;
}

.brand-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.brand-features .feature-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
}

.brand-showcase {
    padding: 20px;
}

.collection-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.collection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.product-card-small {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
}

.product-card-small:hover {
    transform: translateY(-5px);
}

.product-card-small img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card-small h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.product-card-large {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.product-card-large:hover {
    transform: translateY(-5px);
}

.product-card-large img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    padding: 20px;
}

/* Branches Page Styles */
.branches-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 0;
}

.branch-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-light);
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.branch-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
}

.branch-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.branch-manager {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.branch-manager i {
    margin-right: 8px;
    color: var(--primary-color);
}

.branch-info {
    space-y: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px 0;
}

.info-item i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
    width: 20px;
    flex-shrink: 0;
}

.info-item span,
.info-item a {
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.6;
}

.info-item a:hover {
    color: var(--primary-color);
}

.branches-map {
    background: var(--gray-light);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Product Page Styles */
.product-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.product-hero-content {
    position: relative;
    z-index: 2;
}

.product-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.product-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-badges .badge {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badges .badge-primary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.product-badges .badge-success {
    background: rgba(34,197,94,0.2);
    color: #22c55e;
    border: 2px solid rgba(34,197,94,0.3);
}

.product-badges .badge-info {
    background: rgba(59,130,246,0.2);
    color: #3b82f6;
    border: 2px solid rgba(59,130,246,0.3);
}

.product-hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.product-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.product-details {
    padding: 80px 0;
    background: #f8fafc;
}

.product-specifications {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.product-specifications h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

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

.spec-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.spec-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-item p {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.product-features {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-features h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.product-sidebar {
    position: sticky;
    top: 100px;
}

.product-sidebar .product-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-sidebar .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-sidebar .product-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.product-sidebar .product-image {
    margin-bottom: 1.5rem;
}

.product-sidebar .product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-info {
    margin-bottom: 2rem;
}

.product-code {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-category {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.related-products {
    padding: 80px 0;
    background: white;
}

.related-products h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.related-products .product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.related-products .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.related-products .product-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.related-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.related-products .product-card:hover .product-image img {
    transform: scale(1.1);
}

.related-products .product-content {
    padding: 1.5rem;
}

.related-products .product-content h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-products .product-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.related-products .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.related-products .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.related-products .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Product Card Links */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.product-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.product-card-link .product-card {
    transition: all 0.3s ease;
}

.product-card-link:hover .product-card {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Exhibitions Page Styles */
.exhibitions-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.exhibitions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.exhibitions-hero-content {
    position: relative;
    z-index: 2;
}

.exhibitions-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.exhibitions-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.exhibitions-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.exhibitions-badges .badge {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exhibitions-badges .badge-primary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.exhibitions-badges .badge-success {
    background: rgba(34,197,94,0.2);
    color: #22c55e;
    border: 2px solid rgba(34,197,94,0.3);
}

.exhibitions-badges .badge-info {
    background: rgba(59,130,246,0.2);
    color: #3b82f6;
    border: 2px solid rgba(59,130,246,0.3);
}

.exhibitions-hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.exhibitions-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.exhibitions-hero-image img:hover {
    transform: scale(1.05);
}

.exhibitions-gallery {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.exhibition-events {
    margin-bottom: 4rem;
}

.exhibition-event-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.exhibition-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.event-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.event-date {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-description p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.photo-gallery {
    margin-top: 3rem;
}

.gallery-title {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.exhibitions-cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.exhibitions-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.exhibitions-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.exhibitions-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.exhibitions-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .exhibitions-hero h1 {
        font-size: 2.5rem;
    }
    
    .exhibitions-hero .lead {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .exhibitions-cta h2 {
        font-size: 2rem;
    }
}

/* Exhibition Card Links */
.exhibition-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.exhibition-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.exhibition-card-link .exhibition-card {
    transition: all 0.3s ease;
}

.exhibition-card-link:hover .exhibition-card {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Branch Manager Images */
.branch-manager {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.manager-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manager-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

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

.manager-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.manager-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.manager-info span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Responsive Design for Manager Images */
@media (max-width: 768px) {
    .branch-manager {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .manager-image {
        width: 50px;
        height: 50px;
    }
    
    .manager-info {
        justify-content: center;
    }
}

/* Branch Images */
.branch-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    margin-bottom: 1rem;
}

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

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

/* Branch Maps */
.branch-map {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.branch-map iframe {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.branch-map:hover iframe {
    transform: scale(1.02);
}

/* Updated Branch Card Layout */
.branch-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

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

.branch-header {
    padding: 1.5rem 1.5rem 0;
}

.branch-content {
    padding: 0 1.5rem 1.5rem;
}

/* Responsive Design for Branch Images */
@media (max-width: 768px) {
    .branch-image {
        height: 150px;
    }
    
    .branch-map iframe {
        height: 150px;
    }
}

/* ERP Page Styles */
.erp-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

.erp-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.erp-badges {
    margin: 2rem 0;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-primary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.badge-success {
    background-color: rgba(40, 167, 69, 0.8);
    color: white;
}

.badge-info {
    background-color: rgba(23, 162, 184, 0.8);
    color: white;
}

.erp-features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.erp-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.erp-feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.erp-benefits {
    padding: 80px 0;
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.erp-access {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.access-buttons {
    margin-top: 2rem;
}

.access-buttons .btn {
    margin: 0.5rem;
}

/* Optics Page Styles */
.optics-hero {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 100px 0;
}

.optics-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.optics-features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.optics-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.optics-feature-card:hover {
    transform: translateY(-5px);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.optics-technology {
    padding: 80px 0;
}

.technology-list {
    margin-top: 2rem;
}

.tech-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.tech-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.tech-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.optics-access {
    padding: 80px 0;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    text-align: center;
}

/* Innovation Page Styles */
.innovation-hero {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: white;
    padding: 100px 0;
}

.innovation-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.patents-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.patent-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.patent-card:hover {
    transform: translateY(-5px);
}

.patent-header {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.patent-header h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.patent-number {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.patent-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.patent-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.patent-features li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Main Patent Card Styles */
.main-patent {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.patent-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.patent-info h4,
.patent-description h4,
.patent-owners h4,
.patent-verification h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.patent-info-list {
    list-style: none;
    padding: 0;
}

.patent-info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    justify-content: space-between;
}

.patent-info-list li strong {
    color: var(--text-dark);
    min-width: 150px;
}

.patent-description {
    grid-column: 1 / -1;
}

.patent-owners {
    grid-column: 1 / -1;
}

.owners-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.owner-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.owner-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.owner-item ul {
    margin: 0.5rem 0 0 1rem;
    padding: 0;
}

.owner-item li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.patent-verification {
    grid-column: 1 / -1;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.patent-verification .btn {
    margin-top: 1rem;
}

/* Responsive Design for Patent Details */
@media (max-width: 768px) {
    .patent-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .owners-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .patent-info-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .patent-info-list li strong {
        min-width: auto;
        margin-bottom: 0.25rem;
    }
}

.rd-section {
    padding: 80px 0;
}

.rd-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.rd-features {
    margin-top: 2rem;
}

.rd-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.rd-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.rd-feature h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.future-innovations {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.future-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.future-card:hover {
    transform: translateY(-5px);
}

.future-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.innovation-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: white;
    text-align: center;
}

.cta-buttons {
    margin-top: 2rem;
}

.cta-buttons .btn {
    margin: 0.5rem;
}

/* Certificates Page Styles */
.certificates-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

.certificates-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.certificates-badges {
    margin: 2rem 0;
}

.quality-certificates {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.certificate-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
}

.certificate-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.certificate-image img {
    max-height: 150px;
    max-width: 200px;
    object-fit: contain;
}

.certificate-content {
    padding: 2rem;
}

.certificate-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.certificate-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.certificate-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.cert-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.cert-status {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cert-status.active {
    background-color: #d4edda;
    color: #155724;
}

.industry-awards {
    padding: 80px 0;
}

.award-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.award-card:hover {
    transform: translateY(-5px);
}

.award-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.award-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.award-organization {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.award-year {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.compliance-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.compliance-list {
    margin-top: 2rem;
}

.compliance-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.compliance-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.compliance-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.certificates-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

/* News Page Styles */
.news-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

.news-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.latest-news {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.news-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
}

.news-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.news-meta {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.news-categories {
    padding: 80px 0;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.news-count {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-form .form-control {
    flex: 1;
    border-radius: 25px;
    border: none;
    padding: 0.75rem 1.5rem;
}

.newsletter-form .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
}

/* Careers Page Styles */
.careers-hero {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 100px 0;
}

.careers-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.open-positions {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.position-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.position-type {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
}

.position-details {
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.detail-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 16px;
}

.position-skills {
    margin: 1rem 0;
}

.skill-tag {
    display: inline-block;
    background: #f8f9fa;
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    margin: 0.25rem;
}

.why-work-with-us {
    padding: 80px 0;
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.application-process {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-step {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.contact-hr {
    padding: 80px 0;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    text-align: center;
}

.hr-contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Press Page Styles */
.press-hero {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: white;
    padding: 100px 0;
}

.press-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.press-releases {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.press-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

.press-card:hover {
    transform: translateY(-5px);
}

.press-date {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.press-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.press-date .month {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.press-date .year {
    font-size: 0.75rem;
    opacity: 0.8;
}

.press-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.press-summary {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.press-tags {
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    background: #f8f9fa;
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    margin: 0.25rem;
}

.media-kit {
    padding: 80px 0;
}

.media-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
}

.media-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.press-contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

/* Privacy Page Styles */
.privacy-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

.privacy-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-content {
    padding: 80px 0;
}

.privacy-text {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-text h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.privacy-text h3 {
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
}

.privacy-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-text li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.privacy-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

/* History Page Styles */
.history-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

.history-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-size: 1.25rem;
    font-weight: 700;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: white;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: white;
    transform: translateY(-50%);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.timeline-image {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.milestones-section {
    padding: 80px 0;
}

.milestone-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-5px);
}

.milestone-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.company-values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-list {
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.value-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.value-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.future-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.goal-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.goal-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

/* Team Page Styles */
.team-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

.team-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.management-team,
.technical-team,
.support-team {
    padding: 80px 0;
}

.management-team {
    background-color: #f8f9fa;
}

.team-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

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

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-dark);
}

.team-stats {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.join-team {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

/* Founders Section Styles */
.founders-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.founders-section .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.founders-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.founder-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    color: #333;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 5px solid #667eea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.founder-content h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.founder-position {
    color: #667eea;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.founder-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.founder-achievements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.achievement-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
}

.achievement-item i {
    margin-right: 8px;
    color: #667eea;
}

@media (max-width: 768px) {
    .founder-achievements {
        flex-direction: column;
        align-items: center;
    }
    
    .achievement-item {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: -50px;
        top: 0;
        min-width: 60px;
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin: 0;
        margin-top: 1rem;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .vision-goals {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hr-contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
}

/* B2B Page Styles */
.b2b-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

.b2b-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.b2b-badges {
    margin: 2rem 0;
}

.b2b-cta {
    margin-top: 2rem;
}

.b2b-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.b2b-service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.b2b-service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.erp-integration {
    padding: 80px 0;
}

.erp-features {
    margin-top: 2rem;
}

.erp-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.erp-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.erp-feature h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.erp-access {
    margin-top: 2rem;
}

.b2b-benefits {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.b2b-process {
    padding: 80px 0;
}

.process-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.b2b-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contact-buttons {
    margin-top: 2rem;
}

.contact-buttons .btn {
    margin: 0.5rem;
}

/* About Us Section */
.about-us-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.highlight-box p {
    font-size: 1.2rem;
    margin: 0;
}

/* Innovation Section */
.innovation-section {
    padding: 80px 0;
    background: white;
}

.innovation-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.innovation-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Why Adellens Section */
.why-adellens-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    margin: 0;
}

/* Products and Brands Section */
.products-brands-section {
    padding: 80px 0;
    background: white;
}

.brand-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.brand-image {
    padding: 2rem;
    text-align: center;
    background: #f8f9fa;
}

.brand-image img {
    max-height: 100px;
    object-fit: contain;
}

.brand-content {
    padding: 2rem;
}

.brand-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.brand-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Coatings Section */
.coatings-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.coatings-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.coatings-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.coating-list {
    margin-top: 2rem;
}

.coating-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coating-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.coating-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.coatings-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}