/* Root Variables */
:root {
    --primary-color: #0056b3;
    --secondary-color: #0078d4;
    --accent-color: #40e0d0;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
    --gray-color: #6c757d;
    --border-color: #dee2e6;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(to bottom right, #f8fafc, #dbeafe);
}

body.menu-open {
    overflow: hidden;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a, #1e40af, #4338ca);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
}

.loader {
    display: inline-flex;
    gap: 10px;
    margin-bottom: 20px;
}

.loader-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    animation: loader-bounce 1.4s ease-in-out infinite both;
}

.loader-circle:nth-child(1) { animation-delay: -0.32s; }
.loader-circle:nth-child(2) { animation-delay: -0.16s; }

.loader-text {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.loader-text span {
    font-size: 32px;
    font-weight: 700;
    color: white;
    animation: loader-text-pulse 1.4s ease-in-out infinite both;
}

.loader-text span:nth-child(1) { animation-delay: -0.32s; }
.loader-text span:nth-child(2) { animation-delay: -0.24s; }
.loader-text span:nth-child(3) { animation-delay: -0.16s; }
.loader-text span:nth-child(4) { animation-delay: -0.08s; }

@keyframes loader-bounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

@keyframes loader-text-pulse {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
    40% { transform: translateY(-10px); opacity: 1; }
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: loader-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    animation: loader-progress 2s ease-in-out infinite;
}

@keyframes loader-progress {
    0% { width: 0%; left: 0%; }
    50% { width: 75%; left: 25%; }
    100% { width: 0%; left: 100%; }
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    width: auto; 
    min-width: 40px; 
    margin: 0; 
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    width: 100%;
    height: 40px;
    object-fit: contain;
    display: block; 
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap; 
    flex-grow: 1; 
    justify-content: flex-end; 
}

.nav-links li {
    margin-left: 30px; 
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
    font-size: 16px; 
    white-space: nowrap; 
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero, .products-hero, .services-hero, .about-hero, .contact-hero, .team-hero {
    background: linear-gradient(135deg, #1e3a8a, #1e40af, #4338ca);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    margin-top: 70px;
    color: white;
}

.hero-overlay, .products-hero-overlay, .services-hero-overlay, .about-hero-overlay, .contact-hero-overlay, .team-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content, .products-hero-content, .services-hero-content, .about-hero-content, .contact-hero-content, .team-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title, .products-hero-title, .services-hero-title, .about-hero-title, .contact-hero-title, .team-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title span {
    color: #90cdf4;
}

.hero-subtitle, .products-hero-subtitle, .services-hero-subtitle, .about-hero-subtitle, .contact-hero-subtitle, .team-hero-subtitle {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
    border: none;
}

.btn-primary {
    background-color: #3182ce;
    color: white;
}

.btn-primary:hover {
    background-color: #2c5282;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #1e3a8a;
    transform: scale(1.05);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

/* Features Section */
.features {
    background-color: white;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon.innovation { background-color: #dbeafe; color: #3182ce; }
.feature-icon.reliability { background-color: #d1fae5; color: #10b981; }
.feature-icon.scalability { background-color: #ede9fe; color: #8b5cf6; }

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: white;
    padding: 64px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    color: #90cdf4;
    font-size: 16px;
}

/* CTA Section */
.cta, .products-cta, .services-cta, .about-cta, .contact-cta, .team-cta {
    background-color: #1e3a8a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* Products Page */
.products-grid {
    padding: 80px 0;
    background-color: white;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.product-header {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-header.blue { background: linear-gradient(to bottom right, #3b82f6, #2563eb); }
.product-header.green { background: linear-gradient(to bottom right, #10b981, #059669); }
.product-header.purple { background: linear-gradient(to bottom right, #8b5cf6, #7c3aed); }
.product-header.red { background: linear-gradient(to bottom right, #ef4444, #dc2626); }
.product-header.yellow { background: linear-gradient(to bottom right, #eab308, #ca8a04); }
.product-header.indigo { background: linear-gradient(to bottom right, #6366f1, #4f46e5); }

.product-icon {
    width: 64px;
    height: 64px;
    color: white;
}

.product-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.product-content p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 4px;
}

.product-btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}

.product-btn.blue { background-color: #3b82f6; color: white; }
.product-btn.blue:hover { background-color: #2563eb; }
.product-btn.green { background-color: #10b981; color: white; }
.product-btn.green:hover { background-color: #059669; }
.product-btn.purple { background-color: #8b5cf6; color: white; }
.product-btn.purple:hover { background-color: #7c3aed; }
.product-btn.red { background-color: #ef4444; color: white; }
.product-btn.red:hover { background-color: #dc2626; }
.product-btn.yellow { background-color: #eab308; color: white; }
.product-btn.yellow:hover { background-color: #ca8a04; }
.product-btn.indigo { background-color: #6366f1; color: white; }
.product-btn.indigo:hover { background-color: #4f46e5; }

/* Services Page */
.services-grid {
    padding: 80px 0;
    background-color: white;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon.blue { background-color: #dbeafe; color: #3b82f6; }
.service-icon.green { background-color: #d1fae5; color: #10b981; }
.service-icon.purple { background-color: #ede9fe; color: #8b5cf6; }
.service-icon.red { background-color: #fee2e2; color: #ef4444; }
.service-icon.yellow { background-color: #fef3c7; color: #eab308; }
.service-icon.indigo { background-color: #e0e7ff; color: #6366f1; }

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.service-card p {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.service-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    margin-top: auto;
}

.service-link:hover {
    color: #2563eb;
}

.process-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background-color: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    font-weight: 700;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.process-step p {
    color: #4b5563;
    line-height: 1.6;
}

/* About Page */
.company-story {
    padding: 80px 0;
    background-color: white;
}

.company-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.story-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

.story-text {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.stats-card {
    background: linear-gradient(to bottom right, #3b82f6, #8b5cf6);
    border-radius: 12px;
    padding: 32px;
    color: white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 80px 0;
    background-color: #f9fafb;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.mission-card, .vision-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.mission-icon, .vision-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mission-icon { background-color: #dbeafe; color: #3b82f6; }
.vision-icon { background-color: #ede9fe; color: #8b5cf6; }

.mission-title, .vision-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.mission-text, .vision-text {
    color: #4b5563;
    line-height: 1.6;
}

.core-values {
    padding: 80px 0;
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.value-icon.integrity { background-color: #dbeafe; color: #3b82f6; }
.value-icon.innovation { background-color: #d1fae5; color: #10b981; }
.value-icon.collaboration { background-color: #ede9fe; color: #8b5cf6; }
.value-icon.excellence { background-color: #fee2e2; color: #ef4444; }

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.value-card p {
    color: #4b5563;
    line-height: 1.6;
}

.leadership {
    padding: 80px 0;
    background-color: #f9fafb;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.leader-card {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.leader-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.leader-avatar.blue { background: linear-gradient(to bottom right, #3b82f6, #2563eb); }
.leader-avatar.green { background: linear-gradient(to bottom right, #10b981, #059669); }
.leader-avatar.purple { background: linear-gradient(to bottom right, #8b5cf6, #7c3aed); }

.leader-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.leader-position {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 8px;
}

.leader-bio {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

.team-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.team-link:hover {
    color: #2563eb;
}

/* Contact Page */
.contact-info {
    padding: 80px 0;
    background-color: white;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.contact-card {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-icon.location { background-color: #dbeafe; color: #3b82f6; }
.contact-icon.phone { background-color: #d1fae5; color: #10b981; }
.contact-icon.email { background-color: #ede9fe; color: #8b5cf6; }

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.contact-card p {
    color: #4b5563;
    line-height: 1.6;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form-container h2, .contact-additional h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.map-placeholder {
    background-color: #e5e7eb;
    border-radius: 12px;
    height: 256px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.map-content {
    text-align: center;
    color: #9ca3af;
}

.office-hours {
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.office-hours h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    color: #4b5563;
}

.hour-item span:last-child {
    font-weight: 500;
    color: #1f2937;
}

.emergency-contact {
    background-color: #fef2f2;
    border-radius: 12px;
    padding: 24px;
}

.emergency-contact h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #b91c1c;
}

.emergency-contact p {
    color: #b91c1c;
    margin-bottom: 8px;
}

.emergency-phone {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.emergency-note {
    font-size: 14px;
}

/* Team Page */
.team-grid {
    padding: 80px 0;
    background-color: white;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.team-member {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.member-header {
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.member-header.blue { background: linear-gradient(to bottom right, #3b82f6, #2563eb); }
.member-header.green { background: linear-gradient(to bottom right, #10b981, #059669); }
.member-header.purple { background: linear-gradient(to bottom right, #8b5cf6, #7c3aed); }
.member-header.red { background: linear-gradient(to bottom right, #ef4444, #dc2626); }
.member-header.yellow { background: linear-gradient(to bottom right, #eab308, #ca8a04); }
.member-header.indigo { background: linear-gradient(to bottom right, #6366f1, #4f46e5); }
.member-header.pink { background: linear-gradient(to bottom right, #ec4899, #db2777); }
.member-header.teal { background: linear-gradient(to bottom right, #14b8a6, #0d9488); }

.member-initials {
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.member-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f2937;
}

.member-position {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 12px;
}

.member-bio {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.member-expertise {
    margin-top: auto;
}

.expertise-label {
    font-size: 12px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 8px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.expertise-tag {
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
}

.team-culture {
    padding: 80px 0;
    background-color: #f9fafb;
}

.culture-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.culture-item {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.culture-item:hover {
    transform: translateY(-8px);
}

.culture-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.culture-icon.collaboration { background-color: #dbeafe; color: #3b82f6; }
.culture-icon.innovation { background-color: #d1fae5; color: #10b981; }
.culture-icon.inclusion { background-color: #ede9fe; color: #8b5cf6; }

.culture-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.culture-item p {
    color: #4b5563;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: #1e3a8a;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    font-size: 14px;
}

/* Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.chatbot-toggle:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.chatbot {
    width: 350px;
    height: 500px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    bottom: 80px;
    left: 0;
    z-index: 1001;
}

.chatbot.active {
    display: flex;
}

.chatbot-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    font-size: 18px;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: #f8f9fa;
}

.message {
    margin-bottom: 15px;
    display: flex;
}

.message.user {
    justify-content: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
}

.message.bot .message-content {
    background-color: white;
    border: 1px solid #e0e0e0;
}

.message.user .message-content {
    background-color: var(--primary-color);
    color: white;
}

.chatbot-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid #e0e0e0;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    outline: none;
}

.chatbot-input button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WhatsApp Icon */
.whatsapp-icon-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-icon-bar a {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon-bar a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon-bar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
}

.chatbot.active ~ .whatsapp-icon-bar {
    z-index: 1002;
}

/* Responsive Design */
@media (max-width: 992px) {
    .company-story-grid, .mission-vision-grid, .contact-content-grid {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .products-container, .services-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links li {
        margin-left: 20px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 80px;
        padding-left: 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
        margin-bottom: 25px;
        width: 100%;
    }

    .nav-links a {
        font-size: 18px;
        padding: 10px 0;
        display: block;
        width: 100%;
    }

    .nav-links a.active::after {
        display: none;
    }

    .nav-links a.active {
        color: var(--primary-color);
        font-weight: 600;
        border-left: 3px solid var(--primary-color);
        padding-left: 15px;
    }

    .nav-links.active::before {
        content: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .hero-title, .products-hero-title, .services-hero-title, .about-hero-title, .contact-hero-title, .team-hero-title {
        font-size: 36px;
    }

    .hero-subtitle, .products-hero-subtitle, .services-hero-subtitle, .about-hero-subtitle, .contact-hero-subtitle, .team-hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .features-grid, .products-container, .services-container, .team-container, .culture-container, .contact-cards, .values-grid {
        grid-template-columns: 1fr;
    }

    .process-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-title, .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 18px;
    }

    .product-header, .member-header {
        height: 120px;
    }

    .product-icon {
        width: 56px;
        height: 56px;
    }

    .member-initials {
        font-size: 32px;
    }

    .service-card {
        padding: 24px;
    }

    .contact-form-container h2, .contact-additional h2 {
        font-size: 24px;
    }

    .chatbot {
        width: 300px;
        height: 400px;
        bottom: 70px;
    }

    .chatbot-container {
        bottom: 90px;
        left: 15px;
    }

    .whatsapp-icon-bar {
        bottom: 20px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 10px 0;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .mobile-menu-btn {
        width: 25px;
        height: 18px;
    }

    .mobile-menu-btn span {
        height: 2px;
    }

    .nav-links {
        width: 250px;
        padding-left: 20px;
    }

    .nav-links a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .chatbot-container {
        bottom: 100px;
        left: 15px;
    }

    .whatsapp-icon-bar {
        bottom: 20px;
        right: 15px;
    }
}