@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

.v1-what-we-offer {
    color: #797979;
    letter-spacing: 0.5px;
    background-color: #ffffff;
    font-family: 'Raleway', sans-serif;
}

.v1-what-we-offer h1,
.v1-what-we-offer h2,
.v1-what-we-offer h3,
.v1-what-we-offer h4,
.v1-what-we-offer h5,
.v1-what-we-offer h6 {
    color: #323232;
}

.v1-what-we-offer .depth {
    box-shadow: 0 2px 6px 0 rgb(218 218 253 / 55%), 0 2px 6px 0 rgb(206 206 238 / 44%);
}

.v1-what-we-offer .section-padding {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.v2-what-we-offer .container div h3 {
    font-size: 37px;
    margin: 20px 0;
}

.v2-what-we-offer .v2-icons svg {
    height: 60px;
}

.v2-what-we-offer .card h5 {
    font-size: 24px;
}

.v2-what-we-offer .card p {
    font-size: 15px;
}

.v2-what-we-offer .card-primary {

    border-left: 3px solid blue;
    border-top: 3px solid blue;
}

.v2-what-we-offer .card-warning {

    border-left: 3px solid yellow;
    border-top: 3px solid yellow;
}

.v2-what-we-offer .card-success {

    border-left: 3px solid green;
    border-top: 3px solid green;
}

.v2-what-we-offer .card-danger {

    border-left: 3px solid red;
    border-top: 3px solid red;
}

.v3-what-we-offer .section-padding {
    padding: 80px 0;
}

.v3-what-we-offer .section-title {
    position: relative;
    margin-bottom: 60px;
}

.v3-what-we-offer .section-title h3 {
    /* background: linear-gradient(45deg, #2937f0, #9f1ae2);
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: black;
    font-family: "Inria Sans", serif;
}

.v3-what-we-offer .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2937f0, #9f1ae2);
}

.v3-what-we-offer .feature-card {
    transition: all 0.3s ease;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.v3-what-we-offer .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.v3-what-we-offer .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.v3-what-we-offer .card-primary .icon-wrapper {
    background: linear-gradient(135deg, #6e8efb, #4834d4);
    color: white;
}

.v3-what-we-offer .card-danger .icon-wrapper {
    background: linear-gradient(135deg, #ff6b6b, #ee0979);
    color: white;
}

.v3-what-we-offer .card-success .icon-wrapper {
    background: linear-gradient(135deg, #2af598, #009efd);
    color: white;
}

.v3-what-we-offer .card-warning .icon-wrapper {
    background: linear-gradient(135deg, #f6d365, #fda085);
    color: white;
}

.v3-what-we-offer .feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.v3-what-we-offer .feature-card .card-body {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.v3-what-we-offer .feature-card h5 {
    margin: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    /* background: linear-gradient(45deg, #2937f0, #9f1ae2);
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: black;
    font-family: "Inria Sans", serif;
}

.v3-what-we-offer .feature-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: "Inria Sans", serif;
}

.v3-what-we-offer .subtitle {
    /* background: linear-gradient(45deg, #2937f0, #9f1ae2);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: black;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.v3-what-we-offer .card-primary {
    border-top: 3px solid;
    border-image: linear-gradient(to right, #6e8efb, #4834d4) 1;
}

.v3-what-we-offer .card-danger {
    border-top: 3px solid;
    border-image: linear-gradient(to right, #ff6b6b, #ee0979) 1;
}

.v3-what-we-offer .card-success {
    border-top: 3px solid;
    border-image: linear-gradient(to right, #2af598, #009efd) 1;
}

.v3-what-we-offer .card-warning {
    border-top: 3px solid;
    border-image: linear-gradient(to right, #f6d365, #fda085) 1;
}

@media (max-width: 768px) {
    .v3-what-we-offer .section-padding {
        padding: 50px 0;
    }

    .v3-what-we-offer .feature-card {
        margin-bottom: 20px;
    }
}

.v4-what-we-offer .section-padding {
    padding: 80px 0;
}

.v4-what-we-offer .section-title {
    position: relative;
    margin-bottom: 60px;
}

.v4-what-we-offer .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.v4-what-we-offer .feature-card {
    transition: all 0.3s ease;
    border: none;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.v4-what-we-offer .feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 20px 20px 2000px 20px;
}

.v4-what-we-offer .feature-card.card-primary::before {
    background-color: rgb(117 108 226 / 20%);
}

.v4-what-we-offer .feature-card.card-danger::before {
    background-color: rgba(226, 108, 108, 0.2);
}

.v4-what-we-offer .feature-card.card-success::before {
    background-color: rgba(134, 226, 108, 0.2);
}

.v4-what-we-offer .feature-card.card-warning::before {
    background-color: rgba(226, 175, 108, 0.2);
}

.v4-what-we-offer .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.v4-what-we-offer .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.v4-what-we-offer .card-primary .icon-wrapper {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.v4-what-we-offer .card-danger .icon-wrapper {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.v4-what-we-offer .card-success .icon-wrapper {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.v4-what-we-offer .card-warning .icon-wrapper {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.v4-what-we-offer .feature-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.v4-what-we-offer .feature-card .card-body {
    padding: 2rem;
}

.v4-what-we-offer .feature-card h5 {
    margin: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: "Inria Sans", serif;
}

.v4-what-we-offer .feature-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: "Inria Sans", serif;
}

.v4-what-we-offer .subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .v4-what-we-offer .section-padding {
        padding: 50px 0;
    }

    .v4-what-we-offer .feature-card {
        margin-bottom: 20px;
    }
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: black;
}

.feature-card {
    transition: all 0.3s ease;
    border: none;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.feature-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 20px 20px 2px 2px;
}

.feature-card.card-primary::before {
    background-color: rgb(117 108 226 / 20%);
}

.feature-card.card-danger::before {
    background-color: rgba(226, 108, 108, 0.2);
}

.feature-card.card-success::before {
    background-color: rgba(134, 226, 108, 0.2);
}

.feature-card.card-warning::before {
    background-color: rgba(226, 175, 108, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 100%;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.icon-wrapper svg {
    height: 50px;
    width: 50px;
}

.card-primary .icon-wrapper {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.card-danger .icon-wrapper {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.card-success .icon-wrapper {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.card-warning .icon-wrapper {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.feature-card .card-body {
    padding: 2rem;
}

.feature-card h5 {
    margin: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: "Inria Sans", serif;
}

.feature-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: "Inria Sans", serif;
}

.subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .feature-card {
        margin-bottom: 20px;
    }
}