/* =========================================================
   NINE TAILS DIGITAL
   WEBSITE DEVELOPMENT PAGE
   Premium Orange + Navy Theme
========================================================= */

:root {

    --ntd-orange: #ff4b00;
    --ntd-orange-dark: #e63f00;
    --ntd-orange-light: #ff7038;

    --ntd-navy: #071525;
    --ntd-navy-2: #0d1d2e;
    --ntd-navy-3: #142a40;

    --ntd-text: #263546;
    --ntd-muted: #687789;

    --ntd-light: #f6f8fb;
    --ntd-white: #ffffff;

    --ntd-border: rgba(7,21,37,.09);

    --ntd-shadow:
        0 20px 55px rgba(7,21,37,.10);

    --ntd-shadow-hover:
        0 30px 75px rgba(7,21,37,.16);

    --ntd-radius: 22px;
}


/* =========================================================
   COMMON
========================================================= */

.ntd-web-section {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
}

.ntd-web-heading h2,
.ntd-web-centered-heading h2 {
    color: var(--ntd-navy);
    font-weight: 800;
    line-height: 1.12;
}

.ntd-web-heading h2 span,
.ntd-web-centered-heading h2 span {
    color: var(--ntd-orange);
}

.ntd-web-heading p,
.ntd-web-centered-heading p {
    color: var(--ntd-muted);
    line-height: 1.85;
}

.ntd-web-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--ntd-orange);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.ntd-web-section-tag i {
    font-size: 17px;
}

.ntd-web-centered-heading {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.ntd-web-centered-heading h2 {
    font-size: clamp(35px,4vw,52px);
    margin-bottom: 18px;
}

.ntd-web-centered-heading p {
    max-width: 690px;
    margin: 0 auto;
}


/* =========================================================
   BUTTONS
========================================================= */

.ntd-web-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 56px;

    padding: 0 27px;

    border-radius: 10px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: all .35s ease;
}

.ntd-web-btn i {
    font-size: 18px;
    transition: transform .3s ease;
}

.ntd-web-btn:hover i {
    transform: translateX(4px);
}

.ntd-web-btn-primary {
    color: #fff !important;
    background: var(--ntd-orange);

    box-shadow:
        0 12px 30px rgba(255,75,0,.28);
}

.ntd-web-btn-primary:hover {
    color: #fff !important;

    background: var(--ntd-orange-dark);

    transform: translateY(-3px);

    box-shadow:
        0 18px 38px rgba(255,75,0,.35);
}

.ntd-web-btn-outline {
    color: var(--ntd-navy) !important;

    border: 1px solid rgba(7,21,37,.18);

    background: rgba(255,255,255,.75);

    backdrop-filter: blur(10px);
}

.ntd-web-btn-outline:hover {
    color: var(--ntd-orange) !important;

    border-color: var(--ntd-orange);

    transform: translateY(-3px);
}

.ntd-web-btn-light {
    color: var(--ntd-navy) !important;

    background: #fff;

    box-shadow:
        0 15px 35px rgba(0,0,0,.16);
}

.ntd-web-btn-light:hover {
    color: var(--ntd-orange) !important;

    transform: translateY(-3px);
}

.ntd-web-btn-whatsapp {
    color: #fff !important;

    border: 1px solid rgba(255,255,255,.3);

    background: rgba(255,255,255,.07);
}

.ntd-web-btn-whatsapp:hover {
    color: #fff !important;

    background: rgba(255,255,255,.15);

    transform: translateY(-3px);
}


/* =========================================================
   HERO
========================================================= */

.ntd-web-hero {

    position: relative;

    min-height: 730px;

    display: flex;
    align-items: center;

    background:

        radial-gradient(
            circle at 75% 25%,
            rgba(255,75,0,.10),
            transparent 27%
        ),

        radial-gradient(
            circle at 10% 80%,
            rgba(7,21,37,.06),
            transparent 25%
        ),

        #f7f9fc;

    overflow: hidden;
}

.ntd-web-grid {

    position: absolute;
    inset: 0;

    background-image:

        linear-gradient(
            rgba(7,21,37,.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(7,21,37,.035) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 85%
        );

    pointer-events: none;
}

.ntd-web-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;
}

