@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..700;1,14..32,100..700&family=Raleway:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");
@font-face {
    font-family: "garetbook";
    src: url("../font/garet-book.woff2") format("woff2"), url("../font/garet-book.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "garetbook";
    src: url("../font/garet-book.woff2") format("woff2"), url("../font/garet-book.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "garetheavy";
    src: url("../font/garet-heavy.woff2") format("woff2"), url("../font/garet-heavy.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

:root {
    /* Variables */
    --primary-font: "Raleway", sans-serif;
    --heading-font: "Raleway", sans-serif;
    --bg-dark: #000000;
    --primary-color: #000000;
    --next-color: #fff;
    --accent-gold: #b38600;
    --gray-text: #a0a0a0;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: var(--primary-font);
    scroll-behavior: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: inherit;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

li {
    font-size: 18px;
}

button:focus,
.nav-link:focus,
.btn:focus,
input:focus {
    outline: none !important;
    box-shadow: none !important;
}

::-webkit-scrollbar {
    width: 5px;
}

.section {
    padding: 80px 0;
}

.mid-section {
    padding: 80px 0 0 0;
}

::-webkit-scrollbar-track {
    background: #05f0fc;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00c3ff;
}

.bg-white {
    background: #fff;
}


/* nav */

.bg-black {
    background-color: #000;
}


/* .custom-navbar {
    padding: 12px 0;
    font-family: var(--primary-font);
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1000;
} */

.custom-navbar {
    padding: 0;
    padding-bottom: 0px;
    font-family: var(--primary-font);
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-bottom: 0px;
}

.custom-navbar .nav-link {
    color: #000 !important;
    font-weight: 500;
    padding: 0 1rem !important;
    position: relative;
    font-size: 16px;
}

.custom-navbar .nav-link:hover {
    color: #fff !important;
}

.custom-navbar .nav-link.active::after,
.custom-navbar .nav-link:hover::after {
    content: "";
    display: block;
    width: 80%;
    height: 3px;
    background: #ffffff;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.navbardrop-down {
    margin-top: 22px;
}

.dropdown-menu {
    background-color: #333333;
    border: none;
    border-radius: 0;
    padding: 10px 0;
}

.dropdown-item {
    color: #d1d1d1 !important;
    padding: 10px 20px;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background-color: #444444;
    color: #ffffff !important;
}

.custom-navbar .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #ffffff;
    position: absolute;
    bottom: 22%;
    left: 15px;
    transition: 0.3s ease;
}

.custom-navbar .nav-link.active::after,
.custom-navbar .nav-link:hover::after {
    width: 80%;
}


/* navar */


/* banner */

.relative-container {
    position: relative;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 90%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.position-relative {
    z-index: 2;
}

.img-fluid.video-bg {
    height: 85vh;
    object-fit: cover;
}

.header h1,
.service-title {
    font-size: 80px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: #fff;
    line-height: 1;
    text-align: left;
    padding: 20px 0;
}

.header p,
.banner-content p {
    font-family: var(--primary-font);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 36px;
    letter-spacing: 7px;
    color: #ffffff;
    text-align: left;
}

.banner-content p {
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: 16px;
    text-align: left;
    line-height: 25px;
    font-weight: 500;
    /* max-width: 450px; */
}

.bnr-card {
    border: 3px solid #0ccaeb;
    border-radius: 20px;
    text-align: center;
    padding: 70px 25px;
    max-width: 400px;
    margin: auto;
}

.bnr-card p.bnr-card-p {
    font-weight: 700;
    color: #fff;
    font-size: 30px;
    margin: 0 0 35px;
    text-align: center;
    line-height: 45px;
}

.bnr-card-btn a,
.bnr-card-btn button {
    font-size: 18px;
    border-radius: 40px;
    padding: 15px 30px;
    font-family: var(--primary-font);
    color: var(--next-color);
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    text-decoration: none;
    transition: 0.5s;
    border: none;
    cursor: pointer;
    line-height: normal;
    font-weight: 500;
    background: #00b4d8;
    font-weight: 500;
    text-transform: capitalize;
}

.bnr-card-btn a:hover {
    background: #fff;
    color: #00b4d8;
}

.btn-quote-anchor {
    background-color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    border-radius: 40px;
    padding: 14px 60px;
    font-family: var(--primary-font);
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    border: none;
    text-decoration: none;
}

.btn-quote-anchor::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #0ccaeb;
    transition: 0.5s ease;
    z-index: -1;
}

.btn-quote-anchor:hover {
    color: #ffffff;
}

.btn-quote-anchor:hover::before {
    width: 100%;
}


/* #madecanvas h1{
  background-image: linear-gradient(
    to right,
    var(--accent-gold),
    var(--gray-text),
    var(--primary-color),
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
} */

[data-css="text-gradient"] {
    -webkit-text-fill-color: transparent;
    animation: moveX 10s linear infinite;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, var(--accent-gold), var(--gray-text), var(--next-color), var(--bg-dark));
    background-position-x: 0;
    background-repeat: no-repeat;
    background-size: 200% 100%;
    display: inline !important;
}


/* banner */


/* result */

.sub-headers h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    color: var(--primary-color);
    position: relative;
}

.text-white-mb {
    margin-bottom: 35px;
}

.why-choose .sub-headers h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    color: var(--primary-color);
    position: relative;
    display: block;
    padding-bottom: 25px;
}

.why-choose .sub-headers h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: #0ccaeb;
}

.our-secr .sub-headers h2 {
    max-width: 390px;
}

.sub-headers p {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #444448;
    padding: 20px 0;
    max-width: 700px;
    margin: auto;
}

.black-btn {
    margin-bottom: 20px;
}


/* Apply styles to both the anchor and the button */

.black-btn a,
.black-btn button {
    background-color: #000000;
    font-size: 18px;
    border-radius: 40px;
    padding: 14px 60px;
    font-family: var(--primary-font);
    color: var(--next-color);
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    text-decoration: none;
    transition: 0.5s;
    border: none;
    cursor: pointer;
    line-height: normal;
    font-weight: 500;
}

.black-btn a::before,
.black-btn button::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background-color: #0ccaeb;
    transition: 0.5s ease;
    z-index: -1;
}

.black-btn a:hover,
.black-btn button:hover {
    color: #ffffff;
}

.black-btn a:hover::before,
.black-btn button:hover::before {
    width: 100%;
}

.forAfter {
    position: relative;
}

