* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #1E293B;
    background: #FFFFFF;
    overflow-x: hidden;
}

/* Animated Background Grid */
.tech-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    border-bottom: 1px solid #E2E8F0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1E3A8A;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: #374151;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #3B82F6;
}

.nav a:hover::after {
    width: 100%;
}

.cta-button {
    padding: 12px 24px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Hero Section */
.hero {
    padding: 80px 120px;
    background:
        linear-gradient(135deg, rgba(18, 116, 54, 0.95) 0%, rgba(8, 110, 44, 0.95) 100%),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-about {
    padding: 80px 120px;
    background:
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(18, 116, 54, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(8, 110, 44, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
}
.hero-about-content {
	color:#000;
	font-size:24px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #FFFFFF 0%, #CBD5E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
    }
}

.hero p {
    font-size: 20px;
    color: #CBD5E1;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-btn-primary {
    padding: 16px 32px;
    background: linear-gradient(90deg, #FFF 0%, #FFF 100%);
    color: #555;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
}

.hero-btn-secondary {
    padding: 16px 32px;
    background: transparent;
    color: #EEE;
    border: 2px solid;
    border-image: linear-gradient(90deg, #ffF 0%, #FFF 100%) 1;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

/* DSP/SSP Services */
.services-dsp-ssp {
    display: flex;
    gap: 40px;
    padding: 80px 120px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.service-card {
    width: 500px;
    padding: 40px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card.blue {
    border-color: #0a6b2d;
}

.service-card.purple {
    border-color: #0a6b2d;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
}

.service-card h3 {
    font-size: 32px;
    font-weight: bold;
    color: #1E293B;
}

.service-card p {
    font-size: 16px;
    color: #64748B;
    line-height: 1.8;
}

/* Statistics */
.statistics {
    padding: 80px 120px;
    background:
        linear-gradient(135deg, rgb(16 111 51) 0%, rgb(17 108 55) 100%),
        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    gap: 60px;
    justify-content: center;
    position: relative;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgb(16 111 51) 0%, #176447 40%), 
		radial-gradient(circle at 70% 80%, rgb(17 108 55) 0%, #156643 40%);
    animation: float 6s ease-in-out infinite;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

.stat-value {
    font-size: 48px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.stat-label {
    font-size: 18px;
    color: #93C5FD;
}

/* Our Services */
.our-services {
    padding: 80px 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.section-header h2 {
    font-size: 40px;
    font-weight: bold;
    color: #1E293B;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: #64748B;
}

.services-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    width: 320px;
    padding: 32px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F9FF 100%);
    border: 1px solid #3B82F6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
}

.service-item:nth-child(2) {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF5FF 100%);
    border-color: #8B5CF6;
}

.service-item:nth-child(3) {
    background: linear-gradient(180deg, #FFFFFF 0%, #FDF2F8 100%);
    border-color: #EC4899;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
}

.service-item p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.8;
}

/* Partners */
.partners {
    padding: 80px 120px;
    background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.partners-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-logo {
    /*width: 150px;*/
    height: 80px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

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

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-logo:hover img {
    transform: scale(1.1);
}

/* Contact */
.contact {
    padding: 80px 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    background: #FFFFFF;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.contact-form {
    display: flex;
    gap: 16px;
    width: 600px;
}

.email-input {
    flex: 1;
    height: 56px;
    padding: 0 20px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 16px;
    color: #64748B;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    padding: 16px 32px;
    background: linear-gradient(90deg, #096c2c 0%, #096c2c 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.success-message {
    color: #10B981;
    font-size: 14px;
    display: none;
}

/* Footer */
.footer {
    padding: 60px 120px;
    background: linear-gradient(180deg, #09712f 0%, #09712f 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.footer-top {
    display: flex;
    gap: 80px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.footer-brand {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand .logo {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
}

.footer-brand p {
    font-size: 14px;
    color: #94A3B8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.footer-links a {
    text-decoration: none;
    color: #94A3B8;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3B82F6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #FFF;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #64748B;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 20px;
    color: #64748B;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .header, .hero, .services-dsp-ssp, .statistics, .our-services, .partners, .contact, .footer {
        padding: 40px 60px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .services-dsp-ssp {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 16px 20px;
        flex-direction: column;
        gap: 16px;
    }

    .nav {
        gap: 20px;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .statistics {
        flex-direction: column;
        gap: 40px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-item {
        width: 100%;
    }

    .contact-form {
        flex-direction: column;
        width: 100%;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero h1,
.hero p,
.service-card,
.stat-item,
.service-item {
    animation: fadeInUp 0.8s ease-out;
}

/* Particle effect */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #3B82F6;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}