.ntd-web-glow-one {

    width: 280px;
    height: 280px;

    left: 5%;
    bottom: -120px;

    background:
        rgba(255,75,0,.10);
}

.ntd-web-glow-two {

    width: 220px;
    height: 220px;

    right: 25%;
    top: 5%;

    background:
        rgba(7,21,37,.07);
}


/* =========================================================
   HERO CONTENT
========================================================= */

.ntd-web-hero-content {

    position: relative;
    z-index: 3;

    padding: 75px 0;
}

.ntd-web-eyebrow {

    display: inline-flex;
    align-items: center;

    gap: 11px;

    padding: 9px 15px;

    border-radius: 50px;

    color: var(--ntd-orange);

    background:
        rgba(255,75,0,.07);

    border:
        1px solid rgba(255,75,0,.14);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    margin-bottom: 24px;
}

.ntd-web-eyebrow-line {

    width: 24px;
    height: 2px;

    background:
        var(--ntd-orange);
}

.ntd-web-hero-content h1 {

    max-width: 760px;

    color: var(--ntd-navy);

    font-size:
        clamp(45px,5vw,70px);

    line-height: 1.02;

    font-weight: 900;

    letter-spacing: -2.3px;

    margin-bottom: 25px;
}

.ntd-web-hero-content h1 span {

    color:
        var(--ntd-orange);
}

.ntd-web-hero-description {

    max-width: 660px;

    color:
        var(--ntd-muted);

    font-size: 17px;

    line-height: 1.85;

    margin-bottom: 32px;
}

.ntd-web-hero-buttons {

    display: flex;
    flex-wrap: wrap;

    gap: 13px;
}

.ntd-web-trust-row {

    display: flex;
    align-items: center;

    gap: 22px;

    margin-top: 42px;
}

.ntd-web-trust-item {

    display: flex;
    flex-direction: column;
}

.ntd-web-trust-item strong {

    color: var(--ntd-navy);

    font-size: 18px;

    line-height: 1;

    margin-bottom: 6px;
}

.ntd-web-trust-item span {

    color: var(--ntd-muted);

    font-size: 10px;

    font-weight: 600;
}

