/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #ffffff;
    background: #08111f;
}

a {
    text-decoration: none;
}


/* =====================================================
   NAVBAR
===================================================== */

.custom-navbar {

    padding: 18px 0;

    background: rgba(8, 17, 31, 0.45);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    transition: all 0.4s ease;

    z-index: 9999;
}


/* Navbar after scrolling */

.custom-navbar.scrolled {

    background: rgba(8, 17, 31, 0.97);

    padding: 12px 0;

    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}


/* =====================================================
   COMPANY LOGO
===================================================== */

.company-logo {

    display: flex;

    flex-direction: column;

    line-height: 1;

    font-weight: 700;

    font-size: 25px;

    letter-spacing: -1px;
}

.logo-data {
    color: #e85b7a;
}

.logo-info {
    color: #ffffff;
}

.logo-com {
    color: #e85b7a;
}

.company-logo small {

    font-size: 8px;

    color: #cbd5e1;

    letter-spacing: 0.5px;

    margin-top: 5px;

    font-weight: 500;
}


/* =====================================================
   NAV LINKS
===================================================== */

.navbar-nav .nav-link {

    color: #d8dee8;

    font-size: 14px;

    font-weight: 500;

    padding: 10px 15px !important;

    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {

    color: #e85b7a;
}


/* =====================================================
   NAV BUTTON
===================================================== */

.btn-nav {

    background: #e85b7a;

    color: #ffffff;

    border-radius: 30px;

    padding: 10px 20px;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s ease;
}

.btn-nav:hover {

    background: #ffffff;

    color: #e85b7a;

    transform: translateY(-2px);
}


/* =====================================================
   HERO
===================================================== */

.hero-section {

    position: relative;

    min-height: 100vh;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 30%,
            rgba(232,91,122,0.15),
            transparent 30%
        ),

        radial-gradient(
            circle at 20% 80%,
            rgba(34,197,235,0.08),
            transparent 30%
        ),

        #08111f;
}


/* =====================================================
   GRID BACKGROUND
===================================================== */

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: 0.15;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent
    );
}


/* =====================================================
   HERO CIRCLES
===================================================== */

.hero-circle {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;
}

.hero-circle-one {

    width: 500px;

    height: 500px;

    right: -200px;

    top: 100px;

    border: 1px solid rgba(232,91,122,0.15);
}

.hero-circle-two {

    width: 350px;

    height: 350px;

    left: -180px;

    bottom: -100px;

    border: 1px solid rgba(255,255,255,0.08);
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 70px;
    margin-top: 60px;
}


/* =====================================================
   HERO BADGE
===================================================== */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 15px;

    border-radius: 30px;

    background: rgba(232,91,122,0.10);

    border: 1px solid rgba(232,91,122,0.30);

    color: #f7a1b4;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 25px;
}


/* Pulse */

.pulse-dot {

    width: 7px;

    height: 7px;

    background: #e85b7a;

    border-radius: 50%;

    box-shadow: 0 0 0 5px rgba(232,91,122,0.12);

    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(232,91,122,0.5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(232,91,122,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(232,91,122,0);
    }
}


/* =====================================================
   HERO HEADING
===================================================== */

.hero-content h1 {

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -3px;

    max-width: 700px;

    margin-bottom: 25px;
}

.hero-content h1 span {

    display: block;

    color: #e85b7a;

    background: linear-gradient(
        90deg,
        #e85b7a,
        #ff9bb0
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =====================================================
   HERO DESCRIPTION
===================================================== */

.hero-description {

    max-width: 610px;

    color: #aeb9c9;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 45px;
}

.btn-primary-custom {

    background: #e85b7a;

    color: #ffffff;

    border: 1px solid #e85b7a;

    border-radius: 6px;

    padding: 13px 24px;

    font-size: 14px;

    font-weight: 600;

    transition: 0.3s ease;
}

.btn-primary-custom:hover {

    background: #ffffff;

    border-color: #ffffff;

    color: #e85b7a;

    transform: translateY(-3px);
}

.btn-outline-custom {

    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 6px;

    padding: 13px 24px;

    font-size: 14px;

    font-weight: 600;

    transition: 0.3s ease;
}

.btn-outline-custom:hover {

    background: #ffffff;

    color: #08111f;

    transform: translateY(-3px);
}


/* =====================================================
   HERO HIGHLIGHTS
===================================================== */

.hero-highlights {

    display: flex;

    gap: 30px;

    flex-wrap: wrap;
}

.highlight-item {

    display: flex;

    align-items: center;

    gap: 10px;
}

.highlight-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: rgba(232,91,122,0.10);

    border: 1px solid rgba(232,91,122,0.18);

    color: #e85b7a;
}

.highlight-item strong {

    display: block;

    font-size: 12px;

    color: #ffffff;
}

.highlight-item span {

    display: block;

    font-size: 10px;

    color: #8290a4;
}


/* =====================================================
   HERO VISUAL
===================================================== */

.hero-visual {

    position: relative;

    height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =====================================================
   HERO IMAGE
===================================================== */

.hero-image-wrapper {

    width: 80%;

    height: 480px;

    border-radius: 25px;

    overflow: hidden;

    transform: rotate(2deg);

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow:

        0 30px 80px rgba(0,0,0,0.5),

        0 0 80px rgba(232,91,122,0.08);
}

.hero-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    filter: brightness(0.65) saturate(0.9);

    transition: transform 0.7s ease;
}

.hero-image-wrapper:hover .hero-image {

    transform: scale(1.08);
}


/* =====================================================
   FLOATING CARDS
===================================================== */

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background: rgba(15,29,48,0.88);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 12px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.3);

    z-index: 5;
}

.floating-card small {

    display: block;

    color: #7f8da1;

    font-size: 9px;

    margin-bottom: 3px;
}

.floating-card strong {

    display: block;

    color: #ffffff;

    font-size: 12px;
}

.floating-icon {

    width: 40px;

    height: 40px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 9px;

    background: rgba(232,91,122,0.12);

    color: #e85b7a;

    font-size: 18px;
}

.card-one {

    left: 0;

    top: 130px;

    animation: floatOne 4s ease-in-out infinite;
}

.card-two {

    right: 0;

    bottom: 130px;

    animation: floatTwo 5s ease-in-out infinite;
}

