/* =========================================================
   MAVENTRA SERVICE PAGES - PREMIUM BLUE / GRAY THEME
   ========================================================= */

.service-page {
    background: #f5f8fc;
    color: #172033;
    font-family: "Inter", sans-serif;
    overflow: hidden;
}

/* =========================================================
   HERO
   ========================================================= */

.service-page .service-hero {
    position: relative;
    min-height: 390px;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 85% 20%, rgba(79,195,247,.25), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(21,101,192,.20), transparent 35%),
        linear-gradient(135deg, #071a35 0%, #0d3b70 50%, #1565c0 100%);
    color: #fff;
}

/* decorative circles */
.service-page .service-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    top: -180px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}

.service-page .service-hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    left: -100px;
    bottom: -130px;
    border-radius: 50%;
    background: rgba(79,195,247,.10);
}

.service-page .service-hero .container {
    position: relative;
    z-index: 2;
}

.service-page .service-category {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 16px;
    border-radius: 30px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.20);
    color: #d8f3ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .4px;
    backdrop-filter: blur(8px);
}

.service-page .service-hero h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.service-page .service-tagline {
    margin: 0 0 22px;
    color: #dff6ff;
    font-size: 19px;
    font-weight: 500;
}

.service-page .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(255,255,255,.78);
    font-size: 14px;
}

.service-page .breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.service-page .breadcrumb a:hover {
    color: #4fc3f7;
}

.service-page .breadcrumb .separator {
    color: rgba(255,255,255,.45);
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

.service-page .service-main {
    padding: 90px 0 80px;
}

.service-page .service-main .container {
    max-width: 1140px;
}


/* =========================================================
   SERVICE DESCRIPTION CARD
   ========================================================= */

.service-page .service-description {
    position: relative;
    margin-bottom: 75px;
    padding: 42px 45px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid #e7edf5;
    box-shadow: 0 15px 45px rgba(18,55,90,.08);
    overflow: hidden;
}

.service-page .service-description::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(
        180deg,
        #4fc3f7,
        #1565c0,
        #455a64
    );
}

.service-page .service-description h2 {
    margin: 0 0 12px;
    color: #10233f;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 750;
}

.service-page .service-description p {
    margin: 0;
    color: #5b6879;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.service-page .why-section {
    text-align: center;
    margin-bottom: 75px;
}

.service-page .why-section .section-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #1565c0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-page .why-section h2 {
    margin: 0 0 14px;
    color: #10233f;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.service-page .why-section > p {
    max-width: 720px;
    margin: 0 auto 40px;
    color: #687587;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   BENEFIT CARDS
   ========================================================= */

.service-page .benefits-grid,
.service-page .why-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 35px;
}

.service-page .benefit-card,
.service-page .why-card {
    position: relative;
    min-height: 235px;
    padding: 32px 25px;
    text-align: center;
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(20,60,100,.07);
    transition: all .35s ease;
    overflow: hidden;
}

.service-page .benefit-card::before,
.service-page .why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #4fc3f7,
        #1565c0,
        #455a64
    );
}

.service-page .benefit-card:hover,
.service-page .why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(21,101,192,.20);
    box-shadow: 0 20px 45px rgba(21,101,192,.14);
}

.service-page .benefit-icon,
.service-page .why-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(79,195,247,.15),
        rgba(21,101,192,.12)
    );
    color: #1565c0;
    font-size: 25px;
}

.service-page .benefit-card h3,
.service-page .why-card h3 {
    margin: 0 0 10px;
    color: #142742;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
}

.service-page .benefit-card p,
.service-page .why-card p {
    margin: 0;
    color: #6b7788;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CTA
   ========================================================= */

.service-page .service-cta {
    position: relative;
    margin-top: 30px;
    padding: 55px 45px;
    text-align: center;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 10%, rgba(79,195,247,.25), transparent 30%),
        linear-gradient(
            135deg,
            #102c50 0%,
            #1565c0 60%,
            #263c50 100%
        );
    box-shadow: 0 20px 50px rgba(13,59,112,.18);
}