.forAfter::after {
    position: absolute;
    content: "";
    background-image: url("../img/arrow_up.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    top: 5%;
    right: 5%;
    transform: translate(-50%, -50%);
}

.dgital-video {
    display: flex;
    justify-content: flex-end;
}

.dgital-video video,
.dgital-video img {
    max-width: 99%;
    border-radius: 20px;
}

.sub-container {
    padding: 23px;
    border-radius: 40px;
    background-color: var(--next-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result {
    background-color: #ebebeb;
}

.category {
    display: flex;
    align-items: center;
}


/* result */


/* service */

.text--center {
    text-align: center;
}

.icons i {
    padding: 21px;
    display: inline-block;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    color: var(--next-color);
    background-color: var(--primary-color);
    font-size: 18px;
    transition: 0.5s;
}

.card:hover .icons i {
    background-color: var(--next-color);
    color: var(--primary-color);
    transform: rotate(360deg);
}

.card {
    padding: 20px;
    border-radius: 20px;
    border: 0.2px solid #3333;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transition: 0.9s;
    transition: 0.6s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 15px;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: 0.6s ease;
    z-index: -1;
}

.card a {
    transition: 0.9s;
}

.card ul {
    padding-left: 0;
}

.card ul li {
    font-family: var(--primary-font);
    font-size: 15x;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: var(--primary-color);
    display: flex;
}

.heading h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    font-family: var(--heading-font);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 20px;
}

.header p {
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: var(--primary-color);
    padding: 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card ul li span {
    padding-right: 12px;
    text-shadow: 0 0 5px #797a7a;
}

.card:hover::before {
    left: 0;
}

.card:hover {
    color: var(--next-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 10px #333;
}

.card a:hover {
    color: var(--next-color);
}

.card:hover ul li {
    color: var(--next-color);
}

.btns {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.videos video {
    border-radius: 20%;
}

.videos img {
    border-radius: 20px;
}


/* service */

.why-choose .row {
    align-items: center;
}


/* clients */

.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 70px;
    animation: scroll-left 60s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-track h2 {
    font-size: 70px;
    /* font-family: var(--heading-font); */
}

.marquee-track .logos {
    width: 140px;
    flex-shrink: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.marquee-reverse .marquee-track {
    animation: scroll-right 56s linear infinite;
}

.logos img {
    filter: grayscale(100%);
    transition: filter 0.3s;
    height: 120px;
    object-fit: contain;
    max-width: 150px;
    margin: auto;
}

.logos img:hover {
    filter: grayscale(0%);
}


/* clents */


/* faq */

.accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "−";
    transform: rotate(180deg);
}

.accordion-button {
    background-color: transparent !important;
    box-shadow: none !important;
}

.accordion-flush .accordion-item .accordion-button {
    font-size: 24px;
    font-family: var(--primary-font);
    text-transform: capitalize;
    font-weight: 500;
    color: var(--primary-color);
}

.accordion-body {
    font-size: 18px;
    font-family: var(--primary-font);
    text-transform: capitalize;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    font-size: 18px;
    color: #0cc0df !important;
    text-transform: capitalize;
    font-weight: 500;
}


/* faq */


/* case */

.port-card {
    max-width: 300px;
}

.card-img img {
    width: 100%;
    display: block;
}

.i-image {
    max-width: 180px;
    display: flex;
    justify-content: center;
    height: 190px;
    align-items: center;
    margin-top: 20px;
    border: 1px solid var(--next-color);
    border-radius: 2px;
}

.i-image img {
    max-width: 160px;
    height: 80px;
    object-fit: cover;
}


/* case */


/* contact */

.map-wrapper {
    width: 100%;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
}

.map-overlay-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 2;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    max-width: 280px;
    z-index: 10;
}

.form-floating-custom {
    position: relative;
    margin-top: 10px;
}

.minimal-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #dcdcdc;
    background: transparent;
    padding: 12px 0;
    font-size: 18px;
    color: #333;
    outline: none;
    display: block;
}

.form-floating-custom label {
    position: absolute;
    top: 12px;
    left: 0;
    color: #a0a0a0;
    font-weight: 300;
    pointer-events: none;
    transition: all 0.3s ease;
}

.minimal-input:focus~label,
.minimal-input:not(:placeholder-shown)~label {
    top: -15px;
    font-size: 15px;
    color: #000;
}

textarea.minimal-input {
    resize: none;
}

.pill-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
}

.paddings-contact .heading h4 {
    height: auto;
}


/* footer */

.site-footer {
    display: block;
    /* background-color: var(--primary-color); */
    background: #003943;
    color: var(--next-color);
    padding-top: 80px;
    padding-bottom: 0;
    font-family: sans-serif;
}

.footer-col {
    margin-bottom: 40px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.social-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: var(--next-color);
    border-radius: 50%;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    color: var(--primary-color);
    text-decoration: none;
    line-height: 38px;
    text-align: center;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list a {
    color: var(--next-color);
    text-decoration: none;
    font-size: 18px;
    /* opacity: 0.8; */
}

.newsletter-text {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.subscribe-form input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    margin-bottom: 15px;
}

.btn-subscribe {
    width: 100%;
    background-color: #00b4d8;
    color: var(--next-color);
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.review-section {
    margin-top: 50px;
}

.review-title {
    display: flex;
    justify-content: left;
    /* margin-bottom: 15px; */
}

.badge-container {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: left;
}

.iso-wrapper {
    border-top: 2px solid #185a66;
    margin-top: 25px;
    padding-top: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.iso-cert-img {
    max-width: 100px;
    margin-bottom: 15px;
}

.company-reg {
    font-size: 15px;
    margin-top: 10px;
}


/* Bottom Footer */

.footer-bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.start-project-link {
    color: var(--next-color);
    text-decoration: none;
    font-size: 14px;
}

.btn-quote {
    background-color: #f8f9fa;
    color: #0056b3;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background-color: #00b4d8;
    color: #fff;
}

.banner {
    height: 100vh;
}

.mbb-5 {
    margin-bottom: 50px;
}

.headings h4 {
    line-height: 32px;
    font-family: var(--heading-font);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 20px;
}

.techno {
    padding: 20px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eee;
}

.tech-grid li {
    position: relative;
    text-align: center;
    cursor: pointer;
    padding: 40px 20px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.tech-grid li:nth-child(4n) {
    border-right: none;
}

.tech-grid li:nth-last-child(-n+2) {
    border-bottom: none;
}

.tech-grid img {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto;
    transition: transform 0.2s;
}

.tech-grid span {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.2s;
}

.tech-grid li:hover span {
    opacity: 1;
}

.technology .row {
    align-items: center;
}

#slider,
.slider-wrap,
#intro-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
}

.slider-wrap {
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.slider-wrap {
    margin: 50px auto;
}

#intro-slider {
    height: 100%;
    width: 84%;
    position: absolute;
    transform-style: preserve-3d;
    bottom: -0%;
}

#intro-slider div {
    transform-style: preserve-3d;
}

.intro-slide {
    position: absolute;
    text-align: center;
    color: #fff;
    transition: transform 1.2s;
    left: 37%;
    top: 36%;
    opacity: 0;
    transform: rotateY(0deg) translate(-120px, -120px);
    width: 35%;
    padding-top: 50%;
    display: flex;
    align-items: center;
    background: #fff;
}

#intro-slider .intro-slide:first-child {
    z-index: 10 !important;
    transform: rotateY(0deg) translate(0px) !important;
    opacity: 1;
}

.intro-slide[data-position="2"] {
    z-index: 9;
    transform: rotateY(0deg) translate(-60px, -60px);
    opacity: 1;
}

.intro-slide[data-position="3"] {
    z-index: 8;
    transform: rotateY(0deg) translate(-120px, -120px);
    opacity: 1;
}

#slider-next,
#slider-prev {
    position: absolute;
    top: 52%;
    right: 20%;
    z-index: 10;
    cursor: pointer;
}

#slider-prev {
    left: 15px;
    transform: rotate(180deg);
}


/* slider section */

* {
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}

article {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    min-height: 550px;
}

.poster-box::before,
.poster-box::after,
.intro-slide::before,
.intro-slide::after {
    content: "";
    width: 30px;
    height: 30px;
    border-left: 2px solid #36d8b1;
    border-top: 2px solid #36d8b1;
    position: absolute;
    top: -8px;
    left: -8px;
    opacity: 0.5;
    transition: 0.5s;
}

.intro-slide::after {
    border-left: unset;
    border-right: 2px solid #36d8b1;
    right: -8px;
    left: unset;
}

.poster-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.poster-box::before {
    border-top: unset;
    border-bottom: 2px solid #36d8b1;
    top: unset;
    bottom: -16px;
}

.poster-box::after {
    border-left: unset;
    border-right: 2px solid #36d8b1;
    border-top: unset;
    border-bottom: 2px solid #36d8b1;
    top: unset;
    bottom: -16px;
    left: unset;
    right: -8px;
}

.nft-content-area {
    padding: 53px 15px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.nft-content-area h5 {
    line-height: 30px;
    font-weight: 700;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.nft-content-area p {
    font-weight: bold;
    font-size: 15px;
    line-height: 30px;
    color: #fff;
}

.slide-overlay {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: -16px 4px 4px rgba(0, 0, 0, 0.25);
    transform: matrix(-1, 0, 0, 1, 0, 0);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    transition: 0.5s;
}

.slide-overlay::before {
    content: "";
    width: 11px;
    height: 80%;
    background: linear-gradient(0deg, #e73d3d 0%, #7b61ff 49.48%, #1bffff 100%);
    position: absolute;
    top: 10%;
    left: -5.5px;
    opacity: 0;
    transition: 0.5s;
}

.slide-overlay::after {
    content: "";
    width: 4px;
    height: 80%;
    background: linear-gradient(0deg, #e73d3d 0%, #7b61ff 49.48%, #1bffff 100%);
    position: absolute;
    top: 10%;
    right: 0px;
    opacity: 0;
    transition: 0.5s;
}

#intro-slider .intro-slide:first-child .slide-overlay {
    background: transparent;
}

#intro-slider .intro-slide:first-child .poster-box::before,
#intro-slider .intro-slide:first-child .poster-box::after,
#intro-slider .intro-slide:first-child::before,
#intro-slider .intro-slide:first-child::after,
#intro-slider .intro-slide:first-child .slide-overlay::after,
#intro-slider .intro-slide:first-child .slide-overlay::before {
    opacity: 1;
}

.intro-slide[data-position="2"] {
    opacity: 0.8;
}

.intro-slide[data-position="3"] {
    opacity: 0.5;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

@media (max-width: 767px) {
    #slider-next,
    #slider-prev {
        width: 50px;
        height: 50px;
        right: 6%;
    }
    .intro-slide {
        left: 50%;
    }
    .poster-box::before,
    .poster-box::after,
    .intro-slide::before,
    .intro-slide::after {
        width: 15px;
        height: 15px;
    }
}

#slider {
    position: relative;
    width: 100%;
    height: 400px;
    /* adjust height */
}

#intro-slider .intro-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: transform 1.2s, opacity 1.2s;
}

.heading h4 {
    font-size: 28px;
    font-weight: 700;
}

.heading p {
    font-size: 18px;
    color: #666;
}

#progress-container {
    position: fixed;
    bottom: 10px;
    left: 0px;
    width: 100%;
    height: 5px;
    background-color: #f3f3f3;
    z-index: 1000;
}


/* The actual progress bar */

#progress-bar {
    height: 100%;
    width: 0%;
    background-color: #000000;
    transition: width 0.1s;
}


/* extra */

.cursor {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999;
    transition: transform 0.1s ease;
}


/* The outer ring (follower) */

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 998;
    /* Smooth lag effect */
    transition: transform 0.15s ease-out;
}

.nav-link span {
    font-size: 15px;
    display: none;
}


/* portfolio */


/* Section spacing */

.secPort {
    margin: -10px 0;
}


/* Card Container */

.portfolio-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 320px;
    /* reduced height */
    margin: 20px 0 40px 0;
}


/* Image */

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


/* Overlay */

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 44, 71, 0.7) 10%, rgba(7, 23, 29, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}


/* Hover Effects */

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}


/* Overlay Content */

.portfolio-overlay .content {
    color: #fff;
}

.portfolio-overlay h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 20px;
}


/* View Button */

.btn-view {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn-view:hover {
    background: #f0f0f0;
    color: #000;
}


/* Responsive Heights */


/* services */

#services2_wrapper {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

#services2 {
    position: relative;
    display: table;
    width: 100%;
}

#services2 .left_box_wrapper {
    position: relative;
    overflow: hidden;
    display: table-cell;
    width: 40%;
}

#services2 .left_box {
    padding: 70px 50px;
}

#services2 .right_box_wrapper {
    position: relative;
    overflow: hidden;
    display: table-cell;
    width: 40%;
    background: url(https://www.digitextechnologies.com/wp-content/uploads/2021/10/digitex_location.png) center center no-repeat;
    background-size: cover;
}

.services2 {
    position: relative;
    padding: 20px 0px 20px 70px;
}

.services2:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: url(../img/vl1.png) 0 0 no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: -15px;
    top: 0;
}

.services2:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: url(../img/hl1.png) 0 0 no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.services2.nav1:before,
.services2.nav3:before,
.services2.nav3:after,
.services2.nav4:after {
    display: none;
}

.services2 .ic1 {
    position: absolute;
    left: 0;
    top: 20px;
}

.services2 .ic1 i {
    /* color: #35373e; */
    color: #0ccaeb;
    font-size: 40px;
    line-height: 1;
}

.services2 .txt1 {
    font-family: "Raleway";
    font-weight: 700;
    font-size: 13px;
    color: #35373e;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    background: url(../img/kand3.png) left bottom no-repeat;
}

#what_wrapper {
    position: relative;
    background: #f7f8f9;
}

#what {
    position: relative;
    display: table;
    width: 100%;
}

#what .left_box_wrapper {
    position: relative;
    overflow: hidden;
    display: table-cell;
    width: 50%;
    background: url(../img/img2.jpg) center center no-repeat;
    background-size: cover;
    vertical-align: middle;
}

#what .left_box {
    padding: 110px;
}

#what .left_box_inner {}