.ntd-web-trust-divider {

    width: 1px;
    height: 38px;

    background:
        rgba(7,21,37,.12);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.ntd-web-hero-visual {

    position: relative;

    min-height: 590px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ntd-web-orbit {

    position: absolute;

    border-radius: 50%;

    border:
        1px dashed rgba(255,75,0,.20);
}

.web-orbit-one {

    width: 500px;
    height: 500px;

    animation:
        ntdWebRotate 25s linear infinite;
}

.web-orbit-two {

    width: 390px;
    height: 390px;

    border-color:
        rgba(7,21,37,.10);

    animation:
        ntdWebRotateReverse 18s linear infinite;
}

@keyframes ntdWebRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes ntdWebRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================================
   BROWSER MOCKUP
========================================================= */

.ntd-browser-window {

    position: relative;

    z-index: 4;

    width: min(475px,94%);

    border-radius: 18px;

    overflow: hidden;

    background:
        #fff;

    border:
        1px solid rgba(7,21,37,.10);

    box-shadow:

        0 35px 85px rgba(7,21,37,.24),

        0 5px 20px rgba(7,21,37,.08);
}

.ntd-browser-header {

    height: 42px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 0 13px;

    background:
        #edf0f4;

    border-bottom:
        1px solid rgba(7,21,37,.07);
}

.ntd-browser-dots {

    display: flex;
    gap: 5px;
}

.ntd-browser-dots span {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        #b8c0c9;
}

.ntd-browser-address {

    flex: 1;

    height: 25px;

    display: flex;
    align-items: center;

    padding: 0 10px;

    border-radius: 5px;

    color:
        #788492;

    background:
        #fff;

    font-size: 8px;
}

.ntd-browser-address i {

    color:
        #55a66d;

    margin-right: 5px;
}

.ntd-browser-menu {

    color:
        #87919c;

    font-size: 13px;
}

.ntd-browser-content {

    padding: 18px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f6f8fa
        );
}

.ntd-browser-nav {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.ntd-browser-logo {

    display: flex;
    align-items: center;

    gap: 5px;

    color:
        var(--ntd-navy);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .8px;
}

.ntd-browser-logo span {

    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background:
        var(--ntd-orange);

    border-radius: 6px;

    font-size: 11px;
}

.ntd-browser-navlinks {

    display: flex;
    gap: 11px;

    color:
        #8b96a3;

    font-size: 6px;
}

.ntd-browser-hero {

    min-height: 215px;

    display: flex;
    align-items: center;

    padding:
        20px;

    border-radius: 13px;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(255,75,0,.18),
            transparent 35%
        ),

        var(--ntd-navy);
}

.ntd-browser-copy {

    width: 55%;
}

.ntd-browser-copy small {

    color:
        var(--ntd-orange);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1px;
}

.ntd-browser-copy h3 {

    color:
        #fff;

    font-size: 21px;

    line-height: 1.12;

    font-weight: 900;

    margin:
        8px 0;
}

.ntd-browser-copy h3 span {

    color:
        var(--ntd-orange);
}

.ntd-browser-copy p {

    color:
        rgba(255,255,255,.55);

    font-size: 8px;

    line-height: 1.6;

    margin-bottom: 13px;
}

.ntd-browser-cta {

    display: inline-flex;
    align-items: center;

    gap: 5px;

    padding:
        7px 10px;

    border-radius: 5px;

    color: #fff;

    background:
        var(--ntd-orange);

    font-size: 7px;
    font-weight: 700;
}

.ntd-browser-visual {

    position: relative;

    width: 45%;

    height: 175px;
}

.ntd-browser-circle {

    position: absolute;

    width: 130px;
    height: 130px;

    top: 20px;
    right: 5px;

    border-radius: 50%;

    background:

        linear-gradient(
            145deg,
            var(--ntd-orange),
            #ff8a52
        );

    box-shadow:
        0 15px 30px rgba(255,75,0,.25);
}

.ntd-browser-card {

    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border-radius: 12px;

    color:
        var(--ntd-orange);

    background:
        rgba(255,255,255,.96);

    box-shadow:
        0 12px 25px rgba(0,0,0,.18);

    font-size: 22px;
}

.card-one {

    top: 25px;
    right: 88px;

    transform:
        rotate(-8deg);
}

.card-two {

    right: 3px;
    bottom: 28px;

    transform:
        rotate(8deg);
}

.ntd-browser-bottom {

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr;

    gap: 8px;

    margin-top: 12px;
}

.ntd-browser-bottom div {

    height: 27px;

    border-radius: 7px;

    background:
        #e9edf1;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.ntd-web-floating-card {

    position: absolute;

    z-index: 7;

    display: flex;
    align-items: center;

    gap: 11px;

    padding:
        13px 16px;

    border-radius: 14px;

    background:
        rgba(255,255,255,.95);

    border:
        1px solid rgba(255,255,255,.8);

    box-shadow:
        0 20px 45px rgba(7,21,37,.14);

    backdrop-filter:
        blur(12px);
}

.web-float-one {

    top: 75px;
    left: -15px;

    animation:
        ntdWebFloat 4s ease-in-out infinite;
}

.web-float-two {

    right: -15px;
    bottom: 75px;

    animation:
        ntdWebFloat 4s ease-in-out infinite 1s;
}

.ntd-web-floating-icon {

    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    color:
        #fff;

    background:
        var(--ntd-orange);

    border-radius: 10px;

    font-size: 18px;
}

.ntd-web-floating-card strong,
.ntd-web-floating-card span {

    display: block;
}

.ntd-web-floating-card strong {

    color:
        var(--ntd-navy);

    font-size: 11px;
}

.ntd-web-floating-card span {

    color:
        var(--ntd-muted);

    font-size: 9px;

    margin-top: 3px;
}

@keyframes ntdWebFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-10px);
    }

}


/* =========================================================
   INTRO IMAGE
========================================================= */

.ntd-web-intro {

    background:
        #fff;
}

.ntd-web-image-wrap {

    position: relative;

    padding:
        15px;
}

.ntd-web-image-wrap::before {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 150px;
    height: 150px;

    background:

        radial-gradient(
            var(--ntd-orange) 1.2px,
            transparent 1.2px
        );

    background-size:
        10px 10px;

    opacity:
        .22;
}

