/* reset.css */
@layer {

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        background-repeat: no-repeat;
    }

    * {
        padding: 0;
        margin: 0;
    }

    html {
        -webkit-text-size-adjust: none;
        text-size-adjust: none;
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
        block-size: 100%;
    }

    body {
        min-block-size: 100%;
    }

    img,
    iframe,
    audio,
    video,
    canvas {
        display: block;
        max-inline-size: 100%;
        block-size: auto;
    }

    svg {
        max-inline-size: 100%;
    }

    svg:not([fill]) {
        fill: currentColor;
    }

    input,
    button,
    textarea,
    select {
        font: inherit;
    }

    textarea {
        resize: vertical;
    }

    fieldset,
    iframe {
        border: none;
    }

    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        overflow-wrap: break-word;
    }

    p {
        text-wrap: pretty;
        font-variant-numeric: proportional-nums;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-variant-numeric: lining-nums;
    }

    p,
    blockquote,
    q,
    figcaption,
    li {
        hanging-punctuation: first allow-end last;
    }

    input,
    label,
    button,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.1;
    }

    math,
    time,
    table {
        font-variant-numeric: tabular-nums lining-nums slashed-zero;
    }

    code {
        font-variant-numeric: slashed-zero;
    }

    table {
        border-collapse: collapse;
    }

    abbr {
        font-variant-caps: all-small-caps;
        text-decoration: none;

        &[title] {
            cursor: help;
            text-decoration: underline dotted;
        }
    }

    sup,
    sub {
        line-height: 0;
    }

    :disabled {
        opacity: 0.8;
        cursor: not-allowed;
    }

    :focus-visible {
        outline-offset: 0.2rem;
    }
}

/* end-reset.css */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #121212;
    color: #FFF;
    min-height: 100%;
    height: auto;
    width: 100% !important;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0px 20px;
    width: 100%;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px;
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 50px;
    padding: 0;
    color: #FFF;
}

.main-menu ul li {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: 1px;
}

.main-menu ul li a {
    color: #FFF;
    text-decoration: none;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}


.logo span {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -1px;
}

.cta a {
    background-color: #39f8b1;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #39f8b1;
    padding: 13px 23px 13px 23px;
    border-radius: 7px 7px 7px 7px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 0.8px;
    color: #000;
    display: inline-flex;
    perspective: 1000px;
    align-items: center;
}

.cta a span {
    transition: transform .3s;
    transform-origin: 50% 0;
    transform-style: preserve-3d;
    position: relative;
    display: flex;
}

.cta a span:before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    content: "LET'S BUILD TOGETHER";
    transition: color .3s;
    transform: rotateX(-90deg);
    transform-origin: 50% 0;
    text-align: center;
}

.cta a:hover span {
    transform: rotateX(90deg) translateY(-12px);
}

.hero-section {
    background-attachment: fixed;
    background-image: url('img/my-img-2.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -80px 0;
    position: relative;
    z-index: 1;
    background-color: #000
}

.hero-section::before {
    content: '';
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(180deg, rgb(2 1 1 / 0%) 0%, rgb(18 18 18) 100%);
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 1px;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 100vh;
    justify-content: space-between;
    padding: 200px 0px 120px;
    position: relative;
    z-index: 3;
}

.hero-text-inner-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.hero-heading {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0px;
    text-align: end;
    justify-content: flex-end;
    font-size: 8vw;
    font-weight: 600;
    line-height: 1em;
    margin-top: 50px;
    margin-bottom: 0;
    margin-right: -2px;
}

.hero-heading-left {
    width: 37%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 40px;
    align-items: end;
}


.hero-text {
    width: 33%;
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 20px;
    margin-right: 40px;
}

.hero-sec-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-image: linear-gradient(180deg, #121212 0%, #02010100 100%);
    z-index: 0;
}

.spacer {
    height: 350px;
}

.hero-heading span:nth-child(2) {
    -webkit-text-stroke-width: 2px;
    stroke-width: 32px;
    -webkit-text-stroke-color: #39f8b1;
    stroke: #39f8b1;
    color: #02010100;
}

header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.hero-text h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.4em;
    margin: 0px;
}

.hero-text p {
    margin: 0px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6em;
    color: #b0b0b0;
}

.hero-action {
    display: flex;
    gap: 20px;
    align-items: center;
}


.hero-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 17px 34px;
    border-radius: 15px;
    color: #FFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    text-align: center;
}

.hero-action a:first-child {
    background-color: #212529;
    border: 1px solid #212529;
}


.hero-action a:last-child {
    border: 1px solid #39f8b1;
    transition: all .3s;
}