@keyframes floatOne {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatTwo {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}


/* =====================================================
   TECH ORBIT
===================================================== */

.tech-orbit {

    position: absolute;

    width: 130px;

    height: 130px;

    border-radius: 50%;

    border: 1px solid rgba(232,91,122,0.35);

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 4;

    animation: rotateOrbit 15s linear infinite;
}

@keyframes rotateOrbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbit-center {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e85b7a;

    color: #ffffff;

    font-size: 25px;

    box-shadow: 0 0 40px rgba(232,91,122,0.4);
}

.orbit-dot {

    position: absolute;

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #ffffff;
}

.dot-1 {

    top: -5px;

    left: 50%;
}

.dot-2 {

    right: -5px;

    top: 50%;
}

.dot-3 {

    bottom: -5px;

    left: 50%;
}


/* =====================================================
   SCROLL INDICATOR
===================================================== */

.scroll-down {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    color: #6d7a8e;

    font-size: 10px;

    letter-spacing: 1px;
}

.scroll-down i {

    color: #e85b7a;

    animation: scrollArrow 1.5s infinite;
}

@keyframes scrollArrow {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {

    .custom-navbar {

        background: rgba(8,17,31,0.96);

    }

    .navbar-collapse {

        margin-top: 15px;

        padding: 15px;

        background: #0c1829;

        border-radius: 12px;
    }

    .nav-item {

        margin-bottom: 5px;
    }

    .hero-content {

        padding-top: 120px;

        text-align: center;
    }

    .hero-content h1 {

        letter-spacing: -2px;
    }

    .hero-description {

        margin-left: auto;

        margin-right: auto;
    }

    .hero-buttons {

        justify-content: center;
    }

    .hero-highlights {

        justify-content: center;
    }

    .hero-visual {

        height: 500px;
    }

    .hero-image-wrapper {

        width: 85%;

        height: 400px;
    }

    .card-one {

        left: 2%;
    }

    .card-two {

        right: 2%;
    }

    .scroll-down {

        display: none;
    }
}


@media (max-width: 575px) {

    .company-logo {

        font-size: 21px;
    }

    .hero-content h1 {

        font-size: 40px;

        line-height: 1.1;
    }

    .hero-description {

        font-size: 14px;
    }

    .hero-highlights {

        gap: 15px;
    }

    .hero-visual {

        height: 420px;
    }

    .hero-image-wrapper {

        height: 330px;

        width: 90%;
    }

    .floating-card {

        padding: 10px;

    }

    .floating-card small {

        font-size: 8px;
    }

    .floating-card strong {

        font-size: 10px;
    }

    .floating-icon {

        width: 32px;

        height: 32px;

        font-size: 14px;
    }

    .tech-orbit {

        width: 90px;

        height: 90px;
    }

    .orbit-center {

        width: 45px;

        height: 45px;

        font-size: 18px;
    }

}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section {

    position: relative;

    padding: 110px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =====================================================
   ABOUT VISUAL
===================================================== */

.about-visual {

    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* Main Image */

.about-image-main {

    width: 82%;

    height: 500px;

    overflow: hidden;

    border-radius: 25px;

    position: relative;

    z-index: 2;

    box-shadow:
        0 25px 70px rgba(25, 30, 40, 0.15);

}


/* Image */

.about-image-main img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.about-image-main:hover img {

    transform: scale(1.06);

}


/* =====================================================
   DECORATIVE SHAPE
===================================================== */

.about-decoration {

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    border: 1px solid rgba(231, 90, 121, 0.35);

    left: 10px;

    bottom: 20px;

    z-index: 1;
}


.about-decoration::before {

    content: "";

    position: absolute;

    width: 120px;

    height: 120px;

    border-radius: 50%;

    border: 1px solid rgba(231, 90, 121, 0.20);

    left: 45px;

    top: 45px;
}


/* =====================================================
   FLOATING CARD
===================================================== */

.about-floating-card {

    position: absolute;

    right: 0;

    bottom: 75px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 12px;

    padding: 16px 20px;

    box-shadow:
        0 18px 45px rgba(0,0,0,0.12);

    animation: aboutFloat 4s ease-in-out infinite;
}


.about-floating-icon {

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff0f3;

    color: #e75a79;

    border-radius: 10px;

    font-size: 20px;
}


.about-floating-card strong {

    display: block;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 13px;

    color: #20242c;
}


.about-floating-card span {

    display: block;

    font-size: 10px;

    color: #8c939d;

    margin-top: 3px;
}


@keyframes aboutFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

}


/* =====================================================
   ABOUT CONTENT
===================================================== */

.about-content {

    padding-left: 20px;
}


/* Section Label */

.section-label {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #e75a79;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 18px;
}


.section-label span {

    display: inline-block;

    width: 25px;

    height: 2px;

    background: #e75a79;
}


/* =====================================================
   ABOUT HEADING
===================================================== */

.about-content h2 {

    font-family: "Plus Jakarta Sans", sans-serif;

    color: #20242c;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.15;

    letter-spacing: -2px;

    font-weight: 800;

    margin-bottom: 25px;
}


.about-content h2 span {

    display: block;

    color: #e75a79;
}


/* =====================================================
   ABOUT TEXT
===================================================== */

.about-content p {

    color: #707783;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 15px;
}


.about-content .about-intro {

    color: #454c56;

    font-size: 16px;

    line-height: 1.8;

    font-weight: 500;
}


/* =====================================================
   FEATURES
===================================================== */

.about-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

    margin-top: 30px;
}


.about-feature {

    display: flex;

    gap: 12px;

    align-items: flex-start;
}


.feature-icon {

    min-width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: #fff1f4;

    color: #e75a79;

    font-size: 18px;

    transition: 0.3s ease;
}


.about-feature:hover .feature-icon {

    background: #e75a79;

    color: #ffffff;

    transform: translateY(-3px);
}


.about-feature h5 {

    margin: 0 0 5px;

    color: #252a32;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 13px;

    font-weight: 700;
}


.about-feature p {

    margin: 0;

    font-size: 11px;

    line-height: 1.6;

    color: #8a919b;
}


/* =====================================================
   ABOUT BUTTON
===================================================== */

.about-bottom {

    margin-top: 32px;
}


.about-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #20242c;

    color: #ffffff;

    padding: 13px 21px;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 600;

    transition: 0.3s ease;
}


.about-btn:hover {

    background: #e75a79;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .about-section {

        padding: 80px 0;

    }

    .about-content {

        padding-left: 0;

        margin-top: 20px;

    }

    .about-content h2 {

        font-size: 42px;

    }

    .about-visual {

        min-height: 520px;

    }

    .about-image-main {

        width: 80%;

        height: 450px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575px) {

    .about-section {

        padding: 70px 0;

    }

    .about-visual {

        min-height: 430px;

    }

    .about-image-main {

        width: 88%;

        height: 370px;

    }

    .about-floating-card {

        right: 0;

        bottom: 35px;

        padding: 12px 14px;

    }

    .about-floating-icon {

        width: 38px;

        height: 38px;

    }

    .about-content h2 {

        font-size: 34px;

        letter-spacing: -1.5px;

    }

    .about-features {

        grid-template-columns: 1fr;

        gap: 18px;

    }

}

/* =====================================================
   TECHNOLOGY SECTION
===================================================== */

.technology-section {

    position: relative;

    padding: 130px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =====================================================
   BACKGROUND DECORATION
===================================================== */

.technology-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(231, 90, 121, .07);

    left: -250px;

    top: 150px;
}


.technology-section::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background: rgba(231, 90, 121, .025);

    right: -120px;

    bottom: 100px;
}