#what .right_box_wrapper {
    position: relative;
    overflow: hidden;
    display: table-cell;
    width: 50%;
    vertical-align: middle;
}

#what .right_box {
    padding: 70px;
}

#what .right_box_inner {
    margin-left: -20px;
    margin-right: -20px;
}

.what1 {
    background: #35373e;
    background: rgba(4, 82, 90, 0.55);
    padding: 50px;
    text-align: center;
    color: #fff;
}

.what1 .ic1 {
    margin-bottom: 10px;
}

.what1 .ic1 i {
    font-size: 35px;
    line-height: 1;
}

.what1 .txt1 {
    font-family: "Raleway";
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 15px;
}

.what1 .txt2 {
    font-size: 18px;
    padding-bottom: 20px;
}

.what2 {
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
}

.what2 a,
.what2 div.indivusual-home-card {
    display: block;
    text-decoration: none;
    border: 1px solid transparent;
    padding: 20px;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.what2 a:hover,
.what2 div.indivusual-home-card:hover {
    border-color: #0CCAEB;
    background-color: #0CCAEB;
    color: #fff;
    border-radius: 10px;
}

.what2 a:hover .ic1,
.what2 a:hover .txt1,
.what2 div.indivusual-home-card:hover .ic1,
.what2 div.indivusual-home-card:hover .txt1 {
    color: #fff;
}

.what2 a .ic1,
.what2 div.indivusual-home-card .ic1 {
    margin-bottom: 10px;
    color: #6e6e6f;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}


/* .what2 a:hover .ic1 {
    color: #35373e;
} */

.what2 a .ic1 i,
.what2 div.indivusual-home-card .ic1 i {
    font-size: 35px;
    line-height: 1;
}

.what2 a .txt1,
.what2 div.indivusual-home-card .txt1 {
    font-family: "Raleway";
    font-weight: 600;
    font-size: 13px;
    color: #35373e;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 5px;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}


/* .what2 a:hover .txt1 {
    color: #35373e;
} */

.portfolio .marquee-container,
.technology .marquee-container {
    padding: 0;
}


/* ---------------------------------------------------service pages------------------------------------------------------------ */

.dynamic-banner {
    position: relative;
    /* height: 300px; */
    /* Fixed height or use vh */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}


/* The background image handled dynamically */

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    z-index: 1;
    height: 100%;
}


/* The overlay - can be adjusted for darkness */

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: rgba(0, 0, 0, 0.5);
    /* 0.5 is the darkness level */
    z-index: 2;
}


/* Ensuring text is above the overlay */

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
}


/* Ensure the container is the reference point */

.dynamic-banner {
    position: relative;
    height: auto;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    /* Fallback */
    padding: 115px 0;
}

.bnr-row {
    align-items: center;
}

#smokeCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lower than content, higher than image */
    z-index: 2;
    pointer-events: none;
    /* Allows mouse to reach the container below */
}

.banner-img {
    z-index: 1;
}

.banner-overlay {
    z-index: 3;
    pointer-events: none;
}

.banner-content {
    z-index: 4;
}

.service-title {
    font-size: 52px;
    font-weight: 800;
    /* letter-spacing: 3px; */
    text-align: left;
    line-height: 65px;
    text-transform: capitalize;
}

.single-service {
    position: relative;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 0 5px var(--gray-text);
    max-height: 324px;
}

.single-service .content {
    position: relative;
    z-index: 20;
}

.single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0px;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;
    background-color: #0ccaeb;
    border: 6px solid var(--gray-tex);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 10;
    transition: all 0.6s;
}

.single-service:hover .circle-before {
    width: 100%;
    height: 100%;
    transform: none;
    border: 0;
    border-radius: 0;
    opacity: 1;
}

.single-service .icon {
    display: inline-block;
    margin-bottom: 26px;
    width: 70px;
    height: 70px;
    background-color: #0ccaeb;
    border-radius: 70px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all 0.3s;
    overflow: hidden;
}

.single-service .image img {
    width: 100%;
}

.single-service:hover .icon {
    background-color: #fff;
    color: #0ccaeb;
}

.single-service .title {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 23px;
    transition: color 0.3s;
    color: var(--primary-color);
}

.single-service:hover .title {
    color: #fff;
}

.single-service .description {
    margin-bottom: 20px;
    font-size: 14px;
    transition: color 0.3s;
}

.single-service:hover .description {
    color: #fff;
}

.single-service a {
    position: relative;
    font-size: 15px;
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-weight: 600;
    transition: color 0.3s;
    text-decoration: underline;
    text-transform: capitalize;
    color: #0ccaeb !important;
}

.single-service:hover a {
    color: var(--accent-gold);
}

.description span {
    padding-right: 10px;
}

.single-service:hover a:after {
    background-color: #fff;
}


/* --------------------------------------------------------Project-page--------------------------------------------------------- */

.section-services .portfolio-card {
    margin: 0;
    border-radius: 0;
}

.custom-border {
    border: 2px solid var(--primary-color) !important;
    border-radius: 4px;
}

.select2-container--default .select2-selection--single {
    border: 2px solid var(--primary-color) !important;
    height: calc(2.25rem + 2px);
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.custom-border:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
    outline: none;
    box-shadow: none;
}

.headings span {
    margin: -10px 10px 0 0;
}

.portImage {
    height: 556px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s;
}

.tags {
    position: absolute;
    bottom: 20px;
    left: 140px;
    transform: translate(-50%, -50%);
    z-index: 220;
}

.portImage img {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.5s;
    border-radius: 20px;
}

.hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 20px;
}

.portImage:hover .hover-video {
    opacity: 1;
    transform: 0.5s;
}

.ids {
    z-index: 200;
}

.ids ul {
    display: flex;
    gap: 10px;
}

.ids ul li {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 10px;
    border-radius: 20px;
    color: var(--next-color);
    font-size: 12px;
}

.specialportfolio,
.bg-black--27 {
    background-color: #272727;
    padding: 50px 0;
    color: var(--next-color);
    position: relative;
    overflow: hidden;
}


/* .specialportfolio::before,
.bg-black--27::before
 {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(20px 20px at 15% 10%, #beeebe, transparent),
    radial-gradient(40px 40px at 75% 25%, #f1a3a3, transparent),
    radial-gradient(15px 15px at 40% 70%, #c1fff6, transparent),
    radial-gradient(10px 10px at 60% 50%, #ebbad9, transparent);
  opacity: 0.65;
  animation: space-dust 10s linear infinite;
  z-index: 0;
}
.specialportfolio::after,
.bg-black--27::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(120px 80px at 20% -10%, #7ee312 40%, transparent 60%),
    radial-gradient(160px 100px at 60% -30%, #7a7a7a 35%, transparent 65%),
    radial-gradient(100px 70px at 85% -20%, #5f5f5f 45%, transparent 70%);
  opacity: 0.85;
  animation: big-asteroids 15s linear infinite;
  z-index: 0;
} */

.specialportfolio>*,
.bg-black--27>* {
    position: relative;
    z-index: 1;
}

@keyframes space-dust {
    to {
        background-position: 200px 600px, -300px 700px, 150px 900px, -200px 500px;
    }
}

@keyframes big-asteroids {
    from {
        transform: translateY(-30%);
    }
    to {
        transform: translateY(130%);
    }
}

.overlay {
    pointer-events: none;
}

.bg-white--34 {
    background-color: #eee;
    padding: 50px 0;
}

.specialportfolio .headings h4 {
    font-weight: 700;
}

.specialportfolio .sub-headers h2 {
    padding-bottom: 30px;
}

.specialportfolio .col:nth-child(even) {
    margin-top: 180px;
}

.specialportfolio {
    padding: 50px 0 0 0;
}

.tags-botoom {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tags-botoom span {
    padding-right: 10px;
    font-size: 12px;
}

.tags-botoom li {
    font-size: 12px;
    color: var(--next-color);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    width: 210px;
    display: inline-block;
    border-radius: 40px;
    text-align: center;
}


/*----------------------------------------------------------------- contact *---------------------------------------------------------*/

.subparts .headings h4 {
    font-weight: 700;
}

.subparts .headings p,
.subparts .headings a {
    font-weight: 600;
    display: block;
}

.subparts {
    padding-bottom: 30px;
}

.subparts:nth-child(odd) {
    border-bottom: 1px solid var(--gray-text);
}


/*------------------------------------------------ project-details --------------------------------------------------------*/

.details-list li {
    display: flex;
    gap: 15px;
}

.details-list li h6 {
    font-weight: 700;
    color: #131212;
    font-size: 20px;
}

.details-list span {
    margin: 0;
}

.details-list li {
    margin-bottom: 20px;
}

.starts {
    display: flex;
    gap: 12px;
}

.stars {
    font-size: 14px;
}

.single-service p {
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 14px;
    line-height: 15px;
    transition: 0.5s;
}

.single-service:hover p {
    color: var(--next-color);
}

.single-service:hover .stars {
    color: var(--next-color);
}

.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background: #000;
    /* Matching your dark theme */
}

.video-container {
    position: relative;
    width: 80%;
    /* Adjust width as needed */
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
}

video {
    width: 100%;
    display: block;
    max-height: 556px;
    object-fit: cover;
}


/* Play Button Overlay */

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #fde4e4;
    /* Pink background to match your design */
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #fff;
}


/* Hide button when video is playing */

.video-container.playing .play-btn {
    opacity: 0;
    pointer-events: none;
}


/* -------------------------------------------------------------------service-details-------------------------------------------- */

.main-box {
    display: flex;
    background: #000;
    margin: 25px auto 70px auto;
    padding: 0;
    width: 100%;
    border-radius: 20px;
}

.box {
    height: 550px;
    padding: 15px;
    border-right: 1px solid white;
    webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    position: relative;
    overflow: hidden;
    list-style: none;
}

