﻿@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");
@import url('https://unpkg.com/normalize.css') layer(normalize);

@layer normalize, base, demo, stick, effect, srollbar, debug;

@layer debug {
    [data-debug='true'] li {
        outline: 0.05em dashed currentColor;
    }

    [data-debug='true'] :is(h2, li:last-of-type) {
        outline: 0.05em dashed canvasText;
    }
}



@layer scrollbar {
    @property --hue {
        initial-value: 0;
        syntax: '<number>';
        inherits: false;
    }

    @property --chroma {
        initial-value: 0;
        syntax: '<number>';
        inherits: true;
    }

    [data-sync-scrollbar='true'] {
        scrollbar-color: oklch(var(--lightness) var(--chroma) var(--hue)) #0000;
    }

    @supports (animation-timeline: scroll()) and (animation-range: 0% 100%) {
        [data-sync-scrollbar='true'][data-animate='true'] {
            timeline-scope: --list;
            scrollbar-color: oklch(var(--lightness) var(--chroma, 0) var(--hue)) #0000;
            animation-name: change, chroma-on, chroma-off;
            animation-fill-mode: both;
            animation-timing-function: linear;
            /* animation-timeline: scroll(root); */
            animation-range: entry 50% exit 50%, entry 40% entry 50%, exit 30% exit 40%;
            animation-timeline: --list;
            ul

{
    view-timeline: --list;
}

}
}

@keyframes change {
    to {
        --hue: var(--end);
    }
}

@keyframes chroma-on {
    to {
        --chroma: 0.3;
    }
}

@keyframes chroma-off {
    to {
        --chroma: 0;
    }
}

}

@layer effect {
    :root {
        --start: 0;
        --end: 360;
        --lightness: 65%;
        --base-chroma: 0.3;
    }

    [data-theme='dark'] {
        --lightness: 75%;
    }

    [data-theme='light'] {
        --lightness: 65%;
    }

    @media (prefers-color-scheme: dark) {
        --lightness: 75%;
    }

    ul {
        --step: calc((var(--end) - var(--start)) / (var(--count) - 1));
    }

    li:not(:last-of-type) {
        color: oklch( var(--lightness) var(--base-chroma) calc(var(--start) + (var(--step) * var(--i))) );
    }

    @supports (animation-timeline: scroll()) and (animation-range: 0% 100%) {
        [data-animate='true'] {
            li

{
    opacity: 0.2;
    animation-name: brighten;
    &:first-of-type

{
    --start-opacity: 1;
}

&:last-of-type {
    --brightness: 1;
    --end-opacity: 1;
}

animation-fill-mode: both;
animation-timing-function: linear;
animation-range: cover calc(50% - 1lh) calc(50% + 1lh);
animation-timeline: view();
}
}

@keyframes brighten {
    0% {
        opacity: var(--start-opacity, 0.2);
    }

    50% {
        opacity: 1;
        filter: brightness(var(--brightness, 1.2));
    }

    100% {
        opacity: var(--end-opacity, 0.2);
    }
}

}
}

@layer stick {
    section:first-of-type {
        font-size: 50px;
        display: flex;
        line-height: 1.25;
        width: 100%;
    }

    section:last-of-type {
        min-height: auto;
        display: flex;
        place-items: center;
        width: 100%;
        justify-content: center;
    
    --font-level: 6;


}

main {
    width: 100%;
}
#mainNav > ul > li:nth-child(2) > a {
    color: #fff !important;
    font-weight: bold !important;
    background: #07388e !important;
    border-radius: 7px !important;
}
section:first-of-type h2 {
    position: sticky;
    top: calc(50% - 0.5lh);
    font-size: inherit;
    margin: 0;
    display: inline-block;
    height: fit-content;
    font-weight: 600;
}

ul {
    font-weight: 600;
    padding-inline: 0;
    margin: 0;
    list-style-type: none;
}

[data-snap='true'] {
    scroll-snap-type: y proximity;
    li

{
    scroll-snap-align: center;
}

}

h2,
li:last-of-type {
    background: linear-gradient( canvasText 50%, color-mix(in oklch, canvas, canvasText 25%) );
    background-clip: text;
    color: #0000;
}

}

@layer demo {
    section-header {
        min-height: 100vh;
        display: flex;
        place-items: center;
        width: 100%;
        padding-inline: 5rem;
    }



  
}

