/* Services Revamp Styles */

/* --- Global Header Overrides (for alignment) --- */
header.homepage1-body .container .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ensure Nav is centered */
header.homepage1-body .vl-main-menu {
    text-align: center;
}

/* Logo Fix */
header.homepage1-body .vl-logo {
    display: flex;
    align-items: center;
}

/* Header Button (Get Started) */
header.homepage1-body .vl-btn1 {
    background-color: #0089df;
    color: #fff !important;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
}

header.homepage1-body .vl-btn1:hover {
    background-color: #006fb3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 137, 223, 0.3);
}

header.homepage1-body .vl-btn1 i {
    transform: rotate(-45deg);
    /* Arrow pointing up-right */
    font-size: 14px;
}

/* --- Services Hero Section --- */
/* --- Services Hero Section (Centered) --- */
.inner-header-area {
    background-image: none !important;
    background-color: #f8f9fc;
    /* Very light subtle grey/white */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.inner-header-area .inner-heading {
    position: relative;
    z-index: 2;
}

.inner-header-area .inner-heading h1 {
    font-size: 48px;
    color: #0B182A;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.inner-header-area .inner-heading a {
    color: #5C5D62;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inner-header-area .inner-heading a span {
    color: #0089df;
    font-weight: 700;
}

/* Hide image container in case it remains in HTML (though we'll remove it) */
.inner-header-area .imges {
    display: none !important;
}

/* --- Service Grid Rewrite --- */
.service-inner-area {
    background-color: #fff;
    padding: 100px 0;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

/* Icon Styling */
.service-card .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(0, 137, 223, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background: #0089df;
}

.service-card .icon-box i {
    font-size: 28px;
    color: #0089df;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box i {
    color: #fff;
}

/* Content Styling */
.service-card .title {
    font-size: 22px;
    font-weight: 700;
    color: #0B182A;
    display: block;
    margin-bottom: 15px;
    font-family: 'Manrope', sans-serif;
}

.service-card p {
    color: #5C5D62;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Learn More Link */
.service-card .readmore {
    font-weight: 700;
    color: #0B182A;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.service-card .readmore i {
    font-size: 14px;
    transition: 0.3s;
    transform: rotate(0);
}

.service-card:hover .readmore {
    color: #0089df;
}

.service-card:hover .readmore i {
    transform: translateX(4px) rotate(-45deg);
}

/* Responsive Edits */
@media (max-width: 991px) {
    header.homepage1-body .container .row {
        flex-wrap: wrap;
    }

    .inner-header-area .inner-heading h1 {
        font-size: 40px;
    }
}