.service-page .service-cta::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    left: -100px;
    bottom: -150px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
}

.service-page .service-cta > * {
    position: relative;
    z-index: 2;
}

.service-page .service-cta h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
}

.service-page .service-cta p {
    max-width: 650px;
    margin: 0 auto 25px;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   BUTTON
   ========================================================= */

.service-page .theme-btn,
.service-page .theme-btn-two,
.service-page .btn_style_one {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 27px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(
        135deg,
        #4fc3f7,
        #1565c0
    );
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(21,101,192,.20);
    transition: all .3s ease;
}

.service-page .theme-btn:hover,
.service-page .theme-btn-two:hover,
.service-page .btn_style_one:hover {
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 13px 28px rgba(21,101,192,.30);
}


/* =========================================================
   REMOVE UNWANTED DEFAULT STYLING
   ========================================================= */

.service-page h1,
.service-page h2,
.service-page h3,
.service-page h4,
.service-page p {
    font-family: "Inter", sans-serif;
}

.service-page ul {
    margin: 0;
    padding: 0;
}

.service-page a {
    text-decoration: none;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .service-page .service-hero {
        min-height: 340px;
        padding: 130px 0 70px;
    }

    .service-page .service-hero h1 {
        font-size: 42px;
    }

    .service-page .service-main {
        padding: 65px 0;
    }

    .service-page .benefits-grid,
    .service-page .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-page .service-description {
        padding: 35px;
    }
}


@media (max-width: 767px) {

    .service-page .service-hero {
        min-height: 300px;
        padding: 115px 0 60px;
    }

    .service-page .service-hero h1 {
        font-size: 34px;
    }

    .service-page .service-tagline {
        font-size: 16px;
    }

    .service-page .service-main {
        padding: 50px 0;
    }

    .service-page .service-description {
        padding: 30px 25px;
        margin-bottom: 50px;
    }

    .service-page .service-description h2 {
        font-size: 27px;
    }

    .service-page .why-section h2 {
        font-size: 30px;
    }

    .service-page .benefits-grid,
    .service-page .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-page .benefit-card,
    .service-page .why-card {
        min-height: auto;
    }

    .service-page .service-cta {
        padding: 40px 25px;
        border-radius: 18px;
    }

    .service-page .service-cta h2 {
        font-size: 27px;
    }
}


@media (max-width: 480px) {

    .service-page .service-hero h1 {
        font-size: 30px;
    }

    .service-page .service-description {
        padding: 25px 20px;
    }

    .service-page .service-description h2 {
        font-size: 24px;
    }

    .service-page .why-section h2 {
        font-size: 27px;
    }

    .service-page .service-cta {
        padding: 35px 20px;
    }
}
/* =========================================================
   SERVICE SUB-PAGES ONLY
   Does NOT affect header / mega menu / other pages
   ========================================================= */

/* Main service page wrapper */
.service-page-content {
    width: 100%;
    padding: 80px 0 90px;
    background: #f7f9fc;
}

/* Keep service content centered */
.service-page-content .container {
    max-width: 1140px;
    margin: 0 auto;
}

/* =========================================================
   SERVICE HEADER
   ========================================================= */

.service-page-content .service-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}

.service-page-content .service-header h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 15px;
    color: #14213d;
}

.service-page-content .service-header .service-tagline {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 600;
    color: #1565c0;
    margin-bottom: 15px;
}

.service-page-content .service-header p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 780px;
    margin: 0 auto;
}


/* =========================================================
   SERVICE DESCRIPTION
   ========================================================= */