/* =====================================================
   HEADER
===================================================== */

.technology-header {

    position: relative;

    z-index: 2;

    margin-bottom: 75px;
}


.technology-label {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #e75a79;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;
}


.technology-label span {

    width: 28px;

    height: 2px;

    background: #e75a79;
}


.technology-header h2 {

    color: #20242c;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 800;

    margin: 0;
}


.technology-header h2 span {

    display: block;

    color: #e75a79;
}


.technology-header p {

    color: #747b85;

    font-size: 14px;

    line-height: 1.9;

    max-width: 450px;

    margin: 0 0 5px auto;
}


/* =====================================================
   ECOSYSTEM
===================================================== */

.technology-ecosystem {

    height: 760px;

    max-width: 1150px;

    margin: auto;

    position: relative;

    z-index: 2;
}


/* =====================================================
   CENTER
===================================================== */

.technology-center {

    position: absolute;

    width: 250px;

    height: 250px;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 5;
}


.center-core {

    width: 130px;

    height: 130px;

    border-radius: 50%;

    background: #20242c;

    color: #ffffff;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 20px 50px rgba(0,0,0,.20);

    position: relative;

    z-index: 3;
}


.center-core i {

    color: #e75a79;

    font-size: 28px;

    margin-bottom: 6px;
}


.center-core span {

    font-size: 9px;

    color: #aeb4bd;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.center-core strong {

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 14px;

    margin-top: 3px;
}


/* =====================================================
   CENTER RINGS
===================================================== */

.center-ring {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(231,90,121,.20);
}


.ring-one {

    width: 190px;

    height: 190px;

    animation: rotateRing 18s linear infinite;
}


.ring-two {

    width: 250px;

    height: 250px;

    border-style: dashed;

    border-color: rgba(231,90,121,.12);

    animation: rotateRingReverse 25s linear infinite;
}


@keyframes rotateRing {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes rotateRingReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0);
    }

}


/* =====================================================
   CONNECTION LINES
===================================================== */

.connection {

    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(231,90,121,.35),
            transparent
        );

    transform-origin: center;

    z-index: 1;
}


.connection-one {

    width: 310px;

    left: 29%;

    top: 30%;

    transform: rotate(25deg);
}


.connection-two {

    width: 310px;

    right: 29%;

    top: 30%;

    transform: rotate(-25deg);
}


.connection-three {

    width: 270px;

    left: 31%;

    top: 51%;

    transform: rotate(5deg);
}


.connection-four {

    width: 270px;

    right: 31%;

    top: 51%;

    transform: rotate(-5deg);
}


.connection-five {

    width: 310px;

    left: 30%;

    bottom: 26%;

    transform: rotate(-25deg);
}


.connection-six {

    width: 310px;

    right: 30%;

    bottom: 26%;

    transform: rotate(25deg);
}


/* =====================================================
   TECHNOLOGY CARDS
===================================================== */

.tech-card {

    width: 290px;

    min-height: 185px;

    position: absolute;

    background: #ffffff;

    border: 1px solid #e8e8ea;

    border-radius: 16px;

    padding: 22px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    z-index: 4;
}


.tech-card:hover {

    transform: translateY(-8px);

    border-color: rgba(231,90,121,.35);

    box-shadow:
        0 25px 55px rgba(0,0,0,.11);
}


/* =====================================================
   CARD POSITIONS
===================================================== */

.tech-cloud {

    left: 0;

    top: 30px;
}


.tech-devops {

    right: 0;

    top: 30px;
}


.tech-automation {

    left: 0;

    top: 285px;
}


.tech-ai {

    right: 0;

    top: 285px;
}


.tech-iot {

    left: 0;

    bottom: 30px;
}


.tech-enterprise {

    right: 0;

    bottom: 30px;
}


/* =====================================================
   CARD TOP
===================================================== */

.tech-card-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 15px;
}


.tech-icon {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #fff1f4;

    color: #e75a79;

    font-size: 19px;

    transition: .3s;
}


.tech-card:hover .tech-icon {

    background: #e75a79;

    color: #ffffff;
}


.tech-card-top > span {

    font-size: 9px;

    color: #b2b6bc;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.tech-card h3 {

    color: #20242c;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 8px;
}


.tech-card p {

    color: #7c838c;

    font-size: 11px;

    line-height: 1.7;

    margin: 0;

    max-width: 240px;
}


.tech-keyword {

    position: absolute;

    right: 20px;

    bottom: 15px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #e7b7c1;
}


/* =====================================================
   BOTTOM BAR
===================================================== */

.technology-bottom {

    position: relative;

    z-index: 5;

    margin-top: 20px;

    padding-top: 25px;

    border-top: 1px solid #eeeeef;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.technology-bottom-title {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #9a9fa7;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.technology-bottom-title span {

    width: 18px;

    height: 2px;

    background: #e75a79;
}


.technology-pills {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 10px;

    flex-wrap: wrap;
}


.technology-pills span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 8px 12px;

    border-radius: 30px;

    background: #f7f7f8;

    border: 1px solid #eeeeef;

    color: #626a74;

    font-size: 9px;

    font-weight: 600;

    transition: .3s;
}


.technology-pills span:hover {

    background: #fff1f4;

    border-color: #f3cbd3;

    color: #e75a79;
}