.detail {
    width: 85%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: white;
    color: black;
    opacity: 0;
    padding: 30px;
    box-sizing: border-box;
    webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.box.active {
    width: 70% !important;
}

.box.active .detail {
    opacity: 1;
    -webkit-transition-delay: 0.6s;
    -moz-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    transform: none;
    background: #d7f4f9;
}

.box span {
    writing-mode: vertical-rl;
    font-size: 18px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    width: 40px;
    transform: rotate(180deg);
    font-weight: 400;
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 18px;
}

.box.active span {
    left: 25px;
    right: auto;
    margin: 0;
    font-weight: 600;
}

p {
    line-height: 23px;
}

.main-box .headings h4 {
    font-weight: 700;
}

.main-box li small {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 400;
    padding: 12px 0;
}

.detailings .row {
    position: relative;
}


/* Container must be relative for absolute positioning of the line */

.detailings .timeline-container {
    position: relative;
    padding-top: 2rem;
}


/* The Vertical Line */

.detailings .timeline-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 80px;
    left: 50%;
    width: 2px;
    background: #fff;
    transform: translateX(-50%);
    z-index: 1;
}


/* Adjusting columns to create space for the center icons */

.detailings .col {
    margin-bottom: 80px;
    /* Space between rows */
    position: relative;
    z-index: 2;
}


/* Aligning text away from the center line */

.detailings .col:nth-child(odd) {
    text-align: right;
    padding-right: 60px;
}

.detailings .col:nth-child(even) {
    text-align: left;
    padding-left: 60px;
}


/* The Handshake Icons */


/* This creates an icon every two columns (every row) */

.detailings .col:nth-child(even)::after {
    content: "";
    position: absolute;
    left: 0;
    /* Positioned exactly at the 50% line of the parent row */
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #fde4e4;
    /* Light pink background from your image */
    background-image: url("your-handshake-icon.png");
    /* Replace with your icon path */
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 2px solid #fff;
}


/* The Handshake/Life-Ring Circle */

.detailings .col:nth-child(2n)::after {
    /* FontAwesome Setup */
    content: "\f1cd";
    /* Unicode for fa-life-ring */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    /* Required for Solid icons */
    /* Center positioning on the line */
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, 0);
    z-index: 3;
    /* Circle Styling */
    width: 50px;
    height: 50px;
    background-color: #fde4e4;
    /* Light pink background */
    color: #000;
    /* Icon color */
    border: 2px solid #fff;
    border-radius: 50%;
    /* Flexbox to center the icon inside the circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}


/* Logic for the vertical line if not already added */

.detailings .timeline-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 80px;
    left: 50%;
    width: 2px;
    background: #fff;
    transform: translateX(-50%);
    z-index: 1;
}

.owl-nav {
    display: none;
}

.bg-black--27 .accordion-button::after {
    color: var(--next-color);
}

@media (max-width: 767px) {
    .detailings .timeline-container::before {
        left: 20px;
    }
    .detailings .col:nth-child(odd),
    .detailings .col:nth-child(even) {
        text-align: left;
        padding-left: 50px;
        padding-right: 0;
    }
    .detailings .col:nth-child(even)::after {
        left: 20px;
    }
}

.full-list li span {
    font-size: 15px;
    font-weight: 900;
    height: 50px;
    width: 50px;
    display: inline-block;
    text-align: center;
    color: var(--next-color);
    background-color: #0ccaeb;
    border-radius: 50%;
    padding: 13px 17px;
}

.row.maintain {
    align-items: center;
}


/*------------------------------------------------------ case-study ----------------------------------------------------*/

#case-study-slider .slide {
    width: 100%;
}

#case-study-slider {
    cursor: ns-resize;
}

#case-study-slider .owl-dots .owl-dot.active span {
    background: var(--accent-gold);
    height: 14px;
    width: 14px;
}

#case-study-slider .owl-dots .owl-dot:hover span {
    background: var(--next-color);
    border: 1px solid var(--accent-gold);
}

.owl-theme .owl-dots .owl-dot span {
    height: 12px;
    width: 12px;
    background-color: var(--primary-color);
}

.owl-dots {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.headings em {
    width: 80px;
    height: 2px;
    background-color: var(--gray-text);
    display: inline-block;
    border-radius: 10px;
    margin-bottom: 3px;
}

#case-study-slider .items {
    padding: 15px;
}

#case-study-slider .owl-item:nth-child(even) {
    background-color: #333333;
    padding: 20px;
    border-radius: 5px;
}

#case-study-slider .owl-item:nth-child(even) * {
    color: var(--next-color);
}

#case-study-slider .owl-item:nth-child(odd) {
    background-color: #d5d5d5;
    padding: 20px;
    border-radius: 5px;
}

#case-study-slider .owl-item:nth-child(odd) * {
    color: var(--bg-dark);
}

.score .row {
    align-items: center;
}

.sub-headers h1 {
    font-size: 105px;
}

.sub-headers h1 span {
    color: red;
    font-size: 60px;
    padding-left: 10px;
}


/* --------------------------------------------case study details------------------------------------------------------  */


/* 1. The Scroll Container */

.track {
    height: 140vh;
    /* This determines how long the user scrolls */
    background-color: #272727;
    position: relative;
}


/* 2. The Sticky Viewport */

.overlays {
    position: sticky;
    top: 0;
    height: 140vh;
    /* Fills the screen so no black gaps appear while scrolling */
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* 3. Background Gradient Layer */

.gradient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(255deg, #18e9f8, #000000 30%, #cecece 65%, #18e9f8);
    z-index: -1;
}


/* 4. Shape & Masking Layer */

.shape {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: black;
    /* multiply blend mode makes the white SVG act as a cutout to the gradient */
    mix-blend-mode: multiply;
    z-index: 1;
}


/* The element being scaled and rotated by GSAP */

.shape .rotate {
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;
}

.shape .img {
    width: 20rem;
    /* Initial size of your logo */
    height: 20rem;
}

.img svg {
    width: 100%;
    height: 100%;
    display: block;
}


/* 5. SVG Path Styling */

.img svg .hsc-img-path {
    fill: none;
    stroke: white;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* 6. Typography Layer */

.text {
    position: absolute;
    z-index: 1;
    /* Sits on top of the shape mask */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    left: 15%;
}

.text-inner {
    color: white;
    font-weight: 800;
    font-size: clamp(1.5rem, 5vw, 3rem);
    /* Responsive font size */
    line-height: 1.1;
    text-align: left;
    max-width: 500px;
    white-space: normal;
    /* Starting position for the text before GSAP moves it */
    transform: translateX(10vw);
}


/* 7. Optional: Section following the animation */

.next-section {
    position: relative;
    z-index: 10;
    background: white;
    min-height: 100vh;
    padding: 100px 0;
}

.headings ul li {
    font-size: 18px;
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.overwrite .headings span {
    margin: 0;
    border: 1px solid var(--next-color);
    display: inline-block;
    padding: 11px 15px;
    border-radius: 50%;
    height: 53px;
    width: 58px;
}

.bg-white--34 .headings span {
    margin: 0;
    border: 1px solid var(--bg-dark);
    display: inline-block;
    padding: 11px 15px;
    border-radius: 50%;
    height: 53px;
    width: 58px;
}

.bg-white--34 .headings h4 {
    margin-top: 0;
}

.circle {
    width: 250px;
    height: 250px;
    border: 1px solid #d3d3d3;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.number {
    font-size: 55px;
    font-weight: bold;
    color: #444;
    margin: 0;
}

.stat-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.label {
    font-size: 18px;
    color: #666;
    margin-top: 5px;
}

.need-case {
    display: flex;
    justify-content: space-between;
}


/*------------------------------------------- blogs---------------------------------------------------------- */

.portfolio-overlay h3,
.portfolio-overlay p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.image-blog img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 20px;
}

.blogs-before {
    margin-top: 25px;
}


/* ------------------------------------------------------blogs-details----------------------------------------------------- */

.area-image img {
    max-height: 445px;
    width: 100%;
    object-fit: cover;
}

.images-writers {
    display: flex;
    gap: 15px;
    align-items: center;
}

.images-writers p span {
    font-weight: 400;
    margin-left: 50px;
}

.images-writers img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.images-writers p {
    margin: 0;
    font-family: 15px;
    font-weight: 700;
}

.blogs-writer {
    display: flex;
    justify-content: space-between;
}

.calemder p {
    font-size: 15px;
    font-weight: 700;
}

.categories a {
    background-color: var(--gray-text);
    color: var(--primary-color);
    font-size: 15px;
    padding: 12px 32px;
    border-radius: 35px;
    display: inline-block;
}

#heart-trigger.is-active i {
    color: #ff0000 !important;
    /* Force Red */
    font-weight: 900;
    /* Ensures the solid version looks thick */
}


/* Base style for the icon */

#heart-trigger i {
    color: #6c757d;
    transition: all 0.2s ease;
}

@keyframes thumb-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}


/* -----------------------------------------------------------about---------------------------------------------------- */

.team-photo {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}


/*------------------------------------------------------------ blogs-listing---------------------------------------------- */

.blogs-listing .blogs-area img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.blogs-listing .blogs-area .social-iconic {
    position: absolute;
    bottom: 30px;
    left: 10px;
}

.blogs-listing .blogs-area {
    position: relative;
}

.listings p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.height-listing {
    margin-bottom: 20px;
}

path {
    fill: lightgray;
    stroke: white;
}

path:hover {
    fill: gray;
}

#GB {
    fill: red;
}

#IN {
    fill: #8b0000 !important;
}

#post_content h1,
h2 {
    font-size: 36px;
    font-weight: 700;
}

#post_content h3,
h5 {
    font-size: 26px;
    font-weight: 700;
}

#post_content h6 {
    font-size: 18px;
    font-weight: 700;
}

#post_content span,
em,
sup {
    font-weight: 600;
    font-style: oblique;
}

#post_content code {
    background-color: var(--accent-gold);
    color: var(--gray-text);
}

#post_content pre {
    overflow-x: auto;
}

#post_content blockquote {
    background-color: var(--bg-dark);
    color: var(--next-color);
}

#post_content .headings ul li {
    font-size: 18px;
    margin: 0;
}

#post_content .headings ol li {
    font-size: 18px;
    margin: 0;
}

#post_content .headings ul li {
    font-size: 18px;
    margin: 0;
    list-style-type: disc;
    margin-left: 20px;
}

#post_content .headings ol li {
    font-size: 18px;
    margin: 0;
    list-style-type: symbols;
    margin-left: 20px;
}


/*------------------------------------------------------- teams ---------------------------------------------------------*/


/* Container settings */

.team-wrapper {
    padding: 5px;
    border-radius: 5px;
    background-color: var(--next-color);
    margin-bottom: 20px;
    min-height: 402px;
}