.service-page-content .service-description {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.service-page-content .service-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.service-page-content .why-choose-section {
    padding: 60px 0 20px;
}

.service-page-content .why-choose-section .section-title {
    text-align: center;
    margin-bottom: 45px;
}

.service-page-content .why-choose-section .section-title h2 {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 800;
    color: #14213d;
    margin-bottom: 12px;
}

.service-page-content .why-choose-section .section-title p {
    font-size: 16px;
    color: #777;
    margin: 0 auto;
}


/* =========================================================
   WHY CHOOSE US CARDS
   ========================================================= */

.service-page-content .why-card {
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid #e9edf3;
    box-shadow: 0 8px 30px rgba(20, 33, 61, 0.07);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Top accent */
.service-page-content .why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #1565c0,
        #4fc3f7
    );
}

/* Hover */
.service-page-content .why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(21, 101, 192, 0.14);
    border-color: rgba(21, 101, 192, 0.18);
}


/* =========================================================
   WHY CARD ICON
   ========================================================= */

.service-page-content .why-card .why-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        #e3f2fd,
        #f5f9ff
    );
    color: #1565c0;
    font-size: 27px;
    transition: all 0.35s ease;
}

.service-page-content .why-card:hover .why-icon {
    background: linear-gradient(
        135deg,
        #1565c0,
        #4fc3f7
    );
    color: #fff;
    transform: scale(1.08);
}


/* =========================================================
   WHY CARD TEXT
   ========================================================= */

.service-page-content .why-card h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    color: #14213d;
    margin-bottom: 10px;
}

.service-page-content .why-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}


/* =========================================================
   SERVICE CTA
   ========================================================= */

.service-page-content .service-cta {
    max-width: 950px;
    margin: 65px auto 0;
    padding: 40px 45px;
    border-radius: 18px;
    text-align: center;
    background: linear-gradient(
        135deg,
        #1565c0,
        #263238
    );
    box-shadow: 0 15px 40px rgba(21, 101, 192, 0.18);
}

.service-page-content .service-cta h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-page-content .service-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin-bottom: 25px;
}


/* =========================================================
   IMPORTANT:
   Bootstrap ROW/COLUMN FIX
   Prevents your service CSS from breaking Bootstrap
   ========================================================= */

.service-page-content .row {
    display: flex;
    flex-wrap: wrap;
}

.service-page-content [class*="col-"] {
    position: relative;
}


/* =========================================================
   CARD SPACING
   ========================================================= */

.service-page-content .why-card-wrapper {
    margin-bottom: 30px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .service-page-content {
        padding: 60px 0 70px;
    }

    .service-page-content .service-header h1 {
        font-size: 34px;
    }

    .service-page-content .service-header .service-tagline {
        font-size: 18px;
    }

    .service-page-content .why-choose-section .section-title h2 {
        font-size: 30px;
    }

}


@media (max-width: 767px) {

    .service-page-content {
        padding: 45px 15px 60px;
    }

    .service-page-content .service-header {
        margin-bottom: 40px;
    }

    .service-page-content .service-header h1 {
        font-size: 28px;
    }

    .service-page-content .service-header .service-tagline {
        font-size: 17px;
    }

    .service-page-content .service-description {
        margin-bottom: 40px;
    }

    .service-page-content .why-choose-section {
        padding-top: 40px;
    }

    .service-page-content .why-choose-section .section-title h2 {
        font-size: 26px;
    }

    .service-page-content .why-card {
        padding: 25px 20px;
    }

    .service-page-content .service-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .service-page-content .service-cta h2 {
        font-size: 23px;
    }
}
/* =========================================================
   MAVENTRA SERVICE PAGES
   ALIGNMENT + SPACING REFINEMENT
   Colors and hover effects unchanged
   ========================================================= */


/* =========================
   HERO ALIGNMENT
   ========================= */

.service-hero {
    padding: 145px 20px 85px;
    text-align: center;
}

