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

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: rgb(60, 64, 75);
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: rgb(60, 64, 75) !important;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: rgb(39, 138, 197) !important;
}

.hero-section {
    min-height: 500px;
}

.hero-left {
    background: linear-gradient(to right, rgb(39, 138, 197), rgb(61, 62, 79));
    min-height: 500px;
}

.hero-right {
    background: linear-gradient(to right, rgb(39, 138, 197), rgb(61, 62, 79));
    min-height: 500px;
    position: relative;
}

.hero-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    margin: 2rem;
    margin-left: 0;
}

.hero-title {
    font-size: 26px;
    font-weight: 700;
    color: rgb(60, 64, 75);
    background: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 2rem;
}

.service-card {
    background: rgb(255, 255, 255);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: rgb(249, 249, 249);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info h5 {
    font-weight: 600;
    color: rgb(60, 64, 75);
    margin-bottom: 0.5rem;
}

.service-description {
    color: rgb(118, 118, 118);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgb(2, 123, 173);
    margin-bottom: 0.25rem;
}

.users {
    color: rgb(118, 118, 118);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.rating {
    color: #ffc107;
}

.introduction-section {
    background: rgb(253, 253, 253);
}

.tech-stack {
    padding: 3rem 0;
}

.tech-logo {
    max-height: 60px;
    max-width: 120px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.tech-logo:hover {
    opacity: 1;
}

.tech-logo-placeholder {
    background: rgb(249, 249, 249);
    border: 2px solid rgb(209, 213, 219);
    border-radius: 8px;
    padding: 1rem;
    font-weight: 600;
    color: rgb(118, 118, 118);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tech-logo-placeholder:hover {
    background: rgb(255, 255, 255);
    border-color: rgb(39, 138, 197);
    color: rgb(39, 138, 197);
}

.blog-section {
    background: rgb(253, 253, 253);
}

.blog-card {
    background: rgb(255, 255, 255);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h5 {
    font-weight: 600;
    color: rgb(60, 64, 75);
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: rgb(118, 118, 118);
    margin-bottom: 1rem;
}

.blog-post-list {
    background: rgb(255, 255, 255);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-post-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgb(249, 249, 249);
}

.blog-post-item:last-child {
    border-bottom: none;
}

.blog-post-image {
    width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 6px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content h6 {
    font-weight: 600;
    color: rgb(60, 64, 75);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.cta-card {
    background: linear-gradient(135deg, rgb(39, 138, 197), rgb(61, 62, 79));
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.video-card {
    background: rgb(48, 52, 64);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.footer {
    color: rgb(209, 213, 219);
}

.footer-link {
    color: rgb(209, 213, 219);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: rgb(255, 255, 255);
}

.contact-form {
    background: rgb(255, 255, 255);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid rgb(249, 249, 249);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: 'Manrope', sans-serif;
}

.form-control:focus {
    border-color: rgb(39, 138, 197);
    box-shadow: 0 0 0 0.2rem rgba(39, 138, 197, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, rgb(39, 138, 197), rgb(61, 62, 79));
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgb(35, 125, 178), rgb(55, 56, 71));
}

.pricing-card {
    background: rgb(255, 255, 255);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid rgb(39, 138, 197);
    transform: scale(1.05);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(60, 64, 75);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(39, 138, 197);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: rgb(118, 118, 118);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: rgb(60, 64, 75);
}

.pricing-features li i {
    color: rgb(39, 138, 197);
    margin-right: 0.5rem;
}

.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(39, 138, 197), rgb(61, 62, 79));
}

.thank-you-content {
    text-align: center;
    color: white;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }
    
    .hero-left {
        min-height: 200px;
    }
    
    .hero-right {
        min-height: auto;
    }
    
    .hero-content {
        margin: 1rem;
        margin-left: 1rem;
    }
    
    .hero-title {
        font-size: 20px;
        padding: 0.75rem 1.5rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 2rem;
    }
}