.image-wrap {
    position: relative;
    overflow: hidden;
    /* This keeps the 1.6 scale contained */
    border-radius: 8px;
    cursor: pointer;
}


/* Base Image State */

.image-wrap img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: grayscale(100%);
}


/* The Zoom Effect */

.team-wrapper:hover img {
    transform: scale(1.6);
    filter: grayscale(0%);
}


/* Overlay Base (Hidden) */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    /* Effectively display: none for the user */
    transition: opacity 0.4s ease;
    pointer-events: none;
    /* Allows hover to maintain focus on the image */
}


/* Text Animation */

.overlay-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}


/* Trigger Both on Hover */

.team-wrapper:hover .overlay {
    opacity: 1;
}

.team-wrapper:hover .overlay-text {
    transform: translateY(0);
}

.team-wrapper:hover {
    background-color: var(--gray-text);
    color: var(--next-color);
}

.team-wrapper:hover .headings h4,
.team-wrapper:hover .headings p {
    color: var(--next-color);
}

.bg-light-gray {
    background-color: #eeeeee !important;
}

.bg-charcoal {
    background-color: #272727 !important;
}

.bg-black {
    background-color: #000000 !important;
}

.top-bottom {
    position: fixed;
    right: 13px;
    bottom: 4%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 9999999;
}

.top-bottom.is-visible {
    opacity: 1;
    visibility: visible;
}

.starts {
    position: fixed;
    bottom: 50%;
    right: -135px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    z-index: 99999;
    transform: rotate(-90deg) translateY(-50%);
}

.starts.show {
    opacity: 1;
    visibility: visible;
}

.side-quote-btn a,
.side-quote-btn button {
    border-radius: 12px 12px 0 0;
    padding: 14px 40px;
}

.card-yellow {
    padding: 10px;
    border-radius: 10px;
    background-color: var(--gray-text);
}

.card-yellow img {
    border-radius: 10px;
    max-height: 230px;
    object-fit: cover;
}

.card-red {
    padding: 10px;
    border-radius: 10px;
    background-color: #272727;
    color: white;
}

.card-yellow img {
    border-radius: 10px;
    max-height: 450px !important;
    object-fit: cover;
}


/* Base card styling */

.card-yellow,
.card-red {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
    z-index: 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}


/* The PCB SVG Layer */

.card-yellow::before,
.card-red::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cg stroke='%23EEEEEE' stroke-width='1.5' fill='none' opacity='0.8'%3E%3Crect x='170' y='170' width='60' height='60' rx='4' /%3E%3Cpath d='M200 170 V100 H150 L120 70 M200 230 V300 H250 L280 330 M170 200 H100 V150 L70 120 M230 200 H300 V250 L330 280 M180 170 L140 130 V50 M220 170 L260 130 H350 M180 230 L140 270 H50 M220 230 L260 270 V350' /%3E%3Ccircle cx='120' cy='70' r='3' fill='%23272727'/%3E%3Ccircle cx='280' cy='330' r='3' fill='%23272727'/%3E%3Ccircle cx='70' cy='120' r='3' fill='%23272727'/%3E%3Ccircle cx='330' cy='280' r='3' fill='%23272727'/%3E%3C/g%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: pcbPulse 5s infinite ease-in-out;
}


/* Updated Blinking Keyframes for Black/White */

@keyframes pcbPulse {
    0%,
    100% {
        opacity: 0.2;
        filter: brightness(0.8) drop-shadow(0 0 0px #272727);
    }
    50% {
        opacity: 1;
        filter: brightness(1.2) drop-shadow(0 0 12px #9b9b9b);
    }
}

.bg-ground {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(40deg, #272727, #18e9f8);
    padding: 20px;
    margin: 20px;
    border-radius: 20px;
}

.ticket-icon {
    padding: 100px 0;
    position: relative;
}

.ticket-icon .sub-headers {
    position: sticky;
    top: 120px;
}


/* Important */

.ticket-icon .row {
    display: flex;
    align-items: flex-start;
}


/* LEFT COLUMN */

.ticket-icon .col:first-child {
    position: relative;
}

.ticket-icon,
.ticket-icon .container,
.ticket-icon .row {
    overflow: auto !important;
}

.ticket-icon .details-list {
    max-height: 500px;
    /* or 100vh */
    overflow-y: auto;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    margin-bottom: 30px;
}

.details-list li a,
.details-list li .indivisual-wrapper {
    display: flex;
    gap: 20px;
    text-decoration: none;
    color: #222;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.details-list li a:hover,
.details-list li .indivisual-wrapper:hover {
    background: #f5f5f5;
}


/* Icon */

.details-list .icon {
    font-size: 28px;
    color: #20c997;
    min-width: 45px;
}


/* Text */

.details-list h4 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
}

.details-list p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.maintainence .row,
.special-service .row {
    align-items: center;
}

.special-service .single-service:hover {
    rotate: 4deg;
    transition: 0.62s;
}

.features-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    background-color: #595959;
    padding: 15px;
    border-radius: 10px;
    transition: 0.8s;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.features-wrapper img {
    height: 80px;
    width: 80px;
    display: inline-block;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 50%;
}

.feat-image {
    flex-shrink: 0;
}

.features-wrapper .headings h4 {
    font-size: 18px;
    font-weight: 700;
}

.features-wrapper .headings p {
    font-size: 14px;
}

.features-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #00000080;
    transition: width 0.5s ease;
    z-index: -1;
}

.features-wrapper::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 0;
    width: 6px;
    height: 50%;
    background: #18e9f8;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.features-wrapper:hover::before {
    width: 100%;
}

.features-wrapper:hover::after {
    transform: translateX(0);
}

.features-wrapper>* {
    position: relative;
    z-index: 1;
}

.tech {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    /* height: 65px; */
    border-radius: 50px;
    box-shadow: 0 0 5px var(--gray-text);
    padding: 15px 20px;
    margin-top: 10px;
}

.tech-wrappers-img img {
    display: block;
    width: 35px;
    height: 35px;
}

.tech-wrappers-p p {
    margin: 0;
    /* VERY IMPORTANT */
    font-size: 18px;
    font-weight: 600;
}

.feat-image img {
    border-radius: 50%;
    height: 80px;
    width: 80px;
    display: block;
}

#post_content ul li {
    font-size: 15px;
    font-weight: 600;
}

.background-wrapper {
    background-color: var(--gray-text);
    padding: 10px;
    border-radius: 10px;
    color: var(--next-color);
}

.force-wrapper {
    background-image: url(../img/bg1.jpg);
    padding: 20px;
    max-height: 500px;
    color: var(--next-color);
    margin-bottom: 20px;
    border-radius: 10px;
}

.heateor_sss_sharing_container.heateor_sss_vertical_sharing.heateor_sss_bottom_sharing {
    position: fixed;
    top: 50% !important;
    left: 0 !important;
    z-index: 9999;
}

.calemder {
    display: flex;
    align-items: center;
}

.main-banner {
    background-image: url(../img/bg1.jpg);
    background-size: cover;
}

.timeline-wrapper {
    display: flex;
    gap: 60px;
    max-width: 900px;
}


/* Scrollable Navigation Area */

.timeline-nav {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 26px;
    max-height: 500px;
    /* Limits height if you have many years */
    overflow-y: auto;
}


/* The Vertical Line */

.timeline-nav::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 5px;
    bottom: 0;
    width: 2px;
    background-color: #ccc;
    z-index: 0;
}

.newnaV .nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    z-index: 1;
    color: #888;
    font-weight: bold;
    transition: 0.3s;
    margin-bottom: 28px;
}

.dot {
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-left: -20px;
    position: relative;
    z-index: 1000;
}

.nav-item-new {
    display: flex;
    align-items: center;
    gap: 11px;
}


/* Active State */

.newnaV .nav-item.active {
    color: var(--gray-text);
}

.nav-item.active .dot {
    background-color: #1acde8;
    border-color: #1acde8;
}


/* Content Area */

.timeline-content {
    flex: 1;
    padding-top: 5px;
}

.timeline-content h1 {
    font-size: 48px;
    margin: 0 0 20px 0;
}

.timeline-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}


/* Initial state: pushed down and invisible */

#display-year,
#display-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}


/* Slide up state: back to original position and visible */

.active-slide {
    opacity: 1 !important;
    transform: translateY(0) !important;
}


/* Ensure the first item is visible on page load */

#display-year.active-slide,
#display-text.active-slide {
    opacity: 1;
    transform: translateY(0);
}

.decades .row {
    align-items: center;
}

.decades img {
    border-radius: 25px;
}


/* Container Spacing */

.row.gallery-grid {
    gap: 15px 0;
    /* Vertical gap between rows */
}


/* Image Styling to match the photo */

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images don't stretch */
    border-radius: 20px;
    /* Large rounded corners as seen in image */
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    /* Subtle hover effect */
}


/* Custom Blue Stat Box (13,000 sq. ft.) */

.stat-card {
    background-color: #e6f2ff;
    /* Light blue background */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    height: 100%;
    text-align: center;
}

.stat-card span {
    font-size: 1.2rem;
    color: #333;
}

.stat-card h3 {
    font-weight: 800;
    font-size: 1.8rem;
    margin-top: 5px;
    color: #000;
}


/* Custom Background for the "Our Gallery" section */

