/* google fonts  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

:root {
    --background: #e8f4ff;
    --blue: #003366;
}


html {
    scroll-behavior: smooth;
}

body ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}


body a {
    text-decoration: none;
    color: inherit;
}



img,
video {
    max-width: 100%;
}



summary {
    list-style-type: none;
}

figure {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--Oswald);
}

.primary-btn {
    display: inline-block;
    background: #ff7300;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .72px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease-in-out;
    z-index: 1;
    position: relative;
    max-width: 200px;
    border-radius: 7px;
    padding: 13px 27px;
    transition: all .3s ease;
    text-align: center;
}

.primary-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--blue);
    width: 0;
    height: 100%;
    z-index: -1;
    transition: all .3s ease;
    border-radius: 7px;
    color: #ff7300;
}

.primary-btn:hover {
    color: #fff;
}

.primary-btn:hover:before {
    width: 100%;
}





.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
}

.item {
    width: 100%;
}

.grid-span-2 {
    grid-column: span 2;
}


.container {
    width: 100%;
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}


main {
    overflow: hidden;
}

/* header */
.top-header {
    width: 100%;
    z-index: 9999;
    padding: 9px 10px;
    background: #036;
}

.inner-top-header {
    display: flex;
    justify-content: space-between;
}

.general-info {
    display: flex;
    gap: 48px;
}

.login a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .84px;
    text-transform: uppercase;
}

.general-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .84px;
    text-transform: uppercase;
}


.innerHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
}

.logo {
    display: flex;
    gap: 48px;
}

.logo-img img {
    width: 142.41px;
    height: 59.65px;
}

.get-started {
    display: flex;
    gap: 58px;
    align-items: center;
}

#navbar {
    display: flex;
    align-items: center;
}

.mobile-logo {
    display: none;
}

#navbar ul {
    display: flex;
    align-items: center;
    gap: 37px;
}

#navbar ul li a {
    color: #38373c;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .78px;
    text-transform: uppercase;
}

.sub-menu {
    position: absolute;
    background-color: #fff;
    z-index: 999;
    visibility: hidden;
    flex-direction: column;
    gap: 0 !important;
}

.sub-menu li {
    list-style: none !important;
    width: 100%;
    padding: 10px;
}

ul.sub-menu li a {
    font-weight: 400 !important;
    color: #1d1d1f !important;
}

.sub-menu li:hover {
    background: #f1ffeb;
}

.li-none {
    display: none;
}

.head-button {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbtn {
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    background: #53a42a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .72px;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all .3s ease;
}

.hamburger span {
    position: relative;
    display: block;
    background: #53a42a;
    width: 40px;
    height: 3px;
    margin-bottom: 10px;
    transition: .4s ease-in-out;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.inner-top-header p {
    margin: 0;
}

.header-site {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

#navbar ul li.active a {
    color: #53a42a !important;
    font-weight: 600 !important;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

.search-box {
    opacity: .97;
    background: #1d1d1f;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 999999;
    padding-top: 300px;
}

.search-box.show-search {
    display: block;
}

.search-box {
    display: none;
}

.search-active .search-box {
    display: block;
}

#searchheader {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    justify-content: center;
    max-width: 828px;
    margin: 0 auto;
}

#searchheader input {
    padding: 0 10px;
    height: 48px;
    width: 100%;
    border: 0;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.search-box input {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    width: 50%;
    margin: auto;
    padding: 0 20px 24px 0;
    background: 0 0;
    color: #d0d0d1;
    position: relative;
    z-index: 999999;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}

#searchheader button {
    background: 0 0;
    border: 0;
    cursor: pointer;
    outline: 0;
}

.dropdown-container img {
    filter: brightness(0) invert(1);
}

#navbar ul li:first-child .dropdown-container {
    display: none;
}

#navbar ul li:last-child .dropdown-container {
    display: none;
}

.search-active .search-box .popup-container {
    width: calc(100% - 40px);
    margin: 0 auto;
}

#navbar ul li:hover {
    list-style: disc;
    color: #53a42a;
}

