/* ==========================================
   VERMA COMPUTER - ABOUT / BEST SERVICE
========================================== */

.vc-about-section {
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}


/* LEFT CONTENT */

.vc-about-content {
    padding-right: 35px;
}

.vc-about-tag {
    display: inline-block;

    color: #0c5991;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


/* HEADING */

.vc-about-content .heading_container {
    margin-bottom: 18px;
}

.vc-about-content .heading_container h2 {
    color: #1d1d1d;

    font-size: 40px;

    font-weight: 800;

    line-height: 1.2;

    margin: 0;
}

.vc-about-content .heading_container h2 span {
    color: #0c5991;
}


/* TEXT */

.vc-about-text {
    color: #666666;

    font-size: 14px;

    line-height: 1.8;

    text-align: justify;

    margin-bottom: 14px;
}


/* ==========================================
   FEATURES
========================================== */

.vc-about-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 25px;

    margin-bottom: 28px;
}


.vc-feature {
    display: flex;

    align-items: center;

    padding: 12px;

    background: #fafafa;

    border-radius: 7px;

    border: 1px solid #eeeeee;

    transition: all 0.3s ease;
}


.vc-feature:hover {
    transform: translateY(-4px);

    border-color: #0c5991;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}


/* FEATURE ICON */

.vc-feature-icon {
    width: 45px;
    height: 45px;

    min-width: 45px;

    margin-right: 12px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff0e5;

    color: #0c5991;

    font-size: 18px;

    transition: all 0.3s ease;
}


.vc-feature:hover .vc-feature-icon {
    background: #0c5991;

    color: #ffffff;
}


.vc-feature h4 {
    color: #222222;

    font-size: 14px;

    font-weight: 700;

    margin: 0 0 3px;
}


.vc-feature p {
    color: #888888;

    font-size: 11px;

    line-height: 1.4;

    margin: 0;
}


/* ==========================================
   BUTTONS
========================================== */

.vc-about-buttons {
    display: flex;

    align-items: center;

    gap: 12px;
}


.vc-btn-primary,
.vc-btn-call {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 22px;

    border-radius: 4px;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}


.vc-btn-primary {
    background: #0c5991;

    color: #ffffff !important;
}


.vc-btn-primary:hover {
    background: #222222;

    color: #ffffff !important;
}


.vc-btn-primary i {
    margin-left: 8px;
}


.vc-btn-call {
    background: #222222;

    color: #ffffff !important;
}


.vc-btn-call:hover {
    background: #0c5991;

    color: #ffffff !important;
}


.vc-btn-call i {
    margin-right: 7px;
}


/* ==========================================
   RIGHT IMAGE
========================================== */

.vc-about-image {
    position: relative;

    min-height: 470px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* BACKGROUND CIRCLE */

.vc-image-circle {
    position: absolute;

    width: 390px;

    height: 390px;

    border-radius: 50%;

    background: #fff1e7;

    right: 20px;

    animation: vcRotate 12s linear infinite;
}


@keyframes vcRotate {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}


/* IMAGE */

.vc-image-box {
    position: relative;

    z-index: 2;

    width: 82%;

    animation: vcFloat 4s ease-in-out infinite;
}


.vc-image-box img {
    width: 100%;

    height: auto;

    display: block;

    object-fit: contain;

    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.12));
}


@keyframes vcFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* ==========================================
   FLOATING CARDS
========================================== */

.vc-floating-card {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 16px;

    background: #ffffff;

    border-radius: 7px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

    animation: vcCardFloat 3s ease-in-out infinite;
}


.vc-floating-icon {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0c5991;

    color: #ffffff;
}


.vc-floating-card strong {
    display: block;

    color: #222222;

    font-size: 12px;
}


.vc-floating-card small {
    display: block;

    color: #888888;

    font-size: 10px;
}


.card-one {
    left: 0;

    top: 80px;
}


.card-two {
    right: 0;

    bottom: 90px;

    animation-delay: 1s;
}


@keyframes vcCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* ==========================================
   EXPERIENCE
========================================== */