.technology-pills i {

    color: #e75a79;

    font-size: 11px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .technology-section {

        padding: 100px 0;

    }

    .technology-header p {

        margin: 25px 0 0;

    }

    .technology-ecosystem {

        height: auto;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 20px;

        padding-top: 30px;
    }

    .technology-center,
    .connection {

        display: none;
    }

    .tech-card {

        position: relative;

        width: 100%;

        left: auto;

        right: auto;

        top: auto;

        bottom: auto;

        min-height: 190px;
    }

    .technology-bottom {

        margin-top: 45px;

        align-items: flex-start;

        flex-direction: column;
    }

    .technology-pills {

        justify-content: flex-start;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575px) {

    .technology-section {

        padding: 80px 0;

    }

    .technology-header {

        margin-bottom: 45px;

    }

    .technology-header h2 {

        font-size: 40px;

        letter-spacing: -2px;
    }

    .technology-header p {

        font-size: 13px;

        line-height: 1.8;
    }

    .technology-ecosystem {

        grid-template-columns: 1fr;

    }

    .tech-card {

        min-height: auto;

    }

    .technology-bottom {

        gap: 20px;

    }

}

/* Section label */
.technology-label {
    font-size: 13px;
}

/* Main heading */
.technology-header h2 {
    font-size: clamp(48px, 5vw, 70px);
}

/* Description */
.technology-header p {
    font-size: 17px;
    line-height: 1.8;
}

/* Card title */
.tech-card h3 {
    font-size: 20px;
}

/* Card description */
.tech-card p {
    font-size: 14px;
    line-height: 1.7;
}

/* Card number */
.tech-card-top > span {
    font-size: 11px;
}

/* Card keyword */
.tech-keyword {
    font-size: 10px;
}

/* Technology bottom title */
.technology-bottom-title {
    font-size: 11px;
}

/* Technology pills */
.technology-pills span {
    font-size: 12px;
    padding: 10px 15px;
}

/* Icons */
.tech-icon {
    width: 48px;
    height: 48px;
    font-size: 21px;
}

/* =====================================================
   IMPACT SECTION
===================================================== */

.impact-section {

    position: relative;

    padding: 130px 0;

    background: #20242c;

    overflow: hidden;

    color: #ffffff;
}


/* =====================================================
   BACKGROUND
===================================================== */

.impact-section::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.05);

    right: -350px;

    top: -300px;
}


.impact-section::after {

    content: "IMPACT";

    position: absolute;

    right: -20px;

    bottom: -65px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 180px;

    font-weight: 800;

    letter-spacing: -10px;

    color: rgba(255,255,255,.025);

    pointer-events: none;
}


/* =====================================================
   HEADER
===================================================== */

.impact-header {

    position: relative;

    z-index: 2;

    margin-bottom: 70px;
}


.impact-label {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #e75a79;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;
}


.impact-label span {

    width: 28px;

    height: 2px;

    background: #e75a79;
}


.impact-header h2 {

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(45px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 800;

    margin: 0;

    color: #ffffff;
}


.impact-header h2 span {

    display: block;

    color: #e75a79;
}


.impact-header p {

    color: #aeb4bd;

    font-size: 16px;

    line-height: 1.8;

    max-width: 440px;

    margin: 0 0 5px auto;
}


/* =====================================================
   PROCESS
===================================================== */

.impact-process {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid rgba(255,255,255,.12);

    border-bottom: 1px solid rgba(255,255,255,.12);
}


/* =====================================================
   IMPACT ITEM
===================================================== */

.impact-item {

    position: relative;

    min-height: 400px;

    padding: 30px 28px;

    border-right: 1px solid rgba(255,255,255,.10);

    display: flex;

    flex-direction: column;

    transition: .4s ease;

    overflow: hidden;
}


.impact-item:last-child {

    border-right: none;
}


/* Hover */

.impact-item:hover,
.impact-item.active {

    background: rgba(255,255,255,.045);
}


/* Pink hover line */

.impact-item::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 3px;

    background: #e75a79;

    transition: .4s ease;
}


.impact-item:hover::before,
.impact-item.active::before {

    width: 100%;
}


/* =====================================================
   NUMBER
===================================================== */

.impact-number {

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 13px;

    font-weight: 700;

    color: #e75a79;

    letter-spacing: 1px;
}


/* =====================================================
   ICON
===================================================== */

.impact-icon {

    width: 60px;

    height: 60px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 55px;

    background: rgba(231,90,121,.10);

    border: 1px solid rgba(231,90,121,.18);

    color: #e75a79;

    font-size: 23px;

    transition: .4s ease;
}


.impact-item:hover .impact-icon {

    background: #e75a79;

    color: #ffffff;

    transform: rotate(-8deg);
}


/* =====================================================
   CONTENT
===================================================== */

.impact-content {

    margin-top: auto;
}


.impact-content > span {

    color: #777f8b;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.impact-content h3 {

    margin: 8px 0 12px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 27px;

    font-weight: 700;

    color: #ffffff;
}


.impact-content p {

    margin: 0;

    color: #929aa6;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   ARROW
===================================================== */

.impact-arrow {

    position: absolute;

    right: 25px;

    top: 28px;

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #777f8b;

    border: 1px solid rgba(255,255,255,.10);

    transition: .3s;
}


.impact-item:hover .impact-arrow {

    color: #ffffff;

    background: #e75a79;

    border-color: #e75a79;

    transform: rotate(45deg);
}


/* =====================================================
   BOTTOM
===================================================== */

.impact-bottom {

    position: relative;

    z-index: 3;

    margin-top: 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.impact-bottom-left {

    display: flex;

    align-items: center;

    gap: 14px;
}


.impact-mini-icon {

    width: 44px;

    height: 44px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(231,90,121,.10);

    color: #e75a79;

    font-size: 18px;
}


.impact-bottom-left strong {

    display: block;

    color: #ffffff;

    font-size: 13px;
}


.impact-bottom-left span {

    display: block;

    color: #707985;

    font-size: 10px;

    margin-top: 4px;
}


/* =====================================================
   BUTTON
===================================================== */

.impact-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 20px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 6px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    transition: .3s;
}


.impact-button i {

    color: #e75a79;
}


.impact-button:hover {

    background: #e75a79;

    border-color: #e75a79;

    color: #ffffff;

    transform: translateY(-3px);
}


.impact-button:hover i {

    color: #ffffff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .impact-section {

        padding: 100px 0;
    }

    .impact-header p {

        margin: 25px 0 0;
    }

    .impact-process {

        grid-template-columns: repeat(2, 1fr);
    }

    .impact-item:nth-child(2) {

        border-right: none;
    }

    .impact-item:nth-child(1),
    .impact-item:nth-child(2) {

        border-bottom: 1px solid rgba(255,255,255,.10);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575px) {

    .impact-section {

        padding: 80px 0;
    }

    .impact-header h2 {

        font-size: 40px;

        letter-spacing: -2px;
    }

    .impact-header p {

        font-size: 14px;
    }

    .impact-process {

        grid-template-columns: 1fr;
    }

    .impact-item {

        min-height: 340px;

        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,.10);

    }

    .impact-item:last-child {

        border-bottom: none;
    }

    .impact-content h3 {

        font-size: 25px;
    }

    .impact-content p {

        font-size: 13px;
    }

    .impact-bottom {

        flex-direction: column;

        align-items: flex-start;
    }

    .impact-section::after {

        font-size: 100px;

        bottom: -30px;
    }

}

