/* =========================================================
   DIGITAL AGENCY
   PHASE 2 - MAIN STYLESHEET
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap');

:root {
    --primary: #5b5cf0;
    --primary-dark: #4546dc;
    --secondary: #8b5cf6;

    --dark: #0d1025;
    --dark-two: #151936;

    --text: #62657a;
    --heading: #101326;

    --light: #f7f8fc;
    --border: #e8eaf2;

    --white: #ffffff;

    --radius: 22px;

    --shadow:
        0 20px 60px rgba(21, 25, 54, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', sans-serif;
    color: var(--heading);
    font-weight: 800;
}

a {
    transition: .25s ease;
}

img {
    max-width: 100%;
}

.section-space {
    padding: 105px 0;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    padding-top: 16px;
    padding-bottom: 16px;
}

.navbar-brand {
    color: var(--heading) !important;
}

.navbar .nav-link {
    font-weight: 600;
    color: #34374b;
    padding-left: 14px !important;
    padding-right: 14px !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary);
}

.dropdown-menu {
    border: 0;
    padding: 12px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.dropdown-item {
    padding: 10px 14px;
    border-radius: 9px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #f1f1ff;
    color: var(--primary);
}


/* =========================================================
   BUTTONS
========================================================= */

.agency-btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color: #fff;
    border: 0;

    padding: 15px 25px;

    border-radius: 12px;

    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(91, 92, 240, .25);
}

.agency-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
}

.agency-btn-primary i,
.agency-btn-dark i {
    margin-left: 8px;
}

.agency-btn-outline {
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;

    padding: 14px 25px;

    border-radius: 12px;

    font-weight: 700;
}

.agency-btn-outline:hover {
    background: #fff;
    color: var(--dark);
}

.agency-btn-dark {
    background: var(--dark);
    color: #fff;

    padding: 15px 25px;

    border-radius: 12px;

    font-weight: 700;
}

.agency-btn-dark:hover {
    background: var(--primary);
    color: #fff;
}


/* =========================================================
   HERO
========================================================= */

.agency-hero {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(91,92,240,.22),
            transparent 34%
        ),
        radial-gradient(
            circle at 80% 60%,
            rgba(139,92,246,.18),
            transparent 30%
        ),
        #0d1025;

    color: #fff;
}

.min-vh-hero {
    min-height: 760px;
    padding: 100px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 14px;

    border-radius: 30px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.1);

    color: #d9daf0;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 25px;
}

.badge-dot {
    width: 8px;
    height: 8px;

    background: #65f2b5;

    border-radius: 50%;

    box-shadow:
        0 0 15px #65f2b5;
}

.hero-title {
    color: #fff;

    font-size: clamp(
        44px,
        5.5vw,
        76px
    );

    line-height: 1.05;

    letter-spacing: -3px;

    max-width: 800px;
}

.hero-title span {
    background: linear-gradient(
        90deg,
        #8e90ff,
        #c98cff
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-description {
    color: #b6b8cc;

    font-size: 18px;
    line-height: 1.8;

    max-width: 650px;

    margin: 27px 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 48px;
}

.trust-item strong {
    display: block;

    color: #fff;

    font-size: 22px;
}

.trust-item span {
    font-size: 12px;
    color: #9295ac;
}

.trust-divider {
    height: 40px;
    width: 1px;
    background: rgba(255,255,255,.15);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;
    padding: 30px;
}

.hero-dashboard {
    position: relative;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(18px);

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 25px;

    padding: 18px;

    box-shadow:
        0 30px 100px rgba(0,0,0,.25);

    transform:
        perspective(1000px)
        rotateY(-5deg)
        rotateX(3deg);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom:
        1px solid rgba(255,255,255,.1);

    padding-bottom: 15px;
}

.dashboard-header div {
    display: flex;
    gap: 6px;
}

.dashboard-header span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: rgba(255,255,255,.3);
}

.dashboard-header small {
    color: #aeb0c6;
}

.dashboard-body {
    padding: 20px 5px 5px;
}

.dashboard-mini-card {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255,255,255,.07);

    border-radius: 15px;

    padding: 18px;
}