.vc-experience {
    position: absolute;

    z-index: 6;

    right: 35px;

    top: 30px;

    width: 105px;

    height: 105px;

    border-radius: 50%;

    background: #222222;

    color: #ffffff;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


.vc-experience strong {
    color: #0c5991;

    font-size: 25px;

    line-height: 1;

    margin-bottom: 5px;
}


.vc-experience span {
    font-size: 10px;

    line-height: 1.3;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 991px) {

    .vc-about-content {
        padding-right: 0;

        margin-bottom: 50px;
    }

    .vc-about-image {
        min-height: 400px;
    }

}


@media (max-width: 767px) {

    .vc-about-section {
        padding: 55px 15px;
    }

    .vc-about-content .heading_container h2 {
        font-size: 30px;
    }

    .vc-about-features {
        grid-template-columns: 1fr;
    }

    .vc-about-buttons {
        flex-wrap: wrap;
    }

    .vc-about-image {
        min-height: 330px;
    }

    .vc-image-circle {
        width: 280px;
        height: 280px;
    }

    .vc-image-box {
        width: 90%;
    }

    .vc-floating-card {
        padding: 8px 10px;
    }

    .vc-floating-icon {
        width: 32px;
        height: 32px;
    }

    .card-one {
        left: -5px;
        top: 45px;
    }

    .card-two {
        right: -5px;
        bottom: 40px;
    }

    .vc-experience {
        width: 85px;
        height: 85px;
        right: 5px;
        top: 5px;
    }

    .vc-experience strong {
        font-size: 20px;
    }

}



/* =========================================
   VERMA COMPUTER SERVICES
========================================= */

.verma-services-section {
    padding: 80px 0;
    background: #f7f8fa;
}


/* SECTION HEADING */

.section-heading {
    max-width: 750px;
    margin: 0 auto 50px;
}

.service-subtitle {
    display: inline-block;

    color: #0c5991;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.section-heading h2 {
    margin: 0;

    font-size: 42px;
    font-weight: 800;

    color: #111111;
}

.section-heading h2 strong {
    color: #0c5991;
}

.section-heading p {
    margin-top: 15px;

    color: #666666;

    font-size: 16px;
}


/* SERVICE CARD */

.service-card {
    height: 100%;

    padding: 32px 28px;

    background: #ffffff;

    border-radius: 8px;

    border: 1px solid #eeeeee;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    position: relative;

    overflow: hidden;

    transition: all 0.35s ease;
}


/* ORANGE TOP LINE */

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: #0c5991;

    transition: width 0.35s ease;
}


/* HOVER */

.service-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

    border-color: #0c5991;
}

.service-card:hover::before {
    width: 100%;
}


/* ICON */

.service-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: #fff3e9;

    color: #0c5991;

    font-size: 30px;

    transition: all 0.35s ease;
}

.service-card:hover .service-icon {
    background: #0c5991;

    color: #ffffff;

    transform: rotateY(180deg);
}


/* TITLE */

.service-card h3 {
    margin-bottom: 12px;

    font-size: 22px;

    font-weight: 700;

    color: #111111;
}


/* DESCRIPTION */

.service-card p {
    min-height: 55px;

    margin-bottom: 18px;

    color: #666666;

    font-size: 14px;

    line-height: 1.6;
}


/* LIST */

.service-card ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.service-card ul li {
    position: relative;

    padding-left: 20px;

    margin-bottom: 9px;

    color: #444444;

    font-size: 14px;
}

.service-card ul li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #0c5991;

    font-weight: 700;
}


/* MOBILE */