@layer base {
    :root {
        --font-size-min: 14;
        --font-size-max: 20;
        --font-ratio-min: 1.1;
        --font-ratio-max: 1.33;
        --font-width-min: 375;
        --font-width-max: 1500;
    }

    html {
        color-scheme: light dark;
    }

    [data-theme='light'] {
        color-scheme: light only;
    }

    [data-theme='dark'] {
        color-scheme: dark only;
    }

    :where(.fluid) {
        --fluid-min: calc( var(--font-size-min) * pow(var(--font-ratio-min), var(--font-level, 0)) );
        --fluid-max: calc( var(--font-size-max) * pow(var(--font-ratio-max), var(--font-level, 0)) );
        --fluid-preferred: calc( (var(--fluid-max) - var(--fluid-min)) / (var(--font-width-max) - var(--font-width-min)) );
        --fluid-type: clamp( (var(--fluid-min) / 16) * 1rem, ((var(--fluid-min) / 16) * 1rem) - (((var(--fluid-preferred) * var(--font-width-min)) / 16) * 1rem) + (var(--fluid-preferred) * var(--variable-unit, 100vi)), (var(--fluid-max) / 16) * 1rem );
        font-size: var(--fluid-type);
    }

    *,
    *:after,
    *:before {
        box-sizing: border-box;
    }

    body {
        display: grid;
        place-items: center;
        background: light-dark(white, black);
        min-height: 100vh;
        
    }


    .bear-link {
        color: canvasText;
        position: fixed;
        top: 1rem;
        left: 1rem;
        width: 48px;
        aspect-ratio: 1;
        display: grid;
        place-items: center;
        opacity: 0.8;
    }

    :where(.x-link, .bear-link):is(:hover, :focus-visible) {
        opacity: 1;
    }

    .bear-link svg {
        width: 75%;
    }

    /* Utilities */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border-width: 0;
    }
}

div.tp-dfwv {
    position: fixed;
}

.des-product {
    color: black;
    font-size: 18px;
    width: 90%;
    text-align: justify;
    line-height: 1.75;
}
.we-Word{
    font-size:20px;
}
body > main > main > section.content.fluid {
    justify-content: center;
    margin-top: 59px;
}
body > main > main > section.content.fluid > h2 {
    width: 16%;
    font-size: 38px;
}

.section__title .title svg, .section__title .sub-title {
    color: #07388e !important;
    
}
    .section__title .sub-title{
        opacity:0;
    }
    .Product-card-container {
        position: relative;
        width: 600px;
        height: 400px;
        z-index: 100;
        margin-bottom: 77px;
    }
.upper-heading-product {
    margin-top: 100px;
}
    .upper-heading-product > p {
        display: flex;
        justify-content: right;
        font-size: 18px !important;
        width: 90%;
        text-align: center;
        margin: auto;
        padding: 10px 0;
        line-height: 1.75;
    }
/**/
    .card {
        width: 300px;
        height: 100%;
        background-color: var(--color-card-bg);
        position: absolute;
        top: 0;
        left: 50%;
        border-radius: 1rem;
        transform: translateX(-50%) translateY(calc(50px * var(--card))) rotate(45deg) skew(-15deg, -10deg) scale(0.8);
        box-shadow: 25px 20px 100px rgba(0, 0, 0, 0.2);
        z-index: calc(-1 * var(--card));
        transition: 0.5s;
        overflow: hidden;
    }

    .card:nth-child(3) {
        background: rgba(255, 255, 255, 0.55);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }
/**/
#section-3.animateEveryTime .container .card {
    position: absolute;
    z-index: 1;
    transform: translateX(calc(-50% + calc(115% * var(--card))));
    transition: transform 1s ease 0.5s;
}
/**/
.card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* top and bottom alignment */
    height: 100%;
    padding: 32px;
    z-index: 1; /* ensure content is above pseudo-elements */
}

.card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card__dept {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: auto;
}

.card__usecase {
    font-weight: 500;
    margin-top: auto; /* stick to bottom */
}

.card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* top and bottom alignment */
    height: 100%;
    padding: 32px;
    z-index: 1; /* ensure content is above pseudo-elements */
}

.card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}