.dashboard-mini-card small {
    color: #9fa2ba;
}

.dashboard-mini-card h4 {
    color: #fff;
    margin: 5px 0 0;
}

.growth-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background:
        rgba(101,242,181,.13);

    color: #65f2b5;
}

.fake-chart {
    height: 190px;

    display: flex;
    align-items: flex-end;
    gap: 11px;

    padding: 30px 10px 10px;
}

.fake-chart div {
    flex: 1;

    background: linear-gradient(
        180deg,
        #8b8dff,
        #5b5cf0
    );

    border-radius: 6px 6px 2px 2px;

    opacity: .85;
}

.dashboard-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 15px;
}

.dashboard-grid div {
    background: rgba(255,255,255,.06);

    padding: 13px;

    border-radius: 10px;

    color: #c6c8d8;

    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 12px;
}

.dashboard-grid i {
    color: #9a9cff;
}

.floating-card {
    position: absolute;

    background: #fff;

    border-radius: 14px;

    padding: 13px 16px;

    box-shadow:
        0 15px 50px rgba(0,0,0,.2);

    display: flex;
    align-items: center;
    gap: 10px;

    z-index: 4;
}

.floating-card i {
    color: var(--primary);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    color: var(--heading);
}

.floating-card small {
    font-size: 10px;
}

.floating-card-one {
    left: -10px;
    bottom: 90px;
}

.floating-card-two {
    right: -10px;
    top: 80px;
}


/* =========================================================
   TECHNOLOGY STRIP
========================================================= */

.tech-strip {
    border-bottom:
        1px solid var(--border);

    padding: 35px 0;
}

.tech-strip-title {
    text-align: center;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #a1a3af;

    margin-bottom: 25px;
}

.tech-strip-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 20px;
}

.tech-strip-grid div {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    font-size: 16px;
    font-weight: 700;

    color: #777a8d;
}

.tech-strip-grid i {
    font-size: 24px;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 720px;
    margin: 0 auto 45px;
}

.section-label {
    display: inline-block;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.section-heading h2,
.big-section-title,
.about-content h2 {
    font-size: clamp(
        34px,
        4vw,
        50px
    );

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.section-heading h2 span,
.big-section-title span,
.about-content h2 span {
    color: var(--primary);
}

.section-heading p,
.section-text,
.about-content p {
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES
========================================================= */

.service-card {
    height: 100%;

    position: relative;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 30px;

    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color:
        rgba(91,92,240,.2);
}

.service-number {
    position: absolute;

    right: 25px;
    top: 25px;

    color: #e4e5ec;

    font-size: 14px;

    font-weight: 800;
}

.service-icon {
    width: 58px;
    height: 58px;

    border-radius: 16px;

    display: grid;
    place-items: center;

    background: #f0f0ff;

    color: var(--primary);

    font-size: 25px;

    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 14px;
}

.service-card p {
    line-height: 1.7;

    min-height: 82px;

    font-size: 14px;
}

.service-card a {
    text-decoration: none;

    color: var(--heading);

    font-weight: 700;

    font-size: 13px;
}

.service-card a i {
    margin-left: 6px;
}

.service-card:hover a {
    color: var(--primary);
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--light);
}

.about-visual {
    position: relative;

    padding:
        30px 40px 50px 0;
}

.about-main-box {
    min-height: 480px;

    background:
        linear-gradient(
            145deg,
            #11152d,
            #1d2250
        );

    border-radius: 28px;

    padding: 35px;

    position: relative;

    overflow: hidden;
}

.about-code {
    width: 70%;

    background: #0c1024;

    border-radius: 15px;

    padding: 15px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.25);
}

.code-top {
    display: flex;
    gap: 5px;

    margin-bottom: 20px;
}

.code-top span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #4f5470;
}

.code-lines div {
    height: 8px;

    background:
        linear-gradient(
            90deg,
            #5b5cf0 30%,
            #303657 30%
        );

    border-radius: 5px;

    margin: 12px 0;
}

