/* web-development.html */
/* General styles */
body {
    font-family: 'Inter', sans-serif;
    color: #2d3748;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: #1a202c;
}

.navbar-brand img {
    max-height: 50px;
}

.phone, .email {
    color: #007BFF;
    text-decoration: none;
    font-weight: 400;
}

.phone:hover, .email:hover {
    text-decoration: underline;
}

.footer {
    background-color: #f8f9fa;
}

.footer-logo img {
    max-width: 100%;
}

.social-icon {
    color: #007BFF;
    font-size: 1.5rem;
}

.social-icon:hover {
    color: #0056b3;
}

/* Existing styles */
.country-select {
    display: flex;
    gap: 10px;
    align-items: center;
}

.country-select select {
    max-width: 100px;
}

.form-control, .form-select {
    border-radius: 8px;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
}

.form-label {
    font-weight: 600;
    color: #333;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.form-check-label a {
    color: #007bff;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Styles for form message */
.alert {
    padding: 10px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 15px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(90deg, #007BFF, #28A745);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* Service section */
.service {
    position: relative;
    overflow: hidden;
}

.service h1 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
}

.service p.typewriter {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    color: #fff;
}

.service .highlight {
    background: linear-gradient(90deg, #007BFF, #28A745);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.service .btn {
    font-size: 1.2rem;
    padding: 0.8rem 2.5rem;
    border-radius: 10px;
}

/* Process section */
.process {
    background-color: #f8f9fa;
}

.process h2 {
    font-size: 2.5rem;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 30px 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 16.66%;
    position: relative;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3), 0 0 40px rgba(0, 123, 255, 0.1);
}

.timeline-item[data-color="blue"] .timeline-icon {
    background: linear-gradient(135deg, #007BFF, #0056b3);
}

.timeline-item[data-color="green"] .timeline-icon {
    background: linear-gradient(135deg, #28A745, #1e7e34);
}

.timeline-item[data-color="yellow"] .timeline-icon {
    background: linear-gradient(135deg, #FFC107, #e0a800);
}

.timeline-content {
    margin-top: 15px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-content p {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #2d3748;
}

.timeline-arrow {
    position: absolute;
    top: 35px;
    right: -30px;
    width: 60px;
}

.timeline-arrow svg {
    width: 100%;
    height: 20px;
}

.timeline-item[data-color="blue"] .arrow-path {
    stroke: #007BFF;
}

.timeline-item[data-color="green"] .arrow-path {
    stroke: #28A745;
}

.timeline-item[data-color="yellow"] .arrow-path {
    stroke: #FFC107;
}

@media (max-width: 767px) {
    .timeline {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 25px;
    }

    .timeline-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .timeline-content {
        margin-top: 0;
        margin-left: 20px;
        text-align: left;
        padding: 10px 14px;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }

    .timeline-arrow {
        display: none;
    }
}

/* Programming section */
.programming h2 {
    font-size: 2.5rem;
}

.programming p.typewriter {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.programming .highlight {
    background: linear-gradient(90deg, #007BFF, #28A745);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.tech-icons {
    margin-top: 2rem;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.tech-icon i {
    font-size: 2.5rem;
    color: #007BFF;
}

.tech-icon span {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #2d3748;
}

.tech-icon:hover {
    transform: scale(1.2);
}

.tech-icon:hover i {
    color: #28A745;
}

/* Pricing section */
.pricing {
    background-color: #f8f9fa;
}

.pricing h2 {
    font-size: 2.5rem;
}

.pricing-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007BFF, #28A745);
    transition: background 0.3s ease;
}

.pricing-basic::before {
    background: linear-gradient(90deg, #007BFF, #0056b3);
}

.pricing-standard::before {
    background: linear-gradient(90deg, #28A745, #1e7e34);
}

.pricing-premium::before {
    background: linear-gradient(90deg, #FFC107, #e0a800);
}

.pricing-card:hover::before {
    height: 8px;
}

.pricing-card .card-body {
    padding: 2rem;
}

.pricing-card .card-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-card .card-text.typewriter {
    font-size: 1.2rem;
    font-weight: 300;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.pricing-card .highlight {
    background: linear-gradient(90deg, #007BFF, #28A745);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a202c;
    margin: 1.5rem 0;
}

.pricing-card .feature-list li {
    font-size: 1.1rem;
    font-weight: 400;
    color: #2d3748;
}

.pricing-card .btn {
    font-size: 1.1rem;
    padding: 0.8rem 2.5rem;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pricing-card .btn:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #f1f1f1;
}
.footer-logo img {
    max-width: 200px;
}
.footer h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
}
.footer a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #007bff;
}
.footer .phone, .footer .email {
    color: #007bff;
}

@media (max-width: 991px) {
    .pricing-card {
        margin-bottom: 1.5rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .service h1, .process h2, .programming h2, .pricing h2 {
        font-size: 2rem;
    }

    .service p.typewriter, .programming p.typewriter {
        font-size: 1.3rem;
    }

    .pricing-card .card-text.typewriter {
        font-size: 1.1rem;
    }
}