.bg-white--34 {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 15px;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.grid-top,
.grid-bottom {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}


/* Width Control */

.image01 {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/409269/food-drink-01.jpg');
    flex: 1;
    display: flex;
    border-radius: 10px;
}

.image02 {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/409269/food-drink-02.jpg');
    flex: 1;
    border-radius: 10px;
}

.image03 {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/409269/food-drink-03.jpg');
    flex: 2;
    border-radius: 10px;
}

.image04 {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/409269/food-drink-04.jpg');
    flex: 1;
    border-radius: 10px;
}

.image05 {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/409269/food-drink-05.jpg');
    flex: 2;
    border-radius: 10px;
}

.image06 {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/409269/food-drink-06.jpg');
    flex: 2;
    border-radius: 10px;
}

.image07 {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/409269/food-drink-07.jpg');
    flex: 1;
    border-radius: 10px;
}

.image08 {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/409269/food-drink-08.jpg');
    flex: 3;
    border-radius: 10px;
}

.image09 {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/409269/food-drink-09.jpg');
    flex: 1;
    border-radius: 10px;
}

.image-row div {
    margin: 4px;
    height: 240px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.image-row {
    display: flex;
    width: 100%;
}

.gallery .row {
    align-items: center;
}

.meetTech {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.meetTech a {
    display: inline-block;
    width: 180px;
    text-align: center;
    padding: 10px 15px;
}

.fluid {
    border: 1px solid var(--gray-text);
    border-radius: 30px;
}

.fluid-1 {
    border: 1px solid #00b4d8;
    border-radius: 30px;
}

.fluid-3 {
    border: 1px solid var(--accent-gold);
    border-radius: 30px;
}

.fluid-2 {
    border: 1px solid var(--next-color);
    border-radius: 30px;
}

.blogs-img {
    flex-shrink: 0;
}

.blogs-img img {
    height: 60px;
    width: 60px;
}

.grecaptcha-badge {
    display: none !important;
}

.popularity h6 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.studies .owl-carousel .owl-nav.disabled {
    display: block !important;
    text-align: right;
}

.studies .owl-carousel .owl-nav button.owl-next {
    background: #000;
    height: 38px;
    width: 38px;
    color: #fff;
    font-size: 25px;
    line-height: 25px;
    margin: 0 3px;
    font-weight: 600;
    border-radius: 40px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translatey(-50%);
}

.studies .owl-carousel .owl-nav button.owl-prev {
    background: #000;
    height: 38px;
    width: 38px;
    color: #fff;
    font-size: 25px;
    line-height: 25px;
    margin: 0 3px;
    font-weight: 600;
    border-radius: 40px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translatey(-50%);
}

.technology .owl-carousel .owl-nav button.owl-next {
    color: #000;
    height: 37px;
    width: 37px;
    background: #fff;
    font-size: 25px;
    line-height: 25px;
    margin: 0 3px;
    font-weight: 600;
    border-radius: 40px;
    position: absolute;
    right: -55px;
    top: 50%;
    transform: translatey(-50%);
}

.technology .owl-carousel .owl-nav button.owl-prev {
    color: #000;
    height: 37px;
    width: 37px;
    background: #fff;
    font-size: 25px;
    line-height: 25px;
    margin: 0 3px;
    font-weight: 600;
    border-radius: 40px;
    position: absolute;
    left: -55px;
    top: 50%;
    transform: translatey(-50%);
}

.technology .owl-carousel .owl-nav.disabled {
    display: block !important;
    text-align: center;
}

.client-section .owl-carousel .owl-nav.disabled {
    display: none;
}

.clients .owl-carousel .owl-nav.disabled {
    display: block !important;
    text-align: center;
}

.clients .owl-carousel .owl-nav button.owl-next {
    color: #000;
    height: 38px;
    width: 38px;
    background: #fff;
    font-size: 25px;
    line-height: 25px;
    margin: 0 3px;
    font-weight: 600;
    border-radius: 40px;
    position: absolute;
    right: -55px;
    top: 50%;
    transform: translatey(-50%);
}

.clients .owl-carousel .owl-nav button.owl-prev {
    color: #000;
    height: 37px;
    width: 37px;
    background: #fff;
    font-size: 25px;
    line-height: 25px;
    margin: 0 3px;
    font-weight: 600;
    border-radius: 40px;
    position: absolute;
    left: -55px;
    top: 50%;
    transform: translatey(-50%);
}

.owl-carousel .owl-nav button span {
    margin-top: -5px;
    display: block;
}

.navbar .nav-item i {
    font-size: 15px;
    margin: 0px 0 0 5px;
}

.blogs-area a strong {
    color: #057fb8;
    font-style: italic;
}

.blogs-area #post_content .headings a {
    color: #057fb8;
    font-style: italic;
    font-weight: 600;
}

.blogs-area #post_content .headings a span {
    color: #057fb8;
    font-style: italic;
    font-weight: 600;
}

.site-footer .social-wrapper:hover {
    color: #0cc9ea;
}

.site-footer .btn-subscribe {
    background: #000;
}

.blogs-area .social-icon {
    border: 1px solid #bfbebe;
}

.blogs-area .social-icon:hover {
    border: 1px solid #0cc9ea;
}

.blogs-area .social-icon:hover {
    color: #0cc9ea;
}

.blogs-area .social-wrapper {
    margin-top: 30px;
}

.bg-blue {
    background-color: #0ccaeb !important;
}

.nav-btn {
    background: #000;
    color: #fff;
    font-weight: 500;
}

.nav-btn:hover {
    background: #fff;
    color: #00b4d8;
}

.studies .row {
    align-items: center;
}


/* .navbar .dropdown-menu {
    margin-top: 5px;
} */

.decades .nav-item {
    display: flex;
    gap: 6px;
    align-items: center;
    cursor: pointer;
}

.hero-banner {
    padding-top: 64px;
}

.clients .stars i {
    color: #0ccaeb;
}

.clients .item:hover .stars i {
    color: #fff;
}

.clients .item:hover .icon i {
    color: #0ccaeb;
}

.company-name {
    line-height: 52px !important;
}

.navbar-nav .nav-link.active {
    color: #fff !important;
}

.banner {
    padding-top: 85px;
}

.clients .item .read-more-review {
    color: #0ccaeb;
    text-decoration: underline;
    cursor: pointer;
}

.clients .item:hover .read-more-review {
    color: #fff;
}

.blue-border .swal2-icon-show {
    border: 1px solid #0ccaeb;
}

.blue-border .swal2-icon-content i {
    color: #0ccaeb;
}

.service-page-single-service {
    height: 100%;
    max-height: 100% !important;
}


/* ---------404 page start----------- */

.mdl-sec-404 {
    padding: 65px 0 70px;
}

.cnt-404-wrapper {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.h-404 {
    font-weight: 700;
    font-size: 35px;
    color: #000;
    text-transform: capitalize;
    letter-spacing: 1px;
    /* margin-top: 55px; */
    line-height: 50px;
}

.h-404 span {
    color: #00b4d8;
    font-size: 75px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-right: 7px;
}

.para-404 {
    font-weight: 500;
    color: #000;
    font-size: 16px;
    max-width: 600px;
    margin: 35px auto 45px;
}

.mdl-sec-404 .blue-btn {
    background-color: #000;
    font-size: 18px;
    border-radius: 40px;
    padding: 14px 60px;
    font-family: var(--primary-font);
    color: var(--next-color);
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    text-decoration: none;
    transition: 0.5s;
    border: none;
    cursor: pointer;
    line-height: normal;
    font-weight: 500;
    text-transform: capitalize;
}

.mdl-sec-404 .blue-btn:hover {
    background-color: #0ccaeb;
}


/* ---------404 page end----------- */


/* -------comming soon page start-------- */

.csoon-mdlsec {
    padding: 150px 0 70px;
}

.csoon-wrapper {
    max-width: 1000px;
    margin: auto;
    padding: 0 15px;
}

.csoon-img-wrapper {
    max-width: 400px;
    margin: auto;
}

.csoon-h {
    font-weight: 700;
    color: #0ccaeb;
    font-size: 50px;
    margin: 0 0 20px;
    line-height: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.csoon-para {
    font-weight: 500;
    color: #595858;
    font-size: 16px;
    margin: 0 0 30px;
    text-transform: capitalize;
    line-height: 25px;
}

.csoon-frm input {
    height: 50px;
    border: 1px solid #e0e0e0;
    padding: 0 15px;
    width: 100%;
    max-width: 450px;
    border-radius: 40px;
    margin-bottom: 15px;
}

.csoon-frm button {
    background-color: #000;
    font-size: 18px;
    border-radius: 40px;
    padding: 14px 60px;
    font-family: var(--primary-font);
    color: var(--next-color);
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    text-decoration: none;
    transition: 0.5s;
    border: none;
    cursor: pointer;
    line-height: normal;
    font-weight: 500;
    text-transform: capitalize;
    width: 100%;
    max-width: 450px;
}

.csoon-frm button:hover {
    background-color: #0ccaeb;
}

.csoon-row {
    align-items: center;
}


/* -------comming soon page end-------- */

.service-steps li {
    font-size: 16px;
    color: #4f4f4f;
    font-weight: 500;
    font-size: 16px;
    color: #4f4f4f;
    font-weight: 500;
    padding: 20px;
    box-shadow: 0 0 20px #e0e0e0;
    border-radius: 20px;
    border-left: 5px solid #0ccaeb;
}

.why-opt-section {
    padding: 0 0 80px;
}

.why-opt-section .sub-container {
    padding: 0 23px !important;
}

.why-opt-section .sub-headers h2 {
    margin-bottom: 30px;
}

.why-opt-section .why-opt-strong {
    display: block;
    margin-bottom: 10px;
}

.tech-wrappers-img i {
    font-size: 30px;
    vertical-align: top;
}

.service-details .row {
    justify-content: center;
}

#why-opt-section-3 .row {
    flex-direction: row-reverse;
}

.service-steps img {
    border-radius: 20px;
}

.multiple-content-section .sub-headers h2 {
    /* font-size: 30px; */
    font-size: 26px;
    color: #0499b3;
}

.service-main-body-wrapper-17 .service-approch-section .sub-headers h2 {
    text-align: center;
}

.service-main-body-wrapper-17 .service-approch-section .sub-headers p {
    text-align: center;
}

.multiple-content-section .headings ul li {
    font-weight: 500;
    font-size: 16px;
}

.multiple-content-section .row {
    padding: 35px 30px;
    box-shadow: 0 0 20px #e0e0e0;
    border-radius: 20px;
    justify-content: center;
    align-items: start;
    margin-bottom: 40px;
}

.service-steps .row {
    align-items: start;
}

.multiple-content-section-6 {
    padding: 70px 0 40px;
}

.service-main-wrapper .specialportfolio .sub-headers h2 {
    text-align: center;
}

.service-main-body-wrapper-6 .service-steps {
    padding: 0 0 80px;
}

.service-main-wrapper .category {
    justify-content: center;
}

.service-main-body-wrapper-1 .multiple-content-section {
    padding: 70px 0 30px;
}

.service-main-wrapper .multiple-content-section {
    padding: 70px 0 30px;
}

.service-main-body-wrapper-17 .multiple-content-section {
    padding: 0 0 70px;
}

.service-main-body-wrapper-11 #services2_wrapper .row {
    max-width: 1200px;
    margin: auto;
}

.service-main-body-wrapper-11 #services2 .left_box {
    padding: 0 50px 70px;
}