.code-lines div:nth-child(2) {
    width: 75%;
}

.code-lines div:nth-child(3) {
    width: 88%;
}

.code-lines div:nth-child(4) {
    width: 60%;
}

.code-lines div:nth-child(5) {
    width: 80%;
}

.about-browser {
    position: absolute;

    width: 68%;

    right: 25px;
    bottom: 30px;

    background: #fff;

    border-radius: 16px;

    padding: 15px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.3);
}

.browser-header {
    height: 10px;
    width: 40%;

    border-radius: 10px;

    background: #e6e7ef;

    margin-bottom: 15px;
}

.browser-hero {
    height: 95px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #5b5cf0,
            #8b5cf6
        );
}

.browser-cards {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 7px;

    margin-top: 10px;
}

.browser-cards span {
    height: 55px;

    background: #eff0f5;

    border-radius: 7px;
}

.experience-box {
    position: absolute;

    right: 0;
    bottom: 5px;

    background: #fff;

    padding: 18px 22px;

    border-radius: 15px;

    box-shadow: var(--shadow);

    display: flex;
    align-items: center;

    gap: 12px;
}

.experience-box strong {
    font-size: 34px;
    color: var(--primary);
}

.experience-box span {
    width: 100px;

    font-size: 12px;

    font-weight: 600;
}

.about-features {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 15px;

    margin-top: 25px;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--heading);

    font-weight: 600;

    font-size: 14px;
}

.about-features i {
    color: var(--primary);
}


/* =========================================================
   COUNTER
========================================================= */

.counter-section {
    background: var(--dark);

    padding: 55px 0;
}

.counter-item {
    text-align: center;
}

.counter-item strong,
.counter-item > span {
    color: #fff;

    font-family: 'Manrope', sans-serif;

    font-size: 40px;

    font-weight: 800;
}

.counter-item p {
    color: #9295aa;

    font-size: 13px;

    margin: 5px 0 0;
}


/* =========================================================
   WHY
========================================================= */

.why-section {
    background: #fff;
}

.why-card {
    height: 100%;

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 20px;

    transition: .3s;
}

.why-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.why-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: #f0f0ff;

    color: var(--primary);

    font-size: 20px;

    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 18px;
}

.why-card p {
    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 0;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--light);
}

.process-wrapper {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    gap: 25px;

    margin-top: 70px;
}

