body {
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.hero-section {
    padding: 100px 0px 0px 0px !important;
}

.hero-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.quote-form {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quote-form h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 1rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0px 0px 0px;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
        margin-top: 50px;
    }

    .hero-description {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .quote-form {
        padding: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 10px 0px 0px 0px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .quote-form {
        padding: 15px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.corner-icon {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 80px;
    height: 80px;
    background-color: #ED1651;
    border: 2px solid #ED1651;
    border-radius: 0 0.375rem 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;

}

.corner-icon span i {
    margin-left: 30px !important;
    margin-top: 10px !important;
}

.card:hover h5 {
    color: #ED1651 !important;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: #ED1651;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.check-icon::after {
    content: "✓";
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.role-title {
   margin-top:-3px !important;
    display: inline-block;
}

.title-wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.content-wrapper {
    padding-left: 36px;
}

/* Ensure equal height for all columns */
.role-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 24px;
}

/* Consistent spacing between rows */
.row+.row {
    margin-top: 0;
}

@media (max-width: 768px) {

    .content-wrapper {
        padding-left: 32px;
    }

    .role-item {
        margin-bottom: 20px;
    }
}

/* testimonial */


.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 350px;
    margin-right: 20px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* last  */

.tech-tab {
    cursor: pointer;
    color: inherit;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 4px;
    /* some space for underline */
    border-bottom: 3px solid transparent;
    /* default no underline */
}

.tech-tab.active {
    color: #ED1651;
    font-weight: bold;
    border-bottom: 3px solid #ED1651;
    /* red underline */
}