.blogs-area #post_content h6 {
    font-size: 16px;
}

.blog-pagination .page-link {
    color: #0ccaeb !important;
}

.blog-pagination .page-item.active .page-link {
    z-index: 3 !important;
    color: #fff !important;
    background-color: #0ccaeb !important;
    border-color: #0ccaeb !important;
}

.blog-date {
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    display: inline-block;
    background: #0ccaeb;
    padding: 5px 20px;
    border-radius: 30px;
}

.blog-author {
    font-weight: 600;
    color: #fff;
    font-size: 20px;
    display: block;
    margin: 10px 0 20px;
}

.nav-item {
    padding: 20px 0px;
    /* padding-bottom: 30px; */
}

.layer-3-ul {
    position: absolute !important;
}

.navbar .dropdown-toggle-btn {
    position: absolute;
    right: 0;
    top: 33px;
    transform: translateY(-50%);
    color: #fff;
    background: transparent;
    border: 0;
    display: none;
}

.single-srvc-healthcare {
    max-height: 100%;
}


/* --------------career page start--------------- */

.open-position .rated-span {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    padding: 7px 20px;
    background: #0ccaeb;
    border-radius: 10px;
    text-transform: capitalize;
    display: inline-block;
    margin: 0 0 25px;
}

.open-position .open-p-form-btn {
    text-align: center;
    margin: 30px 0 0;
}

.open-position .sub-header-h3 {
    font-weight: 700;
    color: #000;
    font-size: 35px;
    margin: 0 0 20px;
    text-transform: capitalize;
    text-align: center;
}

.open-position .search-bar {
    height: 55px;
    width: 100%;
    border: none;
    border-bottom: 2px solid #cdcaca;
    padding: 5px 25px;
}

.open-position .search-bar::placeholder {
    font-size: 18px;
    color: #000;
}

.open-position .open-p-frm select {
    height: 55px;
}

.open-position .open-p-frm .select-wrapper {
    margin: 20px 0;
}

.open-position .open-p-frm .select-wrapper label {
    font-weight: 600;
    color: #6e6b6b;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.open-position .open-p-frm .select-wrapper option {
    color: #7e807e;
}

.open-position .opem-position-row2 {
    margin: 50px 0 0;
    padding: 50px 30px;
    background: #d5d5d540;
    border-radius: 10px;
}

.open-position .position-col {
    padding: 35px 40px;
    background: #fff;
    border-radius: 10px;
    margin: 30px 0 0;
    position: relative;
}

.para-comn {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #444448;
}

.open-position .position-col span {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin: 0 0 20px;
    text-transform: capitalize;
}

.open-position .position-col .position-subh {
    font-size: 25px;
    color: #000;
    font-weight: 700;
    margin: 0 0 15px;
    text-transform: capitalize;
}

.open-position .position-col a {
    font-size: 16px;
    color: #0ccaeb;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: underline;
}

.key-f {
    background: #f3f8ff;
}

.key-f .key-f-sub-headers {
    text-align: center;
}

.key-f .img-wrapper .key-f-img {
    width: 100%;
    max-width: 500px;
}

.key-f .txt-wrapper {
    padding: 20px 30px;
    background: #fff;
    border-radius: 7px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
}

.key-f .txt-wrapper .img-wrapper {
    max-width: 100px;
    height: auto;
    overflow: hidden;
}

.key-f .txt-wrapper .img-wrapper img {
    max-width: 100%;
}

.retail-key-capability .retail-key-col-m {
    margin-top: 80px;
}

.key-f .txt-wrapper span {
    color: #0499b3;
    font-weight: 700;
    font-size: 38px;
    display: block;
    margin: 0 0 5px;
}

.key-f .txt-wrapper p {
    color: #5a5a5a;
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    margin: 0;
    line-height: 1.6;
}

.benefit .benefits-sub-headers {
    text-align: center;
}

.benefit .benefit-box {
    padding: 20px 25px 25px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px #e0e0e0;
    margin: 30px 0;
}

.benefit .benefit-box p {
    color: #444040;
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    margin: 0;
    line-height: 1.6;
}

.benefit .benefit-box i {
    color: #0ccaeb;
    font-size: 25px;
}

.benefit .benefit-box .iconbox {
    height: 60px;
    width: 60px;
    text-align: center;
    background: #e4f4f7;
    line-height: 70px;
    text-align: center;
    border-radius: 5px;
    margin: -50px 0 30px;
}

.benefit .benefit-btn {
    margin: 30px auto 0;
    text-align: center;
}

.reward-sec {
    padding: 0 0 80px;
}

.reward-sec .reward-sec-row {
    max-width: 830px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    padding: 20px 30px;
    border: 3px dashed #0ccaeb;
    box-shadow: 0 0 10px #e0e0e0;
    align-items: center;
    text-align: center;
}

.reward-sec .sub-h {
    font-weight: 700;
    color: #000;
    font-size: 35px;
    line-height: 50px;
    text-transform: capitalize;
    margin: 0 0 15px;
}

.reward-sec img {
    max-width: 200px;
}


/* --------------career page end--------------- */


/* ----mobile comn footer--- */

.site-footer-mob {
    background: #003943;
    color: var(--next-color);
    padding-top: 80px;
    padding-bottom: 0;
    font-family: sans-serif;
    display: none;
}

.site-footer-mob .accordion-item {
    background: transparent;
}

.site-footer-mob .footer-logo {
    margin-bottom: 0;
}

.site-footer-mob .accordion-button::after {
    color: #fff;
}

.site-footer-mob .accordion-button {
    color: #fff;
}


/* ----mobile comn footer--- */


/* ------------retail page start-------------- */

.retail-postbnr .retail-postbnr-img-wrapper img {
    border-radius: 20px;
}

.retail-postbnr .row {
    align-items: start;
}

.retail-postbnr .ul-h {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
    padding-top: 0;
}

.retail-postbnr ul li {
    font-weight: 600;
    color: #1d1d1d;
    font-size: 18px;
    margin: 10px 0;
}

.retail-postbnr ul li span {
    display: inline-block;
    margin-right: 10px;
    color: #057fb8;
    font-size: 20px;
}

.retail-postbnr ul {
    margin-bottom: 20px;
}

.s-development-service {
    padding: 0 0 100px;
}

.security-compliance {
    background: url(../img/security-bg.jpg)center center no-repeat;
    /* background-attachment: fixed; */
    background-size: cover;
}

.security-compliance .sub-headers {
    color: #fff;
}

.security-compliance .sub-headers p {
    margin: 0;
    color: #fff;
}

.security-compliance .sub-headers h2 {
    color: #fff;
}

.security-compliance li {
    margin: 10px 0;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}

.security-compliance li span {
    color: #00b4d8;
    margin-right: 12px;
    display: inline-block;
}

.tech-wrappers-p .technologies-desc {
    font-weight: 400;
    color: #222222;
    font-size: 16px;
    margin: 5px 0 0;
    text-transform: capitalize;
}

.retail-key-capability .txt-wrapper span {
    font-size: 20px;
}

.we-support .sub-headers h2 {
    text-align: center;
    max-width: 600px;
    margin: auto;
}

.we-support .we-spprt-box {
    padding: 30px 20px;
    box-shadow: 0 0 10px #e0e0e0;
    border-radius: 10px;
    margin: 30px 0 0;
}

.we-support .we-spprt-box h4 {
    font-weight: 700;
    font-size: 22px;
    color: #00b4d8;
    line-height: 30px;
    margin: 0 0 20px;
}

.we-support .we-spprt-box li {
    font-weight: 600;
    color: #5b5b5b;
    font-size: 16px;
    text-transform: capitalize;
    margin: 10px 0;
}

.we-support .we-spprt-box li i {
    font-size: 15px;
    color: #00b4d8;
    margin-right: 7px;
    display: inline-block;
}

.retail-why-chs .ul-wrapper-flex {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.retail-why-chs li {
    font-weight: 600;
    color: #1d1d1d;
    font-size: 16px;
    margin: 10px 0;
    position: relative;
    padding-left: 25px;
}

.retail-why-chs li::before {
    content: '\f058';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 0;
    color: #0499b3;
    font-size: 16px;
}

.retail-why-chs .ul-h {
    font-weight: 700;
    color: #000;
    font-size: 30px;
    margin: 0 0 25px;
}

.retail-why-chs p {
    margin: 0 0 10px;
    padding: 0;
}

.retail-why-chs img {
    border-radius: 10px;
}

.retail-why-chs .row {
    align-items: start;
}

.retail-why-chs .black-btn {
    margin-top: 20px;
}

.retail-why-chs {
    padding: 0;
}


/* ------------retail page end-------------- */


/* -----------why us start---------- */

.why-us-postbnr {
    padding: 80px 0 0;
}

.why-us-postbnr .ul-h {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px;
    padding-top: 0;
}

.wwed-sec {
    padding: 80px 0 0;
}

.wwed-sec .sub-headers p {
    padding: 0;
    margin: 20px 0;
}

.wwed-sec p.ul-h {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px;
    padding: 0;
}

.wwed-sec .wwed-box {
    padding: 30px;
    box-shadow: 0 0 10px #e0e0e0;
    border-radius: 7px;
    margin: 0 0 30px;
    position: relative;
    text-align: left;
}

.wwed-sec .wwed-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #0499b3;
    height: 50%;
    width: 7px;
}

.wwed-sec .wwed-box h4 {
    font-weight: 600;
    color: #0499b3;
    font-size: 20px;
    text-transform: capitalize;
    margin: 0 0 10px;
}

.wwed-sec .wwed-box p {
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

.wwed-sec .row {
    align-items: center;
}


/* -----------why us end---------- */

.case-study-result-section .result-box {
    padding: 30px;
    box-shadow: 0 0 20px #e0e0e0;
    border-radius: 10px;
    margin: 10px 0;
    background: #fff;
    display: flex;
    gap: 10px;
}

.background-section .background-wrapper {
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 20px #e0e0e0;
    border-radius: 10px;
}

.background-section .background-wrapper p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    margin: 20px 0 0;
}