/* =====================================================
   SOLUTIONS SECTION
===================================================== */

.solutions-section {

    position: relative;

    padding: 130px 0;

    background: #f5f5f6;

    overflow: hidden;
}


/* =====================================================
   BACKGROUND
===================================================== */

.solutions-section::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    border: 1px solid rgba(231,90,121,.07);

    left: -300px;

    top: 200px;
}


/* =====================================================
   HEADER
===================================================== */

.solutions-header {

    position: relative;

    z-index: 2;

    margin-bottom: 70px;
}


.solutions-label {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #e75a79;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;
}


.solutions-label span {

    width: 28px;

    height: 2px;

    background: #e75a79;
}


.solutions-header h2 {

    color: #20242c;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(45px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 800;

    margin: 0;
}


.solutions-header h2 span {

    display: block;

    color: #e75a79;
}


.solutions-header p {

    color: #747b85;

    font-size: 16px;

    line-height: 1.8;

    max-width: 450px;

    margin: 0 0 5px auto;
}


/* =====================================================
   SOLUTION MATRIX
===================================================== */

.solution-matrix {

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr;

    grid-template-rows:
        1fr 1fr;

    min-height: 620px;

    gap: 15px;

    position: relative;

    z-index: 2;
}


/* =====================================================
   MAIN FEATURE
===================================================== */

.solution-main {

    grid-row: span 2;

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    background: #20242c;

    min-height: 620px;

    padding: 45px;

    display: flex;

    align-items: flex-end;
}


.solution-main-content {

    position: relative;

    z-index: 3;

    max-width: 420px;
}


.solution-number {

    color: #e75a79;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 30px;
}


.solution-main-icon {

    width: 65px;

    height: 65px;

    border-radius: 15px;

    background: rgba(231,90,121,.12);

    border: 1px solid rgba(231,90,121,.25);

    color: #e75a79;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

    margin-bottom: 25px;
}


.solution-category {

    color: #7e8792;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.solution-main h3 {

    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 34px;

    line-height: 1.2;

    margin: 10px 0 18px;

    font-weight: 700;
}


.solution-main p {

    color: #9da5b0;

    font-size: 14px;

    line-height: 1.8;

    max-width: 390px;

    margin-bottom: 25px;
}


/* =====================================================
   MAIN LINK
===================================================== */

.solution-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    transition: .3s;
}


.solution-link i {

    width: 32px;

    height: 32px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e75a79;

    transition: .3s;
}


.solution-link:hover {

    color: #e75a79;
}


.solution-link:hover i {

    transform: rotate(45deg);
}


/* =====================================================
   DECORATIVE GRID
===================================================== */

.solution-grid {

    position: absolute;

    width: 450px;

    height: 450px;

    right: -180px;

    top: -100px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.06);
}


.solution-grid::before {

    content: "";

    position: absolute;

    inset: 50px;

    border-radius: 50%;

    border: 1px dashed rgba(231,90,121,.15);
}


.solution-grid::after {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    background: rgba(231,90,121,.08);

    border-radius: 50%;

    right: 90px;

    top: 90px;

    filter: blur(10px);
}


/* =====================================================
   SMALL SOLUTION BOX
===================================================== */

.solution-box {

    position: relative;

    background: #ffffff;

    border: 1px solid #e6e6e8;

    border-radius: 18px;

    padding: 27px;

    overflow: hidden;

    transition: .35s ease;
}


.solution-box:hover {

    transform: translateY(-6px);

    border-color: rgba(231,90,121,.30);

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);
}


/* =====================================================
   BOX TOP
===================================================== */

.solution-box-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;
}


.solution-box-top > span {

    color: #b1b5bb;

    font-size: 10px;

    font-weight: 700;
}


.solution-box-icon {

    width: 45px;

    height: 45px;

    border-radius: 11px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff1f4;

    color: #e75a79;

    font-size: 20px;

    transition: .3s;
}


.solution-box:hover .solution-box-icon {

    background: #e75a79;

    color: #ffffff;

    transform: rotate(-8deg);
}


/* =====================================================
   BOX CONTENT
===================================================== */

.solution-small-title {

    display: block;

    color: #9ca2aa;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 7px;
}


.solution-box h3 {

    color: #20242c;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 20px;

    font-weight: 700;

    margin: 0 0 10px;
}


.solution-box p {

    color: #7d848d;

    font-size: 12px;

    line-height: 1.7;

    margin: 0;

    max-width: 270px;
}


/* =====================================================
   PINK BOTTOM LINE
===================================================== */

.solution-line {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 3px;

    background: #e75a79;

    transition: .4s;
}


.solution-box:hover .solution-line {

    width: 100%;
}


/* =====================================================
   CTA
===================================================== */

.solutions-cta {

    margin-top: 18px;

    padding: 30px 35px;

    border-radius: 15px;

    background: #ffffff;

    border: 1px solid #e6e6e8;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    position: relative;

    z-index: 3;
}


.solutions-cta-content > span {

    display: block;

    color: #e75a79;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}


.solutions-cta-content h3 {

    margin: 0;

    color: #20242c;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 21px;

    font-weight: 600;
}


.solutions-cta-content strong {

    color: #e75a79;
}


.solutions-cta-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #20242c;

    color: #ffffff;

    padding: 13px 20px;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;

    transition: .3s;
}


.solutions-cta-button:hover {

    background: #e75a79;

    color: #ffffff;

    transform: translateY(-3px);
}


.solutions-cta-button i {

    transition: .3s;
}