@media (max-width: 767px) {

    .verma-services-section {
        padding: 55px 15px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .service-card {
        padding: 25px 22px;
    }

    .service-card h3 {
        font-size: 20px;
    }

}


 /* ==========================================
   VERMA COMPUTER - HOW IT WORKS
========================================== */

.vc-process-section {
    width: 100%;
    padding: 70px 0;
    background: #f8f8f8;
    overflow: hidden;
}


/* HEADING */

.vc-process-heading {
    text-align: center;
    margin-bottom: 55px;
}

.vc-process-heading span {
    display: block;
    color: #0c5991;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.vc-process-heading h2 {
    margin: 0 0 12px;
    color: #222;
    font-size: 38px;
    font-weight: 700;
}

.vc-process-heading h2 strong {
    color: #0c5991;
}

.vc-process-heading p {
    color: #777;
    font-size: 15px;
    margin: 0 auto;
    max-width: 650px;
}


/* MAIN */

.vc-process {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}


/* CONNECTING LINE */

.vc-process:before {
    content: "";
    position: absolute;

    top: 43px;

    left: 12%;
    right: 12%;

    height: 3px;

    background: #dddddd;

    z-index: 1;
}


/* ORANGE ANIMATED LINE */

.vc-process:after {
    content: "";

    position: absolute;

    top: 43px;

    left: 12%;

    width: 0;

    height: 3px;

    background: #0c5991;

    z-index: 1;

    animation: vcLine 3s ease forwards;
}


@keyframes vcLine {

    from {
        width: 0;
    }

    to {
        width: 76%;
    }

}


/* STEP */

.vc-step {
    width: 23%;

    text-align: center;

    position: relative;

    z-index: 2;

    opacity: 0;

    animation: vcStep 0.7s ease forwards;
}


/* DIFFERENT DELAY FOR EACH */

.vc-step:nth-child(1) {
    animation-delay: 0.3s;
}

.vc-step:nth-child(2) {
    animation-delay: 0.8s;
}

.vc-step:nth-child(3) {
    animation-delay: 1.3s;
}

.vc-step:nth-child(4) {
    animation-delay: 1.8s;
}


@keyframes vcStep {

    0% {
        opacity: 0;
        transform: translateY(35px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ICON */

.vc-icon {
    width: 86px;
    height: 86px;

    margin: 0 auto 22px;

    border-radius: 50%;

    background: #ffffff;

    border: 3px solid #0c5991;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;

    color: #0c5991;

    font-size: 28px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}


/* NUMBER */

.vc-icon b {
    position: absolute;

    top: -8px;
    right: -8px;

    width: 27px;
    height: 27px;

    background: #222;

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 9px;
}


/* ICON HOVER */

.vc-step:hover .vc-icon {

    background: #0c5991;

    color: #fff;

    transform: translateY(-8px);

    box-shadow:
        0 12px 30px rgba(255,107,0,0.30);
}


/* ICON PULSE */

.vc-step:nth-child(1) .vc-icon {
    animation: vcPulse 2s infinite;
}

.vc-step:nth-child(2) .vc-icon {
    animation: vcPulse 2s infinite 0.5s;
}

.vc-step:nth-child(3) .vc-icon {
    animation: vcPulse 2s infinite 1s;
}

.vc-step:nth-child(4) .vc-icon {
    animation: vcPulse 2s infinite 1.5s;
}


@keyframes vcPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(255,107,0,0.35);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255,107,0,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,107,0,0);
    }

}


/* TEXT */

.vc-step h4 {
    color: #222;

    font-size: 19px;

    font-weight: 700;

    margin-bottom: 10px;
}

.vc-step p {
    color: #666;

    font-size: 13px;

    line-height: 1.7;

    max-width: 220px;

    margin: auto;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .vc-process-section {
        padding: 55px 15px;
    }

    .vc-process-heading h2 {
        font-size: 29px;
    }

    .vc-process {
        display: block;
    }


    /* VERTICAL LINE */

    .vc-process:before {

        top: 35px;

        bottom: 35px;

        left: 31px;

        right: auto;

        width: 3px;

        height: auto;
    }


    .vc-process:after {

        top: 35px;

        bottom: auto;

        left: 31px;

        width: 3px;

        height: 0;

        animation: vcMobileLine 3s ease forwards;
    }


    @keyframes vcMobileLine {

        from {
            height: 0;
        }

        to {
            height: calc(100% - 70px);
        }

    }


    /* STEP */

    .vc-step {

        width: 100%;

        min-height: 130px;

        display: flex;

        text-align: left;

        align-items: flex-start;

        margin-bottom: 15px;
    }


    /* ICON */

    .vc-icon {

        width: 64px;

        height: 64px;

        min-width: 64px;

        margin: 0 20px 0 0;

        font-size: 21px;
    }


    .vc-icon b {

        width: 21px;

        height: 21px;

        font-size: 8px;

        top: -5px;

        right: -5px;
    }


    /* TEXT */

    .vc-step h4 {

        font-size: 17px;

        margin-top: 3px;

        margin-bottom: 5px;
    }

    .vc-step p {

        max-width: none;

        margin: 0;

        padding-right: 5px;

        font-size: 13px;
    }

}