.ntd-web-image-pattern {

    position: absolute;

    width: 75%;
    height: 75%;

    top: 0;
    left: 0;

    border:
        2px solid var(--ntd-orange);

    border-radius:
        22px;

    opacity:
        .4;
}

.ntd-web-main-image {

    position: relative;

    z-index: 2;

    width: 100%;
    height: 470px;

    object-fit: cover;

    border-radius:
        20px;

    box-shadow:
        var(--ntd-shadow);
}

.ntd-web-image-badge {

    position: absolute;

    z-index: 4;

    right: -5px;
    bottom: 35px;

    display: flex;
    flex-direction: column;

    padding:
        18px 23px;

    border-radius:
        14px;

    background:
        var(--ntd-navy);

    box-shadow:
        0 20px 45px rgba(7,21,37,.20);
}

.ntd-web-image-badge strong {

    color:
        var(--ntd-orange);

    font-size: 28px;

    line-height: 1;
}

.ntd-web-image-badge span {

    color:
        #fff;

    font-size: 10px;

    margin-top: 6px;
}


/* =========================================================
   CHECK LIST
========================================================= */

.ntd-web-check-list {

    margin-top:
        30px;
}

.ntd-web-check {

    display: flex;

    gap: 14px;

    margin-bottom:
        20px;
}

.ntd-web-check > span {

    flex:
        0 0 35px;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    color:
        #fff;

    background:
        var(--ntd-orange);

    border-radius:
        50%;

    box-shadow:
        0 8px 18px rgba(255,75,0,.20);
}

.ntd-web-check strong {

    display: block;

    color:
        var(--ntd-navy);

    margin-bottom:
        3px;
}

.ntd-web-check p {

    color:
        var(--ntd-muted);

    font-size:
        13px;

    line-height:
        1.6;

    margin:
        0;
}


/* =========================================================
   SERVICES
========================================================= */

.ntd-web-services {

    background:

        radial-gradient(
            circle at 10% 20%,
            rgba(255,75,0,.05),
            transparent 25%
        ),

        #f7f9fc;
}

.ntd-web-service-card {

    position: relative;

    height: 100%;

    padding:
        30px;

    border-radius:
        var(--ntd-radius);

    background:
        #fff;

    border:
        1px solid var(--ntd-border);

    box-shadow:
        0 10px 35px rgba(7,21,37,.045);

    transition:
        all .4s ease;

    overflow:
        hidden;
}

.ntd-web-service-card::before {

    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    background:
        rgba(255,75,0,.06);

    transition:
        all .4s ease;
}

.ntd-web-service-card:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(255,75,0,.18);

    box-shadow:
        var(--ntd-shadow-hover);
}

.ntd-web-service-card:hover::before {

    transform:
        scale(2);
}

.ntd-web-service-top {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content:
        space-between;

    align-items:
        flex-start;
}

.ntd-web-service-number {

    color:
        rgba(7,21,37,.12);

    font-size:
        38px;

    line-height:
        1;

    font-weight:
        900;
}

.ntd-web-service-icon {

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    color:
        var(--ntd-orange);

    background:
        rgba(255,75,0,.08);

    border-radius:
        15px;

    font-size:
        27px;

    transition:
        all .35s ease;
}

.ntd-web-service-card:hover
.ntd-web-service-icon {

    color:
        #fff;

    background:
        var(--ntd-orange);

    transform:
        rotate(-5deg);
}

.ntd-web-service-card h3 {

    position: relative;

    z-index: 2;

    color:
        var(--ntd-navy);

    font-size:
        21px;

    font-weight:
        800;

    margin:
        27px 0 12px;
}

.ntd-web-service-card p {

    position: relative;

    z-index: 2;

    color:
        var(--ntd-muted);

    font-size:
        14px;

    line-height:
        1.8;

    margin-bottom:
        20px;
}

.ntd-web-service-link {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        var(--ntd-orange);

    font-size:
        12px;

    font-weight:
        800;

    text-decoration:
        none;
}

.ntd-web-service-link i {

    transition:
        transform .3s ease;
}

.ntd-web-service-link:hover {

    color:
        var(--ntd-orange-dark);
}