.card__usecase {
    font-size: 28px;
    font-weight: 600;
    margin-top: auto;
}


.card__icon--mastercard {
    position: relative;
    height: 32px;
    width: 44px;
}

    
   

.card__footer {
    display: flex;
    flex-direction: column;
    line-height: 150%;
    gap: 0.2em;
    weight: 700;
}

    .card__footer p {
        font-size: 1.2em;
        font-family: "Caveat", cursive;
        color: var(--color-card-name);
    }

    .card__footer h2 {
        font-size: 2.5em;
        weight: 800;
        line-height: 120%;
        color: var(--color-card-number);
    }

.card:nth-child(3)::before {
    content: "";
    position: absolute;
    top: -11%;
    left: 50%;
    transform: translateX(-50%) rotate(75deg);
    width: 12%;
    height: 100%;
    background: #95d2f1;
}

.card:nth-child(3)::after {
    content: "";
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%) rotate(75deg);
    width: 12%;
    height: 100%;
    background: #5ec2f5;
}

.card:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -25%;
    color:White;
    width: 350px;
    height: 350px;
    background-color: #fff;
    background-color: #fff;
    opacity: 0.1;
    border-radius: 50%;
}

.card:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 30%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 100px;
    color: White;
    height: 100px;
    background-color: #fff;
    background-color: #fff;
    opacity: 0.1;
    border-radius: 50%;
}

.card:nth-child(2) .card__ornament {
    content: "";
    position: absolute;
    top: 40%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: #0093dd;
    opacity: 0.1;
    border-radius: 50%;
}

.card:nth-child(1)::before {
    content: "";
    position: absolute;
    top: -11%;
    left: 50%;
    transform: translateX(-50%) rotate(75deg);
    width: 12%;
    height: 100%;
    background: #95d2f1;
}

.card:nth-child(1)::after {
    content: "";
    position: absolute;
    top: 1%;
    left: 50%;
    transform: translateX(-50%) rotate(75deg);
    width: 12%;
    height: 100%;
    background: #5ec2f5;
}
.card__icon > i{
    font-size:35px;
}
/**/
.div-upper-product-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

    .main-container {
        min-height: auto;
        display: flex;
        display: -webkit-flex;
        align-items: center;
        -webkit-align-items: center;
        height: 560px;
        overflow: hidden;
        width: 104%;
    }

.main-circle-div {
    margin: 0px auto;
    width: 480px;
    height: 480px;
    position: relative;
}

.big-circle {
    height: 100%;
    width: 100%;
    position: relative;
    border: 3px solid #6495f2;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    animation: Rotate 20s linear infinite;
    -webkit-animation: Rotate 20s linear infinite;
}

.icon-block {
    width: 64px;
    height: 64px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    background-image: linear-gradient(180deg, #4967e6 0%, #0193dd 100%);
    -webkit-background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
    box-shadow: 0 2px 4px 0 #3e5ada;
    -webkit-box-shadow: 0 2px 4px 0 #3e5ada;
}

    .icon-block img {
        margin: 0px auto;
        width: 86%;
        animation: Rotate-reverse 20s linear infinite;
        -webkit-animation: Rotate-reverse 20s linear infinite;
    }

    .icon-block:first-child {
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }

    .icon-block:nth-child(2) {
        top: 50%;
        right: 0;
        transform: translate(50%, -50%);
        -webkit-transform: translate(50%, -50%);
    }

    .icon-block:nth-child(3) {
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%);
        -webkit-transform: translate(-50%, 50%);
    }

    .icon-block:nth-child(4) {
        top: 50%;
        left: 0;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }
/* circle content */
.circle {
    animation: circle-rotate 20s linear infinite;
    -webkit-animation: circle-rotate 20s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    width: 75%;
    height: 75%;
    border: 3px solid #6495f2;
    border-radius: 50%;
}

    .circle .icon-block img {
        animation: img-rotate 20s linear infinite;
        -webkit-animation: img-rotate 20s linear infinite;
    }
/* center logo */
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

    .center-logo img {
        max-width: 140px;
    }

/* keyframe animation */

@keyframes Rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes Rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes Rotate-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@-webkit-keyframes Rotate-reverse {
    from {
        -webkit-transform: rotate(360deg);
    }

    to {
        -webkit-transform: rotate(0deg);
    }
}

