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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #f8fafc;
    background: #0f0f0f;
    overflow-x: hidden;
}

/* Subtle animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(71, 85, 105, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 30s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

/* Navigation */
.navbar {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #22c55e;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #94a3b8;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #10b981);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #22c55e;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #22c55e;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #64748b;
    border: 2px solid #475569;
    box-shadow: 0 4px 15px rgba(71, 85, 105, 0.2);
}

.btn-secondary:hover {
    background: rgba(71, 85, 105, 0.1);
    box-shadow: 0 6px 20px rgba(71, 85, 105, 0.3);
    transform: translateY(-2px);
    border-color: #64748b;
}

.btn-light {
    background: rgba(255, 255, 255, 0.05);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(10px);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(30, 30, 30, 0.9));
    color: white;
    position: relative;
    overflow: hidden;
}

.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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(34,197,94,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #cbd5e1;
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.15);
}

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(30, 30, 30, 0.9));
    position: relative;
}

.page-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(34,197,94,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(30, 30, 30, 0.3);
    position: relative;
}

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

.feature-card {
    background: rgba(30, 30, 30, 0.6);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.03), rgba(71, 85, 105, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: #22c55e;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f8fafc;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #cbd5e1;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Technologies Section */
.technologies {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.8);
}

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

.tech-category {
    background: rgba(30, 30, 30, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    backdrop-filter: blur(10px);
}

.tech-category h3 {
    color: #22c55e;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-item {
    background: rgba(71, 85, 105, 0.2);
    color: #cbd5e1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    border: 1px solid rgba(71, 85, 105, 0.4);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: rgba(30, 30, 30, 0.3);
}

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

.testimonial-card {
    background: rgba(30, 30, 30, 0.6);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.testimonial-content {
    display: flex;
    gap: 1rem;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
}

.testimonial-text h4 {
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.testimonial-role {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.testimonial-text p {
    color: #cbd5e1;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(71, 85, 105, 0.08));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

/* Vision Section */
.vision {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.8);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.vision-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-text p {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

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

.vision-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(71, 85, 105, 0.2);
    transition: all 0.3s ease;
}

.vision-list li:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.05);
}

.check-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.2);
}

.vision-list h3 {
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.vision-list p {
    color: #cbd5e1;
    margin: 0;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: rgba(30, 30, 30, 0.3);
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #22c55e;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.value-card p {
    color: #cbd5e1;
}

/* Story Section */
.story {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.8);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.story-images .main-image {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.image-grid img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.05);
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(71, 85, 105, 0.3);
}

.stat-item h3 {
    font-size: 2rem;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #cbd5e1;
    font-size: 0.875rem;
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
    background: rgba(30, 30, 30, 0.3);
}

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

.cert-item {
    background: rgba(30, 30, 30, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    transition: all 0.3s ease;
}

.cert-item:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.05);
}

.cert-item h4 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.cert-item p {
    color: #cbd5e1;
    font-size: 0.875rem;
}

/* Team Members */
.team-members {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.8);
}

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

.team-card {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(71, 85, 105, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.team-role {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.team-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.credential {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

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

.social-links a {
    text-decoration: none;
    font-size: 1.25rem;
    color: #64748b;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.2));
}

.social-links a:hover {
    transform: scale(1.2);
    color: #22c55e;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.4));
}

/* Advisory Board */
.advisory-board {
    padding: 80px 0;
    background: rgba(30, 30, 30, 0.3);
}

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

.advisor-card {
    background: rgba(30, 30, 30, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    transition: all 0.3s ease;
}

.advisor-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.05);
}

.advisor-card h4 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.advisor-role {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.advisor-card p {
    color: #cbd5e1;
    font-size: 0.875rem;
}

/* Culture Section */
.culture {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.8);
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.culture-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.culture-text p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.culture-images .main-image {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: rgba(15, 15, 15, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f8fafc, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #22c55e;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 2px solid rgba(71, 85, 105, 0.4);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(30, 30, 30, 0.8);
    color: #f8fafc;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group select option {
    background: #1e1e1e;
    color: #f8fafc;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f8fafc, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(30, 30, 30, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.05);
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #22c55e;
    filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.2));
}

.info-content h3 {
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.info-content p {
    color: #cbd5e1;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(30, 30, 30, 0.3);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(30, 30, 30, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.05);
}

.faq-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.faq-card p {
    color: #cbd5e1;
}

/* Footer */
.footer {
    background: rgba(15, 15, 15, 0.95);
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(34, 197, 94, 0.15);
    backdrop-filter: blur(20px);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #22c55e;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(34, 197, 94, 0.15);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 1px solid rgba(34, 197, 94, 0.15);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content,
    .vision-content,
    .story-content,
    .culture-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional professional elements */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 15, 15, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}