.case-study-result-section .result-box span {
    font-size: 24px;
    font-weight: 700;
    color: #0499b3;
    border: 1px solid #0499b3;
    border-radius: 100%;
    display: inline-block;
    height: 50px;
    width: 100%;
    max-width: 50px;
    min-width: 50px;
    text-align: center;
    line-height: 47px;
    margin: 0 10px 0
}

.case-study-result-section h2 {
    margin-bottom: 30px;
}

.increase-percentage-section .label {
    color: #fbf7f7;
}

.increase-percentage-section .counter {
    font-size: 60px;
}

.increase-percentage-section .stat-container {
    width: 100%;
    text-align: center;
    border-right: 1px solid #626262;
}

.increase-percentage-section .stat-container:last-child {
    border: none;
}

.conclution-credit-section .case-study-conclution-col {
    padding: 30px;
    box-shadow: 0 0 20px #e0e0e0;
    border-radius: 20px;
}

.conclution-credit-section .creadits-wrapper {
    max-width: 380px;
    background: #c7eef5;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
}

.challenges-and-strategies-section .headings h4 {
    margin-top: 0;
}

.project-video-preview-section .portImage {
    height: 100%;
    max-height: 556px;
    overflow: hidden;
    border-radius: 10px;
}

.project-video-preview-section .specialportfolio {
    padding: 50px 0;
}

.banner .desktop-home-banner {
    height: 100%;
}


/* -------privacy page----- */

.privacy-policy-section {
    padding: 70px 0;
}

.privacy-policy-section h2 {
    font-weight: 700;
    color: #000;
    font-size: 20px;
    margin: 25px 0 12px;
}

.privacy-policy-section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 10px;
}

.privacy-policy-section p a {
    color: #08a9c5;
    font-weight: 600;
    font-style: italic;
}

.privacy-policy-section .privacy-content {
    padding: 50px;
    border: 2px solid #e1e1e1;
    border-radius: 20px;
}


/* -------privacy page----- */

.our-services-section-homepage {
    padding: 0 0 80px;
}

.service-location-wrapper-section .service-details .sub-headers h2 {
    text-align: center;
}

.service-location-wrapper-section .service-details .sub-headers p {
    text-align: center;
}

.service-location-wrapper-section .service-details .main-box {
    width: auto;
    border-radius: 20px;
    margin: 50px auto 0;
}

.service-location-wrapper-section small {
    display: block;
    text-align: center;
}

.service-main-body-wrapper-1 .service-technologies-section {
    padding: 0;
}

.service-main-body-wrapper-1 .service-technologies-section .main-box {
    margin-bottom: 0;
}

.service-main-body-wrapper-2 .service-technologies-section {
    padding-top: 0;
}

.service-main-body-wrapper-2 .service-technologies-section .main-box {
    margin-bottom: 0;
}

.service-location-wrapper-section-15 .services-blurbs {
    padding: 80px 0 0;
}

.service-location-wrapper-section-15 .why-choose .row:first-child {
    padding: 0 0 50px;
}

.service-location-wrapper-section .why-choose .service-location-single-content li {
    text-align: left;
}

.service-location-wrapper-section .why-choose .row {
    align-items: start;
}

.service-location-wrapper-section .services-blurbs {
    padding: 80px 0 0;
}

.service-location-wrapper-section-26 .why-choose .headings {
    margin-bottom: 35px;
}

.service-location-wrapper-section-26 .why-choose-section-26.pt-0 {
    padding-top: 80px !important;
}

.digital-growth {
    background: #fff;
    border: none;
    border-radius: 0;
}

.why-choose-page-section img {
    float: left;
    width: 48%;
    margin: 0 30px 20px 0;
    border-radius: 30px;
}

.why-choose-page-section .clear {
    clear: both;
}

.why-choose-page-section p {
    color: rgb(90, 90, 90);
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.6;
    margin-bottom: 20px;
}

.health-why-chs {
    padding: 0 0 80px;
}

.healthcare-casestudy {
    background: #fff;
}

.special-service-healthcare .single-srvc-healthcare {
    /* height: 100% !important; */
    min-height: 584px !important;
    margin: 45px 0;
}

.special-service-healthcare .row {
    align-items: start;
}

.special-service-healthcare .sub-headers {
    margin: 45px 0;
}

.special-service-healthcare .sub-headers p {
    margin-left: 0;
}

.special-service-healthcare {
    padding: 50px 0 80px;
}

.health_care_capabilities {
    padding: 20px 0 80px;
    background: #fff;
}

.health_care_capabilities .sub-headers h2 {
    max-width: 900px;
    margin: auto;
}

.health_care_capabilities .txt-wrapper {
    box-shadow: 0 0 10px #e0e0e0;
    margin: 30px 0;
}

.healthcare_why_choose_digitex {
    padding: 80px 0 0;
}

.construction_second_section {
    padding: 0;
}

.construction_why_chs {
    padding: 0;
}

.construction_we_support_card_section .row {
    justify-content: center;
}

.healthcare_iso_section {
    padding: 40px 0 0;
}

.construction_iso_section {
    padding: 40px 0 0;
}

.company-profile-why-opt {
    padding: 80px 0 50px;
}

.company-profile-our-story {
    padding: 80px 0 50px;
}

.why_us_iso_section {
    padding: 50px 0 80px;
}

.education_why_choose_digitex {
    padding: 0 0 50px;
}

.education_iso_section {
    padding: 80px 0 0;
}

.retail-casestudy {
    background: #fff;
    padding: 0 0 80px;
}

.retail_after_technology_section {
    padding: 0;
}

.travel_after_technology_section {
    padding: 0;
}

.manufacturing_after_banner_section {
    padding: 80px 0 0;
}

.manufacturing_company_highlights {
    padding: 80px 0;
}

.manufacturing_company_highlights .row {
    flex-direction: row-reverse;
}

.manufacturing_iso_section {
    padding: 0;
}

.entertaintment_after_banner_section {
    padding: 80px 0 0;
}

.entertaintment_iso_section {
    padding: 40px 0 0;
}

.entertaintment_iso_section {
    padding: 0;
}

.entertaintment_company_highlights {
    padding: 80px 0;
}

.our-office-overlay {
    background: #0000005e;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.our-team-page-section {
    padding: 80px 0 20px;
}

.our-team-page-section .team-wrapper {
    box-shadow: 0 0 10px #e0e0e0;
}

.our-team-page-section .team-wrapper:hover {
    background-color: #0ccaeb;
}

.our-team-page-section .team-wrapper .overlay-text {
    text-align: center;
}

.home-page-our-technology {
    background: #fff;
}


/* .home-page-case-study {
    background: #fff;
} */

.industries-parent-page {
    background: #fff;
    border: none;
    border-radius: 0;
}

.industries-parent-page .portfolio-card {
    height: auto;
    padding: 30px;
    border-radius: 10px;
    background: #1fabc314;
    margin: 20px 0;
}

.industries-parent-page .portfolio-card i {
    color: #0ccaeb;
    font-size: 45px;
    margin: 0 0 30px;
}

.industries-parent-page .portfolio-card h3 {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
}

.industries-parent-page .portfolio-card .btn-view {
    background: #0ccaeb;
    padding: 10px 40px;
    color: #fff;
}

.home-page-our-technology .what2 div.indivusual-home-card .ic1 i {
    color: #0ccaeb;
}

.home-page-our-technology .what2 div.indivusual-home-card:hover .ic1 i {
    color: #fff;
}

.key-f .txt-wrapper img {
    max-width: 80px;
}


/* -----career----- */

.career-bnr {
    background: url(../img/career-bnr.jpg) center center;
    background-size: cover;
    padding: 150px 0 100px;
    text-align: center;
}

.career-bnr .main-span {
    font-weight: 700;
    color: #000;
    font-size: 22px;
    text-transform: capitalize;
    display: inline-block;
    background: #72e8ff;
    padding: 10px 40px;
    position: relative;
    letter-spacing: 2px;
}

.career-bnr .main-span:before {
    content: "";
    display: block;
    position: absolute;
    top: -18px;
    left: 0;
    border-color: transparent transparent transparent #3acbe7;
    width: 0;
    height: 0;
    border-style: dashed solid dashed solid;
    border-width: 0 0 18px 40px;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.career-bnr .main-span:after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    border-color: transparent transparent transparent #3acbe7;
    width: 0;
    height: 0;
    border-style: dashed solid dashed solid;
    border-width: 0 0 18px 40px;
}

.career-bnr .fake-alert-p {
    font-weight: 700;
    color: #f3f3f3;
    font-size: 15px;
    text-decoration: underline;
    margin: 50px auto 30px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.career-bnr h1 {
    font-size: 55px;
    text-transform: capitalize;
    font-weight: 700;
    color: #fff;
    max-width: 1080px;
    margin: 0 auto 20px;
}

.career-bnr p.career_banner_subheading {
    text-align: center;
    max-width: 700px;
    color: #fff;
    margin: 0 auto 20px;
}

.career-bnr .c-rvwbox {
    /* background: #effdff; */
    background: #fff;
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    text-align: left;
    position: relative;
}

.career-bnr .c-rvwbox i {
    color: #0499b3;
}

.career-bnr .c-rvwbox .icon i {
    font-size: 28px;
    margin: 0 0 20px;
}

.career-bnr .c-rvwbox h3 {
    font-weight: 700;
    font-size: 22px;
}

.career-bnr .c-rvwbox .stars {
    margin: 0 0 10px;
}

.career-bnr a {
    font-size: 18px;
    text-transform: capitalize;
    display: inline-block;
    margin: 10px 0 15px;
}

.career-bnr .rating-span {
    font-weight: 700;
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    display: block;
}

.projects-main-wrapper .specialportfolio {
    background: #fff;
    color: #000;
    padding: 50px 0;
}

.projects-main-wrapper .black-btn a {
    background: #0ccaeb !important;
    color: #fff !important;
}

.projects-main-wrapper .black-btn a::before {
    background: #000;
}

.projects-main-wrapper .portImage {
    height: auto;
}

.open-position p {
    max-width: 1010px;
    margin: 0 auto 30px;
    font-weight: 400;
}

.active-tab {
    cursor: pointer;
    border-radius: 20px;
    background: #0ccaeb;
}

.companies_wrapper {
    margin-top: 40px;
    padding: 40px 30px;
    border: 2px solid #dbe5e7;
    border-radius: 20px;
    align-items: center;
}

.our_office_case_studies {
    background: #fff;
}