.ntd-web-service-link:hover i {

    transform:
        translateX(4px);
}


/* =========================================================
   FEATURES
========================================================= */

.ntd-web-features {

    background:
        #fff;
}

.ntd-web-feature-visual {

    position: relative;

    min-height:
        500px;

    display: flex;

    align-items:
        center;

    justify-content:
        center;
}

.ntd-feature-glow {

    position: absolute;

    width:
        390px;

    height:
        390px;

    border-radius:
        50%;

    background:
        rgba(255,75,0,.07);

    filter:
        blur(25px);
}

.ntd-feature-main-card {

    position:
        relative;

    z-index:
        2;

    width:
        min(440px,94%);

    padding:
        30px;

    border-radius:
        25px;

    background:
        linear-gradient(
            145deg,
            #0e2032,
            #071525
        );

    box-shadow:
        0 35px 80px rgba(7,21,37,.25);
}

.ntd-feature-card-header {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        flex-start;

    margin-bottom:
        30px;
}

.ntd-feature-card-header small {

    color:
        rgba(255,255,255,.42);

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        1.5px;
}

.ntd-feature-card-header h3 {

    color:
        #fff;

    font-size:
        27px;

    margin:
        6px 0 0;

    font-weight:
        800;
}

.ntd-feature-card-header > span {

    width:
        47px;

    height:
        47px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--ntd-orange);

    background:
        rgba(255,75,0,.12);

    border-radius:
        13px;

    font-size:
        23px;
}

.ntd-performance-item {

    margin-bottom:
        22px;
}

.ntd-performance-item > div:first-child {

    display:
        flex;

    justify-content:
        space-between;

    margin-bottom:
        7px;
}

.ntd-performance-item span {

    color:
        rgba(255,255,255,.52);

    font-size:
        10px;
}

.ntd-performance-item strong {

    color:
        #fff;

    font-size:
        10px;
}

.ntd-performance-bar {

    height:
        6px;

    border-radius:
        50px;

    background:
        rgba(255,255,255,.08);

    overflow:
        hidden;
}

.ntd-performance-bar span {

    display:
        block;

    height:
        100%;

    border-radius:
        50px;

    background:
        var(--ntd-orange);

    box-shadow:
        0 0 12px rgba(255,75,0,.5);
}

.ntd-feature-mini-row {

    display:
        grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:
        8px;

    margin-top:
        28px;
}

.ntd-feature-mini-row div {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        5px;

    padding:
        11px 5px;

    border-radius:
        9px;

    color:
        rgba(255,255,255,.58);

    background:
        rgba(255,255,255,.045);

    font-size:
        9px;
}

.ntd-feature-mini-row i {

    color:
        var(--ntd-orange);

    font-size:
        14px;
}


/* =========================================================
   FEATURE LIST
========================================================= */

.ntd-web-feature-list {

    margin-top:
        28px;

    display:
        grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:
        18px;
}

.ntd-web-feature-item {

    display:
        flex;

    gap:
        12px;
}

.ntd-web-feature-icon {

    flex:
        0 0 43px;

    width:
        43px;

    height:
        43px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--ntd-orange);

    background:
        rgba(255,75,0,.08);

    border-radius:
        11px;

    font-size:
        18px;
}

.ntd-web-feature-item strong {

    display:
        block;

    color:
        var(--ntd-navy);

    font-size:
        13px;

    margin-bottom:
        4px;
}

.ntd-web-feature-item p {

    color:
        var(--ntd-muted);

    font-size:
        11px;

    line-height:
        1.6;

    margin:
        0;
}


/* =========================================================
   STATS
========================================================= */

.ntd-web-stats {

    position:
        relative;

    padding:
        28px 0;

    background:
        var(--ntd-orange);

    overflow:
        hidden;
}

.ntd-web-stats::before {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:

        linear-gradient(
            45deg,
            transparent 48%,
            rgba(255,255,255,.08) 49%,
            transparent 50%
        );

    background-size:
        35px 35px;
}

.ntd-web-stats-grid {

    position:
        relative;

    z-index:
        2;

    display:
        grid;

    grid-template-columns:
        repeat(4,1fr);
}

.ntd-web-stat {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        13px;

    padding:
        15px 20px;

    border-right:
        1px solid rgba(255,255,255,.22);
}

