* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-content{
    background: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 55%);
}
/* Navigation */
.navbar {
    padding: 16px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 100px
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #bfdbfe;
}

/* Hero Section */
.hero {

    color: white;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-button {
    background: #fdcb56;
    color: #1e293b;
    padding: 16px 60px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: yellow;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
}

.feature-icon.purple {
    background: #ede9fe;
    color: #7c3aed;
}

.feature-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.feature-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.feature-icon.orange {
    background: #fed7aa;
    color: #ea580c;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.feature-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 64px;
    color: #374151;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 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: 0 auto 16px;
    font-size: 40px;
    color: white;
}

.service-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #2563eb, #1e40af);
    color: white;
    padding: 64px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
}

.cta-section p {
    color: #bfdbfe;
    font-size: 16px;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: #f3f4f6;
    padding: 32px 0;
    text-align: center;
}

.footer p {
    color: #6b7280;
    font-size: 14px;
}

.footer a {
    color: #2563eb;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 24px;
    }
}

/* Icons using Unicode symbols */
.icon-building::before {
    content: "🏢";
}

.icon-mobile::before {
    content: "📱";
}

.icon-target::before {
    content: "🎯";
}

.icon-globe::before {
    content: "🌐";
}

.icon-users::before {
    content: "👥";
}

.icon-zap::before {
    content: "⚡";
}