@keyframes circle-rotate {
    from {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(405deg);
    }
}

@-webkit-keyframes circle-rotate {
    from {
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
    }

    to {
        -webkit-transform: translate(-50%, -50%) rotate(405deg);
    }
}

@keyframes img-rotate {
    from {
        transform: rotate(-45deg);
    }

    to {
        transform: rotate(-405deg);
    }
}

@-webkit-keyframes img-rotate {
    from {
        -webkit-transform: rotate(-45deg);
    }

    to {
        -webkit-transform: rotate(-405deg);
    }
}



    #section-3 {
        display: flex;
        flex-direction: column;
        gap:20px;
    }


    .navbar-expand-lg .navbar-nav .nav-link {
        font-weight: 400 !important;
    }



    .wrap-banner {
        position: relative;
        width: 100%;
        height:55vh; /* Adjust height as needed */
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    #your-element-selector {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }


.wrap-banner h2 {
    position: relative;
    z-index: 1; /* Ensure text is on top */
    color: #fff; /* Make text visible over background */
    font-size: 42px;
    text-align: center;
    font-weight: bold;
    margin-top: 40px;
}

    #section-3 .title {
        text-align: center;
        width: fit-content;
        margin: auto;
        padding: 10px 0;
    }


        #section-3 .title .highlight-bg {
            background-image: url(https://www.wealcoder.com/dev/html/axtra/assets/imgs/shape/1.png);
            background-repeat: no-repeat;
            background-size: 57% 129%;
            background-position: center;
            display: inline-block;
            padding: 8px 16px; /* Adjust padding for shape size */
            border-radius: 5px; /* Optional rounded edges */
        }

    #ourProductDetails {
        position: relative;
        overflow: hidden; /* ensures shapes stay within section */
    }


        /* Middle-left fading shape */
        #ourProductDetails::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0; /* move to left */
            width: 426px;
            height: 389px;
            background: radial-gradient(circle, rgba(173,216,230,0.5) 0%, rgba(173,216,230,0) 70%);
            border-radius: 50%; /* makes it circular */
            transform: translate(-50%, -50%); /* adjust for left alignment */
            z-index: 1;
        }

    /* Middle-right fading outer circle */
    .fading-shape-right {
        position: absolute;
        top: 50%;
        right: 0; /* place at right mid */
        width: 450px; /* adjust size */
        height: 450px;
        background: radial-gradient(circle, rgba(173,216,230,0.3) 0%, rgba(173,216,230,0) 70%);
        border-radius: 50%;
        transform: translate(50%, -50%);
        z-index: 1;
    }


    #ourProductDetails.animateEveryTime .section__title span {
        animation: fadeIn3D 1s forwards;
        animation-delay: 0.5s;
    }

    #ourProductDetails.animateEveryTime .section__title h2 {
        animation: fadeIn3D 1s forwards;
        animation-delay: 0.7s;
        opacity: 0;
    }

    #ourProductDetails.animateEveryTime .des-product {
        animation: fadeIn3D 1s forwards;
        animation-delay: 0.9s;
        opacity: 0;
    }

    @keyframes fadeIn3D {
        0% {
            opacity: 0;
            transform: translate3d(0px, 50px, 0px) scale3d(0.8, 0.8, 0.8);
        }

        100% {
            opacity: 1;
            transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1);
        }
    }

    .why-choose-us {
        position: relative;
        width: 100%;
        height: 500px;
        background-image: url('../images/backgroundimg/parallax-1.jpg');
        background-attachment: fixed; /* Parallax effect */
        background-position: center;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        overflow: hidden;
    }

        .why-choose-us .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .why-choose-us .content {
            position: relative;
            z-index: 2;
            max-width: 820px;
            text-align: center;
            padding: 0 20px;
        }

        .why-choose-us h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .why-choose-us p {
            font-size: 24px;
            line-height: 1.6;
            color: black;
        }



    /* ==========================
   4. Product Cards
   ========================== */
    .Product-card-container {
        position: relative;
        width: 600px;
        height: 400px;
        z-index: 100;
        margin-bottom: 77px;
    }

    .card {
        width: 300px;
        height: 100%;
        background-color: var(--color-card-bg);
        position: absolute;
        top: 0;
        left: 50%;
        border-radius: 1rem;
        transform: translateX(-50%) translateY(calc(50px*var(--card))) rotate(45deg) skew(-15deg,-10deg) scale(0.8);
        box-shadow: 25px 20px 100px rgba(0,0,0,0.2);
        z-index: calc(-1*var(--card));
        transition: 0.5s;
        overflow: hidden;
    }

    .card__content {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        padding: 32px;
        z-index: 1;
    }

    .card__body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .card__dept {
        font-weight: 500;
        font-size: 14px;
        margin-bottom: auto;
    }

    .card__usecase {
        font-size: 28px;
        font-weight: 600;
        margin-top: auto;
    }

    .card__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .card__icon > i {
        font-size: 35px;
    }


    .card:nth-child(1)::before, .card:nth-child(3)::before {
        content: "";
        position: absolute;
        top: -8%;
        left: 50%;
        transform: translateX(-50%) rotate(75deg);
        width: 12%;
        height: 100%;
        background: #95d2f1;
    }

    .card:nth-child(1)::after, .card:nth-child(3)::after {
        content: "";
        position: absolute;
        top: 3%;
        left: 50%;
        transform: translateX(-50%) rotate(75deg);
        width: 12%;
        height: 100%;
        background: #5ec2f5;
    }

    .card:nth-child(2)::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -25%;
        width: 350px;
        height: 350px;
        background-color: #fff;
        opacity: 0.1;
        border-radius: 50%;
    }

    .card:nth-child(2)::after {
        content: "";
        position: absolute;
        top: 30%;
        left: 30%;
        transform: translate(-50%,-50%);
        width: 100px;
        height: 100px;
        background-color: #fff;
        opacity: 0.1;
        border-radius: 50%;
    }

    .card:nth-child(2) .card__ornament {
        content: "";
        position: absolute;
        top: 40%;
        left: 70%;
        transform: translate(-50%,-50%);
        width: 50px;
        height: 50px;
        background-color: #0093dd;
        opacity: 0.1;
        border-radius: 50%;
    }