.process-line {
    position: absolute;

    height: 1px;

    background: #dfe0e9;

    top: 30px;

    left: 8%;
    right: 8%;
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-number {
    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff;

    border: 2px solid #e3e4ed;

    color: var(--primary);

    font-weight: 800;

    margin: 0 auto 20px;
}

.process-item:hover .process-number {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.process-item h3 {
    font-size: 17px;
}

.process-item p {
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio-section {
    background: #fff;
}

.portfolio-all-link {
    color: var(--heading);

    text-decoration: none;

    font-weight: 700;
}

.portfolio-all-link:hover {
    color: var(--primary);
}

.portfolio-card {
    overflow: hidden;

    border-radius: 20px;

    background: #fff;

    border: 1px solid var(--border);

    height: 100%;

    transition: .3s;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.portfolio-image {
    display: block;

    height: 260px;

    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-placeholder {
    height: 260px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            #171b3a,
            #5b5cf0
        );

    color: #fff;

    font-size: 60px;
}

.portfolio-content {
    padding: 22px;
}

.portfolio-content span {
    color: var(--primary);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 700;
}

.portfolio-content h3 {
    margin: 8px 0 0;

    font-size: 19px;
}

.portfolio-content h3 a {
    text-decoration: none;
    color: var(--heading);
}

.portfolio-demo-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-section {
    background: var(--light);
}

.testimonial-card {
    height: 100%;

    background: #fff;

    padding: 30px;

    border-radius: 20px;

    border: 1px solid var(--border);
}

.testimonial-stars {
    color: #ffb21a;

    margin-bottom: 18px;

    letter-spacing: 3px;
}

.testimonial-card p {
    line-height: 1.8;

    color: #55586c;
}

.client-info {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 25px;
}

.client-avatar {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: var(--primary);

    color: #fff;

    font-weight: 800;
}

.client-info strong,
.client-info span {
    display: block;
}

.client-info strong {
    color: var(--heading);
}

.client-info span {
    font-size: 11px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 40px 0;
}

.cta-box {
    position: relative;

    overflow: hidden;

    padding: 65px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #11152d,
            #292f69
        );

    color: #fff;
}

.cta-box span {
    color: #a8aaff;

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 800;
}

.cta-box h2 {
    color: #fff;

    font-size: clamp(
        32px,
        4vw,
        50px
    );

    margin: 10px 0;
}

.cta-box p {
    color: #b8bacb;
    margin: 0;
}

.cta-button {
    background: #fff;

    color: var(--heading);

    padding: 16px 24px;

    border-radius: 12px;

    font-weight: 700;
}

.cta-button:hover {
    background: var(--primary);
    color: #fff;
}


/* =========================================================
   BLOG
========================================================= */

.blog-card {
    height: 100%;

    border: 1px solid var(--border);

    border-radius: 20px;

    overflow: hidden;

    background: #fff;

    transition: .3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-image {
    display: block;

    height: 230px;

    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-placeholder {
    height: 100%;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            #11152d,
            #5b5cf0
        );

    color: #fff;

    font-size: 50px;
}

.blog-content {
    padding: 23px;
}

.blog-date {
    font-size: 11px;
    color: #8a8d9d;
}

.blog-content h3 {
    font-size: 19px;
    line-height: 1.45;
    margin-top: 12px;
}

.blog-content h3 a {
    color: var(--heading);
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.blog-content p {
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT
========================================================= */

.home-contact {
    background: var(--light);
}

.contact-info-box {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 20px;
}

.contact-info-box > div {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    background: #fff;

    border-radius: 13px;

    color: var(--primary);

    box-shadow:
        0 8px 25px rgba(0,0,0,.05);
}

.contact-info-box span {
    font-size: 12px;
}

.contact-info-box strong {
    display: block;

    color: var(--heading);

    font-size: 14px;
}

.contact-form-box {
    background: #fff;

    border-radius: 24px;

    padding: 35px;

    box-shadow: var(--shadow);
}

.contact-form-box label {
    display: block;

    color: var(--heading);

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 8px;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    min-height: 52px;

    border-radius: 10px;

    border-color: #e4e5ed;

    font-size: 13px;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(91,92,240,.08);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .section-space {
        padding: 75px 0;
    }

    .min-vh-hero {
        min-height: auto;
        padding: 90px 0;
    }

    .hero-title {
        letter-spacing: -2px;
    }

    .tech-strip-grid {
        grid-template-columns:
            repeat(3,1fr);

        row-gap: 25px;
    }

    .process-wrapper {
        grid-template-columns:
            repeat(2,1fr);
    }

    .process-line {
        display: none;
    }

    .portfolio-demo-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .cta-box {
        padding: 45px;
    }
}


@media (max-width: 767px) {

    .section-space {
        padding: 65px 0;
    }

    .hero-title {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-trust {
        gap: 15px;
    }

    .hero-visual {
        padding: 10px;
    }

    .floating-card {
        display: none;
    }

    .tech-strip-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .about-visual {
        padding: 0 0 40px;
    }

    .about-main-box {
        min-height: 390px;
        padding: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
    }

    .portfolio-demo-grid {
        grid-template-columns: 1fr;
    }

    .counter-item strong,
    .counter-item > span {
        font-size: 31px;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .contact-form-box {
        padding: 25px 20px;
    }
}
/* =========================================================
   PHASE 3 - SERVICES
========================================================= */

.service-list-hero,
.single-service-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(91,92,240,.25),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 50%,
            rgba(139,92,246,.18),
            transparent 30%
        ),
        #0d1025;
    color: #fff;
}

.service-list-hero-inner {
    max-width: 850px;
    padding: 125px 0;
}

.service-eyebrow {
    display: inline-block;
    color: #a9aaff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.service-list-hero h1,
.single-service-hero h1 {
    color: #fff;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.08;
    letter-spacing: -2.5px;
}

.service-list-hero h1 span {
    color: #9496ff;
}

.service-list-hero p {
    max-width: 700px;
    color: #b9bbce;
    font-size: 17px;
    line-height: 1.8;
    margin: 25px 0 30px;
}

.service-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.service-secondary-btn {
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    padding: 14px 25px;
    border-radius: 12px;
    font-weight: 700;
}

.service-secondary-btn:hover {
    background: #fff;
    color: #11152d;
}


/* ALL SERVICES */

.all-service-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 32px;
    transition: .3s ease;
}

.all-service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: rgba(91,92,240,.25);
}

.all-service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.all-service-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: #f0f0ff;
    color: var(--primary);
    font-size: 25px;
}

.all-service-top > span {
    color: #d8d9e1;
    font-weight: 800;
}

.all-service-card h2 {
    font-size: 21px;
}

.all-service-card p {
    min-height: 75px;
    font-size: 14px;
    line-height: 1.75;
}

.all-service-card a,
.related-service-card a {
    text-decoration: none;
    color: var(--heading);
    font-weight: 700;
    font-size: 13px;
}

.all-service-card a:hover,
.related-service-card a:hover {
    color: var(--primary);
}


/* BOTTOM CTA */

.service-bottom-cta {
    padding: 20px 0 90px;
}

.service-bottom-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px;
    border-radius: 25px;
    background: #11152d;
    color: #fff;
}

.service-bottom-cta-box span {
    color: #9b9dff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.service-bottom-cta-box h2 {
    color: #fff;
    margin: 10px 0;
}

.service-bottom-cta-box p {
    color: #aeb0c2;
    margin: 0;
}

.service-bottom-cta-box > a {
    flex-shrink: 0;
    background: #fff;
    color: #11152d;
    padding: 15px 22px;
    border-radius: 11px;
    font-weight: 700;
}


/* SINGLE SERVICE HERO */

.single-service-hero {
    padding: 115px 0;
}

.service-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 12px;
    color: #8e91aa;
}

.service-breadcrumb a {
    color: #b7b9cb;
    text-decoration: none;
}

.single-service-lead {
    max-width: 700px;
    color: #b9bbce;
    font-size: 18px;
    line-height: 1.8;
    margin: 25px 0;
}

.single-service-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-whatsapp-btn {
    padding: 14px 23px;
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
}

.service-whatsapp-btn:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.service-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
    color: #b7b9cc;
    font-size: 12px;
}

.service-hero-points i {
    color: #65f2b5;
    margin-right: 5px;
}


/* SERVICE VISUAL */

.service-hero-visual {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    border-radius: 28px;
    backdrop-filter: blur(20px);
}

.service-hero-icon {
    width: 95px;
    height: 95px;
    display: grid;
    place-items: center;
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            #5b5cf0,
            #8b5cf6
        );
    color: #fff;
    font-size: 43px;
    box-shadow:
        0 20px 50px rgba(91,92,240,.25);
}