.hero-action a:last-child:hover {
    background-color: #39f8b1;
    color: #000;
}



/* --- Signature element: browser device mockup --- */

.device {
    position: relative;
}

.browser {
    background: #121521;
    border: 1px solid rgba(243, 241, 234, 0.18);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    background: #171b29;
    border-bottom: 1px solid rgba(243, 241, 234, 0.10);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(243, 241, 234, 0.18);
}

.browser-url {
    flex: 1;
    margin-left: 6px;
    background: #0B0D12;
    border: 1px solid rgba(243, 241, 234, 0.10);
    border-radius: 6px;
    padding: 6px 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.74rem;
    color: #9298A8;
    display: flex;
    align-items: center;
    gap: 2px;
    overflow: hidden;
    white-space: nowrap;
}

.browser-url .typed-cursor {
    display: inline-block;
    width: 6px;
    height: 13px;
    background: #5EEAD4;
    margin-left: 2px;
    animation: blink 1s steps(1) infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.browser-tabs {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    background: #121521;
    border-bottom: 1px solid rgba(243, 241, 234, 0.10);
    overflow-x: auto;
}

.browser-tabs button {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    padding: 7px 12px;
    border-radius: 6px;
    border: 1px solid transparent;
    background: transparent;
    color: #5C6275;
    white-space: nowrap;
    transition: all .2s ease;
}

.browser-tabs button.active {
    background: #171b29;
    border-color: rgba(243, 241, 234, 0.18);
    color: #5EEAD4;
}

.browser-screen {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.browser-screen img {
    position: absolute;
    inset: 0;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease;
    object-position: top;
}

.browser-screen img.active {
    opacity: 1;
}

.browser-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(11, 13, 18, 0.65) 100%);
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: #171b29;
    border: 1px solid rgba(243, 241, 234, 0.18);
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
    line-height: 1.5;
}

.float-card.code {
    bottom: -26px;
    left: -30px;
    color: #9298A8;
    transform: rotate(-3deg);
}

.float-card.code .kw {
    color: #5EEAD4;
}

.float-card.code .str {
    color: #FF8A3D;
}

.float-card.badge {
    top: -24px;
    right: -38px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #F3F1EA;
    transform: rotate(8deg);
}

.float-card.badge .ring {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #5EEAD4;
    box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.18);
}

@media (max-width:560px) {
    .float-card {
        display: none;
    }
}

#intro-msg {
    padding: 90px 0;
}

.intro-text h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.4em;
    margin: 0 auto;
}

.intro-numbers {
    display: flex;
    margin-top: 60px;
    justify-content: center;
}

.intro-numbers>div:first-child {
    border-left: 0px;
    padding-left: 0px;
}

.intro-numbers>div:last-child {
    padding-right: 0px;
}



.intro-numbers>div {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    padding-right: 40px;
    border-left: 1px solid #2e2e2e;
    gap: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: space-between;
    width: 100%;
}

.intro-numbers>div h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4em;
}

.intro-numbers>div>div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.intro-numbers>div>div>span:first-child {
    font-size: 130px;
    font-weight: 600;
    line-height: 1em;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: #585858;
    stroke: #585858;
    color: #02010100;
}

.intro-numbers>div>div>span:last-child {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.4em;
    color: #39f8b1;
}

.services-list {
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-list>div {
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 30px 30px;
    align-items: flex-start;
    text-align: start;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}

.service-icon>div {
    width: 50px;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    color: #00ffc2;
}

.service-icon img {
    width: 60%;
    max-width: 100%;
    height: auto;
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-text h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
}

.service-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6em;
    color: #b0b0b0;
    margin: 0px;
}

.core-services-area {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.services-gallery {
    width: 62.8%;
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: space-between;
}

.service-area-center {
    width: 43%;
    display: flex;
    flex-direction: column;
    gap: 60px 0px;
    justify-content: start;
    height: 100%;
}

.service-area-center h2 {
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #39f8b1;
    stroke: #39f8b1;
    color: #02010100;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2em;
}

.service-img-1 {
    width: 100%;
    height: 500px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    overflow: hidden;
}

.service-area-right {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.service-area-right img {
    width: 100%;
    height: 600px;
    max-width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    overflow: hidden;
}

.services-list>div:nth-child(2):before {
    content: '';
    position: absolute;
    background-color: #2e2e2e;
    inset: 0;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#core-services {
    padding: 90px 0;
}

#work {
    padding: 90px 0px;
}

.work-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.work-heading {
    width: 46%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: start;
}

.work-divider {
    width: 28%;
    border-bottom: 1px solid #2e2e2e;
    margin: 15px 0px;
}

.work-cta a {
    background-color: #2e2e2e;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 17px 34px;
    text-decoration: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
}

.work-heading h2 {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.2em;
}

.work-img-box {
    padding: 100px 100px 0 100px;
    height: 450px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 20px;
}

.work-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(46 46 46 / 95%);
}

