/* 
   Cosurger Design System
   Theme: Bold, Modern, People-First
   Primary: Indigo Navy #1e1b4b | Accent Red: #e8334a | Gradient Purple: #6b4cf7
*/

:root {
    /* ---- Primary Dark (Indigo Navy) ---- */
    --cosurger-navy: #1e1b4b;
    --cosurger-navy-dark: #16133d;
    --cosurger-navy-mid: #2a2760;

    /* ---- Accent ---- */
    --cosurger-red: #e8334a;
    --cosurger-red-deep: #c0305a;
    --cosurger-purple: #6b4cf7;

    /* ---- Neutrals ---- */
    --cosurger-white: #ffffff;
    --cosurger-light: #f5f5f7;
    --cosurger-grey: #eef0f5;

    /* ---- Theme variable overrides (used by main.css) ---- */
    --ztc-text-text-2: #1e1b4b;
    --ztc-text-text-5: #2a2760;
    --ztc-bg-bg-2: #1e1b4b;
    --ztc-bg-bg-5: #2a2760;
    --ztc-bg-bg-9: #1e1b4b;

    /* Accent — was gold, now brand red */
    --ztc-text-text-4: #e8334a;
    --ztc-bg-bg-3: #e8334a;
    --ztc-text-text-10: #e8334a;

    /* Secondary */
    --corporate-blue: #1e1b4b;
    --corporate-grey: #eef0f5;

    /* Buttons */
    --btn-primary-bg: #e8334a;
    --btn-primary-text: #ffffff;
    --btn-hover-bg: #c0305a;

    /* Gradients */
    --gradient-brand-main: linear-gradient(135deg, #1e1b4b 0%, #2a2760 50%, #3b1fa3 100%);
    --gradient-accent: linear-gradient(135deg, #6b4cf7 0%, #e8334a 100%);
    --gradient-red: linear-gradient(135deg, #e8334a 0%, #c0305a 100%);
    --gradient-card-client: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    --gradient-card-solution: linear-gradient(135deg, #e8334a 0%, #c0305a 100%);
    --gradient-card-compliance: linear-gradient(135deg, #16133d 0%, #2a2760 100%);
    --gradient-cosurger-main: linear-gradient(135deg, #1e1b4b 0%, #2a2760 50%, #3b1fa3 100%);
}

/* --- Global Typography & Layout --- */

body {
    color: #333;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--cosurger-navy);
    letter-spacing: -0.5px;
}

/* Remove "Blob" shapes/backgrounds if they exist in main.css via classes */
.shape-bg,
.blob {
    display: none !important;
}

/* --- Header / Navigation --- */

/* Make the nav bar use the new navy */
.homepage7-body .vl-header-area,
.homepage7-body.vl-sticky-menu .vl-header-area {
    background-color: var(--cosurger-navy) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25) !important;
}

/* Nav links - white on dark bg */
.homepage7-body .vl-main-menu nav ul li a {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 500;
    transition: color 0.2s ease;
}

.homepage7-body .vl-main-menu nav ul li a:hover,
.homepage7-body .vl-main-menu nav ul li.active>a {
    color: var(--cosurger-red) !important;
}

/* Sub-menu dropdown */
.homepage7-body .vl-main-menu nav ul li .sub-menu {
    background-color: var(--cosurger-navy-dark) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px;
}

.homepage7-body .vl-main-menu nav ul li .sub-menu li a {
    color: rgba(255, 255, 255, 0.82) !important;
}

.homepage7-body .vl-main-menu nav ul li .sub-menu li a:hover {
    color: var(--cosurger-red) !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
}

/* Primary CTA button in header — vl-btn7 */
.vl-btn7 {
    background: var(--gradient-red) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    transition: opacity 0.2s ease !important;
}

.vl-btn7:hover {
    opacity: 0.88 !important;
}

/* Mobile hamburger icon */
.homepage7-body .vl-offcanvas-toggle {
    color: #fff !important;
    background: transparent !important;
    border: none;
}

/* Offcanvas sidebar */
.homepage7-body .vl-offcanvas-wrapper {
    background-color: var(--cosurger-navy-dark) !important;
}

.homepage7-body .vl-offcanvas-wrapper a,
.homepage7-body .vl-offcanvas-wrapper h3 {
    color: rgba(255, 255, 255, 0.88) !important;
}


/* --- Cards (Services, Values) --- */
.service-inner-boxarea,
.about2-boxarea {
    background: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    /* Soft Shadow */
    padding: 40px 30px !important;
    transition: all 0.3s ease;
}

.service-inner-boxarea:hover,
.about2-boxarea:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Titles in cards */
.service-inner-boxarea .title,
.about2-boxarea h4 {
    color: var(--cosurger-navy);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

/* Icons */
.service-inner-boxarea .icons,
.about2-boxarea .icons {
    margin-bottom: 20px;
}

.service-inner-boxarea .text-area p,
.about2-boxarea .text-area p {
    color: #555;
}


/* --- Section Headings --- */
.vl-section-subtitle {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    color: var(--cosurger-red) !important;
    font-size: 13px !important;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.vl-section-subtitle svg {
    display: none;
}

.vl-section-title {
    font-size: 36px !important;
    color: var(--cosurger-navy) !important;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.vl-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-red);
}

.text-center .vl-section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* --- Footer --- */
.vl-footer1-section-area,
.vl-footer9-section-area {
    background-color: var(--cosurger-navy) !important;
    color: #ffffff;
}

/* Footer copyright text */
.copyright-area a,
.copyright-area p {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Footer contact icon strokes — recolour from dark to white */
.footer-widget-area ul li a svg path {
    stroke: rgba(255, 255, 255, 0.6) !important;
}

.footer-logo-area p,
.footer-widget-area ul li a {
    color: #cccccc !important;
}

.footer-widget-area h3 {
    color: #ffffff !important;
}

/* --- Leadership Section --- */
.leadership-quote {
    color: var(--ztc-text-text-2) !important;
    /* Navy to match headers */
    font-family: var(--ztc-family-font1);
    font-size: 24px;
    font-weight: 500;
    /* Medium weight */
    line-height: 36px;
    font-style: normal;
    /* Remove italic */
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--corporate-blue);
    /* Gold accent line */
}

@media (max-width: 767px) {
    .leadership-quote {
        font-size: 20px;
        line-height: 30px;
    }
}

/* --- Approach Page Styles --- */
.step-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--ztc-text-text-4);
    /* Gold */
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.text-navy {
    color: var(--ztc-text-text-2) !important;
}

.text-gold {
    color: var(--ztc-text-text-4) !important;
}

.bg-navy {
    background-color: var(--ztc-bg-bg-2) !important;
}

.bg-gold {
    background-color: var(--ztc-text-text-4) !important;
}

.approach-list li {
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--ztc-text-text-5);
}

.ethic-card {
    transition: transform 0.3s ease, background 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.ethic-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

/* --- High Fidelity 3C Styles --- */

.approach-hero-section {
    background: var(--gradient-cosurger-main);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.three-c-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.three-c-subtitle {
    font-size: 24px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
}

.approach-card {
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Card 1: Client Focus - Glassmorphism */
.approach-card-client {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.approach-card-client h3 {
    color: #fff !important;
    font-size: 32px;
    margin-bottom: 15px;
}

.approach-card-client p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
}

.checklist-item {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.checklist-item i {
    color: #fff;
    margin-right: 15px;
    margin-top: 5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
}

/* Card 2: Customised Solutions - Orange Gradient */
.approach-card-solution {
    background: var(--gradient-card-solution);
    color: #fff;
}

.approach-card-solution h3 {
    color: #fff !important;
    font-size: 32px;
    margin-bottom: 15px;
}

.approach-card-solution p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}

.approach-card-solution .checklist-item i {
    color: #ff4b1f;
    background: #fff;
}

.approach-card-solution .checklist-item {
    color: #fff;
}


/* Card 3: Compliance First - Navy Gradient */
.approach-card-compliance {
    background: var(--gradient-card-compliance);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.approach-card-compliance h3 {
    color: #fff !important;
    font-size: 32px;
    margin-bottom: 15px;
}

.approach-card-compliance p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
}

.approach-card-compliance .highlight-text {
    color: #fff;
    font-weight: 600;
}

.approach-footer-quote {
    font-style: italic;
    opacity: 0.7;
    margin-top: 20px;
    display: block;
    font-weight: 500;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.approach-card-solution .icon-circle {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* --- Deliver Card Component --- */
.deliver-card {
    background: linear-gradient(145deg, #3b1fa3 0%, #7b2d8b 50%, #c0305a 100%);
    border-radius: 20px;
    padding: 36px 32px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deliver-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.deliver-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 31, 163, 0.45);
}

.deliver-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff6b4a 0%, #e8334a 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 28px;
}

.deliver-card__title {
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.deliver-card__desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- What Makes Us Different Section --- */
.wmd-section {
    background-color: #1e1b4b;
    padding: 90px 0;
    color: #fff;
}

.wmd-header-row {
    margin-bottom: 60px;
}

.wmd-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.wmd-heading {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    color: #ffffff !important;
    letter-spacing: -0.5px;
}

.wmd-intro {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.75;
    margin-top: 36px;
    margin-bottom: 0;
}

/* Feature items */
.wmd-features-row {
    row-gap: 40px;
}

.wmd-item {
    border-left: 3px solid #e8334a;
    padding-left: 20px;
}

.wmd-item__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.wmd-item__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff8c42 0%, #f96b1a 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.wmd-item__title {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.wmd-item__desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 0;
    padding-left: 2px;
}

@media (max-width: 767px) {
    .wmd-heading {
        font-size: 30px;
    }

    .wmd-intro {
        margin-top: 16px;
    }

    .wmd-section {
        padding: 60px 0;
    }
}

/* =====================================================
   CORE VALUES SECTION (.cv-*)
   ===================================================== */

.cv-section {
    overflow: hidden;
}

/* Dark navy header block */
.cv-header {
    background-color: #1e1b4b;
    padding: 60px 0 50px;
    text-align: center;
}

.cv-header__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.cv-header__subtitle-red {
    font-size: 28px;
    font-weight: 700;
    color: #e8334a !important;
    margin-bottom: 10px;
}

.cv-header__title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0;
}

/* Light grey body */
.cv-body {
    background-color: #eef0f5;
    padding: 60px 0 30px;
}

/* Individual value card */
.cv-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cv-card__icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: #1e1b4b;
    margin-bottom: 20px;
}

.cv-card__label {
    display: inline-block;
    background: linear-gradient(135deg, #e8334a 0%, #c0305a 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.cv-card__desc {
    background: linear-gradient(135deg, #1e1b4b 0%, #3b3480 100%);
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.7;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 0;
    width: 100%;
    text-align: center;
}

/* Footer URL */
.cv-footer-url {
    text-align: center;
    padding: 30px 0 10px;
}

.cv-footer-url p {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 0;
}

/* =====================================================
   THE 3 C'S SECTION (.three-c-section, .three-c-card)
   ===================================================== */

.three-c-section {
    background-color: #1e1b4b;
    padding: 70px 0 80px;
}

.three-c-section__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 40px;
}

.three-c-section__header-row {
    margin-bottom: 48px;
}

.three-c-section__intro-label {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.three-c-section__heading {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff !important;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0;
}

.three-c-section__tagline-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 20px;
}

.three-c-section__tagline {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    text-align: right;
    margin-bottom: 0;
}

.three-c-section__arrow-icon {
    font-size: 28px;
    color: #ffffff;
    opacity: 0.8;
    flex-shrink: 0;
    margin-bottom: 4px;
}

/* Cards */
.three-c-card {
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.three-c-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.three-c-card--dark {
    background-color: #16133d;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.three-c-card--red {
    background: linear-gradient(145deg, #e8334a 0%, #c0305a 100%);
}

.three-c-card__title {
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.three-c-card__desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .three-c-section__heading {
        font-size: 40px;
    }

    .three-c-section__tagline-wrap {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .three-c-section__tagline {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .three-c-section__heading {
        font-size: 32px;
    }

    .cv-header {
        padding: 50px 0 40px;
    }

    .cv-header__subtitle-red {
        font-size: 22px;
    }

    .cv-header__title {
        font-size: 20px;
    }
}

/* =====================================================
   SERVICES HERO SECTION (.svc-hero)
   ===================================================== */

.svc-hero {
    overflow: hidden;
}

/* ---- Top text area ---- */
.svc-hero__top {
    background-color: #f5f5f7;
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

/* Large arch/semi-circle decorative shape */
.svc-hero__arch {
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    padding-top: 55%;
    background-color: #ffffff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 0;
}

.svc-hero__top .container {
    position: relative;
    z-index: 1;
}

.svc-hero__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1e1b4b;
    margin-bottom: 16px;
}

.svc-hero__tagline {
    font-size: 30px;
    font-weight: 900;
    color: #1e1b4b !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.svc-hero__desc {
    color: #444;
    font-size: 16px;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}

/* Red pill badge */
.svc-hero__pill {
    display: inline-block;
    background: linear-gradient(135deg, #e8334a 0%, #c0305a 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 40px;
}

/* ---- Three photo panels ---- */
.svc-hero__panels {
    display: flex;
    height: 420px;
}

.svc-panel {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark overlay on each panel */
.svc-panel__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 30, 0);
    z-index: 1;
}

/* Gradient circle ring — transparent center */
.svc-panel__ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 24px;
    /* ring stroke thickness */
    background: linear-gradient(135deg, #6b4cf7 0%, #e8334a 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
}

/* Navy pill label */
.svc-panel__label {
    position: absolute;
    z-index: 3;
    background-color: #1e1b4b;
    color: #ffffff;
    font-size: 18px;
    width: 60%;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    border-radius: 30px;
    text-align: center;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive */
@media (max-width: 991px) {
    .svc-hero__panels {
        flex-direction: column;
        height: auto;
    }

    .svc-panel {
        height: 280px;
    }

    .svc-hero__tagline {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .svc-hero__top {
        padding: 60px 0 50px;
    }

    .svc-hero__arch {
        display: none;
    }

    .svc-hero__tagline {
        font-size: 20px;
    }

    .svc-hero__pill {
        font-size: 14px;
        padding: 10px 20px;
    }

    .svc-panel {
        height: 240px;
    }

    .svc-panel__label {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* =====================================================
   SERVICE DETAIL SECTIONS (.svc-detail-section)
   ===================================================== */

.svc-detail-section {
    background-color: #1e1b4b;
    padding: 80px 0 90px;
}

.svc-detail-section__header {
    max-width: 860px;
    margin: 0 auto 60px;
}

/* Red pill label */
.svc-detail-section__pill {
    display: inline-block;
    background: linear-gradient(135deg, #e8334a 0%, #c0305a 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 36px;
    border-radius: 40px;
}

/* Description text */
.svc-detail-section__desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Items grid row gap */
.svc-detail-section__grid {
    row-gap: 50px;
}

/* Single service item */
.svc-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Container for ring + icon */
.svc-detail-item__ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    /* Remove the mask/gradient from the container so children aren't hidden */
}

/* Gradient ring with transparent center applied to ::before so it doesn't mask the icon */
.svc-detail-item__ring::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #6b4cf7 0%, #e8334a 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
}

/* Icon sits inside, on top of the ring */
.svc-detail-item__ring i,
.svc-detail-item__ring .icon {
    position: relative;
    font-size: 70px;
    color: #ffffff;
    z-index: 2;
}

.svc-detail-item__title {
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.svc-detail-item__desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .svc-detail-section {
        padding: 60px 0 70px;
    }

    .svc-detail-item__ring {
        width: 100px;
        height: 100px;
    }

    .svc-detail-item__ring i,
    .svc-detail-item__ring .icon {
        font-size: 28px;
    }
}