:root {
    --primary: #007DFC;
    --primary-dark: #0056b3;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --bg-alt: #F4FBFF;
    --border-color: #e0e0e0;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo,
.footer-logo {
    height: 32px;
    width: auto;
    display: block;
}

.footer-logo {
    margin-bottom: 20px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000;
}

.hero-title .highlight {
    color: var(--primary);
    display: inline-block;
}

/* Typing Cursor Effect */
.typing-cursor::after {
    content: '|';
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-visual img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary);
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--primary);
    color: #fff;
}

.section-title {
    font-size: 47px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

/* Section Colors based on background */
.services .section-title {
    color: #fff;
}

.badges .section-title,
.about .section-title {
    color: var(--text-main);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    color: var(--text-main);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    width: fit-content;
}

.btn-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover .btn-text::after {
    transform: scaleX(1);
}

.badges {
    padding: 80px 0;
}

.badge-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.badge-item {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.badge-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.badge-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #fff;
}

.about-text {
    font-size: 18px;
    max-width: 900px;
    color: var(--text-muted);
    text-align: center;
    margin: 0 auto;
}

/* Footer & Merged CTA */
.footer {
    padding: 120px 0 60px;
    background-color: #0f1115;
    color: #fff;
    background-image:
        radial-gradient(circle at 100% 100%, rgba(0, 125, 252, 0.15) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1000' height='1000' viewBox='0 0 1000 1000'%3E%3Ccircle cx='1000' cy='1000' r='50' fill='none' stroke='white' stroke-opacity='0.15' stroke-width='0.8'/%3E%3Ccircle cx='1000' cy='1000' r='100' fill='none' stroke='white' stroke-opacity='0.12' stroke-width='0.8'/%3E%3Ccircle cx='1000' cy='1000' r='150' fill='none' stroke='white' stroke-opacity='0.1' stroke-width='0.6'/%3E%3Ccircle cx='1000' cy='1000' r='200' fill='none' stroke='white' stroke-opacity='0.08' stroke-width='0.6'/%3E%3Ccircle cx='1000' cy='1000' r='250' fill='none' stroke='white' stroke-opacity='0.07' stroke-width='0.5'/%3E%3Ccircle cx='1000' cy='1000' r='300' fill='none' stroke='white' stroke-opacity='0.06' stroke-width='0.5'/%3E%3Ccircle cx='1000' cy='1000' r='350' fill='none' stroke='white' stroke-opacity='0.05' stroke-width='0.5'/%3E%3Ccircle cx='1000' cy='1000' r='400' fill='none' stroke='white' stroke-opacity='0.04' stroke-width='0.4'/%3E%3Ccircle cx='1000' cy='1000' r='450' fill='none' stroke='white' stroke-opacity='0.03' stroke-width='0.4'/%3E%3Ccircle cx='1000' cy='1000' r='500' fill='none' stroke='white' stroke-opacity='0.02' stroke-width='0.3'/%3E%3C/svg%3E");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 70% auto;
    position: relative;
    overflow: hidden;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.company-name {
    font-weight: 700;
    margin-top: 20px;
}

.address,
.contact {
    font-size: 14px;
    color: #888;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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