@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;

}

.non-scrollable-section {
    overflow-x: hidden;
}

.animate {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
    transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
    -o-transition: opacity 1s ease-out, transform 1s ease-out;
    transition: opacity 1s ease-out, transform 1s ease-out;
    transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.animate.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.animate-text {
    opacity: 0;
    transform: translateY(-250px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.animate-text.visible-text {
    opacity: 1;
    transform: translateY(0);
}


.ani-pop {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}





.ani-pop.visib {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}



.pin-spacer {
    width: 100% !important;
    overflow-x: hidden !important;
}

li,
ul,
a,
p,
h3,
h1,
h2 {
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.landing-header li,
.landing-header ul,
.landing-header a,
.hero-section-2 li,
.hero-section-2 a,
.hero-section-2-mob li,
.hero-section-2-mob a {
    background: rgba(30, 30, 30, 1);
    font-family: "Inter", sans-serif;
    color: rgba(255, 255, 255, 1);
}

.landing-header a:hover {
    color: rgb(213, 206, 206);
}

.landing-header,
.hero-section-2,
.hero-section-landing {
    margin: 0;
    padding: 0;
}


.landing-header ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1vw;
    padding: 1vw 4vw;
    color: rgba(255, 255, 255, 1);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logoimg img {
    height: 3vw;
    width: auto;
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
}

.nmu {
    position: relative;
    padding-left: 7vw;
    overflow: hidden;
}

.nmu span {
    position: absolute;
    font-size: 4.5vw;
    font-family: "Alfa Slab One", serif;
    top: -8%;
    left: 0;
}

.lp-menu-bar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    background: -webkit-gradient(linear, left top, left bottom, from(#3f1a30), to(#5c3d58)) !important;
    background: -o-linear-gradient(top, #3f1a30, #5c3d58) !important;
    background: linear-gradient(to bottom, #3f1a30, #5c3d58) !important;
    color: #fff !important;
    width: 100%;
    transform: scale(0);
    opacity: 0;
    transform-origin: top left;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out, backdrop-filter 0.4s ease-out;
    backdrop-filter: blur(0px);
    /* No blur initially */
}

.lp-menu-bar.show {
    display: block;
    transform: scale(1);
    opacity: 1;
    backdrop-filter: blur(10px);
    /* Adds a blur effect */
}

.lp-menu-bar-overlay {
    display: none;
    position: fixed;
    /* Changed to fixed for full screen blur effect */
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    backdrop-filter: blur(10px);
    /* Blur effect */
    height: 100%;
    width: 100%;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.4s ease-out, backdrop-filter 0.4s ease-out;
}

.lp-menu-bar-overlay.show {
    opacity: 1;
    display: block;
}


.companies-sec {
    display: -ms-grid;
    display: grid;
    /* -ms-grid-columns: (1fr)[3]; */
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    padding: 4vw 0;
    margin: 0;
}

.companies-sec li {
    padding: 2vw;
    text-align: center;
    border: 1px solid grey;
    background-color: #fff;
}

.companies-sec img {
    height: 5vw;
    width: auto;
}

@media (max-width: 768px) {

    .companies-sec {
        /* -ms-grid-columns: (1fr)[2]; */
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for smaller screens */
    }

    .companies-sec img {
        height: 7vw;
        width: auto;
    }

    .companies-sec {
        padding: 5vw 0;
    }

    .companies-sec li:last-child {
        grid-column: 1 / -1;
    }
}

.lp-menu-bar span {
    color: #F551B4;
}

.lp-menu-bar ul {
    margin: 3vw 2vw;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* flex-direction: column; */
    gap: 10vw;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.lp-menu-bar li,
.lp-menu-bar a,
.lp-menu-bar ul {
    background: none !important;
}

.hum {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 35%;
    height: 100%;
    width: auto !important;
}

.hum img {
    height: 100%;
    width: auto;
    bottom: 0;
    position: absolute;
}

.lp-menu-bar li {
    z-index: 2;
    width: 33%;
    font-size: 2vw;
    font-weight: 800;
}

.landing-page {
    position: relative;
    background: rgba(30, 30, 30, 1);
    color: rgba(255, 255, 255, 1);
}

.hero-section-landing {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4vw;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0vw 2vw;
    font-family: "Inter", sans-serif;
    /* z-index: 3; */
}

.hero-sec-l,
.hero-sec-r {
    width: 45%;
    z-index: 1;
}

.hero-sec-l {
    background: rgba(42, 42, 42, 1);
    border-radius: 8px;
    padding: 2vw;
    margin: 2vw 0;
    display: -ms-grid;
    display: grid;
    position: relative;
    z-index: 3;
}

.hero-sec-l h1 {
    font-weight: 800;
    font-family: "Inter", sans-serif;
    font-size: 50px;
    margin: 2vw 0;
    margin-right: 10vw;
    line-height: 1.5;
    width: 100%;
}

.hero-sec-l p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 18px;
    /* margin-right: 10vw; */
    width: 100%;
}

.hero-sec-r figure {
    aspect-ratio: 451/437;
    position: relative;
}

.hero-sec-r img {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 90%;
    width: auto;
}

.hero-sec-r {
    position: relative;
    z-index: 1;
    /* aspect-ratio: 221/168; */
}

.msglp {
    position: absolute !important;
    top: 0;
    left: 0;
    height: 12vw;
    width: auto;
}

.ssstrip {
    position: absolute;
    top: 30%;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    z-index: 0;
    transition: all 0.5s ease;
}

.ssstrip span {
    display: inline-block;
    padding-right: 100px;
    font-size: 188px;
    font-weight: 800;
    background: -webkit-gradient(linear, left top, left bottom, from(#F551B4), to(#42007b));
    background: -o-linear-gradient(top, #F551B4, #42007b);
    background: linear-gradient(to bottom, #F551B4, #42007b);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: slide-left 50s linear infinite;
    animation: slide-left 50s linear infinite;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease;

}


.ssstrip span:hover {
    -webkit-text-stroke: 2px white;
}

.change-text{
    -webkit-text-stroke: 2px white; 
   pointer-events: none;
}

.inc-z{
    z-index: 999999;
    pointer-events: none;
}


@-webkit-keyframes slide-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}


@keyframes slide-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.hideimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 2rem;
}

.hi1 {
    background: url('/assets/images/hideimg1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.hi2 {
    background: url('/assets/images/hideimg2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    
}

.hideimg img {
    width: auto;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
}


.hideimg p {
    color: black;
    font-size: 6rem;
    font-weight: bold;
    width: 100%;
}

.hideimg.visible {
    opacity: 1;
    pointer-events: none;
}

.show-img {
    z-index: 999;
    background-color: #C4C800;
    color: black;
    padding-inline: 5px;
    border: 1px solid black;
    transition: all 0.5s ease;

}



.sp1 {
    margin-bottom: 2rem;
}


.hero-section-landing.elevated {
    z-index: 99;

}

.hero-section-2 {
    padding: 0 2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2vw;
    position: relative;
    z-index: 2;
}


.hover-img {
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 500px;
    height: 400px;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease-in-out, visibility 0s 1s;
    -o-transition: opacity 0.6s ease-in-out, visibility 0s 1s;
    transition: opacity 0.6s ease-in-out, visibility 0s 1s;
}

.hover-img img {
    width: 100%;
    height: 100%;
}



.hero-section-2 ul {
    padding: 0;
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 1px solid #fff;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.hero-section-2 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.5vw;
    width: 33%;
    border: 1px solid #fff;
    /* text-align: center; */
    -webkit-transition: opacity 0.6s ease-in-out;
    -o-transition: opacity 0.6s ease-in-out;
    transition: opacity 0.6s ease-in-out;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-section-2 li:hover .hover-img {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.hero-section-2 ul li:nth-child(1) {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.hero-section-2 ul li:nth-child(3) {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.hero-section-2 a {
    padding: 2vw;
    font-size: 30px;
    font-weight: 800;
}

.hero-section-2 p {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.hero-section-2 p a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    background: rgba(196, 200, 0, 1);
    color: #000;
    border-radius: 20px;
    text-align: center;
    padding-block: 3rem;
}

.hero-section-2 span {
    margin-left: 2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-section-2 p img {
    height: 3vw;
    width: auto;
}



.hero-section-2-mob {
    display: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 6vw;
    font-weight: 800;
    z-index: 2;
    position: relative;
    width: 100%;
}

.hero-section-2-mob li {
    border: 1px solid #fff;
    padding: 3vw 1vw;
    border-top-right-radius: 4vw;
    border-bottom-right-radius: 4vw;
    border-left: 0;
    width: 50vw;
    text-align: center;
}

.hero-section-2-mob li .hover-img {
    width: 100% !important;
}

.hero-section-2-mob li:hover .hover-img {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.hero-section-2-mob p a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    background: rgba(196, 200, 0, 1);
    color: #000;
    border-top-left-radius: 4vw;
    border-bottom-left-radius: 4vw;
    padding: 3vw;
    text-align: center;
    border: 1px solid rgba(196, 200, 0, 1);
}

.hero-section-2-mob span {
    margin-left: 2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-section-2-mob p img {
    height: 5vw;
    width: auto;
    padding-right: 2vw;
}

.get-in-touch-mob {
    display: none;
    z-index: 1;
}


.hero-section-3 p {
    font-size: 90px;
    font-family: "Inter", sans-serif;
    padding: 0 8vw 6vw 8vw;
    text-align: center;
    margin: 0vw;
    margin-top: 3vw;
}

.hero-section-3 span {
    color: rgba(196, 200, 0, 1);
    font-family: "Inter", sans-serif;
}

.hero-section-4 {
    background: #fff;
}

.hero-cards-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2vw;
    padding: 2vw 6vw;
}

.hero-cards-sec h2 {
    margin: 2vw 0;
}

.ul1,
.ul2 {
    height: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2vw;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    margin: 0;
    color: #fff;
    padding: 0;
}

.ul1 li,
.ul2 li {
    text-decoration: none;
    list-style: none;
    height: 100%;
    background: rgba(30, 30, 30, 1);
    /* color: #000; */
    padding: 2vw;
    border-radius: 30px;
    font-family: "Inter", sans-serif;
}

.ul1 p,
.ul2 p {
    margin: 0;
}

.ul1 li:nth-child(1) p:nth-child(1),
.ul1 li:nth-child(4) p:nth-child(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-inline: 4vw;
}

.ul1 li:nth-child(1) p:nth-child(1),
.ul1 li:nth-child(4) p:nth-child(1) {
    position: relative;
    aspect-ratio: 430/418;
}

.ul1 li:nth-child(1) p:nth-child(1) img,
.ul1 li:nth-child(4) p:nth-child(1) img,
.ul1 li:nth-child(1) p:nth-child(1) video,
.ul1 li:nth-child(4) p:nth-child(1) video {
    position: absolute;
    top: 0;
    /* left: 0; */
    height: 100%;
    width: auto;
}

.ul1 li:nth-child(3) {
    background: rgba(196, 200, 0, 1);
    color: #000;
    /* position: relative; */
}

.ul1 li:nth-child(2) img {
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    width: auto;
}

.ul1 li p:nth-child(1) {
    padding-bottom: 6vw;
    position: relative;
    aspect-ratio: 496 / 112;
}

.ul1 li:nth-child(3) img {
    position: absolute;
    top: -20%;
    right: -8%;
    left: inherit;
    height: auto;
    width: auto;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.ul2 li p:nth-child(1) {
    padding-bottom: 6vw;
    position: relative;
    aspect-ratio: 496/112;
}

.ul2 p:nth-child(1) img {
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    width: auto;
}

.ul2 li:nth-child(2) {
    background: rgba(196, 200, 0, 1);
    color: #000;
}

.ul2 li:nth-child(2) img {
    position: absolute;
    top: -20%;
    right: -8%;
    left: inherit;
    height: auto;
    width: auto;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hero-section-5 {
    padding-inline: 5vw;
}

.hero-section-5 h2 {
    font-size: 50px;
    font-family: "Inter", sans-serif;
    margin: 0;
    margin-top: 2vw;
}

.hero-section-5 h3 {
    font-size: 43px;
    font-family: "Inter", sans-serif;
    margin: 0;
}

.hero-section-5 span {
    color: rgba(196, 200, 0, 1);
}

.industries-cont-out ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2vw 1fr 2vw 1fr 2vw 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
    margin-top: 2vw;
    background: rgba(30, 30, 30, 1);
}

.mob-call-container,
.vertical-icons {
    display: none;
}

.industries-cont {
    width: 100%;
    text-align: start;
    background: rgb(15, 15, 15);
    color: #fff;
    border: 1px solid white;
    border-radius: 20px;
    padding-bottom: 2vw;
}

.industries-cont img {
    width: 100%;
}

.industries-cont li {
    -webkit-box-shadow: 0 3px 26px 0 #3c40434d, 0 1px 2px 3px #3c404326;
    box-shadow: 0 3px 26px 0 #3c40434d, 0 1px 2px 3px #3c404326;
    border: 1px solid #898686;
}

.industries-cont li:hover {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.industries-cont h3,
.industries-cont p {
    margin-top: 1.5vw;
    padding-inline: 1vw;
    width: 100%;
    font-size: 18px;
}

.industries-cont p {
    margin-bottom: 2vw;
    font-size: 15px;
    font-weight: normal;
}

.faq-sec {
    padding: 4vw 0vw;
}

.faq-sec-p1 h3 {
    font-size: 71px;
    font-family: "Inter", sans-serif;
}

.faq-sec-p1 h3 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* gap: 1vw; */
}

.faq-sec-p1 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.faq-sec-p1 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.faq-sec-p2 {
    padding-inline: 5vw;
    margin: 4vw 0;
}

.atr {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    aspect-ratio: 47/75;
    height: 5vw;
    margin-right: 3vw;
}

.fillout {
    /* display: inline-flex; */
    position: relative;
    aspect-ratio: 169/173;
    height: 15vw;
}

.atr img,
.fillout img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
}

.faq-sec-p2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4vw;
}

.faq-sec-p2-l {
    width: 70%;
}

.faq-sec-p2-l ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1vw;
}

.faq-sec-p2-l li {
    background: rgba(255, 255, 255, 1);
    color: #000;
    border-radius: 10px;
    padding: 1.5vw 1vw;
    font-family: "Inter", sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* gap: 1vw; */
}

.scroll-btn {
    display: none;
}

.formob {
    display: block;
}

.fordes {
    display: none;
}

.ddfg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1vw;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ddfg:hover {
    cursor: pointer;
}

.linea {
    position: relative;
}

.linea1,
.linea2 {
    position: absolute;
    top: 50%;
    right: 27%;
    width: 1.5vw;
    height: 0;
    border-bottom: 2px solid grey;
    border-radius: 0 !important;
    padding: 0 !important;
}

.linea2 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.rotate {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

#answ1,
#answ2,
#answ3,
#answ4,
#answ5 {
    /* display: none; */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    -webkit-transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease, -webkit-transform 0.5s ease;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease, -webkit-transform 0.5s ease;
    -o-transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease, margin-top 0.5s ease;
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease, margin-top 0.5s ease;
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease, margin-top 0.5s ease, -webkit-transform 0.5s ease;
}

#answ1.active2,
#answ2.active2,
#answ3.active2,
#answ4.active2,
#answ5.active2 {
    max-height: 1000px;
    opacity: 1;
    margin-top: 1vw;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.faq-sec-p2-r {
    width: 30%;
}

.faq-sec-p2-r ul {
    background: rgba(255, 255, 255, 1);
    color: #000;
    display: -ms-grid;
    display: grid;
    border-radius: 10px;
    gap: 2vw;
    padding: 2vw 3vw;
}

.faq-sec-p2-r ul li {
    font-family: "Inter", sans-serif;
    text-align: center;
    margin: auto;
    font-size: 14px;
    line-height: 1.5;
}

.faq-sec-p2-r h3 {
    font-size: 27px;
    line-height: 1;
}

.faq-sec-p2-r a {
    position: relative;
    background: -webkit-gradient(linear, left top, right top, from(rgba(196, 200, 0, 1)), to(rgba(180, 185, 0, 1)));
    background: -o-linear-gradient(left, rgba(196, 200, 0, 1) 0%, rgba(180, 185, 0, 1) 100%);
    background: linear-gradient(90deg, rgba(196, 200, 0, 1) 0%, rgba(180, 185, 0, 1) 100%);

    padding: 1vw 1.5vw;
    font-weight: 700;
    font-size: 21px;
    width: auto;
    color: #000;
    text-align: center;
    display: inline-block;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    text-decoration: none;
}

.faq-sec-p2-r a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#000000), to(#333333));
    background: -o-linear-gradient(left, #000000 0%, #333333 100%);
    background: linear-gradient(90deg, #000000 0%, #333333 100%);
    -webkit-transition: left 0.5s ease;
    -o-transition: left 0.5s ease;
    transition: left 0.5s ease;
    z-index: 0;
}

.faq-sec-p2-r a:hover::before {
    left: 0;
}

.faq-sec-p2-r a:hover {
    color: rgba(196, 200, 0, 1);
}

.faq-sec-p2-r a span {
    position: relative;
    z-index: 1;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}



.get-in-touch-section {
    padding: 0vw 5vw 4vw 5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10vw;
}

.get1 {
    width: 50%;
    position: relative;
    aspect-ratio: 500/500;
}

.get1 img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
}

.get2 {
    position: relative;
    /* width: 100%; */
    height: 100%;
    width: 50%;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.get2 form {
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2vw;
    border: 1px solid #fff;
    padding: 2vw;
    background: rgba(30, 30, 30, 1);
}

.frmin {
    display: -ms-grid;
    display: grid;
    font-family: "Inter", sans-serif;
}

.get2 h3 {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-weight: 700;
}

.get2 form input {
    padding: 0.8vw 1vw;
    font-size: 21px;
    outline: none;
    width: 100%;
    border-radius: 5px;
    border: 0;
}

.brd {
    z-index: 0;
    position: absolute;
    top: 3%;
    left: 3%;
    width: 100%;
    height: 100%;
    background: #fff;
}

.ikn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    border-radius: 5px;
}

.ikn span {
    padding: 1vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ikn img {
    height: 2vw;
    width: auto;
}

.get2 form button {
    margin: auto;
    padding: 0.5vw 3vw;
    border: 0;
    border-radius: 5vw;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.get2 form button:hover {
    transform: scale(0.98);
    background: #C4C800;
    cursor: pointer;
    font-weight: bold;
}

.get2 form label {
    margin-bottom: 0.5vw;
    color: rgb(210, 205, 205);

}

.landing-footer {
    background: rgba(30, 30, 30, 1);
    color: #fff;
    padding: 4vw 3vw;
}

.footer-p1 {
    border-bottom: 1px solid #fff;
}

.footer-p1 a {
    color: #fff;
}

.footer-p1 li:nth-child(7) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2vw;
}

.footer-p1 ul {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2vw;
    padding: 1vw 1vw;
}

.footer-p1 ul li:nth-child(1) {
    width: 9vw;
}

.footer-p2 ul {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1vw;
    padding: 1vw 0;
}

.lgo {
    position: relative;
    aspect-ratio: 242/64;
    height: 3vw;
}

.lgo img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
}

.landing-section-6 {
    padding: 6vw 5vw 2vw 5vw;
}

.landing-section-6-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.lp6 {
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: "Inter", sans-serif;
}

.lp6 small {
    font-size: 16px;
}

.lp6 h2 {
    font-size: 3rem;
}

.lp6 p {
    font-size: 20px;
}

.landing-section-6 table {
    margin-top: 4vw;
    width: 100%;
    border-collapse: collapse;
    /* background: rgba(0, 0, 0, 1); */
}

.landing-section-6 th,
.landing-section-6 td {
    border: 1px solid rgba(119, 119, 119, 1);
    text-align: center;
    padding: 10px;
}

.landing-section-6 th,
.landing-section-6 td {
    width: 33.33%;
    height: 148px;
}

.landing-section-6 table img {
    height: 4vw;
    width: auto;
}








.ham-cont {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    margin: 4px 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ham-cont.active .line1 {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    -ms-transform: rotate(45deg) translate(5px, 5px);
    transform: rotate(45deg) translate(5px, 5px);
}

.ham-cont.active .line2 {
    opacity: 0;
}

.ham-cont.active .line3 {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
    -ms-transform: rotate(-45deg) translate(5px, -5px);
    transform: rotate(-45deg) translate(5px, -5px);
}











#whyChooseUs {
    width: 100vw;
    height: 100vh;
    /* background: linear-gradient(to bottom, #3f1a30, #5c3d58) !important; */
    /* background-color: #C4C800; */
    background: url('/assets/images/bgiw.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: black;
    font-size: 2rem;
}

.brand-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}

.brand-card {
    min-width: 80vw;
    height: 80vh;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-left: 10vw;
    padding: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: black;
}

.card-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.card-text {
    width: 50%;
}

.brand-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.brand-card p {
    font-size: 1.2rem;
    line-height: 1.6;
}



.illustration {
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.5rem;
}

.progress-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
    position: relative;
}

.progress {
    height: 100%;
    background: white;
    width: 0;
}


.hero-section-5-mob {
    display: none;
}


@media screen and (max-width: 1030px) {
    .hero-sec-l h1 {
        /* font-size: 38px; */
        font-size: 3.5vw;
    }

    .hero-section-2 a {
        /* font-size: 28px; */
        font-size: 2.8vw;
    }

    .hero-section-3 p {
        /* font-size: 68px; */
        font-size: 6.6vw;
    }

    .hero-section-5 h2 {
        /* font-size: 86px; */
        font-size: 8.4vw;
    }

    .hero-section-5 h3 {
        /* font-size: 36px; */
        font-size: 3.4vw;
    }

    .faq-sec-p2-r a {
        /* font-size: 16px; */
        font-size: 1.6vw;
    }

    .lp6 p {
        /* font-size: 16px; */
        font-size: 1.6vw;
    }

    .lp6 h2 {
        /* font-size: 2.2rem; */
        font-size: 3.4vw;
    }

    .landing-section-6 th,
    .landing-section-6 td {
        height: 125px;
    }

    .faq-sec-p1 h3 {
        /* font-size: 56px; */
        font-size: 5.4vw;
    }

    .faq-sec-p2-r h3 {
        /* font-size: 21px; */
        font-size: 2.1vw;
    }

    .faq-sec-p2-r ul li {
        /* font-size: 12px; */
        font-size: 1.2vw;
    }

    .footer-p1 ul,
    .footer-p2 ul {
        /* font-size: 14px; */
        font-size: 1.4vw;
    }

    .industries-cont-out ul {
        /* -ms-grid-columns: (1fr)[3]; */
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-cards-sec h2 {
        font-size: 2.8vw;
    }

    .hero-cards-sec p {
        font-size: 1.6vw;
    }

    .faq-sec h3 {
        font-size: 1.8vw;
    }

    .faq-sec p {
        font-size: 1.5vw;
    }

    .faq-sec h3 li {
        font-size: 3.8vw;
    }

    .get2 h3 {
        font-size: 3vw;
    }

    .get2 form label {
        font-size: 1.5vw;
    }

    .get2 form input {
        font-size: 1.6vw;
    }

    .get2 form button {
        font-size: 2vw;
    }
}

@media screen and (max-width: 768px) {


    .hero-section-5 {
        display: none;
    }

    .hero-section-5-mob-head {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-section-5-mob {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 6vw;
        gap: 2rem;
    }

    .industries-cont-mob {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 1rem;

    }

    .ind-item {
        width: 23%;
        height: 200px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
        background-color: #0f0f0f;
        border: .2px solid rgba(255, 255, 255, 0.442);
        border-radius: 10px;

    }

    .ind-item p {
        padding: 0 5px;
        padding-bottom: 10px;
        font-size: 12px;
    }

    .ind-item img {
        width: 100%;
    }



    .brand-card {
        padding: 0;
        min-width: 90vw;
    }

    .card-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        width: 100%;
        padding: 1rem 0;
        margin: 0;
        gap: 3rem;
    }

    .card-text {
        width: 90%;
    }

    .illustration {
        width: 250px;
        height: 250px;
    }

    .illustration img {
        width: 100%;
    }

    .card-text h2 {
        font-size: 27px;
    }

    .card-text p {
        font-size: 15px;
    }

    .hero-sec-r img {
        height: 100%;
        left: 10%;
    }

    .nmu {
        position: relative;
        padding-left: 9vw;
        overflow: hidden;
    }

    .lp-menu-bar ul {
        gap: 20vw;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;

    }

    .hum {
        left: 25%;
        opacity: 0.6;
        z-index: 1 !important;
    }

    .lp-menu-bar li {
        width: 100%;
        font-size: 4.5vw;
        z-index: 2;
    }

    .nmu span {
        font-size: 5.5vw;
        top: 10%;
    }


    .hum img {
        height: 90%;
        width: auto;
        bottom: 0;
        position: absolute;
    }

    .formob {
        display: none;
    }

    .fordes {
        display: block;
    }




    .faq-sec-p2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .faq-sec-p2-l,
    .faq-sec-p2-r {
        width: 100%;
    }

    .faq-sec h3 {
        font-size: 2.8vw;
    }

    .faq-sec-p2-l li {
        padding: 2.5vw 3vw;
    }

    .faq-sec h3 li {
        font-size: 4.8vw;
    }

    .faq-sec p {
        font-size: 2.5vw;
    }

    .faq-sec-p2-r h3 {
        font-size: 3.5vw;
    }

    .faq-sec-p2-r a {
        font-size: 3.6vw;
        padding: 2vw 4vw;
    }

    .faq-sec-p2-r ul {
        gap: 5vw;
        padding: 8vw 4vw;
    }

    .get-in-touch-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 8vw;
    }

    .get1,
    .get2 {
        width: 100%;
    }

    .brd {
        z-index: 0;
        position: absolute;
        top: 3%;
        left: 3%;
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 6vw;
    }

    .get2 h3 {
        font-size: 5vw;
    }

    .get2 form label {
        font-size: 3.5vw;
    }

    .get2 form input {
        font-size: 3.6vw;
        padding: 0.8vw 1vw;
    }

    .ikn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background: #fff;
        border-radius: 5px;
    }

    .ikn span {
        padding: 2vw;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .ikn img {
        height: 5vw;
        width: auto;
    }

    .get2 form button {
        font-size: 4vw;
        padding: 1.5vw 6vw;
    }

    .get2 form {
        z-index: 1;
        gap: 5vw;
        padding: 5vw;
        background: rgba(30, 30, 30, 1);
        border-radius: 6vw;
    }

    .landing-section-6-in {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 3vw;
    }

    .lp6 {
        width: 100%;
        gap: 1vw;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .lp6 small {
        /* font-size: 16px; */
        font-size: 2.6vw;
        color: rgba(196, 200, 0, 1);
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .lp6 h2 {
        /* font-size: 2.2rem; */
        font-size: 5.4vw;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .lp6 p {
        /* font-size: 16px; */
        font-size: 2.6vw;
    }

    .landing-header ul {
        padding: 4vw 4vw;
    }

    .logoimg img {
        height: 5vw;
        width: auto;
    }

    .hero-section-landing {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .hero-sec-l,
    .hero-sec-r {
        width: 100%;
    }

    .hero-sec-r {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .hero-sec-l {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin: 0;
    }

    .msglp {
        top: 6%;
        left: 6%;
        height: 20vw;
    }

    .hero-sec-l h1 {
        /* font-size: 38px; */
        font-size: 4.5vw;
    }

    .hero-cards-sec {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    /* Ensure no empty elements are causing gaps */
    .landing-header:empty,
    .hero-section-2:empty,
    .hero-section-landing:empty {
        display: none;
        /* Hide empty sections */
    }

    .hero-cards-sec h2 {
        font-size: 4.8vw;
    }

    .hero-cards-sec p {
        font-size: 2.6vw;
    }

    .ul1 li,
    .ul2 li {
        padding: 4vw;
        border-radius: 15px;
    }

    .linea1,
    .linea2 {
        width: 2.5vw;
    }

    .hero-section-2 {
        display: none;
        padding: 0;
    }

    .hero-section-2-mob {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 10vw 0 0 0;
    }

    .get-in-touch-mob {
        display: block;
        padding: 10vw 10vw;
    }

    .hero-section-5 h2,
    .hero-section-5 h3 {
        padding: 1vw 10vw;
        text-align: start;
        font-size: 4.4vw;
    }



    .hero-section-5 p {
        font-size: 4vw;
    }





    .scroll-btn {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 1vw;
        cursor: pointer;
        z-index: 10;
    }

    .left-btn {
        left: 0;
    }

    .right-btn {
        right: 0;
    }

    .hero-section-5 {
        padding-inline: 0vw;
    }



    .scroll-btn {
        display: block;
        background: rgba(196, 200, 0, 1);
        color: #000;
        font-size: 3vw;
        font-weight: 800;
        padding: 15vw 2vw;
    }

    .left-btn {
        border-top-right-radius: 3vw;
        border-bottom-right-radius: 3vw;
        -webkit-clip-path: polygon(0 0, 0% 0, 100% 20%, 102% 100%, 120% 79%, 0 100%);
        clip-path: polygon(0 0, 0% 0, 100% 20%, 102% 100%, 120% 79%, 0 100%);
    }

    .right-btn {
        border-top-left-radius: 3vw;
        border-bottom-left-radius: 3vw;
        -webkit-clip-path: polygon(0% 21%, 100% 0, 100% 100%, 100% 100%, 0 79%);
        clip-path: polygon(0% 21%, 100% 0, 100% 100%, 100% 100%, 0 79%);
    }

    .ul1 li:nth-child(3) img {
        position: absolute;
        top: -48%;
        right: -5%;
        left: inherit;
        height: 30vw;
        width: auto;
        -webkit-transform: rotate(68deg);
        -ms-transform: rotate(68deg);
        transform: rotate(68deg);
    }

    .ul1,
    .ul2 {
        gap: 4vw;
    }

    .hero-cards-sec {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 4vw;
        padding: 2vw 6vw;
    }
}






.swiper {
    width: 100%;
    padding: 50px 0;
}

.swiper-slide {
    width: 30%;
    /* opacity: 0.4; */
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;

}



.swiper-slide-active .name {
    display: block;
}

.swiper-slide-prev,
.swiper-slide-next {
    cursor: pointer;
}

/* Retain your existing styles for .testimonial, images, etc. */




.testimonial-section {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-inline: 4vw;
    margin-bottom: 4vw;
}

.testimonial-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.testimonial {
    overflow: visible !important;
    height: 17vw;
    text-align: center;
    font-size: 1.2vw;
    width: 31.5% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1vw;
    padding: 1.5vw 2.5vw;
    border-radius: 1vw;
    position: relative;
    background-color: #c4C800;
    padding-bottom: 4vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: #000;
    /* font-weight: bold; */
}

.swiper-slide-active {
    opacity: 1;
    -webkit-transform: scale(1.2) !important;
    -ms-transform: scale(1.2) !important;
    transform: scale(1.2) !important;
    background: black !important;
    color: #fff !important;
}


.testimonial.center {
    width: 40%;
    background-color: black;
    color: white;
    padding-block: 4vw;
    z-index: 1;
}

.testimonial.hidden {
    display: none;
}

.testimonial p:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: end;
}

.testimonial img {
    width: 6vw;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    bottom: -2.2vw;
}

.name {
    display: none;
}

.testimonial.center .name {
    display: block;
}

.testimonial-buttons {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 3vw;
}

.testimonial-buttons button {
    font-size: 1.1vw;
    width: 33.3%;
    padding: 1.5vw 2.5vw;
    border: none;
    border-radius: 0.8vw;
    background-color: #000;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.growth {
    position: relative;
    text-align: center;
}

.growth::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-width: 0 10px 15px 10px;
    border-style: solid;
    border-color: transparent transparent #000 transparent;
}

@media screen and (max-width: 768px) {
    .testimonial-section {
        padding: 6vw 4vw;
    }

    .swiper-slide {
        width: 85% !important;
        margin-right: 0px !important;
        margin-left: 0px !important;
    }

    .swiper-slide-active {
        -webkit-transform: scale(1.05) !important;
        -ms-transform: scale(1.05) !important;
        transform: scale(1.05) !important;
    }

    .swiper-slide-prev,
    .swiper-slide-next {
        opacity: 0.5;
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    .testimonial {
        font-size: 3vw;
        padding: 6vw 4vw;
        height: 40vw;
        color: #fff;
        font-weight: 500;
    }

    .testimonial img {
        width: 10vw;
        bottom: -4.2vw;
    }

    .name {
        margin-top: 2vw;
    }


}

@media screen and (max-width: 450px) {
    .swiper-slide {

        margin-right: 10px !important;

    }

    .ind-item {
        width: 23%;
        height: 170px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
        background-color: #0f0f0f;
        border: .2px solid rgba(255, 255, 255, 0.442);
        border-radius: 10px;

    }

}

/* Pricing  */

:root {
    --primary-color: #C4C800;
    --bg-color: #000;
    --text-color: #fff;
}

.pricing-cards-cont {
    font-family: 'Poppins', sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* min-height: 100vh; */
    /* background-color: #f0f0f0; */
    margin-bottom: 3rem;
    padding: 2rem;
}

.pricing-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 2rem;
    max-width: 90vw;
    width: 100%;
}

.pricing-card {
    background-color: var(--bg-color);
    border-radius: 1.25rem;
    -webkit-box-shadow: 0 0.625rem 1.875rem rgba(255, 255, 255, 0.1);
    box-shadow: 0 0.625rem 1.875rem rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    width: calc(33.333% - 1.33rem);
    text-align: center;
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.pricing-card:hover {
    -webkit-transform: translateY(-0.625rem);
    -ms-transform: translateY(-0.625rem);
    transform: translateY(-0.625rem);
    -webkit-box-shadow: 0 1.25rem 2.5rem rgba(255, 255, 255, 0.2);
    box-shadow: 0 1.25rem 2.5rem rgba(255, 255, 255, 0.2);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
}

.plan-name::after {
    content: '';
    display: block;
    width: 3.125rem;
    height: 0.1875rem;
    background-color: var(--primary-color);
    margin: 0.5rem auto;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.features {
    list-style-type: none;
    margin-bottom: 3rem;
    text-align: left;
    padding: 0 1rem;
}

.features li {
    margin-bottom: 1rem;
    color: var(--text-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.features li svg {
    margin-right: 0.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2.5rem;
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    margin-top: auto;
}

.cta-button:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0.3125rem 0.9375rem rgba(196, 200, 0, 0.4);
    box-shadow: 0 0.3125rem 0.9375rem rgba(196, 200, 0, 0.4);
}

.card-bg {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

.pricing-card .card-content {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.popular-tag {
    position: absolute;
    top: 1.25rem;
    right: -2.1875rem;
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 0.3125rem 2.5rem;
    font-size: 0.8rem;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .pricing-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 25rem;
        margin-bottom: 2rem;
    }

    .plan-name,
    .price,
    .features {
        margin-bottom: 0;
    }

    .pricing-cards-cont {
        padding-inline: 1rem;
    }
}




/* popup form css */

.show-form {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.cen-pop.flex .show-form {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.crss {
    position: relative;
}

.lineac1:hover,
.lineac2:hover {
    cursor: pointer;
}

.lineac1 {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.lineac2 {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.lineac1,
.lineac2 {
    position: absolute;
    top: 15%;
    right: 27%;
    width: 2.5vw;
    height: 0;
    border-bottom: 5px solid grey;
    border-radius: 0 !important;
    padding: 0 !important;
}

.cen-pop {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* background-color: rgba(0, 0, 0, 0.7); */
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.cen-pop.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
}

.get-quote-menu {

    top: 100%;
    right: 0;
    width: 40%;
    padding: 3vw;
    background: rgba(217, 217, 217, 0.76);
}


.get-quote-menu .contact-left {
    width: 100%;
}

.get-quote-menu .contact-left-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.get-quote-menu .contact-left-in form {
    width: 100%;
    display: -ms-grid;
    display: grid;
    gap: 1.3vw;
}

.get-quote-menu .contact-left-in input,
textarea {
    border-radius: 5px;
    font-size: 1.5vw;
    border: none;
    outline: none;
    padding: 0 8px;
    width: 100%;
    height: 3vw;
}

.get-quote-menu .fila {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.3vw;
}

.get-quote-menu .fila div {
    width: 45.8%;
}

.get-quote-menu .ph-num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.get-quote-menu .iti {
    width: 100%;
    color: black;
}

.get-quote-menu .form-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.get-quote-menu .form-submit input {
    height: 3vw;
    width: 20vw;
    font-weight: bold;
    background-color: #C4C800;
    border: none;
    border-radius: 5px;
}

.get-quote-menu .form-submit input:hover {
    cursor: pointer;
    background: none;
    color: #C4C800;
    border: 1px solid #C4C800;
}

.get-quote-menu .ser-h {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.get-quote-menu .ser-h textarea {
    height: 7vw;
    padding: 8px;
}

@media screen and (max-width: 768px) {
    .get-quote-menu {
        width: 90%;
        padding: 10vw 4vw;
    }

    .get-quote-menu .fila div {
        width: 100%;
    }

    .get-quote-menu .contact-left-in input,
    textarea {
        border-radius: 5px;
        font-size: 3.5vw;
        border: none;
        outline: none;
        padding: 2vw 2vw;
        width: 100%;
        height: 100%;
    }

    .get-quote-menu .ser-h textarea {
        height: 20vw;
        padding: 8px;
    }

    .get-quote-menu .form-submit input {
        height: auto;
        width: 30vw !important;
        font-weight: bold;
        background-color: #C4C800;
        border: none;
        border-radius: 6vw !important;
    }

    .lineac1,
    .lineac2 {
        position: absolute;
        top: 20%;
        right: 4%;
        width: 6.5vw;
        height: 0;
        border-bottom: 5px solid grey;
        border-radius: 0 !important;
        padding: 0 !important;
    }
}

.all-heading {
    font-size: 3rem;
    padding: 0 5vw;
}

.header-anc {
    border: 1px solid white;
    border-radius: 20px;
    padding: .5rem 1.5rem;
    transition: all 0.5s ease;
}

.header-anc:hover {
    background-color: #C4C800;
    border-color: #c4C800;
    color: #000 !important;
    font-weight: bold;
}

/* appointment popup */

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
}

.popup-content h1,
.popup-content h2 {
    color: #000;
}

.sub-btn {
    display: inline-block;
    background: #c4C800;
    color: #000;
    padding: .7rem 2.5rem;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 28px;
}

button:hover {
    background: #555;
}

.popup-content input[type="text"],
.popup-content input[type="email"],
.popup-content input[type="tel"],
.popup-content input[type="number"],
.popup-content input[type="date"],
.popup-content input[type="time"] {
    width: 100% !important;
    padding: 10px !important;
    margin-bottom: 10px !important;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    margin-top: .8rem !important;
   appearance: none;
}
/* Add this to ensure better iOS compatibility */
@supports (-webkit-touch-callout: none) {
    .date-input,
    .time-input {
        min-height: 44px; /* Better touch target size for iOS */
    }
}






.popup {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fefefe;

    padding: 20px;
    border: 1px solid #888;

    width: 500px;
    width: 400px;
    position: relative;
    border-radius: 15px;
    padding: 2rem 2rem;
}

.pi-1 {
    position: absolute;
    top: -53px;
    left: -54px;
}

.pi-2 {
    position: absolute;
    bottom: -67px;
    right: -60px;
}

.close {
    color: #000;
    float: right;
    font-size: 42px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 13px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.popup-content select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    margin-top: .8rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 50%;
}

@media (max-width: 600px) {
    .popup-content {
        width: 90%;
    }
    .sub-btn{
        padding-inline: 1.6rem;
    }
}

/* appointment popup */

@media screen and (max-width: 600px) {


    .header-anc {
        border: 1px solid white;
        border-radius: 20px;
        padding: .2rem .5rem;
        font-size: 0.8rem;
    }

    .landing-header {
        position: relative;
        width: 100%;
    }

    .hero-section-2{
        position: static;
    }

    .hover-img{
        top: 250%;
        
    }

    .hero-section-2-mob {
        padding-top: 8px;
        gap: 1rem;
        position: sticky;
        top: 0;
        z-index: 99;
    }

    .cen-pop {
        z-index: 999;
    }

    .swiper {
        padding-top: 0;
        padding-bottom: 50px;

    }

    .all-heading {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .testimonial-buttons button {
        font-size: 2.5vw;
    }

    .ssstrip {
        top: 15%;
    }

    .logoimg img {
        height: 7vw;
        width: auto;
        margin-left: 3rem;
    }

    .hero-sec-l {
        padding: 4vw 5vw;
    }

    .hero-sec-l h1 {
        font-size: 6.5vw;
        width: 100%;
    }

    .hero-sec-l p {
        font-family: "Inter", sans-serif;
        font-weight: 500;
        font-size: 4vw;
        /* margin-right: 10vw; */
        width: 100%;
    }

    .get2 h3 {
        font-size: 6vw;
    }

    .hero-sec-r img {
        height: 100%;
        left: 10%;
    }

    .hero-sec-r figure {
        margin-top: 4vw;
    }

    .hero-cards-sec p {
        font-size: 3vw;
    }

    .ul1 li,
    .ul2 li {
        padding: 6vw 4vw;
        border-radius: 15px;
    }

    .scroll-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 5vw;
        padding: 15vw 2vw;
    }

    .lp6 small {
        font-size: 5vw;
    }

    .lp6 p {
        /* font-size: 16px; */
        font-size: 3vw;
    }

    .landing-section-6 th,
    .landing-section-6 td {
        height: 68px;
    }

    .landing-section-6 table img {
        height: 5vw;
        width: auto;
    }

    .faq-sec h3 li {
        font-size: 5.8vw;
    }

    .faq-sec h3 {
        font-size: 3.5vw;
    }

    .linea {
        margin-left: 2vw;
    }

    .faq-sec p {
        font-size: 3vw;
    }

    .faq-sec-p2-r h3 {
        font-size: 5.5vw !important;
    }

    .faq-sec-p2-r ul {
        gap: 5vw;
        padding: 8vw 6vw;
    }

    .faq-sec-p2-l ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 3vw;
    }

    .hideimg p {
        font-size: 2.2rem;
    }

    .landing-footer {
        display: none;
    }

    .mob-call-container {
        /* height: 3vw; */
        padding: 5vw 0vw;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background: #c4C800;
        border-top-left-radius: 2vw;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-top-right-radius: 2vw;
        position: fixed;
        bottom: 0;
        z-index: 1000;
        width: 100%;
    }


    .mob-ele {
        width: 25vw;
        text-align: center;
        position: relative;
    }

    .up {
        aspect-ratio: 62/60;
        height: auto;
        width: auto;
        position: absolute;
        bottom: 70%;
        left: 30%;
    }

    .up img {
        width: 10vw;
        height: auto;
    }

    .down {
        font-size: 3vw;
        width: 25vw;
        text-align: center;
        position: absolute;
        top: 0px;
        font-weight: bold;
        color: black;
    }

    .vertical-icons {
        background-color: #d4d804;
        display: none;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
        width: 55px;
        height: 220px;
        border-radius: 40px;
        /* margin-bottom: 20rem; */
        padding: 1rem 2rem;
        position: fixed;
        bottom: -100%;
        right: 17px;
        -webkit-transition: bottom 0.8s ease-in-out;
        -o-transition: bottom 0.8s ease-in-out;
        transition: bottom 0.8s ease-in-out;
        z-index: 9999;
    }


    .vertical-icons.show {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        bottom: 70px;
        /* Adjust this value as needed */
    }



    .vertical-icons img {
        width: 40px;
        -webkit-filter: invert(100%);
        filter: invert(100%);
        height: 40px;

    }

    .vertical-icons a {
        margin-bottom: 10px;
        /* Add some space between icons */
        opacity: 0;
        -webkit-transform: rotateX(-360deg);
        transform: rotateX(-360deg);
        -webkit-transition: opacity 0.9s, -webkit-transform 0.9s;
        transition: opacity 0.9s, -webkit-transform 0.9s;
        -o-transition: opacity 0.9s, transform 0.9s;
        transition: opacity 0.9s, transform 0.9s;
        transition: opacity 0.9s, transform 0.9s, -webkit-transform 0.9s;
        -webkit-transition-delay: 0.85;
        -o-transition-delay: 0.85;
        transition-delay: 0.85;
        /* Delay to start after container slides up */
    }

    .vertical-icons.show a {
        opacity: 1;
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
    }

    /* Stagger the animation for each icon */
    .vertical-icons.show a:nth-child(1) {
        -webkit-transition-delay: 0.9s;
        -o-transition-delay: 0.9s;
        transition-delay: 0.9s;
    }

    .vertical-icons.show a:nth-child(2) {
        -webkit-transition-delay: 0.9s;
        -o-transition-delay: 0.9s;
        transition-delay: 0.9s;
    }

    .vertical-icons.show a:nth-child(3) {
        -webkit-transition-delay: 0.9s;
        -o-transition-delay: 0.9s;
        transition-delay: 0.9s;
    }

    .last-quote-form {
        margin-bottom: 7rem !important;
    }
}



/* like dislike */
.aata {
    background: transparent;
    padding: 0.3vw;
    /* border-radius: 50%; */
    height: 3vw !important;
    width: auto !important;
}

.blue-add {
    background: rgb(37 166 241) !important;
}

.red-add {
    background: red !important;
}

.like-dislike {
    display: flex;
    justify-content: end;
    gap: 2vw;
    margin: 2vw 1vw;
}

.like,
.dislike {
    display: flex;
    /* flex-direction: column; */
    gap: 0.5vw;
    align-items: center;
    justify-content: center;
}

.liked small {
    color: grey;
}

.liked span img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.grnimg {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    left: inherit;
    height: auto;
    width: auto;
    -webkit-transform: rotate(0deg) !important;
    -ms-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
}

@media screen and (max-width: 768px) {
    .like-dislike {
        display: flex;
        gap: 5vw;
        margin: 2vw 0;
    }

    .aata {
        padding: 1.3vw;
        height: 8vw !important;
        position: relative;
    }

    .gfg2 {
        position: relative !important;
    }
    .gfg3 {
        background: black;
        position: relative !important;
        right: 0 !important;
        top: 0 !important;
        height: 30vw;
        width: auto;
        -webkit-transform: rotate(0deg) !important;
        -ms-transform: rotate(0deg) !important;
        transform: rotate(0deg) !important;
    }
}


#chat-preview {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    background-color: white;
    border-radius: 8px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 999;
  }
  
  #chat-preview-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    color: #65676B;
    font-size: 12px;
  }
  
  #chat-preview-close {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #65676B;
  }
  
  #chat-preview-message {
    background-color: #f0f2f5;
    border-radius: 18px;
    padding: 10px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #050505;
  }
  
  #chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #c4C800;
    color: black;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
  }
  
  #chat-container {
    z-index: 99999;
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 400px;
    height: 500px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: white;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  
  #chat-header {
    background-color: #c4C800;
    color: black;
    padding: 10px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: .3rem;
  }
  
  #chat-header img {
    width: 45px;
    height: 45px;
  }
  
  #chat-messages {
    height: 385px;
    overflow-y: auto;
    padding: 10px;
  
  }
  
  #chat-input-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
  }
  
  #chat-input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 10px;
  }
  
  #chat-submit {
    background-color: #c4C800;
    color: black;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-left: 10px;
    cursor: pointer;
  }
  
  .message {
    max-width: 80%;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 20px;
    clear: both;
  }
  
  .user-message {
    background-color: #c4C800;
    color: black;
    float: right;
  }
  
  .bot-message {
    background-color: #f1f0f0;
    float: left;
  }
  
  @media screen and (max-width:600px) {
    #chat-container {
      width: 90%;
      right: 20px;
      bottom: 132px;
    }
  
    #chat-button {
      bottom: 68px;
    }
  
    #chat-preview {
      bottom: 135px;
    }
  
    #chat-messages {
      font-size: .9rem;
    }
  
  
  }


  /* landing page V2 */
.pricing-model-cont{
    /* border: 1px solid #fff; */
    border-radius: 2rem;
    overflow: hidden;
    margin: 2vw 4vw;
    margin-bottom: 0;
    display: flex;
    box-shadow: 0 2px 24px 0 rgb(110 123 129 / 35%);
}
.pricing-model-left{
    width: 50%;
    /* border: 0.5px solid #fff; */
    overflow: hidden;
}
.pricing-model-right{
    width: 50%;
    /* border: 0.5px solid #fff; */
}
.pml1{
    background: #c4C800;
    color: #000;
    text-align: center;
}
.pml1-logo img{
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.pml1-logo img:hover{
    transform: scale(0.9);
}
.pml1 h2, .pml1 p{
    padding: 3vw;
}
.pml1 h2{
    font-size: 2.5vw;
    font-weight: 800;
    padding-bottom: 2vw;
}
.pml1 p{
    padding-top: 0vw;
    padding-bottom: 2.5vw;
    font-size: 1.5vw;
}
.pml1-logo{
    display: flex;
    justify-content: center;
    gap: 2vw;
    padding-bottom: 3vw;
}
.pml2{
    padding: 3vw 3vw;
}
.pml2 h2{
    font-size: 2.5vw;
}
.pml2 h3{
    font-size: 2vw;
    padding-top: 2vw;
}
.pml2 p{
    font-size: 1.5vw;
    padding-top: 1.5vw;
}
.pricing-model-right h3{
    text-align: center;
    padding: 3vw;
    font-size: 1.8vw;
}
.pmoy2-in{
    display: flex;
    gap: 1vw;
    align-items: center;
    padding: 1vw 3vw;
    font-size: 1.5vw;
}

.lp-proposal ul{
    display: flex;
    gap: 1vw;
    align-items: center;
    padding: 3vw;
}
.lp-proposal ul li:nth-child(1){
    width: 62%;
}
.lp-proposal ul li:nth-child(2){
    width: 38%;
}
.lp-proposal input{
    font-size: 1.3vw;
    width: 100%;
    padding: 1vw 2vw;
    border: none;
    outline: none;
    border-radius: 2rem;
}
.lp-proposal button{
    font-size: 1.3vw;
    font-weight: 700;
    width: 100%;
    border: 0;
    padding: 0.8vw 1vw;
    border-radius: 2rem;
    background: #c4C800;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.lp-proposal button:hover{
    cursor: pointer;
    border: 1px solid #c4C800;
    color: #c4C800;
    background: transparent;
}
@media screen and (max-width: 768px){
    .pricing-model-cont {
        flex-direction: column;
        border-radius: 1vw;
        border: 0;
        box-shadow: 0 2px 24px 0 rgb(110 123 129 / 35%);
    }
    .price-sec{
        padding-bottom: 20vw;
    }
    .pricing-model-left, .pricing-model-right {
        width: 100%;
        border: 0;
    }
    .pml1 h2, .pml1 p {
        padding: 6vw;
    }
    .pml1 h2 {
        font-size: 4.5vw;
        font-weight: 800;
        padding-bottom: 4vw;
    }
    .pml1 p {
        padding-top: 0vw;
        padding-bottom: 4.5vw;
        font-size: 3.5vw;
    }
    .pml2 {
        padding: 6vw 6vw;
    }
    .pml2 h2 {
        font-size: 4.5vw;
    }
    .pml2 h3 {
        font-size: 3.5vw;
        padding-top: 4vw;
    }
    .pml2 p {
        font-size: 2.5vw;
        padding-top: 2.5vw;
    }
    .pricing-model-right h3 {
        text-align: center;
        padding: 6vw;
        font-size: 4.8vw;
    }
    .pmoy2-in {
        gap: 2vw;
        padding: 2vw 10vw;
        font-size: 2.8vw;
    }
    #pmoy2in{
        padding-bottom: 4vw;
    }
    .pml1 img{
        height: 8vw;
        width: auto;
    }
    .pml1-logo {
        gap: 4vw;
    }
    #pml1-ba, #pml1-st, #pml1-pr{
        font-size: 3vw;
    }
    .lp-proposal input {
        font-size: 3.3vw;
        padding: 2vw 3vw;
    }
    .lp-proposal button {
        font-size: 3.3vw;
        padding: 1.8vw 1vw;
    }
}