.service-hero .container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.service-hero-content {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.service-category {
    margin: 0 auto 18px;
}

.service-hero h1 {
    width: 100%;
    max-width: 950px;
    margin: 0 auto 16px;
    text-align: center;
}

.service-hero .service-tagline {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 22px;
    text-align: center;
}

.service-breadcrumb {
    width: 100%;
    margin: 18px auto 0;
    justify-content: center;
    text-align: center;
}


/* =========================
   INTRO SECTION
   ========================= */

.service-intro {
    padding: 70px 20px 45px;
    text-align: center;
}

.service-intro .container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.service-intro-card {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-card h2 {
    width: 100%;
    margin: 0 auto 14px;
    text-align: center;
}

.service-intro-card p {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}


/* =========================
   WHY CHOOSE US
   ========================= */

.service-why {
    padding: 65px 20px 85px;
    text-align: center;
}

.service-why .container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}


/* Section heading */

.service-section-heading {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 42px;
    text-align: center;
}

.service-section-heading .small-title {
    display: block;
    width: fit-content;
    margin: 0 auto 10px;
    text-align: center;
}

.service-section-heading h2 {
    width: 100%;
    margin: 0 auto 13px;
    text-align: center;
}

.service-section-heading p {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}


/* =========================
   MAIN WHY CARD
   ========================= */

.service-why-card {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.service-why-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.service-why-icon {
    margin: 0 auto 18px;
}

.service-why-content > h3 {
    width: 100%;
    margin: 0 auto 10px;
    text-align: center;
}

.service-why-content > p {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 32px;
    text-align: center;
}


/* =========================
   BENEFIT CARDS
   ========================= */

.service-benefits {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;

    align-items: stretch;
    justify-content: center;
}

.service-benefit {
    width: 100%;
    min-height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;
}

.service-benefit-icon {
    flex-shrink: 0;
    margin: 0 auto 15px;
}

.service-benefit h4 {
    width: 100%;
    margin: 0 auto 8px;
    text-align: center;
}

.service-benefit p {
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
    text-align: center;
}


/* =========================
   CTA ALIGNMENT
   ========================= */

.service-cta {
    padding: 75px 20px;
    text-align: center;
}

.service-cta .container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.service-cta-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-cta h2 {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 14px;
    text-align: center;
}

.service-cta p {
    width: 100%;
    max-width: 650px;
    margin: 0 auto 28px;
    text-align: center;
}

.service-page .service-cta .theme-btn {
    background: linear-gradient(135deg, #135dcf, #36b5ee) !important;
    background-color: transparent !important;
    color: #fff !important;
    border: none !important;
    margin: 0 auto;
}

.service-page .service-cta .theme-btn:hover {
    color: #fff !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .service-hero {
        padding: 125px 20px 75px;
    }

    .service-intro {
        padding: 60px 20px 40px;
    }

    .service-why {
        padding: 60px 20px 75px;
    }

    .service-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-benefit {
        min-height: 180px;
    }

    .service-cta {
        padding: 65px 20px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .service-hero {
        padding: 105px 15px 60px;
    }

    .service-hero .container,
    .service-intro .container,
    .service-why .container,
    .service-cta .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .service-hero-content {
        max-width: 100%;
    }

    .service-hero h1 {
        max-width: 100%;
        margin-bottom: 14px;
    }

    .service-hero .service-tagline {
        max-width: 600px;
    }

    .service-breadcrumb {
        margin-top: 15px;
    }


    .service-intro {
        padding: 50px 15px 30px;
    }

    .service-intro-card {
        padding-left: 20px;
        padding-right: 20px;
    }


    .service-why {
        padding: 50px 15px 65px;
    }

    .service-section-heading {
        margin-bottom: 32px;
    }

    .service-why-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-benefit {
        min-height: auto;
    }


    .service-cta {
        padding: 60px 15px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .service-hero {
        padding: 95px 12px 55px;
    }

    .service-intro {
        padding: 45px 12px 25px;
    }

    .service-why {
        padding: 45px 12px 55px;
    }

    .service-cta {
        padding: 55px 12px;
    }

    .service-benefits {
        gap: 12px;
    }
}