.header-site.is-sticky {
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
    background: #fff;
}



.header-site.is-sticky button {
    font-size: 14px;
    padding: 7px 10px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-site.is-sticky .innerHeader {
    padding-bottom: 16px;
}


/* banner */
.banner {
    background: var(--background);
    padding: 226px 0 0;
    position: relative;
}

.banner h1 {
    color: var(--blue);
    line-height: 110%;
    font-size: 70px;
    max-width: 500px;
    font-weight: 700;
}

.type-write {
    color: var(--blue);
    font-size: 25px;
    font-weight: 600;
    min-height: 38px;
}

.banner-icon p span {
    display: inline-block;
    width: 50px;
    height: 50px;
    /* background: #29b9002e;
padding: 9px; */
    border-radius: 50%;
}

.banner-icon p span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-icon p {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-icon {
    margin-top: 27px;
    margin-bottom: 40px;
}

.banner .right button {
    border: 0;
    background: #003366;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(222, 84, 72, 1);
    position: absolute;
    top: 50%;
    right: 23%;
    transform: translate(-50%, -30%);
}

.banner .right button i {
    font-size: 55px;
    color: #fff;
}

.banner .right {
    position: relative;
    /* margin-left: -308px; */
    /* width: calc(100% + 308px); */
    width: 100%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(0 51 102);
    }

    70% {
        box-shadow: 0 0 0 15px rgb(177 193 208 / 18%);
    }

    100% {
        box-shadow: 0 0 0 0 rgb(232 244 255);
    }
}

.banner-shapes {
    position: absolute;
    top: 13%;
    left: 51%;
    backface-visibility: hidden;
    animation: jumping 9s ease-in-out 2s infinite alternate;
    animation-delay: 1s;
    transition: all 7s ease 2s;
    user-select: none;
}

@keyframes jumping {
    0% {
        transform: translateY(10px) translateX(0) rotate(0) scale(1);
        opacity: 0.9;
    }

    20% {
        transform: translateY(20px) translateX(10px) rotate(-20deg) scale(0.8);
        opacity: 0.8;
    }

    40% {
        transform: translateY(15px) translateX(-15px) rotate(10deg) scale(0.75);
        opacity: 0.8;
    }

    40% {
        transform: translateY(-15px) translateX(-25px) rotate(10deg) scale(0.5);
        opacity: 1;
    }

    80% {
        transform: translateY(-30px) translateX(20px) rotate(-20deg) scale(0.75);
        opacity: 0.6;
    }

    100% {
        transform: translateY(15px) translateX(15px) rotate(0) scale(0.95);
        opacity: 0.7;
    }
}

.enterprise .primary-btn {
    margin: 0 auto;
    display: flex;
}

.banner-shapes-second {
    position: absolute;
    top: 0;
    left: 0;
}

.banner-shapes-second img {
    width: 309px;
}

section.serving-slider.logo-slider .primary-btn {
    display: flex;
    margin: 30px auto 0;
    justify-content: center;
}

.video-modal .modal-dialog {
    max-width: 800px;
}

.video-modal .modal-dialog .modal-header {
    background: transparent;
    border: 0;
    position: absolute;
    top: -31px;
    right: -38px;
    z-index: 2;
}

.video-modal .modal-content {
    padding: 0;
    background: transparent;
    border: 0;
}

.video-modal .modal-body {
    padding: 0;
    border-radius: 10px;
}

.video-modal iframe {
    width: 100%;
    height: 600px;
    border-radius: 10px;
}

.video-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}


.serving-img img {
    width: 136px;
    object-fit: cover;
    transition: all .3s ease;
}


.serving-slider .swiper-wrapper {
    align-items: center;
}

.serving-slider {
    padding: 50px 20px;
}

.heading {
    text-align: center;
    color: var(--blue);
    line-height: 110%;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 34px;
    line-height: normal;
}

.serving-img:hover img {
    transform: scale(0.9);
}