.service-visual-content {
    margin-top: 28px;
}

.service-visual-content span {
    font-size: 10px;
    color: #9699b3;
    letter-spacing: 2px;
}

.service-visual-content h2 {
    color: #fff;
    margin: 7px 0;
}

.service-visual-content p {
    color: #9da0b7;
}

.service-mini-stat {
    position: absolute;
    background: #fff;
    color: #15182c;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    box-shadow:
        0 15px 40px rgba(0,0,0,.2);
}

.service-mini-stat i {
    color: var(--primary);
    margin-right: 6px;
}

.stat-one {
    right: -15px;
    top: 60px;
}

.stat-two {
    left: -20px;
    bottom: 55px;
}


/* OVERVIEW */

.service-description {
    line-height: 1.9;
    font-size: 16px;
}

.service-overview-card {
    padding: 45px;
    border-radius: 25px;
    background:
        linear-gradient(
            145deg,
            #f5f5ff,
            #fff
        );
    border: 1px solid var(--border);
}

.overview-small-title {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.service-overview-card h3 {
    font-size: 30px;
    margin: 12px 0;
}

.service-overview-card p {
    line-height: 1.8;
}

.overview-metrics {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 30px;
}

.overview-metrics div {
    background: #fff;
    border-radius: 13px;
    padding: 18px 10px;
    text-align: center;
}

.overview-metrics strong,
.overview-metrics span {
    display: block;
}

.overview-metrics strong {
    color: var(--primary);
    font-size: 20px;
}

.overview-metrics span {
    font-size: 10px;
    margin-top: 4px;
}


/* BENEFITS */

.service-benefits {
    background: var(--light);
}

.service-benefit-card {
    position: relative;
    height: 100%;
    padding: 27px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #ededff;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-benefit-card > span {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #dedfe7;
    font-size: 12px;
    font-weight: 800;
}

.service-benefit-card h3 {
    font-size: 16px;
    margin: 0;
}


/* SERVICE PROCESS */

.single-service-process {
    background: #fff;
}

.service-process-grid {
    display: grid;
    grid-template-columns:
        repeat(6,1fr);
    gap: 15px;
}

.service-process-step {
    padding: 25px 15px;
    border: 1px solid var(--border);
    border-radius: 17px;
    text-align: center;
}

.service-step-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #ededff;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.service-process-step h3 {
    font-size: 14px;
    margin: 0;
}