.ntd-web-stat:last-child {

    border-right:
        none;
}

.ntd-web-stat > span {

    width:
        44px;

    height:
        44px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--ntd-orange);

    background:
        #fff;

    border-radius:
        12px;

    font-size:
        20px;
}

.ntd-web-stat strong,
.ntd-web-stat small {

    display:
        block;
}

.ntd-web-stat strong {

    color:
        #fff;

    font-size:
        17px;
}

.ntd-web-stat small {

    color:
        rgba(255,255,255,.72);

    font-size:
        10px;

    margin-top:
        3px;
}


/* =========================================================
   PROCESS
========================================================= */

.ntd-web-process {

    background:
        #fff;
}

.ntd-web-process-grid {

    position:
        relative;

    display:
        grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:
        20px;

    margin-top:
        65px;
}

.ntd-web-process-grid::before {

    content:
        "";

    position:
        absolute;

    left:
        12%;

    right:
        12%;

    top:
        55px;

    border-top:
        1px dashed rgba(255,75,0,.25);
}

.ntd-web-process-card {

    position:
        relative;

    z-index:
        2;

    text-align:
        center;

    padding:
        20px;
}

.ntd-web-process-number {

    position:
        absolute;

    right:
        20px;

    top:
        0;

    color:
        rgba(255,75,0,.08);

    font-size:
        60px;

    font-weight:
        900;

    line-height:
        1;
}

.ntd-web-process-icon {

    position:
        relative;

    width:
        74px;

    height:
        74px;

    margin:
        0 auto 25px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        #fff;

    background:
        var(--ntd-navy);

    border:
        7px solid #fff;

    outline:
        1px solid rgba(255,75,0,.18);

    border-radius:
        50%;

    font-size:
        25px;

    box-shadow:
        0 10px 25px rgba(7,21,37,.13);

    transition:
        all .35s ease;
}

.ntd-web-process-card:hover
.ntd-web-process-icon {

    background:
        var(--ntd-orange);

    transform:
        translateY(-5px);
}

.ntd-web-process-card h3 {

    color:
        var(--ntd-navy);

    font-size:
        20px;

    font-weight:
        800;

    margin-bottom:
        10px;
}

.ntd-web-process-card p {

    color:
        var(--ntd-muted);

    font-size:
        13px;

    line-height:
        1.75;
}


/* =========================================================
   WHY US
========================================================= */

.ntd-web-why {

    background:

        radial-gradient(
            circle at 90% 10%,
            rgba(255,75,0,.06),
            transparent 25%
        ),

        #f7f9fc;
}

.ntd-web-benefit {

    height:
        100%;

    padding:
        27px;

    background:
        #fff;

    border:
        1px solid var(--ntd-border);

    border-radius:
        18px;

    transition:
        all .35s ease;
}

.ntd-web-benefit:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(255,75,0,.16);

    box-shadow:
        var(--ntd-shadow);
}

.ntd-web-benefit > span {

    width:
        53px;

    height:
        53px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--ntd-orange);

    background:
        rgba(255,75,0,.08);

    border-radius:
        14px;

    font-size:
        23px;

    margin-bottom:
        20px;
}

.ntd-web-benefit h3 {

    color:
        var(--ntd-navy);

    font-size:
        19px;

    font-weight:
        800;

    margin-bottom:
        9px;
}

.ntd-web-benefit p {

    color:
        var(--ntd-muted);

    font-size:
        13px;

    line-height:
        1.75;

    margin:
        0;
}


/* =========================================================
   PATNA SEO SECTION
========================================================= */

.ntd-web-location {

    background:
        #fff;
}

.ntd-web-location-box {

    position:
        relative;

    padding:
        55px;

    border-radius:
        26px;

    background:

        radial-gradient(
            circle at 100% 0%,
            rgba(255,75,0,.13),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #f8fafc,
            #eef2f6
        );

    border:
        1px solid rgba(7,21,37,.06);

    overflow:
        hidden;
}

.ntd-web-location-box::after {

    content:
        "";

    position:
        absolute;

    right:
        -70px;

    bottom:
        -100px;

    width:
        250px;

    height:
        250px;

    border:
        35px solid rgba(255,75,0,.07);

    border-radius:
        50%;
}