.enterprise {
    background: #e8f4ff;
    padding: 60px 0;
}

.enterprise .banner-icon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.enterprise .banner-icon p {
    margin: 0;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    font-weight: 500;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    border: 1px solid #d3e5cc;
}

.enterprise .banner-icon p:hover {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
}

.para {
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    color: #545454;
}

.enterprise .heading {
    margin: 0 0 10px;
}

.enterprise .para {
    margin-bottom: 59px;
}

.user-name img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.user-name {
    display: flex;
    align-items: center;
    gap: 21px;
    background: #f1f1f1;
    margin: 0px;
    padding: 20px 20px 20px 48px;
    text-align: center;
    font-size: 16px;
    line-height: 53px;
    width: 100%;
    color: #323232;
    font-style: italic;
    position: relative;
    cursor: pointer;
}

.all-users {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.all-users figure {
    width: 50px;
    height: 50px;
    background: #c9c9c91c;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.user-info p {
    margin: 0;
    line-height: normal;
}

.user-name h6 {
    font-style: italic;
}

.user-name:before {
    display: block;
    content: "";
    height: 0;
    width: 0;
    border-image: none;
    position: absolute;
    right: -13px;
    top: 0;
    border-top: 0px solid #f1f1f1;
    border-left: 17px solid #f1f1f1;
    border-bottom: 63px solid transparent;
    z-index: 1;
}

.user-name:after {
    content: "";
    display: block;
    position: absolute;
    right: 25px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #dddddd;
    transform: skew(-26deg);
    -webkit-transform: skew(-26deg);
    -o-transform: skew(-26deg);
    -moz-transform: skew(-26deg);
    -ms-transform: skew(-26deg);
    z-index: 9;
}

.testimonials {
    margin-top: 60px;
    margin-bottom: 60px;
}

.testimonials .swiper-thumbs .swiper-wrapper .swiper-slide:last-child .user-name::before {
    display: none;
}

.testimonials .swiper-thumbs .swiper-wrapper .swiper-slide:last-child .user-name::after {
    display: none;
}

.slider-testimonials-bg {
    background: url("../img/portfolio-parallax.jpg")no-repeat center center/ cover;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 91%, 0 96%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
    padding: 88px 10px 106px;
}

.testimonials .container {
    max-width: 100%;
    padding: 0;
    overflow: hidden;
}

.testimonials .serving-img {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonials .serving-img ul li img {
    width: 18px;
}

.testimonials .serving-img ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}



.profiler {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #003366;
}

.profiler img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.testimonials .serving-img h5 {
    font-weight: 500;
    font-size: 23px;
    margin-bottom: 13px;
}




.compaire table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    overflow: hidden;
    border-radius: 8px;
}


.compaire th,
.compaire td {
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.compaire th {
    background-color: #f8f8f8;
    font-size: 16px;
}

.compaire .feature-column {
    font-weight: bold;
    color: #444;
    background: #fff;
}

.compaire .check {
    color: green;
    font-size: 18px;
    text-align: center;
}

.compaire .fieldlogix-header {
    background-color: #0b2c5f;
    color: white;
    text-align: center;
    font-weight: bold;
}

.compaire .basic-header {
    background-color: #e5f1ff;
    color: #0b2c5f;
    text-align: center;
    font-weight: bold;
}

.compaire {
    background: #f7f7f7;
    padding: 60px 0;
    position: relative;
}

.fieldlogix-header img {
    filter: brightness(0) invert(1);
}

.compaire table tr:nth-child(even) td {
    background: #ffffff94;
}

.compaire-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.compaire-layer img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    opacity: 0.7;
}

.take {
    margin: 60px 0;
}

