* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: white;
    color: #0f172a;
}

html {
    scroll-behavior: smooth;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 80px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #10b981;
}

.cta-button {
    background: #10b981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background: #059669;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #334155;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 1rem;
    color: #334155;
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu .cta-button {
    width: 100%;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    padding: 10rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d1fae5 0%, #ffffff 50%, #e9d5ff 100%);
    opacity: 0.6;
}

.hero-blob-1 {
    position: absolute;
    top: 5rem;
    right: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: #a7f3d0;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.hero-blob-2 {
    position: absolute;
    bottom: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: #ddd6fe;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero .highlight-green {
    color: #10b981;
}

.hero .highlight-purple {
    color: #9333ea;
}

.hero p {
    font-size: 1.5rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #10b981;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s ease;
}

.btn-primary:hover {
    background: #059669;
}

.btn-outline {
    background: transparent;
    color: #334155;
    padding: 1.5rem 2rem;
    border: 2px solid #cbd5e1;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.btn-outline:hover {
    border-color: #10b981;
}

/* Vision Section */
.vision-section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.vision-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.vision-blob-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: #10b981;
    border-radius: 50%;
    filter: blur(80px);
    mix-blend-mode: overlay;
    animation: pulse 4s ease-in-out infinite;
}

.vision-blob-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: #9333ea;
    border-radius: 50%;
    filter: blur(80px);
    mix-blend-mode: overlay;
    animation: pulse 4s ease-in-out infinite;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.vision-section .section-header h2 {
    color: white;
}

.vision-section .section-header p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 48rem;
    margin: 0 auto;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.vision-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.vision-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.vision-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.75rem;
    color: white;
}

.vision-icon.green {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.vision-icon.purple {
    background: linear-gradient(135deg, #a78bfa 0%, #9333ea 100%);
}

.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.vision-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

.vision-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.vision-badge i {
    color: #34d399;
}

/* Services Section */
.services-section {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.services-section .section-header p {
    color: #475569;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #475569;
}

/* Company Info Section */
.company-section {
    padding: 5rem 2rem;
    background: white;
}

.company-section .section-header p {
    color: #475569;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.company-card {
    background: white;
    border-left: 4px solid #10b981;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.company-card:nth-child(even) {
    border-left-color: #9333ea;
}

.company-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.company-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.company-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.company-card:nth-child(odd) .company-icon {
    color: #10b981;
}

.company-card:nth-child(even) .company-icon {
    color: #9333ea;
}

.company-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.company-card p {
    color: #475569;
    font-size: 0.875rem;
}

/* Directors Section */
.directors-section {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.directors-section .section-header p {
    color: #475569;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

.director-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.director-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.director-avatar {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #10b981 0%, #9333ea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
    transition: transform 0.3s ease;
}

.director-card:hover .director-avatar {
    transform: scale(1.1);
}

.director-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.director-card p {
    color: #10b981;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: white;
}

.contact-section .section-header p {
    color: #475569;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
    color: #475569;
    text-decoration: none;
}

.contact-item a:hover {
    color: #10b981;
}

.contact-map {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 3rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 3rem;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    height: 80px;
    width: auto;
}

.footer-section p,
.footer-section a,
.footer-section li {
    color: #94a3b8;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #34d399;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    color: #94a3b8;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .header-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 8rem 1rem 3rem;
    }

    .services-section,
    .company-section,
    .directors-section,
    .contact-section,
    .vision-section {
        padding: 3rem 1rem;
    }
}