/* WHY */

.service-why {
    background: #11152d;
}

.service-why .big-section-title {
    color: #fff;
}

.service-why .section-text {
    color: #aeb0c3;
}

.service-why-card {
    height: 100%;
    padding: 27px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}

.service-why-card i {
    color: #9698ff;
    font-size: 25px;
    margin-bottom: 18px;
}

.service-why-card h3 {
    color: #fff;
    font-size: 17px;
}

.service-why-card p {
    color: #999cb3;
    line-height: 1.7;
    font-size: 13px;
    margin-bottom: 0;
}


/* FAQ */

.service-faq {
    background: var(--light);
}

.service-faq-item {
    border: 0 !important;
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 12px;
}

.service-faq-item .accordion-button {
    padding: 20px;
    font-weight: 700;
    color: var(--heading);
    box-shadow: none !important;
}

.service-faq-item .accordion-button:not(.collapsed) {
    background: #ededff;
    color: var(--primary);
}

.service-faq-item .accordion-body {
    line-height: 1.8;
    font-size: 14px;
}


/* RELATED */

.related-service-card {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 19px;
}

.related-service-card h3 {
    font-size: 19px;
}

.related-service-card p {
    min-height: 70px;
    line-height: 1.7;
    font-size: 13px;
}


/* FINAL CTA */

.single-service-cta {
    padding: 20px 0 100px;
}

.single-service-cta-box {
    text-align: center;
    padding: 70px 30px;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            #5b5cf0,
            #7c4ee4
        );
    color: #fff;
}

.single-service-cta-box > span {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
    opacity: .8;
}

.single-service-cta-box h2 {
    max-width: 800px;
    margin: 12px auto;
    color: #fff;
    font-size: clamp(30px,4vw,48px);
}

.single-service-cta-box p {
    max-width: 650px;
    margin: 0 auto 25px;
    color: rgba(255,255,255,.8);
}

.single-service-cta-box .btn {
    background: #fff;
    color: #15182c;
    padding: 15px 24px;
    border-radius: 12px;
    font-weight: 700;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .service-process-grid {
        grid-template-columns:
            repeat(3,1fr);
    }

    .service-bottom-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-one,
    .stat-two {
        display: none;
    }
}

@media (max-width: 767px) {

    .service-list-hero-inner {
        padding: 85px 0;
    }

    .single-service-hero {
        padding: 80px 0;
    }

    .service-list-hero h1,
    .single-service-hero h1 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .service-hero-visual {
        min-height: 350px;
        padding: 30px;
    }

    .service-process-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .overview-metrics {
        grid-template-columns: 1fr;
    }

    .service-bottom-cta-box {
        padding: 35px 25px;
    }
}