.take-sec {
    background: #e8f4ff;
    padding: 60px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.take-sec .heading {
    margin: 0 0 10px;
}

.take-sec input[type="text"] {
    background: #fff;
    border: 0;
    padding: 15px 20px;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
    margin-top: 27px;
    border: 0;
    outline: 0;
    box-shadow: none;
}

.take-sec input[type="text"]::placeholder {
    color: #003366;
}

.take-sec .primary-btn {
    width: 100%;
    margin-top: 13px;
}

section.serving-slider.logo-slider {
    padding-top: 0;
}

.serving-img {
    text-align: center;
}


/* footer */
.site-footer {
    border-radius: 12px 12px 0 0;
    background: #e8f4ff;
    width: 100%;
    margin-top: 80px;
    padding: 80px 0;
}

.site-footer .inner-footer {
    border-radius: 8px;
    background: #036;
    width: 100%;
}

.site-footer .newsletter-content {
    width: 100%;
    border-radius: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, .2);
    padding: 54px 46px 54px 48px;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.site-footer .subscribe h5 {
    color: #fff;
    font-size: 24.5px;
    font-weight: 700;
    margin-bottom: 15px;
}

.site-footer .subscribe p {
    color: #d0d0d1;
    font-size: 17px;
    font-weight: 400;
    line-height: 150%;
    opacity: .7;
    max-width: 318px;
}

.site-footer .news-input input {
    border-radius: 4px;
    background: var(--Main-Colors-White, #fff);
    display: inline-flex;
    padding-left: 19px;
    height: 58px;
    align-items: center;
    position: relative;
    margin-top: 3px;
    border: none;
    width: 100%;
}

.site-footer .news-input {
    position: relative;
    max-width: 490px;
    margin-left: auto;
    width: 100%;
}

.site-footer .news-input button.primary-btn {
    position: absolute;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .84px;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #53a42a;
    width: 125px;
    height: 42px;
    right: 7px;
    top: 10px;
    border: 1px solid transparent;
}

.site-footer .logo-links {
    display: flex;
    gap: 94px;
    padding: 48px 46px 39px;
    border-radius: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, .2);
}

.site-footer .social-logos {
    display: flex;
    gap: 11px;
    margin-top: 34px;
}

.site-footer .social img {
    transition: filter .3s ease;
}

.site-footer .social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.site-footer .social:hover img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(85%) saturate(1070%) hue-rotate(71deg) brightness(100%) contrast(103%);
}

.site-footer .footer-links {
    display: flex;
    justify-content: space-between;
    width: 60%;
    gap: 10px;
}

.site-footer .footer-links h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-footer .footer-links a {
    color: #e6e6e7;
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    opacity: .7;
}

.site-footer .copy {
    display: flex;
    justify-content: space-between;
    padding: 24px 45px;
}

.site-footer .copy p {
    color: #d0d0d1;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.site-footer .links ul li a:hover {
    color: #53a42a;
}

.navbtn:hover {
    background: 0 0;
    color: #53a42a;
    border: 1px solid #53a42a;
}

#take {
    scroll-margin-top: 180px;
    /* upar se kitna gap chahiye */
}

/* 11-aug-2025 new css  */
.header-site,
footer {
    display: none;
}

.site-logo {
    padding: 10px 15px;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 1310px;
    margin: 0 auto;
    right: 0;
}

.testimonials .swiper-thumbs {
    width: 100%;
    max-width: 900px;
}

.testimonials .swiper-thumbs .swiper-wrapper {
    justify-content: center;
    width: 100%;
}


/* .testimonials .swiper-thumbs .swiper-slide:before {
    display: block;
    content: "";
    height: 0;
    width: 0;
    border-image: none;
    position: absolute;
    right: -13px;
    top: 0;
    border-top: 0px solid #f1f1f1;
    border-left: 17px solid #f1f1f1;
    border-bottom: 63px solid transparent;
    z-index: 1;
}

.testimonials .swiper-thumbs .swiper-slide:after {
    content: "";
    display: block;
    position: absolute;
    right: -13px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #dddddd;
    transform: skew(-26deg);
    -webkit-transform: skew(-26deg);
    -o-transform: skew(-26deg);
    -moz-transform: skew(-26deg);
    -ms-transform: skew(-26deg);
    z-index: 9;
} */

.take-tour-btn {
    text-align: center;
    margin-top: 40px;
}