* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 :root {
    --primary-color: #35D1D1;
    --secondary-color: #FFFFFF;
    --accent-color: #2bb8b8;
    --success-color: #10b981;
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --gradient-1: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}


/* Top Bar */

.top-bar {
    background: var(--bg-dark);
    color: white;
    padding: 0.8rem 0;
    font-size: 0.9rem;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
}

.top-bar-item i {
    color: #35D1D1;
}

.top-bar-right {
    display: flex;
    gap: 1rem;
}

.top-bar-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-link:hover {
    color: #35D1D1;
}


/* Navigation */

.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #35D1D1, #2bb8b8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(53, 209, 209, 0.4);
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    top: 8px;
    right: 8px;
    box-shadow: 0 0 8px #10b981;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.9rem;
    font-weight: 900;
    background: linear-gradient(135deg, #35D1D1, #2bb8b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.7rem;
    color: #35D1D1;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #35D1D1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #35D1D1;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: #35D1D1;
    color: white !important;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 700;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: #2bb8b8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(53, 209, 209, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: 0.3s;
}


/* Page Header */

.page-header {
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    color: white;
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}


/* Container */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* About Section */

.about-section {
    padding: 6rem 2rem;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(53, 209, 209, 0.1), rgba(43, 184, 184, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.about-img-main i {
    font-size: 8rem;
    background: linear-gradient(135deg, #35D1D1, #2bb8b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-content h2 span {
    color: #35D1D1;
}

.about-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: rgba(53, 209, 209, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #35D1D1;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.about-feature-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}


/* Mission Vision */

.mission-vision-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 4rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #35D1D1, #2bb8b8);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(53, 209, 209, 0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #35D1D1, #2bb8b8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.mv-icon i {
    font-size: 2.5rem;
    color: white;
}

.mv-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.mv-card p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
}


/* Core Values */

.values-section {
    padding: 6rem 2rem;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(53, 209, 209, 0.1);
    color: #35D1D1;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header h2 span {
    color: #35D1D1;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #35D1D1, #2bb8b8);
    opacity: 0;
    border-radius: 20px;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.value-card:hover::before {
    opacity: 0.05;
}

.value-card:hover {
    border-color: #35D1D1;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(53, 209, 209, 0.2);
}

.value-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #35D1D1, #2bb8b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 1;
}

.value-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}


/* Why Choose Us */

.why-choose-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.why-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    gap: 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: #35D1D1;
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(53, 209, 209, 0.15);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #35D1D1, #2bb8b8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.why-content p {
    color: var(--text-gray);
    line-height: 1.8;
}


/* Stats Section */

.stats-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.1"/></svg>');
    background-size: 40px 40px;
}

.stats-container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.8rem;
    color: white;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.95;
}


/* CTA Section */

.cta-section {
    padding: 6rem 2rem;
    background: white;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    border-radius: 24px;
    padding: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(53, 209, 209, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content h2 span {
    color: #35D1D1;
}

.cta-content p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.3rem 3.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    background: #35D1D1;
    color: white;
}

.btn-primary:hover {
    background: #2bb8b8;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(53, 209, 209, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #35D1D1;
}


/* Footer */

.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #35D1D1;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #999;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-about p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #35D1D1;
    padding-left: 5px;
}

.footer-links i {
    font-size: 0.8rem;
    color: #35D1D1;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
}


/* Responsive */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .mv-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: left 0.3s ease;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .nav-links.active {
        left: 0;
    }
    .mobile-toggle {
        display: flex;
    }
    .page-header h1 {
        font-size: 2.8rem;
    }
    .section-header h2,
    .about-content h2 {
        font-size: 2.2rem;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .cta-container {
        padding: 3rem 2rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}