.solutions-cta-button:hover i {

    transform: translateX(4px);
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px) {

    .solutions-section {

        padding: 100px 0;
    }

    .solutions-header p {

        margin: 25px 0 0;
    }

    .solution-matrix {

        grid-template-columns: 1fr 1fr;

        grid-template-rows: auto;

    }

    .solution-main {

        grid-column: span 2;

        grid-row: auto;

        min-height: 500px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:575px) {

    .solutions-section {

        padding: 80px 0;
    }

    .solutions-header h2 {

        font-size: 40px;

        letter-spacing: -2px;
    }

    .solutions-header p {

        font-size: 14px;
    }

    .solution-matrix {

        display: flex;

        flex-direction: column;

    }

    .solution-main {

        min-height: 500px;

        padding: 30px;
    }

    .solution-main h3 {

        font-size: 29px;
    }

    .solution-main p {

        font-size: 13px;
    }

    .solution-box {

        min-height: 220px;

        padding: 24px;
    }

    .solution-box h3 {

        font-size: 20px;
    }

    .solution-box p {

        font-size: 13px;
    }

    .solutions-cta {

        flex-direction: column;

        align-items: flex-start;

        padding: 25px;
    }

    .solutions-cta-content h3 {

        font-size: 18px;
    }

}

/* =====================================================
   TECHNOLOGY ACTION SECTION
===================================================== */

.tech-action-section {

    position: relative;

    padding: 130px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =====================================================
   HEADER
===================================================== */

.tech-action-header {

    margin-bottom: 60px;

    position: relative;

    z-index: 2;
}


.tech-action-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #e75a79;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 20px;
}


.tech-action-label span {

    width: 30px;

    height: 2px;

    background: #e75a79;
}


.tech-action-header h2 {

    color: #20242c;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(45px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 800;

    margin: 0;
}


.tech-action-header h2 span {

    display: block;

    color: #e75a79;
}


.tech-action-header p {

    color: #747b85;

    font-size: 16px;

    line-height: 1.8;

    max-width: 450px;

    margin: 0 0 5px auto;
}


/* =====================================================
   MAIN SHOWCASE
===================================================== */

.tech-showcase {

    display: grid;

    grid-template-columns: 1.35fr 1fr;

    gap: 18px;

    height: 620px;

    margin-bottom: 18px;
}


/* =====================================================
   LARGE IMAGE
===================================================== */

.showcase-large {

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    background: #20242c;
}


.showcase-large img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}


.showcase-large:hover img {

    transform: scale(1.07);
}


.showcase-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(20,24,31,.92),
            rgba(20,24,31,.10) 65%
        );
}


/* =====================================================
   LARGE CONTENT
===================================================== */

.showcase-large-content {

    position: absolute;

    left: 40px;

    right: 40px;

    bottom: 40px;

    z-index: 3;
}


.showcase-large-content > span {

    color: #e75a79;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.showcase-large-content h3 {

    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 35px;

    line-height: 1.2;

    max-width: 550px;

    margin: 10px 0 20px;

    font-weight: 700;
}


.showcase-large-content a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;
}


.showcase-large-content a i {

    width: 30px;

    height: 30px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e75a79;

    transition: .3s;
}


.showcase-large-content a:hover i {

    transform: rotate(45deg);
}


/* =====================================================
   RIGHT COLUMN
===================================================== */

.showcase-right {

    display: grid;

    grid-template-rows: 1fr 1fr;

    gap: 18px;
}


.showcase-small {

    position: relative;

    overflow: hidden;

    border-radius: 22px;
}


.showcase-small img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}


.showcase-small:hover img {

    transform: scale(1.08);
}


.small-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(20,24,31,.88),
            rgba(20,24,31,.05)
        );
}


/* =====================================================
   SMALL CONTENT
===================================================== */

.showcase-small-content {

    position: absolute;

    left: 25px;

    right: 25px;

    bottom: 25px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 13px;
}


.showcase-icon {

    width: 45px;

    height: 45px;

    min-width: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: rgba(231,90,121,.9);

    color: #ffffff;

    font-size: 19px;
}


.showcase-small-content span {

    display: block;

    color: #e75a79;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 4px;
}


.showcase-small-content h4 {

    margin: 0;

    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 17px;

    font-weight: 700;
}


/* =====================================================
   IMAGE STRIP
===================================================== */

.tech-image-strip {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}


.strip-card {

    height: 230px;

    position: relative;

    overflow: hidden;

    border-radius: 16px;

    background: #20242c;
}


.strip-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}


.strip-card:hover img {

    transform: scale(1.1);
}


.strip-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(20,24,31,.85),
            transparent 70%
        );
}


.strip-content {

    position: absolute;

    left: 18px;

    bottom: 18px;

    z-index: 2;
}


.strip-content span {

    display: block;

    color: #e75a79;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 5px;
}


.strip-content strong {

    display: block;

    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 13px;
}


/* =====================================================
   BOTTOM STATEMENT
===================================================== */

.tech-action-bottom {

    margin-top: 60px;

    padding-top: 30px;

    border-top: 1px solid #eeeeef;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.tech-action-bottom > div > span {

    color: #e75a79;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.tech-action-bottom h3 {

    margin: 8px 0 0;

    color: #20242c;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 23px;

    line-height: 1.4;

    font-weight: 600;
}


.tech-action-bottom h3 strong {

    color: #e75a79;
}


.tech-action-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 21px;

    border-radius: 7px;

    background: #20242c;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;

    transition: .3s;
}