@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .div-upper-product-desc {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0px !important;
    }

    .main-circle-div {
        width: 329px;
        height: 329px;
    }

    .main-container {
        min-height: auto;
        height: 450px;
        padding-left: 0;
        overflow: revert-layer;
    }

    .icon-block {
        width: 50px;
        height: 50px;
    }
    .center-logo img {
        max-width: 100px;
    }
}
@media only screen and (min-width: 700px) and (max-width: 1000px) {
    .container{
        max-width:100%;

    }
    .main-container{
        padding-left:0px;
    }
    .main-circle-div {
        width: 300px;
        height: 300px;
    }
    .div-upper-product-desc {
        margin-top: 0px !important;
    }
    .main-container {
        min-height: auto;
        height: 420px;
    }
    .icon-block {
        width: 52px;
        height: 52px;
    }
    body > main > main > section.content.fluid.animate-in.animateEveryTime > ul {
        margin-left: 111px;
    }
    .section__title .title,
    body > main > main > section.content.fluid.animate-in.animateEveryTime > h2,
    #section-3 .title,
    .why-choose-us h2 {
        font-size: 24px;
    }
    #ourProductDetails p,
    .upper-heading-product > p,
    .why-choose-us p {
        font-size: 14px !important;
    }
    #ourProductDetails > div > div > div > div:nth-child(1){
        padding:40px;
    }
    .Product-card-container {
        width: 100%;
        margin-bottom: 0px;
        height: 321px;
    }
    .center-logo img {
        max-width: 80px;
    }
    section:first-of-type {
        font-size: 30px;
    }
    .card {
        width: 29%;
        height: 290px;
    }
    .card__usecase {
        font-size:22px;

    }
    .card__dept{
        font-size:12px;
    }
    .why-choose-us {
        min-height: auto;
        height: 309px;
    }
    .card:nth-child(1)::before, .card:nth-child(3)::before {
        top: -11%;
    }
    .card__content {
        padding: 15px;
    }
   
}
/*@media only screen and (min-width: 200px) and (max-width: 700px) {
    .section__title .title,
    body > main > main > section.content.fluid.animate-in.animateEveryTime > h2,
    #section-3 .title,
    .why-choose-us h2 {
        font-size: 20px;
    }

    #ourProductDetails {
        padding-top: 30px;
    }

    .main-container {
        padding-left: 0px;
    }

    .container {
        max-width: 100%;
        width: 100%;
    }

    section:first-of-type {
        font-size: 24px;
        overflow: revert-layer;
    }

    body > main > main > section.content.fluid.animate-in.animateEveryTime > ul {
        margin-left: 65px;
    }

    #ourProductDetails p,
    .upper-heading-product > p,
    .why-choose-us p {
        font-size: 14px !important;
    }

    .center-logo img {
        max-width: 89px;
    }

    .main-container {
        height: 344px;
    }

    .main-circle-div {
        width: 300px;
        height: 300px;
    }

    .icon-block {
        width: 56px;
        height: 56px;
    }

    .card {
        width: 29%;
        height: 251px;
    }

    .card__content {
        padding: 10px;
    }

    .card__dept {
        font-size: 12px;
    }

    .card__usecase {
        font-size: 18px;
    }
    .Product-card-container {
        margin-bottom: 0px;
        height: 265px;
    }
    body > main > main > section.content.fluid.animate-in.animateEveryTime{
        padding-left:10px;
    }
    }
*/
@media only screen and (min-width: 400px) and (max-width: 700px) {
    .wrap-banner {
        height: 279px;
    }
    .vanta-canvas {
        height: 100% !important;
    }
    body > main > main > section.content.fluid > h2 {
        font-size: 18px;
    }
    #ourProductDetails{
        padding-top:30px;
    }
    .section__title .title,
    
    #section-3 .title,
    .why-choose-us h2 {
        font-size: 20px;
    }

    #ourProductDetails p,
    .upper-heading-product > p,
    .why-choose-us p {
        font-size: 14px !important;
    }
    .main-circle-div {
        width: 300px;
        height:300px;
    }
    .main-container {
        height: 369px;
    }
    .icon-block {
        width: 48px;
        height: 48px;
    }
    .center-logo img {
        max-width: 70px;
    }
    body > main > main > section.content.fluid{
        padding:10px;
    }
        body > main > main > section.content.fluid > ul {
            margin-left: 66px !important;
            font-size: 22px;
        }
    .card{
        width:29%;
    }
    .Product-card-container {
        margin: 0px !important;
        height: 247px;
    }
    .container{
        width:100%;
        max-width:100%;
    }
    .card__content {
        padding:10px;
    }
    .card__dept {
        font-size: 8px;
        margin-bottom: 0px;
    }
    .card__usecase{
        font-size:12px;
        margin-top:0px;
    }
    body > main > main > section.content.fluid > ul{
        margin-left:30px;
    }
    .why-choose-us {
        height: 277px;
        margin-top: 30px;
    }
    }