.work-bg-img {
    position: absolute;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 50%;
    left: 50%;
    z-index: -1;
}

.work-bg-img img {
    max-width: 100%;
}

.work-img {
    position: relative;
    z-index: 1;
}

.work-img img {
    width: 100%;
}

.work-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
    row-gap: 50px;
}

.work-content h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4em;
}

.work-sample {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

#testimonial {
    padding: 90px 0px;
}

#testimonial h2 {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.2em;
}

.testimonial-list {
    display: flex;
    gap: 50px;
}

.client-testimonial {
    padding: 30px;
    background: #2e2e2e;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.testi-inner {
    display: flex;
    flex-direction: column;
    gap: 50px 0px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* .testi-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    background-image: linear-gradient(180deg, #2e2e2e 0%, rgb(2 1 1 / 0%) 100%);
    opacity: 0.3;
    width: 100%;
    height: 100%;
    z-index: -1;
} */

.testi-icon {
    position: absolute;
    font-family: "Cormorant Garamond", serif;
    font-size: 185px;
    top: 0;
    left: 45px;
    line-height: 1;
}

.testi-text {
    font-weight: 400;
    color: #b0b0b0;
    font-size: 22px;
    line-height: 1.6em;
}

.testi-info {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column-reverse;
    gap: 40px;
}

.testi-name {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
}

.testi-designation {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: #b0b0b0;
    margin-top: 4px;
    display: inline-block;
}

.testi-review {
    display: inline-flex;
    list-style: none;
}

.fill {
    color: #39f8b1;
    margin-right: 10px;
    font-size: 20px;
}

.client-testimonial>span {
    display: block;
    transform: scaleX(-1) rotate(-5deg);
    text-align: end;
    position: relative;
    top: 8px;
    opacity: 0.9;
}

.client-testimonial>span>i {
    color: #828282;
    font-size: 60px;
}

.author-img {
    width: 64px;
    min-height: 64px;
    border-radius: 50%;
    overflow: hidden;
}

.testi-author>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

#contact {
    padding: 90px 0px;
}

.contact-board {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.contact-form {
    padding: 35px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    background-image: linear-gradient(180deg, #2e2e2e 0%, #02010100 100%);
    opacity: 0.3;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.form-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 4px;
}

.form-field label {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: #c4c4c4;
}

.form-field label span {
    text-decoration: underline dotted;
    text-align: center;
    line-height: 0;
    display: inline;
    text-underline-offset: 0px;

}

input[type=text],
textarea,
input[type=tel],
input[type=email],
select,
input[type=number] {
    height: 56px;
    overflow-clip-margin: 0px !important;
    overflow: clip !important;
    border-radius: 8px;
    padding: 0px 18px;
    background-color: #383838;
    color: #ababab;
    outline: 0px !important;
    transition: all 0.2s ease;
    transition-delay: 0.01s;
    border: 1px solid #383838;
    font-size: 18px;
    text-transform: capitalize;
    width: 100%;
}

input[type=email] {
    text-transform: none;
}

input[type=text]::placeholder,
textarea::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
select::placeholder,
input[type=number]::placeholder {
    color: #ababab;
    font-size: 18px;
}

textarea {
    resize: none;
    height: 180px;
    padding-top: 14px;
    padding-bottom: 18px;
}

.contact-text h2 {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.2em;
}

.contact-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6em;
    color: #b0b0b0;
    margin: 0px;
}

.contact-board>div.contact-form {
    width: 45%;
}

.contact-board>div.contact-text {
    gap: 20px;
    width: 55%;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
}

.contact-action {
    background-color: #39f8b1;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #39f8b1;
    padding: 13px 23px 13px 23px;
    border-radius: 7px 7px 7px 7px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 0.8px;
    color: #000;
    display: inline-flex;
    perspective: 1000px;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.contact-action span {
    transition: transform .3s;
    transform-origin: 50% 0;
    transform-style: preserve-3d;
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
}

.contact-action span:before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    content: "Let's Talk";
    transition: color .3s;
    transform: rotateX(-90deg);
    transform-origin: 50% 0;
    text-align: center;
}

.contact-action:hover span {
    transform: rotateX(90deg) translateY(-12px);
}

.contact-manual {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #b0b0b0;
}

.contact-manual a {
    text-decoration: none;
    color: #b0b0b0;
}

#footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    overflow: hidden;
}