.ntd-web-location-box h2 {

    color:
        var(--ntd-navy);

    font-size:
        clamp(30px,4vw,45px);

    font-weight:
        800;

    margin-bottom:
        20px;
}

.ntd-web-location-box h2 span {

    color:
        var(--ntd-orange);
}

.ntd-web-location-box p {

    max-width:
        760px;

    color:
        var(--ntd-muted);

    font-size:
        14px;

    line-height:
        1.85;
}

.ntd-web-location-card {

    position:
        relative;

    z-index:
        2;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    text-align:
        center;

    padding:
        35px 20px;

    border-radius:
        18px;

    background:
        var(--ntd-navy);
}

.ntd-web-location-icon {

    width:
        65px;

    height:
        65px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        #fff;

    background:
        var(--ntd-orange);

    border-radius:
        50%;

    font-size:
        28px;

    margin-bottom:
        16px;
}

.ntd-web-location-card strong {

    color:
        #fff;

    font-size:
        21px;
}

.ntd-web-location-card > span {

    color:
        rgba(255,255,255,.58);

    font-size:
        11px;

    margin-top:
        5px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.ntd-web-final-cta {

    position:
        relative;

    padding:
        110px 0;

    background:

        radial-gradient(
            circle at 20% 20%,
            rgba(255,75,0,.25),
            transparent 28%
        ),

        radial-gradient(
            circle at 80% 80%,
            rgba(255,75,0,.16),
            transparent 30%
        ),

        var(--ntd-navy);

    overflow:
        hidden;
}

.ntd-web-final-cta::before {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background-image:

        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size:
        45px 45px;
}

.ntd-web-cta-circle {

    position:
        absolute;

    border:
        1px solid rgba(255,75,0,.18);

    border-radius:
        50%;
}

.cta-circle-one {

    width:
        500px;

    height:
        500px;

    right:
        -220px;

    top:
        -220px;
}

.cta-circle-two {

    width:
        320px;

    height:
        320px;

    left:
        -160px;

    bottom:
        -160px;
}

.ntd-web-cta-content {

    position:
        relative;

    z-index:
        3;

    max-width:
        850px;

    margin:
        0 auto;
}

.ntd-web-cta-label {

    display:
        inline-block;

    color:
        var(--ntd-orange);

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        2px;

    margin-bottom:
        17px;
}

.ntd-web-cta-content h2 {

    color:
        #fff;

    font-size:
        clamp(38px,5vw,61px);

    font-weight:
        900;

    line-height:
        1.08;

    margin-bottom:
        20px;
}

.ntd-web-cta-content h2 span {

    color:
        var(--ntd-orange);
}

.ntd-web-cta-content p {

    max-width:
        650px;

    margin:
        0 auto 30px;

    color:
        rgba(255,255,255,.64);

    font-size:
        16px;

    line-height:
        1.8;
}

.ntd-web-cta-buttons {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1199px) {

    .ntd-web-hero-content h1 {
        font-size:58px;
    }

    .ntd-web-hero-visual {
        min-height:530px;
    }

    .web-orbit-one {
        width:430px;
        height:430px;
    }

    .web-orbit-two {
        width:350px;
        height:350px;
    }

}


@media (max-width:991px) {

    .ntd-web-section {
        padding:80px 0;
    }

    .ntd-web-hero {
        min-height:auto;
    }

    .ntd-web-hero-content {

        padding:
            75px 0 30px;

        text-align:
            center;
    }

    .ntd-web-hero-content h1,
    .ntd-web-hero-description {

        margin-left:
            auto;

        margin-right:
            auto;
    }

    .ntd-web-hero-buttons,
    .ntd-web-trust-row {

        justify-content:
            center;
    }

    .ntd-web-hero-visual {

        min-height:
            570px;
    }

    .ntd-web-stats-grid {

        grid-template-columns:
            repeat(2,1fr);
    }

    .ntd-web-stat:nth-child(2) {
        border-right:
            none;
    }

    .ntd-web-stat:nth-child(-n+2) {
        border-bottom:
            1px solid rgba(255,255,255,.22);
    }

    .ntd-web-process-grid {

        grid-template-columns:
            repeat(2,1fr);
    }

    .ntd-web-process-grid::before {
        display:
            none;
    }

}


@media (max-width:767px) {

    .ntd-web-section {
        padding:
            65px 0;
    }

    .ntd-web-hero-content {
        padding-top:
            55px;
    }

    .ntd-web-hero-content h1 {

        font-size:
            43px;

        letter-spacing:
            -1.3px;
    }

    .ntd-web-hero-description {
        font-size:
            15px;
    }

    .ntd-web-hero-buttons {

        flex-direction:
            column;

        align-items:
            stretch;
    }

    .ntd-web-btn {
        width:
            100%;
    }

    .ntd-web-trust-row {

        gap:
            13px;
    }

    .ntd-web-trust-item strong {
        font-size:
            16px;
    }

    .ntd-web-trust-item span {
        font-size:
            9px;
    }

    .ntd-web-hero-visual {

        min-height:
            470px;
    }

    .ntd-browser-window {

        width:
            94%;
    }

    .web-orbit-one {

        width:
            350px;

        height:
            350px;
    }

    .web-orbit-two {

        width:
            290px;

        height:
            290px;
    }

    .ntd-web-floating-card {

        padding:
            10px 12px;
    }

    .web-float-one {

        left:
            -3px;

        top:
            65px;
    }

    .web-float-two {

        right:
            -3px;

        bottom:
            60px;
    }

    .ntd-web-floating-icon {

        width:
            33px;

        height:
            33px;

        font-size:
            15px;
    }

    .ntd-web-main-image {

        height:
            350px;
    }

    .ntd-web-image-badge {

        right:
            0;

        bottom:
            20px;
    }

    .ntd-web-centered-heading h2,
    .ntd-web-heading h2 {

        font-size:
            34px;
    }

    .ntd-web-service-card {

        padding:
            25px;
    }

    .ntd-web-feature-visual {

        min-height:
            430px;
    }

    .ntd-web-feature-list {

        grid-template-columns:
            1fr;
    }

    .ntd-web-process-grid {

        grid-template-columns:
            1fr;
    }

    .ntd-web-location-box {

        padding:
            30px 22px;
    }

    .ntd-web-location-card {

        margin-top:
            25px;
    }

    .ntd-web-final-cta {

        padding:
            75px 0;
    }

    .ntd-web-cta-content h2 {

        font-size:
            39px;
    }

}


@media (max-width:480px) {

    .ntd-web-hero-content h1 {
        font-size:
            37px;
    }

    .ntd-web-eyebrow {
        font-size:
            10px;
    }

    .ntd-web-trust-row {
        gap:
            8px;
    }

    .ntd-web-trust-divider {
        height:
            30px;
    }

    .ntd-web-hero-visual {
        min-height:
            410px;
    }

    .ntd-browser-window {
        width:
            96%;
    }

    .ntd-browser-navlinks {
        display:
            none;
    }

    .ntd-browser-hero {
        min-height:
            190px;

        padding:
            15px;
    }

    .ntd-browser-copy h3 {
        font-size:
            17px;
    }

    .ntd-browser-circle {
        width:
            105px;

        height:
            105px;
    }

    .ntd-browser-card {
        width:
            42px;

        height:
            42px;

        font-size:
            17px;
    }

    .ntd-web-floating-card {
        transform:
            scale(.82);
    }

    .web-float-one {
        left:
            -18px;
    }

    .web-float-two {
        right:
            -18px;
    }

    .ntd-web-main-image {
        height:
            290px;
    }

    .ntd-web-image-wrap {
        padding:
            8px;
    }

    .ntd-web-image-badge {
        right:
            -5px;

        bottom:
            10px;
    }

    .ntd-web-stats-grid {
        grid-template-columns:
            1fr;
    }

    .ntd-web-stat {

        border-right:
            none !important;

        border-bottom:
            1px solid rgba(255,255,255,.20);
    }

    .ntd-web-stat:last-child {
        border-bottom:
            none;
    }

    .ntd-web-feature-main-card {
        padding:
            22px;
    }

    .ntd-feature-card-header h3 {
        font-size:
            22px;
    }

    .ntd-web-cta-content h2 {
        font-size:
            34px;
    }

}