@media only screen and (min-width: 200px) and (max-width: 400px) {
    .wrap-banner {
        height: 397px;
    }

    .vanta-canvas {
        width: 457px;
        height: 397px;
    }

    #ourProductDetails {
        padding-top: 30px;
    }

    .section__title .title,
    #section-3 .title,
    .why-choose-us h2 {
        font-size: 20px;
    }

    body > main > main > section.content.fluid > h2{
        font-size:14px;
    }
    #ourProductDetails p,
    .upper-heading-product > p,
    .why-choose-us p {
        font-size: 14px !important;
    }

    .main-circle-div {
        width: 300px;
        height: 300px;
    }

    .main-container {
        height: 369px;
    }

    .icon-block {
        width: 48px;
        height: 48px;
    }

    .center-logo img {
        max-width: 70px;
    }

    body > main > main > section.content.fluid {
        padding: 10px;
    }

        body > main > main > section.content.fluid > ul {
            margin-left: 27px !important;
            font-size: 20px;
        }

    .card {
        width: 29%;
    }

    .Product-card-container {
        margin: 0px !important;
        height: 247px;
    }

    .container {
        width: 100%;
        max-width: 100%;
    }

    .card__content {
        padding: 10px;
    }

    .card__dept {
        font-size: 10px;
        margin-bottom: 0px;
    }

    .card__usecase {
        font-size: 14px;
        margin-top: 0px;
    }

    body > main > main > section.content.fluid > ul {
        margin-left: 30px;
    }

    .why-choose-us {
        height: 277px;
        margin-top: 30px;
    }
    .upper-heading-product{
        margin-top:20px;
    }
}




