.feature-card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.feature-card h5{
    font-weight: 600;
}
.feature-card:hover {
    transform: translateY(-5px);
}

.card-body i{
    padding: 10px;
    border-radius: 10px;
    background-color: #74cef849;
}
.check-icon {
    color: #1891E0;
    font-size: 1.5rem;
}

.why-choose-section {
    background: #f8fafc;
    padding: 4rem 0;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    display: none;
    background: linear-gradient(to bottom right, #69acf0 49%, #24295a00 51%);
    z-index: -1;
}

.why-choose-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-choose-icon i {
    font-size: 2rem;
    color: #1891E0;
}

.why-choose-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #141D38;
}

.why-choose-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff4081;
    margin-bottom: 1rem;
}

.why-choose-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}
.cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 4rem 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    display: none;
    background: linear-gradient(to bottom right, #ffffff 49%, #f8fafc 51%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1891E0;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #64748b;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-control:focus {
    border-color: #1891E0;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
    background: white;
}

.form-label {
    font-weight: 600;
    color: #141D38;
    margin-bottom: 0.5rem;
    text-align: left;
}

.submit-btn {
    background: #1891E0;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #141D38;
    transform: translateY(-2px);
}

.contact-options {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.contact-options p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-btn i {
    margin-right: 0.5rem;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    max-width: 150px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
}

.upwork-btn {
    background: white;
    color: #108a00;
    border: 2px solid #108a00;
    max-width: 150px;
}

.upwork-btn:hover {
    background: #108a00;
    color: white;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.perfect-for-section {
    padding: 4rem 0;
    position: relative;
}

.perfect-for-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    display: none;
    background: linear-gradient(to bottom right, #ffffff 49%, #f8fafc 51%);
}

.perfect-for-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.perfect-for-icon {
    width: 60px;
    height: 60px;
    background: #e3f2fd;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.perfect-for-icon i {
    font-size: 1.8rem;
    color: #1891E0;
}

.perfect-for-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #141D38;
    margin-bottom: 1rem;
}

.perfect-for-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.perfect-for-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.perfect-for-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #475569;
}

.perfect-for-features li i {
    color: #1891E0;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1891E0;
    margin-bottom: 1rem;
}

.section-title p {
    color: #64748b;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
    position: relative;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #1891E0;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #d3d3d3;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #141D38;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1891E0;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
    background: #ffffff;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    background: #1891E0;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    min-width: 200px;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #141D38;
    transform: translateY(-2px);
}

.contact-options {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.contact-text {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button i {
    margin-right: 8px;
}

/* .whatsapp-button {
    background: #25D366;
    color: #ffffff;
}

.whatsapp-button:hover {
    background: #128C7E;
    color: #ffffff;
} */

.whatsapp-button {
    border-radius: 8px;
    overflow: hidden;
    min-width: 150px;
    height: 55px;
    background-color: #25D366;
    border: 1px solid #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-button img{
    width: 100px;
    height: auto;
    filter: invert(1) brightness(800%);
}

.whatsapp-button:hover{
    background-color: white;
    border: 1px solid #25D366;
}
.whatsapp-button:hover img{
    filter: unset;
}
.upwork-button {
    border-radius: 8px;
    overflow: hidden;
    min-width: 150px;
    height: 55px;
    background-color: #194759;
    border: 1px solid #194759;
    display: flex;
    align-items: center;
    justify-content: center;
}
.upwork-button img{
    width: 100px;
    height: auto;
    filter: invert(1) brightness(500%);
}

.upwork-button:hover{
    background-color: white;
    border: 1px solid #249b0c;
}
.upwork-button:hover img{
    filter: unset;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-button {
        justify-content: center;
    }
}
.how-it-works {
    background: linear-gradient(135deg, #f4f8f8 0%, #ffffff 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a237e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4l-2-2V24h-2v4l-2 2v4h6zm0-30V0h-2v4h-2v2h2v4h2V6h2V4h-2zM6 34v-4l-2-2V24H2v4l-2 2v4h6zM6 4V0H4v4H2v2h2v4h2V6h2V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

.process-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1891E0 0%, #141D38 100%);
    z-index: 1;
    opacity: 0.5;
}

.process-step {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(26, 35, 126, 0.1);
}

.process-step:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.15);
    border-color: rgba(26, 35, 126, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1891E0, #263d83);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.process-step:hover .step-number {
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1), rgba(63, 81, 181, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon::before {
    opacity: 1;
}

.step-icon i {
    font-size: 28px;
    color: #1891E0;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon i {
    transform: scale(1.1);
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #141D38;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.process-step:hover .step-title {
    color: #141D38;
}

.step-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.process-step:hover .step-description {
    color: #475569;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}