.tech-action-btn:hover {

    background: #e75a79;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px) {

    .tech-action-section {

        padding: 100px 0;
    }

    .tech-action-header p {

        margin: 25px 0 0;
    }

    .tech-showcase {

        height: 700px;

        grid-template-columns: 1fr 1fr;
    }

    .showcase-large {

        grid-column: span 2;

        height: 400px;
    }

    .showcase-right {

        grid-column: span 2;

        grid-template-columns: 1fr 1fr;

        grid-template-rows: 280px;
    }

    .tech-image-strip {

        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:575px) {

    .tech-action-section {

        padding: 80px 0;
    }

    .tech-action-header h2 {

        font-size: 40px;

        letter-spacing: -2px;
    }

    .tech-action-header p {

        font-size: 14px;
    }

    .tech-showcase {

        display: block;

        height: auto;
    }

    .showcase-large {

        height: 450px;

        margin-bottom: 15px;
    }

    .showcase-large-content {

        left: 25px;

        right: 25px;

        bottom: 25px;
    }

    .showcase-large-content h3 {

        font-size: 27px;
    }

    .showcase-right {

        display: block;
    }

    .showcase-small {

        height: 280px;

        margin-bottom: 15px;
    }

    .tech-image-strip {

        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .strip-card {

        height: 190px;
    }

    .strip-content {

        left: 13px;

        bottom: 13px;
    }

    .strip-content strong {

        font-size: 11px;
    }

    .tech-action-bottom {

        flex-direction: column;

        align-items: flex-start;

        margin-top: 40px;
    }

    .tech-action-bottom h3 {

        font-size: 20px;
    }

}

/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {

    position: relative;

    padding: 130px 0;

    background: #f5f5f6;

    overflow: hidden;
}


/* =====================================================
   CONTACT WRAPPER
===================================================== */

.contact-wrapper {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    min-height: 680px;

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 25px 70px rgba(0,0,0,.10);
}


/* =====================================================
   LEFT CONTACT INFORMATION
===================================================== */

.contact-info {

    position: relative;

    background: #20242c;

    color: #ffffff;

    overflow: hidden;
}


.contact-info-content {

    position: relative;

    z-index: 3;

    padding: 55px 45px;

    height: 100%;

    display: flex;

    flex-direction: column;
}


/* =====================================================
   CONTACT BACKGROUND
===================================================== */

.contact-pattern {

    position: absolute;

    width: 500px;

    height: 500px;

    right: -270px;

    top: -100px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.07);
}


.contact-pattern::before {

    content: "";

    position: absolute;

    inset: 50px;

    border-radius: 50%;

    border: 1px dashed rgba(231,90,121,.20);
}


.contact-pattern::after {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    background: rgba(231,90,121,.12);

    border-radius: 50%;

    top: 120px;

    left: 120px;

    filter: blur(25px);
}


/* =====================================================
   LABEL
===================================================== */

.contact-label {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #e75a79;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 25px;
}


.contact-label span {

    width: 28px;

    height: 2px;

    background: #e75a79;
}


/* =====================================================
   HEADING
===================================================== */

.contact-info h2 {

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2.5px;

    font-weight: 800;

    margin: 0 0 25px;

    max-width: 450px;
}


.contact-info h2 span {

    display: block;

    color: #e75a79;
}


.contact-info-content > p {

    color: #aab1ba;

    font-size: 14px;

    line-height: 1.8;

    max-width: 420px;

    margin-bottom: 40px;
}


/* =====================================================
   CONTACT DETAILS
===================================================== */

.contact-details {

    display: flex;

    flex-direction: column;

    gap: 22px;
}


.contact-detail {

    display: flex;

    align-items: center;

    gap: 15px;
}


.contact-detail-icon {

    width: 45px;

    height: 45px;

    min-width: 45px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(231,90,121,.10);

    border: 1px solid rgba(231,90,121,.18);

    color: #e75a79;

    font-size: 17px;
}


.contact-detail span {

    display: block;

    color: #737d89;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 4px;
}


.contact-detail strong {

    display: block;

    color: #ffffff;

    font-size: 12px;

    font-weight: 500;
}


/* =====================================================
   SOCIAL
===================================================== */

.contact-social {

    display: flex;

    gap: 9px;

    margin-top: auto;

    padding-top: 40px;
}


.contact-social a {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.12);

    color: #aeb5be;

    font-size: 14px;

    transition: .3s;
}


.contact-social a:hover {

    background: #e75a79;

    border-color: #e75a79;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =====================================================
   FORM AREA
===================================================== */

.enquiry-form-wrapper {

    background: #ffffff;

    padding: 55px 55px;
}


/* =====================================================
   FORM HEADING
===================================================== */

.form-heading {

    margin-bottom: 30px;
}


.form-heading > span {

    color: #e75a79;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.form-heading h3 {

    color: #20242c;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 31px;

    font-weight: 800;

    letter-spacing: -1px;

    margin: 7px 0 8px;
}


.form-heading p {

    color: #858c95;

    font-size: 13px;

    margin: 0;
}


/* =====================================================
   FORM GROUP
===================================================== */

.form-group {

    margin-bottom: 20px;
}


.form-group label {

    display: block;

    color: #40464f;

    font-size: 11px;

    font-weight: 600;

    margin-bottom: 8px;
}


/* =====================================================
   INPUT
===================================================== */

.input-wrapper {

    position: relative;
}


.input-wrapper > i {

    position: absolute;

    left: 15px;

    top: 50%;

    transform: translateY(-50%);

    color: #a6acb4;

    font-size: 15px;

    z-index: 2;
}


.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {

    width: 100%;

    border: 1px solid #e4e5e7;

    background: #fafafa;

    border-radius: 8px;

    color: #303640;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    outline: none;

    transition: .3s;
}


.input-wrapper input,
.input-wrapper select {

    height: 50px;

    padding: 0 15px 0 43px;
}


.input-wrapper textarea {

    min-height: 130px;

    resize: vertical;

    padding: 15px 15px 15px 43px;
}


.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {

    color: #b1b6bd;
}


.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {

    border-color: #e75a79;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(231,90,121,.08);
}


.input-wrapper:focus-within > i {

    color: #e75a79;
}


/* =====================================================
   SELECT
===================================================== */

.select-wrapper select {

    appearance: none;

    cursor: pointer;
}


.select-wrapper::after {

    content: "\F282";

    font-family: "bootstrap-icons";

    position: absolute;

    right: 15px;

    top: 50%;

    transform: translateY(-50%);

    color: #9299a2;

    pointer-events: none;
}


/* =====================================================
   TEXTAREA
===================================================== */

.textarea-wrapper > i {

    top: 20px;

    transform: none;
}


/* =====================================================
   SUBMIT
===================================================== */

.form-submit {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 10px;
}


.submit-enquiry {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    border: 0;

    background: #e75a79;

    color: #ffffff;

    padding: 14px 22px;

    border-radius: 7px;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s;
}


.submit-enquiry:hover {

    background: #20242c;

    transform: translateY(-3px);
}


.submit-enquiry i {

    transition: .3s;
}


.submit-enquiry:hover i {

    transform: translate(3px,-3px);
}


/* =====================================================
   FORM NOTE
===================================================== */

.form-note {

    color: #9da3aa;

    font-size: 9px;

    line-height: 1.5;
}


.form-note i {

    color: #e75a79;

    margin-right: 3px;
}


/* =====================================================
   SUCCESS
===================================================== */

.form-success {

    display: none;

    margin-top: 20px;

    padding: 14px 16px;

    background: #f0faf5;

    border: 1px solid #d4efdf;

    border-radius: 8px;

    color: #278451;

    font-size: 12px;
}


.form-success i {

    margin-right: 7px;
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px) {

    .contact-section {

        padding: 100px 0;
    }

    .contact-wrapper {

        grid-template-columns: 1fr;

    }

    .contact-info {

        min-height: 600px;
    }

    .enquiry-form-wrapper {

        padding: 45px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:575px) {

    .contact-section {

        padding: 70px 0;
    }

    .contact-wrapper {

        border-radius: 16px;

    }

    .contact-info-content {

        padding: 40px 25px;
    }

    .contact-info {

        min-height: 600px;
    }

    .contact-info h2 {

        font-size: 40px;

        letter-spacing: -2px;
    }

    .contact-info-content > p {

        font-size: 13px;
    }

    .enquiry-form-wrapper {

        padding: 35px 22px;
    }

    .form-heading h3 {

        font-size: 26px;
    }

    .form-submit {

        flex-direction: column;

        align-items: flex-start;
    }

}

/* =====================================================
   FOOTER
===================================================== */

.main-footer {

    position: relative;

    background: #161a20;

    color: #ffffff;

    overflow: hidden;
}


/* =====================================================
   FOOTER CTA
===================================================== */

.footer-cta {

    padding: 0;

    position: relative;

    z-index: 2;
}


.footer-cta-box {

    position: relative;

    margin-top: -1px;

    padding: 55px 60px;

    border-radius: 0 0 20px 20px;

    background: #e75a79;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    overflow: hidden;
}


/* CTA background decoration */

.footer-cta-box::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.18);

    right: -100px;

    top: -180px;
}