.footer-marquee {
    display: none;
}

.footer-branding-text h2 {
    color: white;
    font-size: 11.7rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    text-align: start;
    position: relative;
    margin: 0 auto;
    text-align: center;
    margin-left: -6px;
}

.footer-branding-text h2 span {
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: #39f8b1;
    stroke: #39f8b1;
    color: rgb(2 1 1 / 0%);
}

.footer-headline {
    padding-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #b0b0b0;
}


@media only screen and (min-width: 1440px) {
    .footer-branding-text {
        max-width: 1220px;
        margin: 0 auto;
    }

    .footer-branding-text h2 {
        font-size: 10.6rem;
    }
}


@media only screen and (max-width: 1200px) {
    .hero-action a {
        width: 100%;
    }

    .hero-action {
        flex-direction: column;
        width: 100%;
    }
}

@media only screen and (max-width: 1180px) {
    .work-divider {
        display: none;
    }
}

@media only screen and (max-width: 1060px) {
    .intro-numbers {
        flex-wrap: wrap;
        row-gap: 40px;
    }

    .intro-numbers>div {
        width: 50%;
    }

    .intro-numbers>div:first-child {
        border-left: 1px solid #2e2e2e;
        padding-left: 40px;
    }

    .work-heading {
        width: 50%;
    }

    .work-list {
        row-gap: 0px;
        gap: 40px;
    }

}


@media only screen and (max-width: 1024px) {

    #intro-msg, #core-services, #work, #testimonial, #contact {
        padding: 60px 0px;
    }

    .testimonial-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .client-testimonial {
        width: calc(50% - 30px);
    }

    .work-img-box {
        padding: 80px 50px 0 50px;
        height: 420px;
    }

    .main-menu ul {
        display: none;
    }

    .hero-text-container {
        padding-top: 130px;
    }
}

@media only screen and (max-width: 1023px) {
    .core-services-area {
        flex-direction: column-reverse;
    }

    .services-gallery {
        width: 100%;
        align-items: stretch;
    }

    .service-img-1 {
        height: auto;
    }

    .service-area-right img {
        height: 100%;
    }

    .services-list {
        width: 100%;
    }

    .services-list>div:last-child {
        padding-bottom: 0px;
    }

    .intro-text h2 br {
        display: none;
    }

    .hero-text {
        width: 37%;
    }
}


@media only screen and (max-width: 900px) {
    .contact-board {
        flex-direction: column-reverse;
    }

    .contact-board>div.contact-text {
        width: 100%;
    }

    .work-header {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 20px;
    }

    .work-heading {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .hero-heading-left {
        padding-right: 0px;
    }

    .hero-heading {
        font-size: 9.4vw;
    }

    .work-list {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 80%;
        margin-right: auto;
        margin-left: auto;
        gap: 60px;
    }

    .testimonial-list {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .client-testimonial {
        width: 100%;
    }
}


@media only screen and (max-width: 740px) {
    .hero-text-container {
        padding-top: 280px;
    }

    .hero-text-inner-container {
        flex-direction: column;
        gap: 150px;
    }

    .hero-heading-left {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .hero-heading {
        text-align: center;
        font-size: 17vw;
    }

    .hero-action {
        max-width: 50%;
    }

    .hero-text {
        margin: 0;
        width: 80%;
        position: relative;
        bottom: 0;
    }

    .intro-numbers>div {
        border-left: 0px !important;
        border-bottom: 1px solid #2e2e2e;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding: 40px 0 !important;
        max-width: 80%;
    }

    .intro-numbers>div:last-child {
        border-bottom: 0px !important;
        padding-bottom: 0px !important;
    }

    .intro-numbers {
        row-gap: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .intro-text h2 {
        text-align: center;
    }

    .intro-numbers {
        margin-top: 40px;
    }

    .intro-numbers div {
        text-align: center;
    }

    .services-gallery {
        flex-direction: column;
    }

    .service-area-center {
        width: 100%;
    }

    .service-img-1 {
        max-width: 350px;
        width: 100%;
    }

    .service-area-right {
        max-width: 350px;
        width: 100%;
    }
}


@media only screen and (max-width: 600px) {
    .hero-section {
        background-position: 55% 0;
    }
    .form-row{
        flex-direction: column;
    }
    .contact-form{
        gap: 0;
    }
    .contact-action{
        margin-top: 15px;
    }
}

@media only screen and (max-width: 425px) {
    .services-list>div {
        flex-direction: column;
        gap: 20px;
    }
}