.footer-cta-box::after {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.12);

    right: 100px;

    bottom: -120px;
}


/* =====================================================
   CTA CONTENT
===================================================== */

.footer-cta-content {

    position: relative;

    z-index: 2;
}


.footer-cta-content > span {

    display: block;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 10px;

    color: rgba(255,255,255,.75);
}


.footer-cta-content h2 {

    margin: 0 0 8px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 35px;

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.footer-cta-content h2 strong {

    color: #20242c;
}


.footer-cta-content p {

    margin: 0;

    max-width: 560px;

    color: rgba(255,255,255,.82);

    font-size: 13px;

    line-height: 1.7;
}


/* =====================================================
   CTA BUTTON
===================================================== */

.footer-cta-button {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 22px;

    border-radius: 7px;

    background: #20242c;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;

    transition: .3s;
}


.footer-cta-button:hover {

    background: #ffffff;

    color: #20242c;

    transform: translateY(-3px);
}


.footer-cta-button i {

    transition: .3s;
}


.footer-cta-button:hover i {

    transform: translate(3px,-3px);
}


/* =====================================================
   MAIN FOOTER
===================================================== */

.footer-main {

    padding: 80px 0 25px;

    position: relative;
}


.footer-main::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.025);

    right: -220px;

    top: 100px;
}


/* =====================================================
   COMPANY LOGO
===================================================== */

.footer-logo {

    display: inline-flex;

    flex-direction: column;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 28px;

    line-height: .9;

    font-weight: 800;

    letter-spacing: -1.5px;

    margin-bottom: 25px;
}


.footer-data {

    color: #e75a79;
}


.footer-info {

    color: #ffffff;
}


.footer-com {

    color: #e75a79;
}


.footer-logo small {

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .6px;

    color: #737b86;

    margin-top: 7px;
}


/* =====================================================
   COMPANY DESCRIPTION
===================================================== */

.footer-company p {

    max-width: 340px;

    color: #7e8792;

    font-size: 12px;

    line-height: 1.8;

    margin-bottom: 25px;
}


/* =====================================================
   SOCIAL
===================================================== */

.footer-social {

    display: flex;

    gap: 8px;
}


.footer-social a {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.10);

    color: #8b949f;

    font-size: 14px;

    transition: .3s;
}


.footer-social a:hover {

    background: #e75a79;

    color: #ffffff;

    border-color: #e75a79;

    transform: translateY(-3px);
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column h4 {

    color: #ffffff;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 13px;

    font-weight: 700;

    margin: 5px 0 23px;
}


.footer-column ul {

    list-style: none;

    padding: 0;

    margin: 0;
}


.footer-column li {

    margin-bottom: 12px;
}


.footer-column li a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #7e8792;

    font-size: 11px;

    transition: .3s;
}


.footer-column li a:hover {

    color: #e75a79;

    transform: translateX(4px);
}


.footer-column li a i {

    color: #e75a79;

    font-size: 12px;
}


/* =====================================================
   CONTACT
===================================================== */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 18px;
}


.footer-contact-icon {

    width: 34px;

    height: 34px;

    min-width: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: rgba(231,90,121,.08);

    color: #e75a79;

    font-size: 13px;
}


.footer-contact-item span {

    display: block;

    color: #626b76;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 4px;
}


.footer-contact-item a,
.footer-contact-item strong {

    display: block;

    color: #aab1ba;

    font-size: 10px;

    font-weight: 500;

    transition: .3s;
}


.footer-contact-item a:hover {

    color: #e75a79;
}


/* =====================================================
   TECHNOLOGY BAR
===================================================== */

.footer-tech-bar {

    margin-top: 60px;

    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,.07);

    border-bottom: 1px solid rgba(255,255,255,.07);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


.footer-tech-bar > span {

    color: #59626d;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    white-space: nowrap;
}


.footer-tech-tags {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 8px;

    flex-wrap: wrap;
}


.footer-tech-tags a {

    padding: 7px 11px;

    border-radius: 20px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.07);

    color: #7e8792;

    font-size: 9px;

    transition: .3s;
}


.footer-tech-tags a:hover {

    color: #ffffff;

    border-color: #e75a79;

    background: rgba(231,90,121,.08);
}


/* =====================================================
   BOTTOM
===================================================== */

.footer-bottom {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;
}


.footer-bottom p {

    margin: 0;

    color: #555e69;

    font-size: 9px;
}


.footer-bottom-links {

    display: flex;

    gap: 20px;
}


.footer-bottom-links a {

    color: #626b75;

    font-size: 9px;

    transition: .3s;
}


.footer-bottom-links a:hover {

    color: #e75a79;
}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {

    width: 40px;

    height: 40px;

    border: 1px solid rgba(255,255,255,.10);

    background: rgba(255,255,255,.03);

    color: #8d96a0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: .3s;
}


.back-to-top:hover {

    background: #e75a79;

    color: #ffffff;

    border-color: #e75a79;

    transform: translateY(-3px);
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px) {

    .footer-cta-box {

        padding: 45px;

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-tech-bar {

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-tech-tags {

        justify-content: flex-start;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:575px) {

    .footer-cta-box {

        padding: 35px 25px;

        border-radius: 0 0 15px 15px;
    }

    .footer-cta-content h2 {

        font-size: 29px;
    }

    .footer-cta-content p {

        font-size: 12px;
    }

    .footer-main {

        padding-top: 60px;
    }

    .footer-logo {

        font-size: 25px;
    }

    .footer-company p {

        font-size: 12px;
    }

    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        padding-bottom: 20px;
    }

    .footer-bottom-links {

        gap: 12px;

        flex-wrap: wrap;
    }

    .back-to-top {

        position: absolute;

        right: 0;

        top: 20px;
    }

}

section{
    scroll-margin-top: 30px;
}