*,
body {
    outline: 0;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-os-font-smoothing: grayscale;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* color: #050748; */
    font-weight: 500;
}

ul {
    list-style: none;
}

a:hover {
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
}

a {
    text-decoration: auto;
}
body {
    background: #fff;
    font-family: "Poppins", "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden !important;
}

body.menu-open {
    overflow: hidden;
}

.quote-btn button {
    background: #ffffff;
    color: #0d6efd;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-btn button:hover {
    transform: translateY(-2px);
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 10px;
}

.dropdown-menu li a {
    color: #222 !important;
    padding: 10px 15px;
    display: block;
}

.dropdown-menu li a:hover {
    background: #f5f7ff;
    color: #0d6efd !important;
}

/* Sticky Header */
/* 
header.sticky {
    background: #ffffff;
    padding: 0 40px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

header.sticky .navigation > ul li a {
    color: #222222;
}

header.sticky .navigation > ul li a:hover {
    color: #0d6efd;
}

header.sticky .quote-btn button {
    background: #0d6efd;
    color: #ffffff;
}

header.sticky .dropdown-toggle {
    color: #222 !important;
} */

/* Mobile Menu Icon */

.menuToggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #ffffff;
}

header.sticky .menuToggle {
    color: #222;
}

/* Responsive */

@media (max-width: 991px) {
    /* header {
        padding: 0 20px;
    }

    .header {
        min-height: 75px;
    }

    .menuToggle {
        display: block;
    } */

    .navigation {
        position: fixed;
        top: 75px;
        width: 100%;
        height: calc(100vh - 75px);
        background: #ffffff;
        transition: 0.4s;
        overflow-y: auto;
    }

    .navigation.active {
        left: 0;
    }

    /* .navigation > ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0px 20px;
        gap: 0;
    }

    .navigation > ul li {
        width: 100%;
    }

    .navigation > ul li a {
        display: block;
        width: 100%;
        padding: 15px 0;
        color: #222;
        border-bottom: 1px solid #eee;
    } */

    .quote-btn {
        margin-top: 20px;
    }

    .quote-btn button {
        width: 100%;
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

    display: flex;
    flex-direction: column; /* Vertical items */
    align-items: flex-start;

    padding: 10px 0;
    margin: 0;
    list-style: none;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu,
.dropdown.open .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    display: block;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    color: #222 !important;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #f5f7ff;
    color: #0d6efd !important;
}

/* ======== */

.menuToggle {
    display: none;
    cursor: pointer;
    font-size: 28px;
    z-index: 1001;
}

@media (max-width: 991px) {
    /* .menuToggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
    } */

    /* header.sticky .menuToggle {
        color: #222;
        background: #f5f5f5;
    } */

    .logo {
        z-index: 1001;
    }

    /* .navigation {
        position: fixed;
        top: 0;
        right: -350px;
        width: 320px;
        max-width: 90%;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        transition: 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        padding: 75px 25px 30px;
    }

    .navigation.active {
        right: 0;
    }

    .navigation > ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    } */

    /* .navigation > ul > li {
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
    } */

    /* .navigation > ul > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        color: #222;
        font-size: 16px;
        font-weight: 600;
    } */

    .quote-btn {
        margin-top: 20px;
        border: none !important;
    }

    .quote-btn button {
        width: 100%;
        border-radius: 50px;
        padding: 14px;
        background: #0d6efd;
        color: #fff;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border-radius: 0;
        padding-left: 15px;
        background: #fafafa;
    }

    .dropdown.active .dropdown-menu,
    .dropdown.open .dropdown-menu,
    .dropdown.show .dropdown-menu,
    .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-menu li a {
        padding: 12px 15px;
        font-size: 14px;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 999;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* =========== */

/* button */
.button {
    border: none;
    background: none;
    color: inherit;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    padding: 11px 35px;
    border-radius: 50px;
    font-weight: 500;
}
/* .button--pipaluk.button--inverted {
    color: #fff;
    font-size: 14px;
}
.button--pipaluk::before,
.button--pipaluk::after {
    content: "";
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition:
        -webkit-transform 0.3s,
        background-color 0.3s;
    transition:
        transform 0.3s,
        background-color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
} */
/* .button--pipaluk::before {
    border: 2px solid #7986cb;
}
.button--pipaluk.button--inverted::before {
    border-color: #ff5600;
}
.button--pipaluk.button--inverted::after {
    background: #ff5600;
}
.button--pipaluk:hover::before {
    transform: scale3d(1, 1, 1);
}
.button--pipaluk::before,
.button--pipaluk:hover::after {
    transform: scale3d(0.8, 0.6, 1);
}
.button--pipaluk.button--inverted:hover::after {
    background-color: #ff5600;
} */
/* end button */

/* about-section */
.about-section {
    padding: 80px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}
.about-section-txt {
    text-align: center;
    /* margin-right: 60px; */
}
.about-section-txt h6 {
    color: #0268bc;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}
.about-section-txt h3 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-section-txt p {
    color: #000;
    font-size: 18px;
    line-height: 30px;
}
.about-section-img {
    margin: 0 15px;
    position: relative;
}
/* end about-section */

/* our-works */
.our-works {
    padding: 30px 0px;
}
/* .our-works h3 {
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 42px;
    margin-bottom: 6px;
} */
.our-works h3 span {
    color: #6156d8;
}
.our-works p {
    text-align: center;
    font-size: 20px;
}

/* .our-works-img {
    height: 325px;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

.our-works-img:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
} */

/* .our-works-btn {
    text-align: center;
    margin-top: 30px;
}

.our-works-btn img {
    width: 25px;
    margin-left: 3px;
} */

/* end our-works */

/* clients-say */
.clients-say {
    padding: 30px 0px;
}
.clients-say section {
    position: relative;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}
.clients-say h3 {
    /* font-family: "Playfair Display", serif; */
    text-align: center;
    font-size: 38px;
    margin-bottom: 5px;
}
.clients-say h3 span {
    color: #dd7a49;
}
.clients-say p {
    text-align: center;
    font-size: 20px;
}
.clients-say .slide-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-inline: auto;
}
.clients-say .swiper-container {
    position: relative;
}
.clients-say .swiper {
    width: 100%;
    padding: 50px 10px 15px 10px;
}
.clients-say .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    position: relative;
    border-radius: 12px;
    box-shadow: -1px 5px 15px #0000001f;
    padding: 40px 50px 30px;
    background: #fff;
}
.clients-say .swiper-slide h3 {
    color: #000;
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
    letter-spacing: 0.8px;
    position: relative;
}
.clients-say .swiper-slide p {
    color: #000;
    line-height: 1.6;
    font-size: 16px;
}
.clients-say .swiper-slide .author {
    grid-template-columns: 1fr;
    justify-items: center;
    bottom: -90px;
    width: 100%;
    text-align: center;
}
.clients-say .swiper-slide .author span {
    color: #111;
    display: block;
    margin: 15px 0 3px 0;
    font-weight: 600;
    font-size: 18px;
}
.clients-say .swiper-slide .author img {
    /* padding: 10px; */
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ff5600;
}
.clients-say .swiper-slide-active .author {
    display: grid;
    opacity: 1;
}
.clients-say .swiper-button-prev {
    background: #cbdde8;
    border-radius: 50%;
    top: 47%;
    left: -10px;
    width: 45px;
    height: 45px;
    box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.17);
}
.clients-say .swiper-button-prev::after {
    font-size: 1.4rem;
    content: "";
}
.clients-say .swiper-button-prev svg {
    width: 25px;
}
.clients-say .swiper-button-next {
    background: #cbdde8;
    border-radius: 50%;
    top: 47%;
    right: -10px;
    width: 50px;
    height: 50px;
    box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.17);
}
.clients-say .swiper-3d .swiper-slide-shadow-left,
.clients-say .swiper-3d .swiper-slide-shadow-right {
    background-image: unset;
}
.clients-say .swiper-button-next::after {
    font-size: 1.4rem;
    content: "";
}
.clients-say .swiper-button-prev img,
.clients-say .swiper-button-next img {
    width: 20px;
    height: fit-content;
}
.clients-say .swiper-button-prev,
.clients-say .swiper-button-next {
    display: none;
    z-index: 8;
}
@media (min-width: 760px) {
    .clients-say .swiper-button-prev,
    .clients-say .swiper-button-next {
        display: flex;
    }
}
.clients-say .morecontent span {
    display: none;
}
.clients-say .morelink {
    display: block;
    color: #ff5600;
    margin-top: 5px;
}
/* end clients-say */

/* our-blog */
.our-blog {
    padding: 60px 0px;
    background: linear-gradient(to bottom, #f6f6f6 0%, #f6f6f6 100%);
    position: relative;
    /* margin: 30px 0; */
}
.our-blog h3 {
    /* font-family: "Playfair Display", serif; */
    text-align: center;
    font-size: 38px;
    margin-bottom: 5px;
}
.our-blog h3 span {
    color: #6156d8;
}
.our-blog p {
    text-align: center;
    font-size: 20px;
}
.our-blog .swiper {
    padding-bottom: 50px;
}
.our-blog img {
    display: block;
    max-width: 100%;
    /* height: auto; */
    -o-object-fit: cover;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    /* border-radius: 0px; */
    /* height: 295px; */
}
.our-blog .section {
    margin: 0 auto;
    padding: 30px 0 10px;
}
.our-blog .swiper-button-next::after,
.our-blog .swiper-button-prev::after {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 1rem;
    width: 2rem;
    height: 2rem;
    opacity: 0.75;
    border-radius: 50%;
    color: #fff;
    background: #0c0f12;
}
.our-blog .swiper-slide1 {
    position: absolute;
    bottom: 0px;
    color: #fff;
    padding: 10px 20px 20px;
    border-radius: 0 0 20px 20px;
    background: linear-gradient(to bottom, #00000000 0%, #000000 100%);
}
.our-blog .swiper-slide1 p {
    font-size: 15px;
}
.our-blog .swiper-button-next,
.our-blog .swiper-button-prev {
    top: 45%;
}
.our-blog-btn {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 10px auto 0;
}
.our-blog-btn img {
    width: 20px;
    margin-left: 4px;
    height: fit-content;
}
.our-blog-btn .button {
    display: flex;
    align-items: center;
}
/* end our-blog */

/* faq-section */
.faq-section {
    /* padding: 30px 0px; */
}
.faq-section .faq-section-txt h3 {
    /* font-family: "Playfair Display", serif; */
    /* text-align: center; */
    font-size: 34px;
    margin-bottom: 5px;
}
.faq-section .faq-section-txt h3 span {
    color: #6156d8;
}
.faq-section .faq-section-txt p {
    font-size: 16px;
}
.faq-section-txt .contain {
    background-color: white;
    color: black;
    border-radius: 10px;
    box-shadow: 0 2px 5px 0 rgb(0, 0, 0, 0.25);
    margin: 18px 0;
}
.faq-section-txt .question {
    font-size: 15px;
    font-weight: 600;
    padding: 14px 35px 12px 15px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.faq-section-txt .question.active {
    color: #155ac2;
}
.faq-section-txt .question::after {
    content: "\002B";
    font-size: 26px;
    position: absolute;
    right: 15px;
    transition: 0.2s;
}
.faq-section-txt .question.active::after {
    transform: rotate(45deg);
}
.faq-section-txt .answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}
.faq-section-txt .answer {
    padding: 0 15px 15px;
    font-size: 14px;
}
.faq-section-img {
    /* width: 325px; */
    margin: 40px 30px 0;
}
/* end faq-section */

/* footer */
.footer-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 0;
    position: relative;
    z-index: 0;
}
.footer-section::after {
    content: "";
    /* background: url(../img/bg/footer-bg.png) no-repeat; */
    background: url(../img/bg/footer-bg.png) no-repeat center/100% 100%;
    position: absolute;
    right: 0px;
    bottom: 0px;
    /* background-size: 100% 100%; */
    height: 200px;
    width: 250px;
    z-index: -1;
    opacity: 0.06;
    mix-blend-mode: multiply;
}

.footer-section::before {
    content: "";
    /* background: url(../img/bg/footer-bg1.png) no-repeat; */
    background: url(../img/bg/footer-bg1.png) no-repeat center/100% 100%;
    position: absolute;
    left: 0px;
    bottom: 0px;
    /* background-size: 100% 100%; */
    height: 135px;
    width: 140px;
    z-index: -1;
    opacity: 0.08;
    mix-blend-mode: multiply;
}
.footer-section .footer-logo .img {
    width: 275px;
    margin-bottom: 20px;
}
.footer-section .footer-logo p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}
.footer-logo .social-links {
    line-height: 1;
    margin-top: 25px;
}
.footer-logo .social-links li:not(:last-child) {
    margin-right: 8px;
}
.footer-logo .social-links li a {
    display: block;
    font-size: 14px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    line-height: 28px;
    overflow: hidden;
    position: relative;
    width: 30px;
    height: 30px;
    text-align: center;
    text-decoration: none;
    background: rgba(255,255,255,0.08);
    transition: all 0.4s ease-in-out;
}
.footer-logo .social-links li a i {
    display: block;
    color: #134796;
    line-height: 30px;
}
.footer-logo .social-links li a:hover {
    color: #000;
}
.footer-logo .social-links li a:hover i {
    animation: toTopFromBottom 0.3s forwards;
}
@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
.footer-services h4 {
    margin-bottom: 25px;
    position: relative;
    color: #ffffff;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    width: fit-content;
}
.footer-services h4 span {
    content: "";
    background: rgba(255,255,255,0.25);
    height: 3px;
    width: 98%;
    display: block;
    position: absolute;
    bottom: -8px;
    border-radius: 4px;
}
.footer-services h4 span::after {
    content: "";
    background: #ef8024;
    height: 3px;
    width: 12px;
    display: block;
    position: absolute;
    bottom: 0;
    right: 10px;
    border-radius: 0;
    animation: linear infinite alternate;
    animation-name: run;
    animation-duration: 2000ms;
}

@-webkit-keyframes run {
    0% {
        left: 0;
        transform: translateX(0);
    }
    100% {
        left: 100%;
        transform: translateX(-100%);
    }
}
.footer-services ul li:not(:last-child) {
    margin-bottom: 10px;
}
.footer-services ul li a {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    transition: color 0.3s ease;
}
.footer-services ul li a:hover {
    color: #28a9e0;
}
.footer-section-address1 {
    display: flex;
    align-items: normal;
    margin-bottom: 12px;
}
.footer-section-address1:nth-child(3) {
    align-items: center;
    margin-bottom: 15px;
}
.footer-section-address1:nth-child(4) h6 {
    margin-bottom: 3px;
}
.footer-section-address1 img {
    width: 20px;
    margin-right: 12px;
    margin-top: 5px;
}
.footer-section-address1 h6 {
    font-size: 14px;
    margin: 0;
    line-height: 22px;
}
.footer-section-address1 h6 a {
    color: rgba(255,255,255,0.72);
    transition: color 0.3s ease;
}
.footer-section-address1 h6 a:hover {
    color: #28a9e0;
}
.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 20px;
    margin-top: 30px;
}
.footer-copyright p {
    color: rgba(255,255,255,0.55);
    text-align: center;
    font-size: 14px;
}
/* end footer */

/*  */
/* .banner-txt p {
        color: #fff;
        font-size: 20px;
    } */
.from-left-and-back {
    background: linear-gradient(to right, #fff 45%, #5afdfd 55%) 100% 50% / 220%
        100%;
    /* background-image: linear-gradient(to right, #fff 45%, #5AFDFD 55%);
    background-size: 220% 100%;
    background-position: 100% 50%; */
}
.from-left-and-back:hover {
    background-position: 0% 50%;
}
/*  */

/* banner-sliderss */
.banner-sliderss {
    padding-top: 50px;
}
.banner-sliderss .swiper {
    width: 100%;
}
.banner-sliderss .swiper-wrapper {
    transition-timing-function: linear !important;
}
.banner-sliderss .swiper-slide {
    height: auto !important;
}
.banner-sliderss .horizontal-ticker {
    display: flex;
    flex-direction: column;
    row-gap: 2vw;
}
.banner-sliderss .horizontal-ticker__slide {
    position: relative;
    width: fit-content;
    aspect-ratio: 300 / 50;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px 35px;
    background: #000;
    border: 1px solid #fff;
}
.banner-sliderss .horizontal-ticker__slide:nth-child(3n + 2) {
    background: #6156d8;
}
.banner-sliderss .horizontal-ticker__slide:nth-child(3n + 3) {
    background: #27aae2;
}
.banner-sliderss .horizontal-ticker__slide:nth-child(3n + 1) {
    background: #ef8120;
}
.banner-sliderss .horizontal-ticker__slide h4 {
    color: #ffff;
    font-size: 18px;
    text-align: center;
    letter-spacing: 1px;
    text-shadow:
        0px 4px 3px rgba(0, 0, 0, 0.4),
        0px 8px 13px rgba(0, 0, 0, 0.1),
        0px 18px 23px rgba(0, 0, 0, 0.1);
}
.banner-sliderss .horizontal-ticker__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease-out;
}
.banner-sliderss .horizontal-ticker__slide img:last-child {
    position: absolute;
    inset: 0;
    opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
    .banner-sliderss .horizontal-ticker__slide:hover img:last-child {
        opacity: 1;
    }
}

/* end banner-sliderss */

/* sticky-banner  */

.sticky-banner {
    /* nothing special needed here */
}

.scroll-section .wrapper {
    padding-top: 90px;
    position: relative;
    height: 90vh; /* cards fill the full viewport height */
}

.scroll-section .list {
    position: relative;
    height: 100%;
}

/* Every card stacks in the same spot */
.scroll-section .item {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    overflow: hidden;
    will-change: transform;
}

.scroll-section .item_content {
    position: relative;
    width: 100%;
    height: 100%;
}

.scroll-section .item_content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-banner .item-text {
    position: absolute;
    right: 25px;
    top: 35px;
    background: #ea7c21;
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    border: 1px;
    border-radius: 6px;
    text-shadow:
        0px 4px 3px rgba(0, 0, 0, 0.4),
        0px 8px 13px rgba(0, 0, 0, 0.1),
        0px 18px 23px rgba(0, 0, 0, 0.1);
}
.sticky-banner .item-text:hover {
    text-shadow: unset;
    border: 1px solid #fff;
    transition: all 0.3s ease-in-out;
}
/* end sticky-banner  */

/* development-sec */

/* end development-sec */

/* portfolio-sec */
.portfolio-sec {
    padding: 30px 0px 60px;
}
.portfolio-sec h3 {
    /* font-family: "Playfair Display", serif; */
    text-align: center;
    font-size: 38px;
    margin-bottom: 0px;
}
.portfolio-sec h3 span {
    color: #6156d8;
}
.portfolio-sec .wrapper {
    padding: 40px 0 0;
    overflow-x: hidden;
}
.portfolio-sec .my-slider {
    padding: 0 0px;
}
.portfolio-sec .slick-initialized .slick-slide {
    margin: 0 12px 0 12px;
    align-items: center;
    justify-content: center;
}
.portfolio-sec .slick-next,
.portfolio-sec .slick-prev {
    z-index: 5;
}
.portfolio-sec .slick-next {
    right: 15px;
}
.portfolio-sec .slick-prev {
    left: 15px;
}
.portfolio-sec .slick-next:before,
.portfolio-sec .slick-prev:before {
    color: #000;
    font-size: 26px;
}
.portfolio-sec .slick-slider,
.ps-slider .slick-slider {
    margin-bottom: 0px;
}
.port-slider {
    display: grid;
    gap: 25px;
}
.port-slider-1 .port-slider1 {
    height: 175px;
    position: relative;
}
.port-slider .port-slider1 img,
.port-slider .port-slider2 img {
    object-fit: cover;
}
.port-slider-1 .port-slider2 {
    height: 350px;
    position: relative;
}
.port-slider-1 .port-slider2 img,
.port-slider-2 .port-slider2 img {
    border-radius: 10px 10px 3px 3px;
}
.port-slider-2 .port-slider1 img,
.port-slider-1 .port-slider1 img {
    border-radius: 3px 3px 10px 10px;
}
.port-slider-2 .port-slider1 {
    height: 350px;
    position: relative;
}
.port-slider-2 .port-slider2 {
    height: 175px;
    position: relative;
}
.port-slider-1 .port-slider1 h4,
.port-slider-2 .port-slider1 h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    background: linear-gradient(0deg, #000000 0%, #ffffff00 100%);
    display: block;
    right: 0;
    border-radius: 0 0 10px 10px;
    padding: 10px 15px 15px;
    font-size: 20px;
    font-weight: 600;
}
.port-slider-1 .port-slider2 h4,
.port-slider-2 .port-slider2 h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    background: linear-gradient(0deg, #000000 0%, #ffffff00 100%);
    display: block;
    right: 0;
    border-radius: 0px 0px 3px 3px;
    padding: 10px 15px 15px;
    font-size: 20px;
    font-weight: 600;
}
/* end portfolio-sec */

/* logo-slider */
.logo-slider {
    padding: 30px 0;
}
.logo-slider .Marquee {
    background: #e6fffa;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1em;
    color: #fff;
    font-weight: 200;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
}
.logo-slider .Marquee-content {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    align-items: center;
    -webkit-animation: marquee 20s linear infinite running;
    -moz-animation: marquee 20s linear infinite running;
    -o-animation: marquee 20s linear infinite running;
    -ms-animation: marquee 20s linear infinite running;
    animation: marquee 20s linear infinite running;
}
.logo-slider .Marquee-content:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    -ms-animation-play-state: paused;
    animation-play-state: paused;
}
.logo-slider .Marquee-tag {
    width: 160px;
    height: fit-content;
    margin: 0 30px;
    padding: 0.5em;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.logo-slider .Marquee-tag:hover {
    background: rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
}
@-moz-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}
@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}
@-o-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}
@keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}
/* end logo-slider */

/* industries-sec */
.industries-sec {
    background-image: linear-gradient(to right, #6156d8, #a7a3f8);
    padding: 60px 0px;
    margin: 30px 0;
}
.industries-sec .industries-sec-txt h3 {
    font-size: 56px;
    font-weight: 600;
    color: #fff;
}
.industries-sec-img .swiper {
    width: 100%;
}
.industries-sec-img .swiper-wrapper {
    transition-timing-function: linear !important;
}
.industries-sec-img .swiper-slide {
    height: fit-content !important;
}
.industries-sec-img .horizontal-ticker {
    margin: 0 -20px;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
@media screen and (max-width: 767.9px) {
    .industries-sec-img .horizontal-ticker {
        row-gap: 15px;
    }
}
.industries-sec-img .horizontal-ticker__slide {
    position: relative;
    width: fit-content;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ffff;
    padding: 12px 15px;
}
@media screen and (max-width: 767.9px) {
    .industries-sec-img .horizontal-ticker__slide {
        width: 150px;
    }
}
.industries-sec-img .horizontal-ticker__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease-out;
}
@media (hover: hover) and (pointer: fine) {
    .industries-sec-img .horizontal-ticker__slide:hover img:last-child {
        opacity: 1;
    }
}
.industries-sec-txt {
    height: 100%;
    display: flex;
    align-items: center;
}
.industries-sec-txt1 {
    display: flex;
    align-items: center;
}
.industries-sec-txt1 h6 {
    color: #fff;
}
.industries-sec-img1 {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    padding: 12px;
    box-shadow:
        rgb(149 149 149) 0px 3px 5px 0px inset,
        rgb(255 255 255) -3px -3px 5px 1px inset;
    margin-right: 15px;
}
/* end industries-sec */

/* about-section */
.about-section .statistic-section {
    /* margin-top: 50px; */
}
.about-section .counter h2 {
    font-size: 40px;
    font-weight: bold;
}
.about-section .count-title {
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    font-weight: bold;
    color: #000;
}
.about-section .stats-text {
    background: linear-gradient(100deg, var(--clr-deep), var(--clr-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 0;
    text-align: center;
    /* color: #000; */
    text-transform: uppercase;
    font-weight: bold;
}

/* .about-section .stats-line-black {
	margin: 12px auto 0;
    width: 55px;
    height: 2px;
    background-color: #000;
} */
.about-section .stats-icon {
    font-size: 35px;
    margin: 0 auto;
    float: none;
    display: table;
    color: #000;
}
/* end about-section */

/* our-works */
.our-works ul.tabs {
    margin: 30px 0 0;
    padding: 0px;
    list-style: none;
    text-align: center;
}
.our-works ul.tabs li {
    background: none;
    color: #222;
    display: inline-block;
    padding: 10px 25px;
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 50px;
    margin: 0 6px;
}
.our-works ul.tabs li.current {
    color: #fff;
    border: 0;
    background-image: linear-gradient(to right, #6459d9, #352f73);
}
.our-works ul.tabs li:hover {
    background-image: linear-gradient(to right, #6459d9, #352f73);
    color: #fff;
}
.our-works .tab-content {
    display: none;
    padding: 15px 0 0;
}
.our-works .tab-content.current {
    display: inherit;
}
.our-works .wrapper {
    padding: 30px 0;
    overflow-x: hidden;
}
.our-works .slick-initialized .slick-slide {
    height: 350px;
    margin: 0 8px 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-works .slick-slide img {
    object-fit: cover;
    border-radius: 25px;
}
.our-works .slick-next,
.our-works .slick-prev {
    z-index: 5;
}
.our-works .slick-next {
    right: 15px;
}
.our-works .slick-prev {
    left: 15px;
}
.our-works .slick-next:before,
.our-works .slick-prev:before {
    color: #27aae2;
    font-size: 30px;
}
/* end our-works */

/*  */
/* .hero-particles {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('https://madfire.com/wp-content/uploads/2021/02/FullDesign1400x1400_br-stars2.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 60px 0;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000616;
} */

/* .hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
z-index:2;
} */
/* .hero-content {
    position: relative;
}

.hero-content h3 {
    font-size: 42px;
    margin: 0;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    margin-bottom: 5px;
} */

/* .hero-content p {
    font-size: 20px;
    text-align: center;
    color: #fff;
} */

/* end our-technologies */

/* about-section */
.about-section-pg {
    padding: 30px 0;
}
.about-section-pg .about-img {
    height: 100%;
    display: flex;
    align-items: center;
}
.about-section-pg .about-content h3 {
    font:
        /* 700 42px/50px "Playfair Display", */ serif;
    color: #000;
    margin-bottom: 6px;
}
.about-section-pg .about-content p {
    color: #000;
    font-size: 18px;
    line-height: 30px;
}
/* end about-section */

/* why-aimbeat */
.why-aimbeat {
    padding: 30px 0;
}
.why-aimbeat .row {
    background: #f3f5f7;
    padding: 22px 10px;
    border-radius: 20px;
}
.why-aimbeat-content {
    padding-left: 25px;
    padding-top: 10px;
}
.why-aimbeat-content h3 {
    /* font:
        700 32px/38px "Playfair Display",
        serif; */
    color: #000;
    margin-bottom: 20px;
}
.why-aimbeat-content1:not(:last-child) {
    margin-bottom: 20px;
}
.why-aimbeat-content1 h5 {
    font:
        600 18px/22px "Poppins",
        sans-serif;
    margin-bottom: 5px;
    color: #262626;
}
.why-aimbeat-content1 p {
    color: #797979;
}
.why-aimbeat-content2-1 {
    display: flex;
    width: fit-content;
    flex-wrap: wrap;
    gap: 15px;
}
.why-aimbeat-content2 h5 {
    font:
        600 20px/23px "Poppins",
        sans-serif;
    margin-bottom: 15px;
    color: #262626;
}
.why-aimbeat-content2 p {
    background: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
}
.why-aimbeat-img {
    background: #bdd4e6;
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 50px;
}
/* end why-aimbeat */

/* vission-mission */
.vission-mission {
    padding: 30px 0 110px;
}
.vission-mission-card {
    position: relative;
    padding: 0 30px;
    margin: 0 15px;
}
.vission-mission-card1 {
    background-image: linear-gradient(to right, #e8e7ea, #fcffff);
    padding: 45px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.35) 8px 8px 10px -5px;
    border: 3px solid #ffffff;
    position: relative;
}
.vission-mission-card::after {
    /* content: "";
    background: url(../img/bg/Vector1.png) no-repeat center/100% 100%;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0px;
    bottom: 0; */
    height: 100%;
    width: 100%;
    /* z-index: -1; */
    content: "";
    position: absolute;
    inset: 75px 0 0; /* top right bottom left */
    background: url(../img/bg/Vector2.png) no-repeat center/100% 100%;
    z-index: -1;
}
.vission-mission-card img {
    width: 70px;
    margin-bottom: 20px;
}
.vission-mission-card h3 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 8px;
}
/* end vission-mission */

/* core-value */

.core-value {
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
    position: relative;
    overflow: hidden;
}

/* Intro Section */
.core-value-intro h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    color: #2c3e50;
}

.core-value-intro .text-primary-accent {
    background: linear-gradient(135deg, #28a9e0 0%, #3d3a8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.core-value-desc p {
    color: #5a6c7d;
    line-height: 1.8;
    font-weight: 400;
}

/* Core Values Grid */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Core Value Card */
.core-value-card {
    position: relative;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.core-value-card:nth-child(1) {
    animation-delay: 0.1s;
}
.core-value-card:nth-child(2) {
    animation-delay: 0.2s;
}
.core-value-card:nth-child(3) {
    animation-delay: 0.3s;
}
.core-value-card:nth-child(4) {
    animation-delay: 0.4s;
}
.core-value-card:nth-child(5) {
    animation-delay: 0.5s;
}
.core-value-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glass Effect */
.glass-effect {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.25rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.core-value-card:hover .glass-effect {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    box-shadow:
        0 20px 60px rgba(40, 169, 224, 0.1),
        0 0 40px rgba(40, 169, 224, 0.05);
    transform: translateY(-8px);
}

/* Card Accent Line */
.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 4px;
}

.accent-primary {
    background: linear-gradient(
        180deg,
        #28a9e0 0%,
        rgba(40, 169, 224, 0.4) 100%
    );
}

.accent-secondary {
    background: linear-gradient(
        180deg,
        #3d3a8c 0%,
        rgba(61, 58, 140, 0.4) 100%
    );
}

.accent-tertiary {
    background: linear-gradient(
        180deg,
        #f07c20 0%,
        rgba(240, 124, 32, 0.4) 100%
    );
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.core-value-card:hover .card-title {
    background: linear-gradient(135deg, #28a9e0 0%, #3d3a8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a6c7d;
    font-weight: 400;
}

/* ==================== Responsive Adjustments ==================== */

@media (max-width: 768px) {
    .core-value {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .core-value-intro h2 {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    .core-value-desc p {
        font-size: 1rem;
    }

    .glass-effect {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .core-value {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .core-value-intro h2 {
        font-size: 1.85rem;
        margin-bottom: 1rem;
    }

    .core-value-desc p {
        font-size: 0.95rem;
    }

    .glass-effect {
        padding: 1.25rem;
    }

    .card-title {
        font-size: 1.1rem;
    }
}

/* ==================== Reduced Motion ==================== */

@media (prefers-reduced-motion: reduce) {
    .core-value-card {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .glass-effect {
        transition: none;
    }

    .glass-effect:hover {
        transform: none;
    }

    .card-title {
        transition: none;
    }
}
/* ================== */
.row-bdr {
    border: 1px solid #dedede;
    border-radius: 16px;
}
.bdr-radius-tl {
    border-radius: 15px 0 0 0;
}
.bdr-radius-tr {
    border-radius: 0 15px 0 0;
}
.bdr-radius-bl {
    border-radius: 0 0 0 15px;
}
.bdr-radius-br {
    border-radius: 0 0 15px 0;
}
/* end core-value */

/* something-remarkable-txt */
.something-remarkable {
    padding: 40px 0px;
    background: #eaf5ff;
    margin: 30px 0;
}
.something-remarkable-img {
    padding: 0 35px;
}
.something-remarkable-img h5 {
    font-weight: 600;
    margin-bottom: 30px;
}
.something-remarkable-txt {
    padding: 0 30px;
    display: flex;
    align-items: center;
    height: 100%;
}
.something-remarkable-txt p {
    font:
        500 20px/34px "Montserrat",
        sans-serif;
    margin-bottom: 20px;
}
.something-remarkable-txt a {
    color: #212529;
    font-size: 18px;
    font-weight: 600;
}
.something-remarkable-txt a img {
    width: 29px;
    margin-left: 5px;
}
/* end something-remarkable-txt */

/* our-services */
.our-services {
    padding: 30px 0;
}
.our-services h3 {
    text-align: center;
    margin-bottom: 10px;
    color: #050748;
    font:
        /* 600 38px/45px "Playfair Display", */ serif;
}
.our-services h3 span {
    color: #6156d8;
}
.our-services-card-img {
    height: 250px;
}
.our-services-card-img img {
    object-fit: cover;
}
.our-services-card-txt {
    background: #01509a;
    text-align: center;
    padding: 35px 20px;
    position: relative;
}
.our-services-card-txt h4 {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
    text-shadow:
        0px 4px 3px rgba(0, 0, 0, 0.4),
        0px 8px 13px rgba(0, 0, 0, 0.1),
        0px 18px 23px rgba(0, 0, 0, 0.1);
}
.our-services-card-txt p {
    color: #fff;
    font-size: 15px;
    line-height: 26px;
}
.our-services-card-icon {
    position: absolute;
    width: 50px;
    top: -25px;
}
.our-services .wrapper {
    padding: 20px 0;
    overflow-x: hidden;
}
.our-services .services-slider {
    padding: 0 0px;
}
.our-services .slick-initialized .slick-slide {
    /* background-color: #b32532;
    color: #FFF;
    height: 200px; */
    margin: 0 12px 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-services .slick-next,
.our-services .slick-prev {
    z-index: 5;
}
.our-services .slick-next {
    right: 10px;
}
.our-services .slick-prev {
    left: 0px;
}
.our-services .slick-next:before,
.our-services .slick-prev:before {
    color: #000;
    font-size: 30px;
}
.our-services-card:hover .our-services-card-txt {
    background: #2d8bde;
}
/* end our-services */

/* services-common-banner */
.services-common-banner {
    position: relative;
    background: url("../img/bg/comman-banner.png") no-repeat center/100% 100%;
    background-size: cover;
    padding-top: 70px;
    margin-bottom: 30px;
}
.services-common-banner-txt {
    display: flex;
    align-items: center;
    height: 100%;
}
.services-common-banner-txt h1 {
    color: #fff;
    text-transform: uppercase;
    font:
        800 54px/70px "Montserrat",
        sans-serif;
}
.services-common-banner-txt h1 span {
    color: #8cffff;
}
.services-common-banner-img {
    margin: 60px;
}
/* end services-common-banner */

/* software-sec */
.software-sec {
    padding: 40px 0;
}
.software-sec-txt1 {
    padding: 0 40px 0;
}
.software-sec-txt1-1 {
    padding: 0 0 0 40px;
}
.software-sec-txt h3 {
    /* color: #090909; */
    margin-bottom: 15px;

    font:
        600 24px/30px "Poppins",
        sans-serif;
}
.software-sec-txt p {
    font-size: 14px;
    line-height: 30px;
}
.software-sec-img {
    /* padding: 0 40px; */
    position: relative;
}
.software-sec-img img {
    border-radius: 20px;
}
.software-sec-img span {
    position: absolute;
}
.software-sec-img span:nth-child(1) {
    left: 0;
    width: 80px;
    animation: moves 3s infinite alternate;
}
.software-sec-img span:nth-child(2) {
    right: 0;
    width: 50px;
    animation: movess 1s infinite alternate;
}
.software-sec-img span:nth-child(3) {
    bottom: 0;
    left: 0;
    width: 50px;
    animation: movess 2s infinite alternate;
}
.software-sec-img span:nth-child(4) {
    bottom: 0;
    right: 0;
    width: 30px;
    animation: moves 2s infinite alternate;
}
@-webkit-keyframes moves {
    0% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(-20px);
    }
}
@-webkit-keyframes movess {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-10px);
    }
}
/* end software-sec */

/* deliver-excellence */
.deliver-excellence {
    /* margin: 40px 0; */
    padding: 70px 0;
    background: #e5ffff;
    font-family: "Poppins", sans-serif;
}
.deliver-excellence h3 {
    color: #1e4d93;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
}
.deliver-excellence h3 span {
    display: block;
}
.deliver-excellence h3::after {
    display: inline-block;
    margin: 0 0px 8px;
    height: 2px;
    content: " ";
    text-shadow: none;
    background-color: #1e4d93;
    width: 100%;
}
.deliver-excellence-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    height: 285px;
    border: 1px solid #d1cdf5;
}
.deliver-excellence-card h4 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.deliver-excellence-card h4 span {
    width: 95px;
    display: block;
    font-size: 22px;
    line-height: 34px;
}
.deliver-excellence-card h4 img {
    width: 30px;
}
.deliver-excellence-card p {
    color: #1e4d93;
    line-height: 28px;
}
/* end deliver-excellence */

/* full-stack-experts */
.full-stack-experts {
    padding: 40px 0 10px;
    font-family: "Poppins", sans-serif;
}
.full-stack-experts-txt {
    padding-right: 50px;
    height: 100%;
    display: flex;
    align-items: center;
}
.full-stack-experts-txt h3 {
    color: #1e4d93;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 20px;
    margin-right: 50px;
}
.full-stack-experts-txt p {
    font-size: 18px;
    line-height: 30px;
}
.full-stack-experts-txt ul {
    gap: 12px 20px;
    padding-top: 20px;
    grid-template-columns: auto auto;
    display: grid;
}
.full-stack-experts-txt ul li {
    font-weight: 600;
    display: flex;
    text-align: justify;
    font-size: 18px;
}
.full-stack-experts-txt ul li img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.full-stack-experts-img {
    padding: 0 50px;
}
.full-stack-experts1 {
    padding: 30px 0;
}
.full-stack-experts-img1 {
    /* display: flex;
    flex-wrap: wrap;
    gap: 20px 10px;
    margin-top: 25px; */
    padding-bottom: 30px;
}
.full-stack-experts-img1 h5 {
    background-image: linear-gradient(to bottom, #cdfff5, #85eed9);
    padding: 12px 20px 8px 12px;
    color: #1c6e8f;
    border-radius: 20px;
    width: fit-content;
    border: 2px solid #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 8px 10px -6px;
}
.full-stack-experts-img1 img {
    width: 45px;
    margin-right: 6px;
}
/* end full-stack-experts */

/* our-works */
/* .our-works {
    padding: 40px 0 40px;
} */

/* end our-clients */

/* common-banner */
.common-banner {
    height: 450px;
    object-fit: cover;
    align-content: center;
}
.contact-banner {
    /* padding-top: 40px; */
}
.common-banner .container {
    height: 75%;
    align-items: center;
    display: flex;
}
.common-banner-img {
    margin: 0 90px;
}
.common-banner-txt {
    height: 100%;
    display: flex;
    align-items: center;
}
.common-banner-txt h1 {
    color: #b7fff1;
    font-weight: 700;
    font-size: 46px;
    margin-bottom: 10px;
    text-shadow:
        0px 4px 3px rgba(0, 0, 0, 0.4),
        0px 8px 13px rgba(0, 0, 0, 0.1),
        0px 18px 23px rgba(0, 0, 0, 0.1);
}
.common-banner-txt p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
}
/* end common-banner */

/* contact-form-sec */
.contact-form-sec {
    padding: 60px 0;
}
.contact-form {
    padding: 50px 25px;
}
.contact-form h3 {
    background: -webkit-linear-gradient(left, #000000, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-form h3 img {
    width: 50px;
}
.contact-form .form-control {
    /* border-radius: 0;
    height: 48px; */
    margin-bottom: 20px;
    /* border: 0;
    border-bottom: 1px solid #000;
    padding-left: 0; */
}
.contact-form textarea.form-control {
    height: unset;
}
.contact-form .contact-btn {
    background: #000;
    color: #fff;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 10px;
    margin-top: 20px;
}
.contact-form .contact-btn img {
    width: 20px;
    margin-left: 8px;
}
.contact-form-row {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 15px;
}
.contact-form-map {
    height: 100%;
}
.contact-form-map iframe {
    height: 100%;
    border-radius: 0 15px 15px 0;
}
.contact-form-add1 {
    display: flex;
    align-items: center;
}
.contact-form-add1 img {
    width: 65px;
    margin-right: 15px;
}
.contact-form-add1 a {
    display: block;
    color: #000;
    margin-bottom: 3px;
}
.contact-form-add1-1 {
    padding-left: 20px;
}
/* end contact-form-sec */

/*  */
.Marquee {
    /* background: -webkit-linear-gradient(225deg, #008ed9, #8b00db);
  background: -moz-linear-gradient(225deg, #008ed9, #8b00db);
  background: -o-linear-gradient(225deg, #008ed9, #8b00db);
  background: -ms-linear-gradient(225deg, #008ed9, #8b00db);
  background: linear-gradient(-135deg, #008ed9, #8b00db); */
    /* width: 85vw; */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    /* color: #fff; */
    /* font-weight: 200; */
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
}
.Marquee-content {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-animation: marquee 20s linear infinite running;
    -moz-animation: marquee 20s linear infinite running;
    -o-animation: marquee 20s linear infinite running;
    -ms-animation: marquee 20s linear infinite running;
    animation: marquee 20s linear infinite running;
}
.Marquee-content:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    -ms-animation-play-state: paused;
    animation-play-state: paused;
}
.Marquee-tag {
    width: max-content;
    margin: 0 0.6em;
    /* padding: 0.5em; */
    /* background: rgba(255,255,255,0.1); */
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.Marquee-tag:hover {
    background: rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
}
@-moz-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}
@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}
@-o-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}
@keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}
/*  */

/* mobile-app-sec */
.mobile-app-sec {
    padding: 30px 0;
}
.mobile-app-sec .development-sec-txt h4 {
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 30px;
}
/* end mobile-app-sec */

/* mobile-app-sec1 */
.mobile-app-sec1 {
    padding: 40px 0;
    font-family: "Poppins", sans-serif;
}
.mobile-app-sec1-txt {
    padding-right: 35px;
}
.mobile-app-sec1-txt h3 {
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 36px;
}
.mobile-app-sec1-txt p {
    font-size: 14px;
    line-height: 30px;
}
.mobile-app-sec1-img {
    padding: 0 0px;
    position: sticky;
    top: 125px;
}
.mobile-app-sec1-txt ul {
    font-family: "Poppins", sans-serif;
    gap: 15px;
    display: grid;
    padding-top: 20px;
}
.mobile-app-sec1-txt ul li {
    font-weight: 500;
    display: flex;
    text-align: justify;
}
.mobile-app-sec1-txt ul li img {
    width: 25px;
    height: 25px;
    margin-right: 5px;
}
/* end mobile-app-sec1 */

/* web-design-sec */
.web-design-sec .software-sec-txt1 h5 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 30px;
    font-weight: 600;
}
/* end web-design-sec */

/* web-design-sec1 */
.web-design-sec1 {
    padding: 30px 0;
}
.web-design-sec1 .row {
    background: #f3f5f7;
    padding: 22px 10px;
    border-radius: 20px;
}
.web-design-sec1-content {
    padding-left: 25px;
    padding-top: 10px;
}
.web-design-sec1-content h3 {
    font:
        /* 700 28px/32px "Playfair Display", */ serif;
    color: #000;
    margin-bottom: 10px;
}
.web-design-sec1-content p {
    color: #262626;
    line-height: 28px;
    margin-bottom: 20px;
}
.web-design-sec1-content h4 {
    font:
        /* 600 20px/28px "Playfair Display", */ serif;
    margin-bottom: 10px;
}
.web-design-sec1-content1 h5 {
    font:
        600 16px/25px "Poppins",
        sans-serif;
    color: #797979;
    margin-left: 12px;
}
.web-design-sec1-content1 p {
    color: #797979;
}
.web-design-sec1-content1:not(:last-child) {
    margin-bottom: 10px;
}
.web-design-sec1-img {
    background: #bdd4e6;
    height: 80%;
    border-radius: 20px;
    display: flex;
    /* align-items: center; */
    padding: 0 50px;
}
/* end web-design-sec1 */

/* web-design-sec2 */
.web-design-sec2 {
    padding-top: 30px;
    padding-bottom: 90px;
}
.web-design-sec2 .development-sec-txt1 h3 {
    font-size: 32px;
    margin-bottom: 15px;
    /* font-family: "Playfair Display", serif; */
}
/* end web-design-sec2 */

/* digital-marketing - modern styles defined scoped in view */

/* Standardized Services Section Titles */
.sec-title {
    font-family: 'Inter', 'Montserrat', sans-serif !important;
    font-size: clamp(24px, 3.2vw, 34px) !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
}

/* it-consulting */
.it-consulting .development-sec-img::before {
    background-image: linear-gradient(to right, #ef8120, #ef8120);
}
.it-consulting .development-sec-txt p {
    margin-bottom: 8px;
}
.it-consulting h4 {
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 30px;
}
/* end it-consulting */

/* it-consulting1 */
.it-consulting1 {
    padding: 40px 0;
}
.it-consulting1-txt {
    padding-left: 40px;
}
.it-consulting1-txt p {
    font-size: 14px;
    line-height: 30px;
}
.it-consulting1-txt ul {
    gap: 15px;
    display: grid;
    padding-top: 20px;
}
.it-consulting1-txt ul li {
    font-weight: 500;
    display: flex;
    text-align: justify;
}
.it-consulting1-txt ul li img {
    width: 25px;
    height: 25px;
    margin-right: 5px;
}
/* end it-consulting1 */

/*  */
.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.bg-animation span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: rgba(39, 170, 226, 0.3);
    animation: animate 25s linear infinite;
    bottom: -150px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 5px;
}
.bg-animation span:nth-child(1) {
    left: 10%;
    width: 25px;
    height: 25px;
    animation-delay: 0s;
}
.bg-animation span:nth-child(2) {
    left: 20%;
    width: 35px;
    height: 35px;
    animation-delay: 2s;
    animation-duration: 17s;
}
.bg-animation span:nth-child(3) {
    left: 30%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}
.bg-animation span:nth-child(4) {
    left: 40%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
    animation-duration: 22s;
}
.bg-animation span:nth-child(5) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 6s;
}
.bg-animation span:nth-child(6) {
    left: 60%;
    width: 50px;
    height: 50px;
    animation-delay: 3s;
}
.bg-animation span:nth-child(7) {
    left: 70%;
    width: 30px;
    height: 30px;
    animation-delay: 7s;
}
.bg-animation span:nth-child(8) {
    left: 80%;
    width: 20px;
    height: 20px;
    animation-delay: 1s;
    animation-duration: 28s;
}
.bg-animation span:nth-child(9) {
    left: 90%;
    width: 15px;
    height: 15px;
    animation-delay: 5s;
    animation-duration: 20s;
}
@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
}
/*  */

/*  */
.something-remarkable-img {
    position: relative;
}
.background {
    position: relative;
}
.threed-img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    border-radius: 20px;
}

.threed-img:hover {
    transform: scale(1.05);
}
/*  */

/*  */
.services-common-banner {
    position: relative;
    overflow: hidden;
}
.services-common-banner-img:before {
    position: absolute;
    top: -10%;
    right: -150px;
    width: 500px;
    height: 500px;
    content: "";
    background-image: url(../img/bg/ring-circle.png) no-repeat center;
    animation: fa-spin 25s infinite alternate;
}
@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
/*  */

/*  */
.deliver-excellence-card {
    position: relative;
    overflow: hidden;
}
.deliver-excellence-card:hover h4 {
    color: #1e4d93;
}
.deliver-excellence-card:hover p {
    color: #000;
}
.deliver-excellence-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        130deg,
        transparent,
        rgb(152 242 224 / 30%),
        transparent
    );
    transition: left 0.5s ease;
}
.deliver-excellence-card:hover::before {
    left: 100%;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*  */

@media (max-width: 991px) {
    .development-sec-img::before {
        width: 310px;
        height: 310px;
        right: 10px;
        top: 20px;
    }

    .banner-txt h3 {
        padding: 0px 20px;
    }

    @keyframes mover {
        0% {
            transform: translate(0, 0);
        }

        /* Start */
        25% {
            transform: translate(10px, 0);
        }

        /* Move Right */
        50% {
            transform: translate(10px, 10px);
        }

        /* Move Down */
        75% {
            transform: translate(0, 10px);
        }

        /* Move Left */
        100% {
            transform: translate(0, 0);
        }
    }

    .why-aimbeat-content {
        padding-top: 30px;
    }

    .vission-mission .row {
        gap: 20px;
    }
}

.logo-slider {
    padding: 30px 0;
    border-top: 1px solid rgba(40, 169, 224, 0.1);
    border-bottom: 1px solid rgba(40, 169, 224, 0.1);
}

/* .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding: 1.5rem 0;
} */

/* Tablet: 2 columns */
@media (max-width: 991px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deliver-excellence-card {
        height: 220px;
    }

    .full-stack-experts-img {
        padding: 25px 0 0;
    }

    .full-stack-experts-txt h3 {
        font-size: 32px;
    }

    .banner-sliderss .horizontal-ticker {
        row-gap: 5vw;
    }

    .common-banner-img {
        margin: 0px 190px;
    }

    .contact-form-sec {
        padding: 50px 20px;
    }

    .contact-form-map,
    .contact-form-map iframe {
        min-height: 500px;
        height: 500px;
    }
}

/* Mobile: 1 column */
/* @media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-card {
        padding: 1rem;
    }

    .services-common-banner-txt h1 {
        font:
            800 32px / 55px "Montserrat",
            sans-serif;
    }

    .software-sec-txt h3 {
        font:
            700 32px/38px "Poppins",
            sans-serif;
    }

    .software-sec-txt p {
        font-size: 16px;
    }

    .full-stack-experts-img {
        padding: 0px 80px;
    }

    .deliver-excellence-card {
        height: 280px;
    }

    .our-clients h3 {
        font-size: 32px;
    }

    .common-banner-img {
        margin: 0px 40px;
    }
} */

.waves-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    z-index: 5;
}

.waves {
    position: relative;
    width: 100%;
    height: 12vh;
    min-height: 80px;
    max-height: 120px;
    margin-bottom: -1px;
    display: block;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

/* Each layer moves at a different speed/offset — this is what creates the
   layered "waves at different depths" illusion instead of one flat slide */
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .parallax > use {
        animation: none;
    }
}

/* Optional: tone it down on small screens so it doesn't dominate a short mobile viewport */
@media (max-width: 767px) {
    .waves {
        height: 8vh;
        min-height: 60px;
    }
}

/* ============ */

.footer-section {
    color: rgba(255,255,255,0.8);
    padding: 0;
}

.footer-logo {
    max-width: 180px;
}

.footer-about {
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
    font-size: 15px;
}

.footer-services h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

/* .footer-widget h4:after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:3px;
    background:#0d6efd;
} */

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

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.68);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease !important;
    display: inline-block;
}

.footer-links a:hover {
    color: #28a9e0;
    transform: translateX(6px);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.4s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #ef8024;
    border-color: #ef8024;
    color: #fff;
    transform: translateY(-5px);
}

.facebook-box {
    overflow: hidden;
    border-radius: 15px;
}

.facebook-box iframe {
    width: 100%;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    /* align-items: flex-start; */
}

.contact-item i {
    color: #f88222;
    font-size: 20px;
    margin-top: 4px;
    min-width: 22px;
}

.contact-item span,
.contact-item a {
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
    text-decoration: none;
}

.contact-item a:hover {
    color: #0d6efd;
}

.footer-divider {
    border-color: rgba(255,255,255,0.12);
    margin: 50px 0 25px;
}

.copyright {
    color: rgba(255,255,255,0.5);
    font-size: 15px;
}

.copyright strong {
    color: #28a9e0;
}

/* Tablet */

@media (max-width: 991px) {
    .services-modern-banner .banner-content {
        grid-template-columns: 1fr !important;
    }
    .footer-services {
        text-align: left;
    }

    .footer-services h4:after {
        left: 0;
        transform: none;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }

    .facebook-box {
        max-width: 350px;
        margin: auto;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .development-sec-img,
    .mobile-app-sec1-img {
        width: 310px;
        /* height: 310px; */
        margin: 30px auto;
    }

    .software-sec-txt1-1 {
        padding: 0 20px 0;
    }

    .software-sec-txt1 {
        padding: 0 20px 0;
    }
    .footer-section {
        padding: 50px 0 20px;
    }

    .footer-services {
        margin-bottom: 20px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
    }

    .footer-services h4 {
        font-size: 20px;
    }

    .social-icons a {
        width: 42px;
        height: 42px;
    }

    .copyright {
        font-size: 14px;
    }
}

.banner-section-three {
    position: relative;
    overflow: hidden;
    background: #2a327b;
    padding-top: 10px;
    padding-bottom: 70px;
    background: -webkit-linear-gradient(to bottom, #ffffff 20%, #068acf 100%);
    background: -moz-linear-gradient(to bottom, #ffffff 20%, #068acf 100%);
    background: linear-gradient(to bottom, #ffffff 20%, #068acf 100%);
}

.banner-section-three .content-column h1 {
    position: relative;
    color: #1519b2;
    font-weight: 700;
    line-height: 1.2em;
    margin-top: 20px;
}

.banner-section-three .content-column {
    position: relative;
}

.banner-section-three .content-column .inner-column {
    position: relative;
    padding-top: 80px;
    padding-left: 30px;
}

.left-img {
    /* padding-top: 10px; */
    border-radius: 20px;
    /* background-color: rgba(203, 203, 203, 0.111); */
    left: -100px;
    width: 230px;
    position: absolute;
    bottom: 0px;
    transition: ease-out;
}

.right-img {
    border-radius: 20px;
    /* background-color: rgba(203, 203, 203, 0.111); */
    right: -100px;
    width: 300px;
    position: absolute;
    bottom: 0px;
    transition: ease-out;
}

/* .left-img img, .right-img img {
    border: 4px solid rgba(255, 255, 255, 0.458);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-radius: 20px;
} */


@media (min-width: 768px) and (max-width: 1024px) {
    .left-img {
        left: 10px;
        width: 180px;
        position: absolute;
        bottom: 20px;
    }

    .right-img {
        right: 5px;
        width: 220px;
        position: absolute;
        bottom: 30px;
    }

    .img-frame {
        width: 100% !important;
    }
}

#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}
#page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-ring {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-ring::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 4px;
    background: conic-gradient(
        from 0deg,
        #0b5fa5 0deg,
        #17b9c4 140deg,
        #ff7a33 260deg,
        transparent 330deg,
        transparent 360deg
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: loaderSpin 1.15s linear infinite;
}
.loader-ring::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid rgba(11, 95, 165, 0.1);
}
@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

.loader-logo {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(11, 95, 165, 0.15);
    animation: loaderPulse 1.6s ease-in-out infinite;
}
.loader-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}
@keyframes loaderPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    .loader-ring::before {
        animation: none;
    }
    .loader-logo {
        animation: none;
    }
}

.contact-item {
    display: flex;
    /* align-items: flex-start; */
    gap: 10px;
}

.contact-item a {
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

@media (max-width: 767px) {
    .img-frame {
        width: 100% !important;
    }
    .blob {
        opacity: 0.2 !important;
    }
}

/* ============ */

.left-img,
.right-img {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* planing */
.ps-timeline-sec {
    position: relative;
    background: #fff;
}
.ps-timeline-sec .container {
    position: relative;
}
@media screen and (max-width: 767px) {
    .ps-timeline-sec .container ol:before {
        background: #348e80;
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 100%;
        position: absolute;
        top: 130px !important;
        left: 36px !important;
    }
    .ps-timeline-sec .container ol:after {
        background: #348e80;
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 100%;
        position: absolute;
        top: inherit !important;
        left: 36px;
    }
    .ps-timeline-sec .container ol.ps-timeline {
        margin: 130px 0 !important;
        border-left: 2px solid #348e80;
        padding-left: 0 !important;
        padding-top: 120px !important;
        border-top: 0 !important;
        margin-left: 25px !important;
    }
    .ps-timeline-sec .container ol.ps-timeline li {
        height: 220px;
        float: none !important;
        width: inherit !important;
    }
    .ps-timeline-sec
        .container
        ol.ps-timeline
        li:nth-child(2)
        .img-handler-bot
        img {
        width: 70px;
    }
    .ps-timeline-sec .container ol.ps-timeline li:last-child {
        margin: 0;
        bottom: 0 !important;
        height: 120px;
    }
    .ps-timeline-sec .container ol.ps-timeline li:last-child .img-handler-bot {
        bottom: 40px !important;
        width: 40% !important;
        margin-left: 25px !important;
        margin-top: 0 !important;
    }
    .ps-timeline-sec
        .container
        ol.ps-timeline
        li:last-child
        .img-handler-bot
        img {
        width: 100%;
    }
    .ps-timeline-sec .container ol.ps-timeline li:last-child .ps-top {
        margin-bottom: 0 !important;
        top: 20px;
        width: 50% !important;
    }
    .ps-timeline-sec .container ol.ps-timeline li span {
        left: 0 !important;
    }
    .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
        content: none !important;
    }
    .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
        content: none !important;
    }
    .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
        content: none !important;
    }
    .ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
        content: none !important;
    }
    .ps-timeline-sec .container ol.ps-timeline li .img-handler-top {
        position: absolute !important;
        bottom: 150px !important;
        width: 30% !important;
        float: left !important;
        margin-left: 35px !important;
        margin-bottom: 0 !important;
    }
    .ps-timeline-sec .container ol.ps-timeline li .img-handler-top img {
        margin: 0 auto !important;
        width: 80% !important;
    }
    .ps-timeline-sec .container ol.ps-timeline li .img-handler-bot {
        position: absolute !important;
        bottom: 115px !important;
        width: 30% !important;
        float: left !important;
        margin-left: 35px !important;
        margin-bottom: 0 !important;
    }
    .ps-timeline-sec .container ol.ps-timeline li p {
        text-align: left !important;
        width: 100% !important;
        margin: 0 auto !important;
        margin-top: 0px !important;
    }
    .ps-timeline-sec .container ol.ps-timeline li .ps-top {
        width: 60% !important;
        float: right !important;
        right: 0;
        top: -40px;
    }
    .ps-timeline-sec .container ol.ps-timeline li .ps-bot {
        width: 60% !important;
        float: right !important;
        right: 0;
        top: -40px;
    }
}
.ps-timeline-sec .container ol:before {
    background: #348e80;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    left: 8px;
    top: -4px;
}
.ps-timeline-sec .container ol:after {
    background: #348e80;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    right: 8px;
    top: -4px;
}
.ps-timeline-sec .container ol.ps-timeline {
    margin: 390px 0;
    padding: 0;
    border-top: 2px solid #348e80;
    list-style: none;
}
.ps-timeline-sec .container ol.ps-timeline li {
    float: left;
    width: 14%;
    padding-top: 30px;
    position: relative;
}
.ps-timeline-sec .container ol.ps-timeline li span {
    width: 50px;
    height: 50px;
    margin-left: -25px;
    background: #fff;
    border: 4px solid #348e80;
    border-radius: 50%;
    box-shadow: 0 0 0 0px #fff;
    text-align: center;
    line-height: 41px;
    color: #df8625;
    font-size: 2em;
    font-style: normal;
    position: absolute;
    top: -26px;
    left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
    content: "";
    color: #348e80;
    width: 2px;
    height: 50px;
    background: #348e80;
    position: absolute;
    top: -50px;
    left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
    content: "";
    color: #348e80;
    width: 8px;
    height: 8px;
    background: #348e80;
    position: absolute;
    bottom: 90px;
    left: 44%;
    border-radius: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
    content: "";
    color: #348e80;
    width: 2px;
    height: 50px;
    background: #348e80;
    position: absolute;
    bottom: -50px;
    left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
    content: "";
    color: #348e80;
    width: 8px;
    height: 8px;
    background: #348e80;
    position: absolute;
    top: 90px;
    left: 44%;
    border-radius: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-top {
    position: absolute;
    bottom: 0;
    margin-bottom: 130px;
    width: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-top img {
    display: table;
    margin: 0 auto;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot {
    position: absolute;
    margin-top: 60px;
    width: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot img {
    display: table;
    margin: 0 auto;
}
.ps-timeline-sec .container ol.ps-timeline li p {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 700;
}
.ps-timeline-sec .container ol.ps-timeline li .ps-top {
    position: absolute;
    bottom: 0;
    margin-bottom: 70px;
    margin-left: 18px;
}
.ps-timeline-sec .container ol.ps-timeline li .ps-top2 {
    margin-left: 43px;
}
.ps-timeline-sec .container ol.ps-timeline li .ps-bot {
    position: absolute;
    margin-top: 15px;
    margin-left: 44px;
}

/* welcome page  */

:root {
    --clr-primary: #28a9e0;
    --clr-secondary: #ef8024;
    --clr-deep: #1518b1;
    --clr-text: #1c2430;
    --clr-text-muted: #5b6472;
    --radius-pill: 30px;
}
/* *{box-sizing:border-box;}
  body{
    margin:0;
    font-family:'Segoe UI', system-ui, sans-serif;
    background:#fff;
  }
  .container{max-width:1200px;margin:0 auto;padding:0 24px;} */

.welcome-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    isolation: isolate;
}
.welcome-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    pointer-events: none;
    z-index: -1;
}
.welcome-blob-1 {
    width: 380px;
    height: 380px;
    background: var(--clr-primary);
    top: -140px;
    left: -100px;
}
.welcome-blob-2 {
    width: 320px;
    height: 320px;
    background: var(--clr-secondary);
    bottom: -120px;
    right: -90px;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.5fr;
    align-items: center;
    gap: 56px;
}

.welcome-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    background: rgba(40, 169, 224, 0.1);
    color: var(--clr-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.welcome-heading {
    margin: 0 0 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--clr-text);
}
.welcome-heading .line {
    display: block;
    overflow: hidden;
    padding-bottom: 6px;
    margin-bottom: -4px;
}
.welcome-heading .line-inner {
    display: inline-block;
    will-change: transform, opacity;
}
.welcome-heading .line:last-child .line-inner {
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.welcome-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-text);
    margin: 0 0 16px;
}
.welcome-tagline {
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-deep);
    line-height: 1.6;
    margin: 0 0 20px;
    position: relative;
    padding: 0 0 20px;
}
.welcome-tagline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        var(--clr-primary),
        var(--clr-secondary)
    );
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.welcome-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--clr-text-muted);
    max-width: 560px;
}

/* ---------------- Visual side ---------------- */
.welcome-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}
.welcome-visual img {
    border-radius: 24px;
    box-shadow: 0 20px 50px -10px rgba(21, 24, 177, 0.15), 0 8px 24px -4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.welcome-visual:hover img {
    box-shadow: 0 28px 65px -12px rgba(21, 24, 177, 0.22), 0 12px 30px -6px rgba(0, 0, 0, 0.08);
}
.welcome-visual svg {
    width: 100%;
    max-width: 480px;
    height: auto;
    overflow: visible;
}

.orbit-ring {
    transform-origin: 250px 250px;
    animation: orbitSpin 40s linear infinite;
}
@keyframes orbitSpin {
    to {
        transform: rotate(360deg);
    }
}

.float-icon {
    animation: floatBob 3.4s ease-in-out infinite;
}
.float-icon.d1 {
    animation-duration: 3.2s;
    animation-delay: 0s;
}
.float-icon.d2 {
    animation-duration: 3.8s;
    animation-delay: 0.3s;
}
.float-icon.d3 {
    animation-duration: 3.5s;
    animation-delay: 0.6s;
}
.float-icon.d4 {
    animation-duration: 4.1s;
    animation-delay: 0.15s;
}
@keyframes floatBob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.pulse-dot {
    animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%,
    100% {
        opacity: 0.25;
        r: 3;
    }
    50% {
        opacity: 0.9;
        r: 5;
    }
}

.center-badge {
    transform-origin: 250px 250px;
    animation: centerPulse 3.2s ease-in-out infinite;
}
@keyframes centerPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.035);
    }
}

@media (prefers-reduced-motion: reduce) {
    .orbit-ring,
    .float-icon,
    .pulse-dot,
    .center-badge {
        animation: none !important;
    }
}

@media (max-width: 991px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .welcome-tagline::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .welcome-desc {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 767px) {
    .welcome-section {
        padding: 70px 0;
    }
    .welcome-visual svg {
        max-width: 320px;
    }
}

/* floting btn */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.floating-actions .fab {
    position: relative;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}
.floating-actions .fab-icon-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-fab {
    background: #25d366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-fab .wa-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.4;
    animation: waPing 2.2s ease-out infinite;
    z-index: -1;
}
@keyframes waPing {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}
.whatsapp-fab:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.wa-tooltip {
    position: absolute;
    right: 54px;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: #0f172a;
    color: #fff;
    font-family: 'Inter', 'Poppins', sans-serif !important;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}
.wa-tooltip::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #0f172a;
}
.floating-actions .fab:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.scroll-top-fab {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-deep));
    box-shadow: 0 8px 20px rgba(21, 24, 177, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.9);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease,
        box-shadow 0.3s ease;
}
.scroll-top-fab.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.scroll-top-fab:hover {
    box-shadow: 0 12px 26px rgba(21, 24, 177, 0.4);
}

.scroll-top-fab .ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.scroll-top-fab .ring circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.35);
    stroke-width: 2.5;
}
.scroll-top-fab .ring circle.progress {
    stroke: #ef8024;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}
.scroll-top-fab .arrow-icon {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
    pointer-events: none;
}
.scroll-top-fab:hover .arrow-icon {
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .floating-actions {
        right: 15px;
        bottom: 40px;
        gap: 10px;
    }
    .floating-actions.fab {
        width: 48px;
        height: 48px;
    }
    .whatsapp-fab svg {
        width: 23px;
        height: 23px;
    }
    .scroll-top-fab .arrow-icon {
        width: 16px;
        height: 16px;
    }
    .wa-tooltip {
        display: none;
    }
}

/* ========= */

.ps-header-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.ps-actions {
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.portfolio-swiper-container {
    position: relative;
}

.ps-prev,
.ps-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    z-index: 15;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
}

.ps-prev {
    left: -22px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
    color: #475569;
}

.ps-next {
    right: -22px;
    background: #28a9e0;
    border: 1px solid #28a9e0;
    box-shadow: 0 8px 22px rgba(40, 169, 224, 0.4);
    color: #ffffff;
}

.ps-prev i,
.ps-next i {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.ps-prev:hover {
    background: #28a9e0;
    border-color: #28a9e0;
    box-shadow: 0 10px 25px rgba(40, 169, 224, 0.45);
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.ps-next:hover {
    background: #1ba2dc;
    border-color: #1ba2dc;
    box-shadow: 0 12px 28px rgba(40, 169, 224, 0.55);
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.ps-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #d76c14;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.ps-view-all:hover {
    background: #f59648;
    color: #fff;
}

@media (max-width: 991px) {
    .ps-prev {
        left: 4px;
        width: 40px;
        height: 40px;
    }
    .ps-next {
        right: 4px;
        width: 40px;
        height: 40px;
    }
    .ps-prev i,
    .ps-next i {
        font-size: 12px;
    }
    .ps-view-all {
        font-size: 13px;
        padding: 12px 25px;
    }
    .ps-header-wrap {
        flex-direction: column;
        align-items: center;
    }
    .ps-actions {
        width: 100%;
    }
    .ps-view-all {
        margin-left: auto;
    }
}

/* ========== careers page ============= */
:root {
    --clr-primary: #28a9e0;
    --clr-secondary: #ef8024;
    --clr-deep: #1518b1;
    --clr-text: #1c2430;
    --clr-text-muted: #5b6472;
    --radius-md: 14px;
    --radius-pill: 30px;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: "Poppins", "Montserrat", sans-serif;
    color: var(--clr-text);
    background: #fff;
}
/* .container{max-width:1100px;margin:0 auto;padding:0 24px;} */

/* ---------------- Hero / intro ---------------- */
.career-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 0 50px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    isolation: isolate;
}
.career-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    pointer-events: none;
    z-index: -1;
}
.career-blob-1 {
    width: 360px;
    height: 360px;
    background: var(--clr-primary);
    top: -130px;
    left: -90px;
}
.career-blob-2 {
    width: 300px;
    height: 300px;
    background: var(--clr-secondary);
    bottom: -110px;
    right: -80px;
}

.career-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    background: rgba(40, 169, 224, 0.1);
    color: var(--clr-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.career-hero h1 {
    font-size: clamp(28px, 4.2vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 24px;
}
.career-hero h1 span {
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.career-hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
}
.career-hero-text p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--clr-text-muted);
    margin: 0 0 18px;
}
.career-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.career-visual svg {
    width: 100%;
    max-width: 440px;
    height: auto;
    overflow: visible;
}

.cv-orbit {
    transform-origin: 250px 250px;
    animation: cvSpin 45s linear infinite;
}
@keyframes cvSpin {
    to {
        transform: rotate(360deg);
    }
}

.cv-float {
    animation: cvBob 3.4s ease-in-out infinite;
}
.cv-float.d1 {
    animation-duration: 3.1s;
}
.cv-float.d2 {
    animation-duration: 3.7s;
    animation-delay: 0.25s;
}
.cv-float.d3 {
    animation-duration: 3.4s;
    animation-delay: 0.5s;
}
@keyframes cvBob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cv-orbit,
    .cv-float {
        animation: none !important;
    }
}

@media (max-width: 991px) {
    .career-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .career-hero-text p {
        margin-left: auto;
        margin-right: auto;
        max-width: 640px;
    }
    .career-visual svg {
        max-width: 320px;
        margin-top: 10px;
    }
}

/* ---------------- Perks grid ---------------- */
.perks-section {
    padding: 20px 0 70px;
}
.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.perk-card {
    padding: 30px 24px;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid #e9eef5;
    text-align: left;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}
.perk-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.perk-card:hover {
    box-shadow: 0 18px 36px rgba(21, 24, 177, 0.12);
    border-color: transparent;
}
.perk-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(40, 169, 224, 0.12),
        rgba(21, 24, 177, 0.12)
    );
    margin-bottom: 18px;
    transition: transform 0.35s ease;
}
.perk-card:hover .perk-icon {
    transform: scale(1.08) rotate(-4deg);
}
.perk-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--clr-deep);
    fill: none;
    stroke-width: 1.8;
}
.perk-card h4 {
    font-size: 16.5px;
    font-weight: 700;
    margin: 0 0 8px;
}
.perk-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--clr-text-muted);
    margin: 0;
}

/* ---------------- Resume CTA ---------------- */
.resume-cta {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 46px 40px;
    background: linear-gradient(135deg, var(--clr-deep), var(--clr-primary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}
.resume-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.resume-cta::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -90px;
    right: -60px;
}
.resume-cta-text {
    position: relative;
    z-index: 1;
    max-width: 520px;
}
.resume-cta-text h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 8px;
}
.resume-cta-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.92;
}
.resume-cta-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    background: #fff;
    color: var(--clr-deep);
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}
.resume-cta-btn:hover {
    background: var(--clr-secondary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(239, 128, 36, 0.35);
}

/* ---------------- Current openings ---------------- */
.openings-section {
    padding-bottom: 90px;
}
.openings-heading {
    text-align: center;
    margin-bottom: 36px;
}
.openings-heading h2 {
    font-size: clamp(24px, 3.2vw, 32px);
    font-weight: 800;
    margin: 0 0 10px;
}
.openings-heading p {
    color: var(--clr-text-muted);
    font-size: 14.5px;
    margin: 0;
}

.openings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.opening-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 26px;
    border-radius: var(--radius-md);
    border: 1px solid #e9eef5;
    background: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}
.opening-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.opening-card:hover {
    box-shadow: 0 14px 30px rgba(21, 24, 177, 0.1);
    border-color: transparent;
}
.opening-info h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
}
.opening-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.opening-meta span {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--clr-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.opening-meta svg {
    width: 14px;
    height: 14px;
    stroke: var(--clr-primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.opening-apply {
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    background: rgba(40, 169, 224, 0.1);
    color: var(--clr-primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease;
    white-space: nowrap;
}
.opening-apply:hover {
    background: var(--clr-primary);
    color: #fff;
}

.no-openings {
    text-align: center;
    padding: 50px 24px;
    border-radius: var(--radius-md);
    border: 1.5px dashed #d7e2ef;
    color: var(--clr-text-muted);
    font-size: 14.5px;
}

@media (max-width: 991px) {
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .openings-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .career-hero {
        padding: 60px 0 40px;
    }
    .perks-grid {
        grid-template-columns: 1fr;
    }
    .resume-cta {
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
    .resume-cta-btn {
        width: 100%;
        justify-content: center;
    }
    .opening-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .opening-apply {
        width: 100%;
        text-align: center;
    }
}
@media (prefers-reduced-motion: reduce) {
    .perk-card,
    .resume-cta,
    .opening-card {
        transition-duration: 0.01ms !important;
        opacity: 1;
        transform: none;
    }
}

/* about us seection */
/* Premium Editorial Design System — Brand Applied */
:root {
    --cls-sky-blue: #28a9e0;
    --cls-indigo: #3d3a8c;
    --cls-orange: #f07c20;
    --cls-white: #ffffff;
    --cls-dark-neutral: #1c1a42; /* Harmonized deep indigo for crisp text read */
    --cls-body-muted: #5c5a75;
}

/* ===== About Hero Section Modern Redesign ===== */
.about-hero-section {
    padding: 40px 0 70px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(40, 169, 224, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Heading */
.about-hero-heading {
    font-size: clamp(28px, 32px, 42px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.about-hero-heading .line {
    display: block;
    overflow: hidden;
    padding-bottom: 6px;
    margin-bottom: -4px;
}

.about-hero-heading .line-inner {
    display: inline-block;
    will-change: transform, opacity;
}

.about-hero-grad {
    background: linear-gradient(135deg, #28a9e0, #1518b1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Description */
.about-hero-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}

.about-hero-desc strong {
    color: #0f172a;
}

/* Mini Stats Row */
.about-mini-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 18px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.about-mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.about-mini-stat strong {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #28a9e0, #1518b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-mini-stat span {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.about-mini-stat-divider {
    width: 1px;
    height: 36px;
    background: #e2e8f0;
    flex-shrink: 0;
}

/* Hero Image */
.about-hero-img-wrap {
    position: relative;
    padding: 20px;
}

.about-hero-img-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    z-index: 2;
}

.about-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-hero-img-frame:hover .about-hero-img {
    transform: scale(1.04);
}

.about-hero-img-accent {
    position: absolute;
    top: 16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(40, 169, 224, 0.25);
    border-radius: 24px;
    z-index: -1;
    pointer-events: none;
}

/* Floating Badges */
.about-floating-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    animation: aboutBadgeFloat 5s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-badge-top {
    bottom: auto;
    left: auto;
    top: 0;
    right: 0;
    animation-delay: 2.5s;
}

.about-badge-bottom-right {
    bottom: 0;
    left: auto;
    right: 0;
}

.about-floating-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
}

.about-floating-badge .badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #28a9e0, #1518b1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.about-floating-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.about-floating-badge .badge-text strong {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.about-floating-badge .badge-text span {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

@keyframes aboutBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-hero-section {
        padding: 50px 0 40px;
    }
    .about-hero-img {
        height: 320px;
    }
    .about-hero-img-accent {
        display: none;
    }
    .about-badge-top {
        display: none;
    }
}

@media (max-width: 576px) {
    .about-mini-stats {
        flex-wrap: wrap;
        gap: 12px;
        padding: 16px;
    }
    .about-mini-stat-divider {
        display: none;
    }
    .about-mini-stat {
        flex: 0 0 calc(50% - 6px);
    }
    .about-floating-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 12px;
    }
}

.dev-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.dev-header h2 {
    /* font-size: clamp(2.2rem, 5vw, 3.5rem); */
    font-weight: 800;
    color: #111827;
    /* margin-bottom: 14px; */
    line-height: 1.15;
}

.dev-header p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------------- */

.dev-eyebrow {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--clr-primary);
    background: rgba(40, 169, 224, 0.1);
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 8px;
}

.dev-header h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    color: #131b2c;
    margin: 0 0 12px;
}

.dev-header p {
    font-size: 15.5px;
    color: #6a7280;
    margin: 0 auto;
    text-align: center;
}

/* ---------- Row spacing ---------- */
.dev-row {
    align-items: center;
    margin-bottom: 70px;
}

.dev-row:last-of-type {
    margin-bottom: 40px;
}

/* ========= */

.our-technologies .our-technologies-heading,
.our-technologies h3 {
    margin: 0;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    position: relative;
}
.our-technologies p {
    text-align: center;
    font-size: 20px;
    position: relative;
    color: #fff;
}
.our-technologies .main-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f9f9f9;
    padding: 80px 0 60px;
}
.our-technologies .main {
    margin: 0px auto;
    width: 480px;
    height: 480px;
    position: relative;
}
.our-technologies .big-circle {
    height: 100%;
    width: 100%;
    position: relative;
    border: 3px solid #6495f2;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    animation: Rotate 20s linear infinite;
    -webkit-animation: Rotate 20s linear infinite;
}

/*  */
.our-technologies .big-circle .icon-block:first-child {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.our-technologies .big-circle .icon-block:nth-child(2) {
    top: 15%;
    right: 14%;
    transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
}
.our-technologies .big-circle .icon-block:nth-child(3) {
    bottom: 50%;
    left: 100%;
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
}
.our-technologies .big-circle .icon-block:nth-child(4) {
    top: 86%;
    left: 85%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.our-technologies .big-circle .icon-block:nth-child(5) {
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.our-technologies .big-circle .icon-block:nth-child(6) {
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.our-technologies .big-circle .icon-block:nth-child(7) {
    top: 85%;
    left: 14%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.our-technologies .big-circle .icon-block:nth-child(8) {
    top: 15%;
    left: 13%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
/*  */

/*  */
.our-technologies .icon-block {
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
    -webkit-background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
    /* box-shadow: 0 2px 4px 0 #3e5ada; */
    /* -webkit-box-shadow: 0 2px 4px 0 #3e5ada; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 5px;
}
.our-technologies .icon-block img {
    margin: 0px auto;
    width: 100%;
    animation: Rotate-reverse 20s linear infinite;
    -webkit-animation: Rotate-reverse 20s linear infinite;
}
.our-technologies .icon-block:first-child {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.our-technologies .icon-block:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
}
.our-technologies .icon-block:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
}
.our-technologies .icon-block:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
/* circle content */
.our-technologies .circle {
    animation: circle-rotate 20s linear infinite;
    -webkit-animation: circle-rotate 20s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
    -webkit-transform: translate(-50%, -50%) rotate(30deg);
    width: 70%;
    height: 70%;
    border: 3px solid #6495f2;
    border-radius: 50%;
}
.our-technologies .circle .icon-block img {
    animation: img-rotate 20s linear infinite;
    -webkit-animation: img-rotate 20s linear infinite;
}
.our-technologies .circle .icon-block:first-child {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.our-technologies .circle .icon-block:nth-child(2) {
    top: 25%;
    right: 6%;
    transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
}
.our-technologies .circle .icon-block:nth-child(3) {
    bottom: 24%;
    left: 93%;
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
}
.our-technologies .circle .icon-block:nth-child(4) {
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.our-technologies .circle .icon-block:nth-child(5) {
    top: 75%;
    left: 7%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.our-technologies .circle .icon-block:nth-child(6) {
    top: 28%;
    left: 5%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.our-technologies .circle1 {
    animation: circle-rotate 20s linear infinite;
    -webkit-animation: circle-rotate 20s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    width: 40%;
    height: 40%;
    border: 3px solid #6495f2;
    border-radius: 50%;
}
.our-technologies .circle1 .icon-block img {
    animation: img-rotate 20s linear infinite;
    -webkit-animation: img-rotate 20s linear infinite;
}
/* center logo */
.our-technologies .center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.our-technologies .center-logo img {
    max-width: 80px;
}
/* keyframe animation */
@keyframes Rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes Rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes Rotate-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}
@-webkit-keyframes Rotate-reverse {
    from {
        -webkit-transform: rotate(360deg);
    }

    to {
        -webkit-transform: rotate(0deg);
    }
}
@keyframes circle-rotate {
    from {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(405deg);
    }
}
@-webkit-keyframes circle-rotate {
    from {
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
    }

    to {
        -webkit-transform: translate(-50%, -50%) rotate(405deg);
    }
}
@keyframes img-rotate {
    from {
        transform: rotate(-45deg);
    }

    to {
        transform: rotate(-405deg);
    }
}
@-webkit-keyframes img-rotate {
    from {
        -webkit-transform: rotate(-45deg);
    }

    to {
        -webkit-transform: rotate(-405deg);
    }
}
/*  */
.our-technologies {
    position: relative;
    /* margin: 30px 0; */
    padding: 60px 0;
}
.our-technologies #webgl-canvas {
    background: radial-gradient(
        circle farthest-corner at center top,
        #071021,
        #19324a
    );
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Mobile only */

@media (max-width: 991px) {
    .our-technologies {
        padding: 60px 0;
    }
    .our-technologies .main {
        width: 380px;
        height: 380px;
        margin: 40px auto 0;
    }
    .our-technologies .icon-block {
        width: 42px;
        height: 42px;
    }
    .our-technologies .center-logo img {
        max-width: 65px;
    }
}

@media (max-width: 768px) {
    .our-technologies .main {
        width: 320px;
        height: 320px;
    }
    .our-technologies .icon-block {
        width: 36px;
        height: 36px;
    }
    .our-technologies .center-logo img {
        max-width: 55px;
    }
}

@media (max-width: 480px) {
    .our-technologies .main {
        width: 260px;
        height: 260px;
    }
    .our-technologies .icon-block {
        width: 30px;
        height: 30px;
    }
    .our-technologies .center-logo img {
        max-width: 45px;
    }
}

/* our services  */
.services-modern-banner {
    position: relative;
    /* min-height: 700px; */
    padding: 40px 0;
    background: linear-gradient(315deg, #071a3d 0%, #123f88 55%, #1e5db9 100%);
    /* background: linear-gradient(135deg, #0a1f47 0%, #0d3a80 50%, #c16e20 100%); */
    overflow: hidden;
}

/* Animated Background */
.banner-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #28a9e0, transparent);
    top: -100px;
    left: -150px;
    animation-duration: 10s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00ff88, transparent);
    bottom: -50px;
    right: -100px;
    animation-duration: 12s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(40px);
    }
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(40, 169, 224, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 169, 224, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.animated-svg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
}

/* Banner Content */
.services-modern-banner .banner-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    height: 100%;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Content Section */
.content-section {
    color: white;
}

/* Badge */
.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(40, 169, 224, 0.15);
    border: 1px solid rgba(40, 169, 224, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    margin-bottom: 32px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: slideInDown 0.8s ease-out;
}

.badge-icon {
    display: flex;
    width: 16px;
    height: 16px;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
    color: #28a9e0;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Heading */
.services-heading {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.heading-line {
    text-wrap: nowrap;
    display: block;
    animation: slideInLeft 0.8s ease-out forwards;
}

.heading-line:nth-child(2) {
    animation-delay: 0.1s;
}

.heading-line:nth-child(3) {
    animation-delay: 0.2s;
}

.heading-line:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.text-highlight {
    background: linear-gradient(0deg, #ff7700ed, #ffe5cb);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.services-description {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 520px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features List */
.features-list {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.7s;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(40, 169, 224, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a9e0;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 16px;
    height: 16px;
}

/* CTA Buttons */
.content-section .banner-cta {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
    flex-wrap: wrap;
    /* margin-bottom: 54px; */
}

.banner-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    /* margin-bottom: 54px; */
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--clr-secondary), #d76c14);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 11px 28px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(239, 128, 36, 0.35);
    transition:transform 0.28s ease,box-shadow 0.28s ease;
}

.btn-primary svg {
    transition: transform 0.28s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(239, 128, 36, 0.45);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #131b2c;
    font-size: 15px;
    font-weight: 700;
    padding: 11px 26px;
    border-radius: 30px;
    text-decoration: none;
    border: 1px solid #e4e8ef;
    transition:border-color 0.28s ease,transform 0.28s ease,box-shadow 0.28s ease;
}

.btn-secondary:hover {
    border-color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(40, 169, 224, 0.18);
}

.play-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(40, 169, 224, 0.12);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visual Section */
.visual-section {
    position: relative;
    /* height: 600px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Main Card */
.main-card {
    width: 350px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 20px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotateY(-15deg);
    z-index: 10;
    animation: popIn 0.8s ease-out 0.3s both;
}

.main-card:hover {
    transform: translateX(-50%) translateY(-60px) rotateY(-10deg);
    box-shadow: 0 30px 80px rgba(40, 169, 224, 0.4);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-50%) rotateY(-25deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(-50%) rotateY(-15deg) scale(1);
    }
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .badge {
    background: linear-gradient(135deg, #28a9e0, #1518b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 14px;
} */

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8, #e8f0f8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(40, 169, 224, 0.1);
}

.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    font-weight: 600;
}

.item-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #28a9e0, #1518b1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Secondary Cards */
.secondary-card {
    width: 140px;
    padding: 20px 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    color: #001a4d;
    z-index: 5;
}

.secondary-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(40, 169, 224, 0.3);
}

.card-2 {
    top: 40px;
    left: 20px;
    animation: popIn 0.8s ease-out 0.4s both;
}

.card-3 {
    top: 350px;
    left: 40px;
    animation: popIn 0.8s ease-out 0.5s both;
}

.card-4 {
    top: 200px;
    right: 30px;
    animation: popIn 0.8s ease-out 0.6s both;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        rgba(40, 169, 224, 0.15),
        rgba(21, 24, 177, 0.15)
    );
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a9e0;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.secondary-card:hover .card-icon {
    background: linear-gradient(135deg, #28a9e0, #1518b1);
    color: white;
    transform: scale(1.1);
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.secondary-card h5 {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    color: #001a4d;
}

/* Glow Effect */
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(40, 169, 224, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .services-modern-banner {
        min-height: auto;
        padding: 60px 0 0;
    }

    .services-heading {
        font-size: 45px;
    }

    .banner-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .visual-section {
        height: 450px;
    }

    .main-card {
        width: 320px;
    }

    .secondary-card {
        width: 120px;
        padding: 16px 12px;
    }

    .features-list {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-modern-banner {
        min-height: auto;
        padding: 60px 0 0;
    }

    .container-fluid {
        padding: 0 20px;
    }

    .services-heading {
        font-size: 36px;
    }

    .services-description {
        font-size: 14px;
    }

    .banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visual-section {
        height: 350px;
    }

    .main-card {
        width: 100%;
        max-width: 300px;
        transform: translateX(-50%) translateY(-50%) rotateY(0deg);
    }

    .main-card:hover {
        transform: translateX(-50%) translateY(-50px) rotateY(0deg);
    }

    .secondary-card {
        position: static !important;
        width: 100%;
        margin-bottom: 12px;
    }

    .glow-effect {
        width: 300px;
        height: 300px;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-heading {
        line-height: 1.5;
        font-size: 28px;
    }

    .content-badge {
        font-size: 12px;
        padding: 10px 16px;
    }

    .features-list {
        gap: 16px;
        margin-bottom: 24px;
    }

    .feature-item {
        font-size: 13px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

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

.portfolio-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    background: rgba(40, 169, 224, 0.1);
    color: var(--clr-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.portfolio-heading h2 {
    font-size: clamp(26px, 3.6vw, 38px);
    font-weight: 800;
    margin: 0;
}

.portfolio-heading h2 span {
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* conatct-us */
.contact-info-grid-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    /* margin-top:60px; */
}

.contact-info-card {
    position: relative;
    /* display:flex; */
    align-items: flex-start;
    gap: 22px;
    padding: 15px 25px 15px;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.45s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.contact-info-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #00d4ff);
    border-radius: 4px 4px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 0 12px rgba(79, 70, 229, 0.6), 0 0 4px rgba(0, 212, 255, 0.4);
    z-index: 2;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.contact-info-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.07);
    right: -90px;
    top: -90px;
    transition: 0.5s;
}

.contact-info-card:hover {
    /* transform:translateY(-12px); */
    box-shadow: 0 25px 60px rgba(79, 70, 229, 0.18);
}

.contact-info-card:hover::after {
    transform: scale(1.3);
}

.contact-icon-wrap {
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 20px;
    background: linear-gradient(135deg, #4f46e5, #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.45s;
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.25);
}

.contact-icon-wrap img {
    width: 38px;
    transition: 0.45s;
    /* filter:brightness(0) invert(1); */
}

.contact-info-card:hover .contact-icon-wrap {
    /* transform:rotate(-8deg) scale(1.08); */
}

.contact-info-card:hover .contact-icon-wrap img {
    transform: scale(1.15);
}

.contact-info-body {
    /* flex:1; */
}

.contact-info-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #4f46e5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.contact-info-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-links a {
    color: #222;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.contact-info-links a:hover {
    color: #4f46e5;
    transform: translateX(6px);
}

.contact-info-links p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 16px;
}

@media (max-width: 768px) {
    .contact-info-card {
        padding: 28px 22px;
        gap: 18px;
    }

    .contact-icon-wrap {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }

    .contact-icon-wrap img {
        width: 30px;
    }

    .contact-info-links a {
        font-size: 16px;
    }
}

/* button */

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 220px;
    /* height:px; */
    padding: 8px 8px 8px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    transition: 0.45s ease;
}

.hero-btn span {
    z-index: 2;
}

.hero-btn .btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.hero-btn .btn-icon svg {
    width: 18px;
    height: 18px;
    transition: 0.4s;
}

/* Primary */

.hero-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff6a2a, #ff9b21);
    box-shadow: 0 15px 35px rgba(255, 118, 33, 0.35);
}

.hero-btn-primary .btn-icon {
    background: #fff;
    color: #ff6a2a;
}

.hero-btn-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(255, 118, 33, 0.45);
}

.hero-btn-primary:hover .btn-icon {
    transform: translateX(8px);
}

.hero-btn-primary:hover svg {
    transform: translateX(3px);
}

/* Secondary */

.hero-btn-secondary {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.hero-btn-secondary .btn-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.hero-btn-secondary:hover {
    background: #fff;
    color: #0a3d91;
    border-color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.hero-btn-secondary:hover .btn-icon {
    background: #0a3d91;
    color: #fff;
    transform: translateX(8px);
}

.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.hero-btn:hover::before {
    left: 140%;
}

.web-design-sec1 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.web-design-sec1 h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.web-design-sec1-content1 {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: #fff;
    border-radius: 16px;
    border-left: 5px solid #2563eb;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.web-design-sec1-content1:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.18);
}

.web-design-sec1-content1 h5 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.6;
}

/* review section  */

.trust-section {
    padding: 40px 0;
    background: linear-gradient(
        135deg,
        rgba(40, 169, 224, 0.02) 0%,
        rgba(61, 58, 140, 0.02) 100%
    );
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(40, 169, 224, 0.1);
    color: #28a9e0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    font-size: clamp(14px, 2vw, 16px);
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Trust Cards Grid */
.trust-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    justify-items: center;
    align-items: stretch;
}

.trust-card-container {
    width: 100%;
    max-width: 240px;
}

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 180px;
    padding: 28px 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(40, 169, 224, 0.04) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.trust-card:hover {
    border-color: rgba(40, 169, 224, 0.4);
    box-shadow: 0 12px 32px rgba(40, 169, 224, 0.15);
    transform: translateY(-6px);
}

.trust-card:hover::before {
    opacity: 1;
}

.card-content {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 8px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    max-height: 56px;
}

.logo-wrapper svg,
.trust-logo {
    max-width: 100%;
    height: auto;
    max-height: 48px;
    object-fit: contain;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.stars {
    font-size: 16px;
    letter-spacing: 2px;
    color: #ffc107;
    font-weight: 600;
    white-space: nowrap;
}

.score {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    min-width: 28px;
    text-align: center;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1518b1;
    margin: 8px 0 0 0;
    line-height: 1.3;
    text-align: center;
}

/* Tablet Breakpoint (1024px) */
@media (max-width: 1024px) {
    .trust-cards-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .trust-card-container {
        max-width: 220px;
    }

    .trust-card {
        min-height: 220px;
        padding: 24px 16px;
        gap: 12px;
    }

    .section-title {
        font-size: clamp(22px, 4vw, 36px);
    }
}

/* Large Mobile/Small Tablet (768px) */
@media (max-width: 768px) {
    .trust-section {
        padding: 40px 0;
    }

    .trust-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-card-container {
        max-width: 100%;
    }

    .trust-card {
        min-height: 200px;
        padding: 20px 14px;
        gap: 10px;
    }

    .logo-wrapper {
        min-height: 40px;
        max-height: 48px;
    }

    .logo-wrapper svg,
    .trust-logo {
        max-height: 40px;
    }

    .rating {
        gap: 6px;
        margin-top: 4px;
    }

    .stars {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .score {
        font-size: 14px;
    }

    .section-title {
        font-size: clamp(20px, 5vw, 28px);
    }

    .section-description {
        font-size: 14px;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .trust-section {
        padding: 32px 0;
    }

    .trust-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-card {
        min-height: 180px;
        padding: 16px 12px;
        gap: 8px;
        border-radius: 12px;
    }

    .logo-wrapper {
        min-height: 36px;
        max-height: 40px;
    }

    .logo-wrapper svg,
    .trust-logo {
        max-height: 36px;
    }

    .stars {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .score {
        font-size: 13px;
    }

    .card-title {
        font-size: 14px;
    }

    .section-title {
        font-size: clamp(18px, 5vw, 24px);
        margin-bottom: 12px;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
    .trust-cards-wrapper {
        gap: 10px;
    }

    .trust-card {
        min-height: 160px;
        padding: 12px 10px;
        gap: 6px;
    }

    .rating {
        gap: 4px;
    }

    .logo-wrapper {
        min-height: 32px;
        max-height: 36px;
    }

    .logo-wrapper svg,
    .trust-logo {
        max-height: 32px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .trust-card {
        transition: none;
    }

    .trust-card::before {
        transition: none;
    }

    .trust-card:hover {
        transform: none;
    }
}

/* Focus State */
.trust-card:focus-visible {
    outline: 2px solid #28a9e0;
    outline-offset: 2px;
}


.card-icon-wrapper i {
    font-size: 34px;
    color: #d76c14; /* Change as needed */
}


/* ===  marquee section == */

.tfm-marquee-section{
    position:relative;
    overflow:hidden;
    /* padding:25px 0; */
    /* background:#fff; */
}

.tfm-marquee{
    overflow:hidden;
}

.tfm-track{
    display:flex;
    align-items:center;
    gap:18px;
    width:max-content;
    animation:tfmMarqueeScroll 28s linear infinite;
}

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

.tfm-card{
    display:flex;
    align-items:center;
    gap:12px;

    
    padding: 10px 15px;


    white-space:nowrap;

    border-radius:999px;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(18px);

    border:1px solid rgba(226,232,240,.9);

    box-shadow:0 10px 25px rgba(15, 23, 42, 0);

    transition:all .35s ease;
}

.tfm-card i{
    width:35px;
    height:35px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#fff;

    font-size:18px;

    transition:all .35s ease;
}

.tfm-card span{
    font-size:15px;
    font-weight:600;
    color:#1e293b;
}

.tfm-card:hover{
    transform:translateY(-5px);
    border-color:#3b82f6;
    box-shadow:0 18px 15px rgba(37,99,235,.18);
}

.tfm-card:hover i{
    transform:rotate(-12deg) scale(1.08);
}

.tfm-fade{
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:5;
    pointer-events:none;
}

.tfm-fade-left{
    left:0;
    background:linear-gradient(to right,#fff,transparent);
}

.tfm-fade-right{
    right:0;
    background:linear-gradient(to left,#fff,transparent);
}

@keyframes tfmMarqueeScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}



.animated-arrow {
    font-weight: 800;
    display: inline-block;
    font-size: 20px;
    animation: moveLeft 1s ease-in-out infinite,
               blink 1s infinite;
}

@keyframes moveLeft {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.development-sec-img,
.development-sec-txt{
    will-change: transform, opacity;
}

.whatsapp-fab .fa-brands, .fab {
    font-family: "Poppins", sans-serif !important;
}

.call-fab {
    background: #0d6efd;
    color: #fff;
    position: relative;
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-fab:hover {
    background: #0b5ed7;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.45);
}

.dropdown-toggle::after {
    border-top:  1px solid;
}

/* ==========================================
   SERVICES MODERN BANNER CORPORATE REDESIGN
   ========================================== */

.services-modern-banner {
    position: relative;
    padding: 40px 0 50px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf6ff 50%, #f1f5f9 100%);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
}

/* Glowing Fluid Orbs in Background - Soft Light Ambient Glows */
.services-modern-banner .glow-orb-1,
.services-modern-banner .glow-orb-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

.services-modern-banner .glow-orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(40, 169, 224, 0.18), transparent 70%);
    top: -180px;
    left: -120px;
    animation: orb-bounce 14s ease-in-out infinite alternate;
}

.services-modern-banner .glow-orb-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(239, 128, 36, 0.15), transparent 70%);
    bottom: -180px;
    right: -120px;
    animation: orb-bounce 18s ease-in-out infinite alternate-reverse;
}

/* Background Grid Overlay */
.services-modern-banner .banner-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    opacity: 0.7;
    mask-image: radial-gradient(ellipse at 50% 50%, black 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 70%, transparent 100%);
}

.services-modern-banner .container-fluid {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Banner Content Grid */
.services-modern-banner .banner-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 80px;
    align-items: center;
}

/* Content Badge */
.services-modern-banner .content-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(40, 169, 224, 0.1);
    border: 1px solid rgba(40, 169, 224, 0.28);
    box-shadow: 0 4px 15px rgba(40, 169, 224, 0.08);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    color: #0284c7;
    text-transform: uppercase;
}

.services-modern-banner .badge-pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: badge-pulse-glow 1.5s infinite;
}

@keyframes badge-pulse-glow {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); opacity: 0; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Heading styling */
.services-modern-banner .services-heading {
    font-size: 54px;
    font-weight: 850;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: #0f172a;
}

.services-modern-banner .heading-line {
    white-space: normal;
    display: block;
    min-height: 1.2em;
}

.services-modern-banner .text-highlight {
    padding: 8px 0;
    color: #f97316;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px rgba(249, 115, 22, 0.2));
    display: inline-block;
    vertical-align: top;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}

.services-modern-banner .text-highlight.typing-cursor-off::after {
    opacity: 0 !important;
    animation: none !important;
}

.services-modern-banner .services-description {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    max-width: 580px;
    margin-bottom: 36px;
    font-weight: 450;
}

/* Features List Badge Grid */
.services-modern-banner .features-list {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.services-modern-banner .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #334155;
    font-size: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 9px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-modern-banner .feature-item:hover {
    background: #ffffff;
    border-color: #38bdf8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 169, 224, 0.15);
}

.services-modern-banner .feature-icon {
    width: 26px;
    height: 26px;
    background: rgba(40, 169, 224, 0.12);
    border: 1px solid rgba(40, 169, 224, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    font-size: 11px;
    flex-shrink: 0;
}

/* CTA buttons styling */
.services-modern-banner .banner-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.services-modern-banner .btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    letter-spacing: 0.3px;
}

.services-modern-banner .btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 38px rgba(249, 115, 22, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.services-modern-banner .btn-primary svg {
    transition: transform 0.3s ease;
}

.services-modern-banner .btn-primary:hover svg {
    transform: translateX(5px);
}

.services-modern-banner .btn-secondary {
    background: #ffffff;
    color: #0284c7;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: 1.5px solid rgba(40, 169, 224, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.services-modern-banner .btn-secondary:hover {
    background: #f0f9ff;
    border-color: #0284c7;
    color: #0369a1;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(40, 169, 224, 0.18);
}

.services-modern-banner .play-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(40, 169, 224, 0.12);
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    transition: all 0.3s ease;
}

.services-modern-banner .btn-secondary:hover .play-icon {
    background: #0284c7;
    color: #ffffff;
    transform: scale(1.1);
}

/* ==========================================
   VISUAL SECTION (3D GLASS SELECTOR - LIGHT MODE)
   ========================================== */

.services-modern-banner .visual-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.services-modern-banner .visual-container {
    position: relative;
    width: 100%;
    max-width: 375px;
    perspective: 1200px;
    margin: auto;
}

.services-modern-banner .floating-card.main-card {
    position: relative;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 
        0 25px 60px rgba(15, 23, 42, 0.09),
        0 0 35px rgba(40, 169, 224, 0.07),
        inset 0 1px 0 #ffffff;
    transform: rotateY(-10deg) rotateX(5deg) rotateZ(1deg);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-modern-banner .visual-container:hover .floating-card.main-card {
    transform: rotateY(-3deg) rotateX(2deg) rotateZ(0deg) translateY(-8px);
    border-color: rgba(40, 169, 224, 0.4);
    box-shadow: 
        0 35px 80px rgba(15, 23, 42, 0.14),
        0 0 45px rgba(40, 169, 224, 0.15),
        inset 0 1px 0 #ffffff;
}

.services-modern-banner .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
}

.services-modern-banner .badge {
    background: rgba(40, 169, 224, 0.1);
    color: #0284c7;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 1px solid rgba(40, 169, 224, 0.25);
    box-shadow: 0 2px 8px rgba(40, 169, 224, 0.06);
}

.services-modern-banner .card-image {
    width: 100%;
    height: 185px;
    border-radius: 16px;
    overflow: hidden;
    margin: 14px 0;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.03);
}

.services-modern-banner .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-modern-banner .floating-card.main-card:hover .service-image {
    transform: scale(1.06);
}

.services-modern-banner .card-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 0;
    border: none;
}

.services-modern-banner .list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.services-modern-banner .list-item:hover {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(40, 169, 224, 0.4);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(40, 169, 224, 0.08);
}

.services-modern-banner .list-item.active-item {
    background: linear-gradient(135deg, rgba(40, 169, 224, 0.12) 0%, rgba(239, 128, 36, 0.08) 100%);
    border: 1.5px solid rgba(40, 169, 224, 0.5);
    color: #0284c7;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(40, 169, 224, 0.12);
}

.services-modern-banner .item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-modern-banner .item-dot {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.services-modern-banner .list-item.active-item .item-dot {
    background: #0284c7;
    box-shadow: 0 0 10px #0284c7;
    transform: scale(1.2);
}

.services-modern-banner .animated-arrow {
    color: #0284c7;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.services-modern-banner .list-item.active-item:hover .animated-arrow {
    transform: translateX(-4px);
}

/* Floating Badges */
.services-modern-banner .floating-badge-tag {
    position: absolute;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1), 0 0 20px rgba(40, 169, 224, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 12;
    pointer-events: none;
}

.services-modern-banner .float-badge-1 {
    top: 40px;
    left: -45px;
    animation: float-tag-1 6s ease-in-out infinite alternate;
}

.services-modern-banner .float-badge-2 {
    bottom: -15px;
    right: -25px;
    animation: float-tag-2 7s ease-in-out infinite alternate;
}

@keyframes float-tag-1 {
    0% { transform: translateY(0) rotate(2deg); }
    100% { transform: translateY(-12px) rotate(-1deg); }
}

@keyframes float-tag-2 {
    0% { transform: translateY(0) rotate(-2deg); }
    100% { transform: translateY(12px) rotate(1deg); }
}

/* Animations */
@keyframes orb-bounce {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.1); }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES (ALL DEVICES)
   ========================================== */

/* Large Desktop & Laptops (1200px - 1399px) */
@media (max-width: 1399px) {
    .services-modern-banner .banner-content {
        gap: 50px;
    }
    .services-modern-banner .services-heading {
        font-size: 46px;
    }
    .services-modern-banner .visual-container {
        max-width: 350px;
    }
    .services-modern-banner .float-badge-1 {
        left: -25px;
    }
    .services-modern-banner .float-badge-2 {
        right: -15px;
    }
}

/* Tablets & Small Laptops (992px - 1199px) */
@media (max-width: 1199px) {
    .services-modern-banner {
        padding: 60px 0 70px;
    }
    .services-modern-banner .banner-content {
        gap: 40px;
    }
    .services-modern-banner .services-heading {
        font-size: 40px;
    }
    .services-modern-banner .services-description {
        font-size: 16px;
    }
    .services-modern-banner .visual-container {
        max-width: 330px;
    }
    .services-modern-banner .floating-card.main-card {
        transform: rotateY(-6deg) rotateX(3deg) rotateZ(0deg);
        padding: 18px;
    }
    .services-modern-banner .card-image {
        height: 160px;
    }
    .services-modern-banner .float-badge-1 {
        top: 20px;
        left: -20px;
        padding: 8px 14px;
        font-size: 11.5px;
    }
    .services-modern-banner .float-badge-2 {
        bottom: -10px;
        right: -10px;
        padding: 8px 14px;
        font-size: 11.5px;
    }
}

/* Portrait Tablets & Large Mobiles (768px - 991px) */
@media (max-width: 991px) {
    .services-modern-banner {
        padding: 50px 0 60px;
        text-align: center;
    }
    .services-modern-banner .container-fluid {
        padding: 0 24px;
    }
    .services-modern-banner .banner-content {
        grid-template-columns: 1fr !important;
        gap: 45px;
    }
    .services-modern-banner .content-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .services-modern-banner .services-heading {
        font-size: 36px;
    }
    .services-modern-banner .services-description {
        margin-left: auto;
        margin-right: auto;
    }
    .services-modern-banner .features-list {
        justify-content: center;
    }
    .services-modern-banner .banner-cta {
        justify-content: center;
    }
    .services-modern-banner .visual-section {
        display: none !important;
    }
    .services-modern-banner .float-badge-1,
    .services-modern-banner .float-badge-2 {
        display: none !important;
    }
}

/* Mobile Landscape & Medium Mobiles (576px - 767px) */
@media (max-width: 767px) {
    .services-modern-banner {
        padding: 45px 0 50px;
    }
    .services-modern-banner .services-heading {
        font-size: 32px;
        letter-spacing: -1px;
    }
    .services-modern-banner .heading-line {
        min-height: auto;
    }
    .services-modern-banner .text-highlight {
        white-space: normal !important;
    }
    .services-modern-banner .services-description {
        font-size: 15.5px;
        margin-bottom: 28px;
    }
    .services-modern-banner .features-list {
        gap: 10px;
        margin-bottom: 30px;
    }
    .services-modern-banner .feature-item {
        padding: 8px 16px;
        font-size: 13px;
    }
    .services-modern-banner .banner-cta {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
    .services-modern-banner .btn-primary,
    .services-modern-banner .btn-secondary {
        flex: 1;
        width: auto;
        padding: 12px 14px;
        font-size: 13.5px;
        white-space: nowrap;
        justify-content: center;
        text-align: center;
        gap: 6px;
    }
    .services-modern-banner .visual-container {
        max-width: 100%;
    }
}

/* Mobile Portrait & Small Mobiles (320px - 575px) */
@media (max-width: 575px) {
    .services-modern-banner {
        padding: 35px 0 45px;
    }
    .services-modern-banner .container-fluid {
        padding: 0 16px;
    }
    .services-modern-banner .content-badge {
        padding: 6px 14px;
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 18px;
    }
    .services-modern-banner .services-heading {
        font-size: 26px;
        letter-spacing: -0.5px;
        margin-bottom: 18px;
    }
    .services-modern-banner .services-description {
        font-size: 14.5px;
        line-height: 1.65;
        margin-bottom: 24px;
    }
    .services-modern-banner .features-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 24px;
        width: 100%;
    }
    .services-modern-banner .feature-item {
        padding: 7px 14px;
        font-size: 12.5px;
    }
    .services-modern-banner .banner-cta {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: 100%;
        gap: 8px;
        justify-content: center;
    }
    .services-modern-banner .btn-primary,
    .services-modern-banner .btn-secondary {
        flex: 1 1 50%;
        width: auto !important;
        padding: 12px 10px;
        font-size: 12.5px;
        letter-spacing: 0;
        white-space: nowrap;
        justify-content: center;
        text-align: center;
        gap: 5px;
    }
    .services-modern-banner .btn-primary svg {
        width: 14px;
        height: 14px;
    }
    .services-modern-banner .play-icon {
        width: 20px;
        height: 20px;
        font-size: 8px;
    }
    .services-modern-banner .floating-card.main-card {
        padding: 16px;
        border-radius: 18px;
    }
    .services-modern-banner .card-image {
        height: 145px;
        margin: 10px 0;
    }
    .services-modern-banner .list-item {
        padding: 9px 12px;
        font-size: 13px;
    }
}

.gradient-word {
    display: inline-block;
    transition: opacity .35s ease, transform .35s ease;
}

.gradient-word.changing {
    opacity: 0;
    transform: translateY(8px);
}
/* ==========================================
   HOME PAGE VISUAL ENHANCEMENTS
   ========================================== */

/* --- Section Spacing Normalization --- */
/* .welcome-section,
.trust-section,
.development-sec,
.about-section,
.portfolio-scroll-sec,
.our-technologies,
.clients-say,
.our-blog,
.faq-section {
    padding: 100px 0;
} */

@media (max-width: 768px) {
    .welcome-section,
    .trust-section,
    .development-sec,
    .about-section,
    .portfolio-scroll-sec,
    .our-technologies,
    .clients-say,
    .our-blog,
    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .welcome-section,
    .trust-section,
    .development-sec,
    .about-section,
    .portfolio-scroll-sec,
    .our-technologies,
    .clients-say,
    .our-blog,
    .faq-section {
        padding: 40px 0;
    }
}

/* --- Section Header Typography Refinement --- */
.dev-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.dev-eyebrow {
    background: linear-gradient(135deg, rgba(40, 169, 224, 0.12), rgba(21, 24, 177, 0.08));
    border: 1px solid rgba(40, 169, 224, 0.2);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    letter-spacing: 1.2px;
}

/* --- Welcome Section Enhancement --- */
.welcome-section .welcome-grid {
    gap: 60px;
    align-items: center;
}

.welcome-section .welcome-txt {
    position: relative;
    padding-left: 24px;
}

.welcome-section .welcome-txt::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--clr-primary), var(--clr-secondary));
}

.welcome-section .welcome-img img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.welcome-section .welcome-img img:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* --- Trust Section Card Polish --- */
.trust-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.trust-card .trust-stars {
    transition: transform 0.3s ease;
}

.trust-card:hover .trust-stars {
    transform: scale(1.05);
}

/* --- Development Section Refinement --- */
.development-sec .dev-row {
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 20px;
}

.development-sec .dev-row:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--clr-primary), transparent);
}

.development-sec .dev-row:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* --- Premium GSAP Hero & Development Section Enhancements --- */
.development-sec {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.dev-ambient-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 169, 224, 0.15) 0%, rgba(21, 24, 177, 0.04) 50%, transparent 75%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    top: 10%;
    left: -140px;
}

.dev-ambient-glow--alt {
    left: auto;
    right: -140px;
    top: 50%;
    background: radial-gradient(circle, rgba(239, 128, 36, 0.13) 0%, rgba(21, 24, 177, 0.03) 50%, transparent 75%);
}

.gsap-heading-masked {
    margin: 0 0 16px;
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 800;
    color: #131b2c;
    line-height: 1.22;
    letter-spacing: -0.4px;
}

.heading-line-wrap {
    display: block;
    overflow: hidden;
    padding-bottom: 6px;
    margin-bottom: -4px;
}

.heading-line {
    display: inline-block;
    will-change: transform, opacity, clip-path;
}

.dev-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-deep));
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(40, 169, 224, 0.35);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    cursor: default;
}

.dev-badge:hover {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 12px 26px rgba(40, 169, 224, 0.45);
}

.dev-badge--alt:hover {
    box-shadow: 0 12px 26px rgba(239, 128, 36, 0.45);
}

.gsap-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #2a323e;
    margin-bottom: 14px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.gsap-feature-item:hover {
    transform: translateX(5px);
    color: var(--clr-deep);
}

.gsap-check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gsap-feature-item:hover .gsap-check-icon {
    transform: scale(1.12);
}

.gsap-cta-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-primary);
    text-decoration: none;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

.gsap-cta-link span {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gsap-cta-link .cta-arrow {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gsap-cta-link .cta-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.gsap-cta-link:hover {
    color: var(--clr-deep);
}

.gsap-cta-link:hover span {
    transform: translateX(2px);
}

.gsap-cta-link:hover .cta-underline {
    transform: scaleX(1);
}

.gsap-cta-link:hover .cta-arrow {
    transform: translateX(7px);
}

.gsap-cta-link--alt {
    color: var(--clr-secondary);
}

.gsap-cta-link--alt .cta-underline {
    background: linear-gradient(90deg, var(--clr-secondary), #d76c14);
}

.gsap-cta-link--alt:hover {
    color: #d76c14;
}

.development-sec .gsap-img-parallax-container {
    perspective: 1000px;
}

.development-sec .img-frame {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px -10px rgba(21, 24, 177, 0.14), 0 8px 24px -4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.development-sec .img-frame:hover {
    box-shadow: 0 28px 65px -12px rgba(21, 24, 177, 0.2), 0 12px 30px -6px rgba(0, 0, 0, 0.08);
}

/* --- Statistics Section Enhancement --- */
.statistic-section .stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}

.statistic-section .stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.statistic-section .stat h3 {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.statistic-section .stat .stats-text {
    letter-spacing: 2px;
    font-size: 12px;
    opacity: 0.7;
    margin-top: 8px;
}

/* --- Portfolio Tag Color System --- */
.ps-card:nth-child(1) .ps-tag,
.ps-card:nth-child(5) .ps-tag { background: var(--clr-primary); }
.ps-card:nth-child(2) .ps-tag,
.ps-card:nth-child(6) .ps-tag { background: var(--clr-secondary); }
.ps-card:nth-child(3) .ps-tag,
.ps-card:nth-child(7) .ps-tag { background: var(--clr-deep); }
.ps-card:nth-child(4) .ps-tag,
.ps-card:nth-child(8) .ps-tag { background: #10b981; }

.ps-card .ps-card-media img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ps-card:hover .ps-card-media img {
    transform: scale(1.06);
}

/* --- Blog Section Enhancement --- */
.our-blog .swiper-slide {
    border-radius: 16px;
    overflow: hidden;
}

.our-blog .swiper-slide1 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    padding: 30px 24px 24px;
}

.our-blog .blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.our-blog .blog-meta-tag {
    background: rgba(40, 169, 224, 0.25);
    color: #7dd3fc;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
}

/* --- FAQ Section Polish --- */
.faq-section .question {
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    padding-left: 16px;
}

.faq-section .question:hover {
    border-left-color: var(--clr-primary);
    background: rgba(40, 169, 224, 0.04);
}

.faq-section .question.active {
    border-left-color: var(--clr-secondary);
    background: rgba(239, 128, 36, 0.04);
}

.faq-section .answercont {
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global CTA Banner Enhancement --- */
.global-cta-banner {
    overflow: hidden;
}

.global-cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 169, 224, 0.15), transparent 70%);
    pointer-events: none;
    animation: cta-glow-float 8s ease-in-out infinite alternate;
}

@keyframes cta-glow-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 20px) scale(1.2); }
}

/* --- Testimonial Quote Decoration --- */
.testimonial-quote-icon {
    font-size: 28px;
    color: var(--clr-primary);
    opacity: 0.2;
    margin-bottom: 8px;
    text-align: center;
}

.clients-say .swiper-slide .slide-content {
    position: relative;
}

/* --- Enhanced Scroll Reveal Animation Helper --- */
@keyframes fadeInUpSmooth {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dev-header {
    animation: fadeInUpSmooth 0.6s ease-out both;
}

/* ==========================================
   ABOUT PAGE MODERN UI ENHANCEMENTS
   ========================================== */



/* --- Why Aimbeat Modern Cards & Features --- */
.why-aimbeat {
    padding: 55px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.why-aimbeat .row {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.why-aimbeat-img-wrapper .why-img-frame {
    position: relative;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.why-aimbeat-img-wrapper .why-img-frame img {
    transition: transform 0.6s ease;
}

.why-aimbeat-img-wrapper:hover .why-img-frame img {
    transform: scale(1.03);
}

.why-trust-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.why-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    margin-bottom: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-feature-card:hover {
    transform: translateX(6px);
    border-color: var(--clr-primary);
    box-shadow: 0 10px 25px rgba(40, 169, 224, 0.1);
}

.why-feature-card .feature-num {
    font-size: 14px;
    font-weight: 700;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-deep));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature-card .feature-num--alt {
    background: linear-gradient(135deg, var(--clr-secondary), #d97706);
}

.why-feature-card .feature-body h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-dark);
    margin-bottom: 2px;
}

.why-feature-card .feature-body p {
    font-size: 13px;
    line-height: 1.45;
    color: #64748b;
    margin-bottom: 0;
}

/* --- WHY WE'RE DIFFERENT - Modern Glassmorphic Banner --- */
.why-different-box {
    background: radial-gradient(850px circle at 0% 0%, rgba(40, 169, 224, 0.16), transparent 50%),
                radial-gradient(650px circle at 100% 100%, rgba(239, 128, 36, 0.12), transparent 45%),
                linear-gradient(135deg, #070e1c 0%, #0d1a30 50%, #091427 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 22px !important;
    padding: 28px 32px !important;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px -15px rgba(7, 14, 28, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
    z-index: 1;
}

.why-different-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 169, 224, 0.22), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.why-different-box::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 128, 36, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.why-different-box > .row {
    position: relative;
    z-index: 1;
}

/* Left Lead Content */
.different-lead-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.different-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    padding: 5px 12px;
    background: rgba(239, 128, 36, 0.12);
    border: 1px solid rgba(239, 128, 36, 0.35);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #f59e0b;
}

.different-badge i {
    font-size: 11px;
}

.different-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff !important;
    letter-spacing: -0.3px;
}

.diff-title-highlight {
    background: linear-gradient(135deg, #28a9e0, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.different-subtitle {
    font-size: 13px;
    line-height: 1.55;
    color: #94a3b8;
}

/* Differentiator Cards Grid */
.different-grid {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
}

.diff-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--card-accent-bg), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.diff-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--card-accent-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--card-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.diff-card-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.diff-card-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 2px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.diff-card-tag {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.2;
    transition: color 0.3s ease;
}

/* Hover States */
.diff-card:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: var(--card-accent) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px -5px rgba(0, 0, 0, 0.35), 0 0 15px -3px var(--card-accent-bg);
}

.diff-card:hover::before {
    opacity: 1;
}

.diff-card:hover .diff-icon-wrap {
    transform: scale(1.08);
    background: var(--card-accent);
    color: #ffffff;
    box-shadow: 0 4px 12px var(--card-accent-bg);
}

.diff-card:hover .diff-card-title {
    color: #ffffff;
}

.diff-card:hover .diff-card-tag {
    color: #94a3b8;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .why-different-box {
        padding: 24px 20px !important;
    }
    .different-lead-content {
        margin-bottom: 12px;
        text-align: center;
        align-items: center;
    }
    .different-title {
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .diff-card-title {
        white-space: normal;
    }
}

/* --- Vision & Mission Cards Modern --- */
.vision-card-modern {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vision-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.vision-card-modern .card-accent-bar {
    height: 4px;
    width: 100%;
}

.vision-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.bg-primary-subtle { background: rgba(40, 169, 224, 0.12); }
.bg-warning-subtle { background: rgba(239, 128, 36, 0.12); }

.vision-card-modern h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-dark);
}

.vision-card-modern p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* --- Something Remarkable CTA Section --- */
.something-remarkable-cta {
    position: relative;
    overflow: hidden;
    padding: 45px 0;
    margin: 30px 15px;
    background: linear-gradient(135deg, #0f172a 0%, #1518b1 100%);
    border-radius: 24px;
}

.something-remarkable-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 169, 224, 0.3), transparent 70%);
    pointer-events: none;
}

/* ==========================================
   CONTACT US PAGE MODERN UI ENHANCEMENTS
   ========================================== */

/* --- Contact Info Cards Modern --- */
.contact-info-card-modern {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-info-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--clr-primary);
}

.contact-card-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-info-card-modern h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 6px;
}

.contact-card-links a {
    transition: color 0.25s ease, transform 0.25s ease;
}

.contact-card-links a:hover {
    color: var(--clr-primary) !important;
    transform: translateX(3px);
}

.contact-address-text {
    font-style: normal;
    font-size: 14px;
    color: #334155 !important;
}

/* --- Contact Form & Map Container --- */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
}

.contact-map-wrapper iframe {
    border-radius: 20px;
}

/* ==========================================
   FOOTER MODERN UI & RESPONSIVE REFINEMENTS
   ========================================== *//* ==========================================
   FOOTER MODERN EXECUTIVE UI REDESIGN
   ========================================== */

.footer-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #edf6ff 100%) !important;
    position: relative;
    overflow: hidden;
    color: #1e293b;
    /* padding-top: 20px; */
    border-top: 1px solid #e2e8f0;
}

.footer-section .glow-orb-1,
.footer-section .glow-orb-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.25;
    z-index: 0;
}

.footer-section .glow-orb-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(40, 169, 224, 0.15), transparent 70%);
    top: -100px;
    left: -100px;
}

.footer-section .glow-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 128, 36, 0.12), transparent 70%);
    bottom: -150px;
    right: -100px;
}

.footer-top-accent {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #28a9e0 0%, #ef8024 50%, #1518b1 100%);
}

/* Footer CTA Banner */
.footer-cta-banner {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05), 0 0 20px rgba(40, 169, 224, 0.08);
}

.footer-cta-banner .btn-primary {
    background: linear-gradient(135deg, var(--clr-primary, #28a9e0), var(--clr-deep, #1518b1)) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(40, 169, 224, 0.35) !important;
    transition: all 0.35s ease !important;
}

.footer-cta-banner .btn-primary:hover {
    background: linear-gradient(135deg, #1e96ca, #0e108a) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(21, 24, 177, 0.45) !important;
}

.footer-brand-wrap .footer-logo {
    max-width: 210px;
}

.footer-brand-wrap .footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b !important;
}

.social-icons-modern {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons-modern .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.social-icons-modern .social-btn i {
    color: #28a9e0 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    transition: color 0.35s ease;
}

.social-icons-modern .social-btn:hover {
    background: linear-gradient(135deg, #28a9e0 0%, #1518b1 100%);
    border-color: #28a9e0;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(40, 169, 224, 0.3);
}

.social-icons-modern .social-btn:hover i {
    color: #ffffff !important;
}

.footer-col .footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 22px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.3px;
}

.footer-col .footer-title .title-badge {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 32px;
    height: 2.5px;
    background: linear-gradient(90deg, #28a9e0, #1518b1);
    border-radius: 2px;
}

.footer-links-list li {
    margin-bottom: 11px;
}

.footer-links-list li a {
    color: #64748b !important;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.28s ease;
    text-decoration: none;
}

.footer-links-list li a i {
    font-size: 10px;
    opacity: 0.6;
    color: #28a9e0 !important;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.footer-links-list li a:hover {
    color: #28a9e0 !important;
    transform: translateX(6px);
}

.footer-links-list li a:hover i {
    opacity: 1;
    color: #28a9e0 !important;
    transform: translateX(2px);
}

.footer-contact-list .contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-list .contact-row-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(40, 169, 224, 0.1);
    border: 1px solid rgba(40, 169, 224, 0.2);
    color: #28a9e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-list .contact-row-icon i {
    color: #28a9e0 !important;
    font-size: 15px !important;
    line-height: 1 !important;
}

.footer-contact-list .contact-row-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #475569 !important;
}

.footer-contact-list .contact-row-text a {
    transition: color 0.25s ease;
    color: #475569 !important;
}

.footer-contact-list .contact-row-text a:hover {
    color: #28a9e0 !important;
}

.footer-bottom-divider {
    height: 1px;
    background: #e2e8f0;
}

.copyright-text {
    font-size: 13.5px;
    color: #64748b !important;
}

.copyright-text strong {
    color: #0f172a;
}

.footer-policy-links a {
    transition: color 0.25s ease;
    color: #64748b !important;
}

.footer-policy-links a:hover {
    color: #28a9e0 !important;
}

/* Responsive adjustments for mobile/tablet */
@media (max-width: 991.98px) {
    .footer-col {
        margin-bottom: 20px;
    }
    .footer-cta-banner {
        padding: 24px !important;
    }
}

@media (max-width: 575.98px) {
    .footer-section {
        padding-top: 30px;
    }
    .footer-brand-wrap .footer-logo {
        max-width: 190px;
    }
    .footer-col .footer-title {
        font-size: 16px;
        margin-bottom: 14px;
    }
}

/* --- Modern Industry Pill Badge Styling --- */
.industry-pill-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 18px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.industry-pill-badge:hover {
    transition: all 0.4s ease;
    transform: translateY(-4px);
    border-color: #28a9e0;
    box-shadow: 0 12px 28px rgba(40, 169, 224, 0.15);
}

.industry-pill-badge:hover .pill-title {
    color: #1518b1 !important;
}

.industry-pill-badge:hover .pill-icon-box {
    transform: scale(1.12) rotate(-4deg);
    box-shadow: 0 6px 16px rgba(40, 169, 224, 0.2);
}

.pill-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pill-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* ==========================================
   GLOBAL MODERN SLIDER ARROW BUTTON STYLING (EXACT REFERENCE DESIGN)
   ========================================== */
.slick-prev,
.slick-next {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    z-index: 10 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}

.slick-prev {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1) !important;
}

.slick-next {
    background: #28a9e0 !important;
    border: 1px solid #28a9e0 !important;
    box-shadow: 0 8px 22px rgba(40, 169, 224, 0.4) !important;
}

.slick-prev::before,
.slick-next::before {
    font-family: "Font Awesome 6 Free", "bootstrap-icons", sans-serif !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important;
}

.slick-prev::before {
    content: "\f053" !important; /* FontAwesome chevron-left */
    color: #475569 !important;
}

.slick-next::before {
    content: "\f054" !important; /* FontAwesome chevron-right */
    color: #ffffff !important;
}

.slick-prev:hover {
    background: #28a9e0 !important;
    border-color: #28a9e0 !important;
    box-shadow: 0 10px 25px rgba(40, 169, 224, 0.45) !important;
    transform: translateY(-50%) scale(1.08) !important;
}

.slick-prev:hover::before {
    color: #ffffff !important;
}

.slick-next:hover {
    background: #1ba2dc !important;
    border-color: #1ba2dc !important;
    box-shadow: 0 12px 28px rgba(40, 169, 224, 0.55) !important;
    transform: translateY(-50%) scale(1.08) !important;
}

/* ==========================================
   MOBILE BUTTON SIZE OPTIMIZATION (COMPACT & SLEEK)
   ========================================== */
@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    a.btn-primary,
    button.btn-primary,
    a.btn-secondary
    button.btn-secondary,
    .btn-primary.px-4.py-3,
    .btn-primary.px-4 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        font-size: 13.5px !important;
        font-weight: 600 !important;
        letter-spacing: 0.2px !important;
    }

    /* Prevent header CTA buttons from stretching 100% full width on mobile */
    .d-flex.flex-column > .btn-primary,
    .d-flex.flex-column > .btn-secondary,
    .d-flex.flex-column > a.btn-primary,
    .d-flex.flex-column > a.btn-secondary {
        align-self: flex-start !important;
        width: auto !important;
        max-width: max-content !important;
    }

    .btn-primary i,
    .btn-primary svg,
    .btn-secondary i,
    .btn-secondary svg {
        font-size: 13px !important;
    }
}

@media (max-width: 575px) {
    .btn-primary,
    .btn-secondary,
    a.btn-primary,
    button.btn-primary,
    a.btn-secondary,
    button.btn-secondary,
    .btn-primary.px-4.py-3,
    .btn-primary.px-4 {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
    }

    .d-flex.flex-column > .btn-primary,
    .d-flex.flex-column > .btn-secondary,
    .d-flex.flex-column > a.btn-primary,
    .d-flex.flex-column > a.btn-secondary {
        align-self: flex-start !important;
        width: auto !important;
        max-width: max-content !important;
    }

    .btn-primary i,
    .btn-primary svg,
    .btn-secondary i,
    .btn-secondary svg {
        font-size: 12px !important;
    }
}

/* ==========================================
   PREMIUM CONTACT US SECTION STYLES
   ========================================== */

/* Hero Banner & Background Lighting */
.contact-hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #edf6ff 100%);
    position: relative;
}

.contact-hero-section .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
}

.contact-hero-section .glow-orb-1 {
    width: 320px;
    height: 320px;
    background: #28a9e0;
    top: -50px;
    left: -60px;
}

.contact-hero-section .glow-orb-2 {
    width: 280px;
    height: 280px;
    background: #1518b1;
    bottom: -40px;
    right: -40px;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(40, 169, 224, 0.1);
    border: 1px solid rgba(40, 169, 224, 0.25);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #28a9e0;
    text-transform: uppercase;
}

/* Contact Info Cards */
.contact-card-modern {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #28a9e0, #1518b1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(40, 169, 224, 0.4);
    box-shadow: 0 20px 40px rgba(40, 169, 224, 0.12);
}

.contact-card-modern:hover::before {
    opacity: 1;
}

.contact-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(40, 169, 224, 0.12), rgba(21, 24, 177, 0.12));
    color: #28a9e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.contact-card-modern:hover .contact-icon-box {
    background: linear-gradient(135deg, #28a9e0, #1518b1);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(40, 169, 224, 0.35);
    transform: scale(1.08);
}

.contact-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.contact-card-subtitle {
    font-size: 13.5px;
    color: #64748b;
    margin-bottom: 18px;
}

.contact-link-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.contact-link-pill:hover {
    background: rgba(40, 169, 224, 0.08);
    border-color: rgba(40, 169, 224, 0.3);
    color: #28a9e0;
    transform: translateX(4px);
}

/* Contact Form Container */
.premium-contact-form-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
    position: relative;
}

.premium-input-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    display: block;
}

.premium-input-field {
    width: 100%;
    padding: 13px 18px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    font-size: 14.5px;
    color: #0f172a;
    transition: all 0.25s ease;
    outline: none;
}

.premium-input-field:focus {
    background: #ffffff;
    border-color: #28a9e0;
    box-shadow: 0 0 0 4px rgba(40, 169, 224, 0.12);
}

/* Step Card Process */
.process-step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.process-step-card:hover {
    border-color: #28a9e0;
    box-shadow: 0 10px 25px rgba(40, 169, 224, 0.08);
    transform: translateY(-4px);
}

.process-num-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #28a9e0, #1518b1);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

/* Custom Form Validation Styles */
.quote-form-input.is-invalid,
.quote-form-select.is-invalid,
.quote-form-textarea.is-invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.invalid-feedback-custom {
    color: #dc2626;
    font-size: 12.5px;
    font-weight: 600;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Lighthouse SEO & Accessibility Mobile Tap Target Optimization */
.page-btn,
.social-btn,
.social-icon-1,
.social-icon-3,
.blog-filter-btn,
.opening-apply {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Prevent button text from breaking into multiple lines on mobile screens */
.btn,
.btn-primary,
.btn-secondary,
button,
.opening-apply {
    white-space: nowrap !important;
}

/* Responsive Modal Action Buttons for Mobile Devices */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.75rem auto !important;
        max-width: 95% !important;
    }
    .modal-content {
        padding: 1.25rem 1rem !important;
        border-radius: 1.25rem !important;
    }
    .modal-content .btn,
    .modal-content .btn-primary {
        font-size: 13px !important;
        padding: 8px 14px !important;
        white-space: nowrap !important;
        flex: 1 1 auto !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* ==================== AIMBEAT BREADCRUMB SYSTEM (ABSOLUTE TOP-LEFT) ==================== */
.about-hero-section,
.contact-hero-section,
.blog-hero,
.career-hero,
.services-modern-banner {
    position: relative !important;
    padding-top: 60px !important;
}

.aimbeat-breadcrumb-nav {
    position: absolute !important;
    top: 14px !important;
    left: 20px !important;
    z-index: 30 !important;
    margin: 0 !important;
    width: auto !important;
    display: inline-flex !important;
    pointer-events: auto !important;
}

.aimbeat-breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-radius: 0;
    box-shadow: none !important;
    font-size: 12px;
    font-weight: 600;
    list-style: none;
    margin: 0;
}
.aimbeat-breadcrumb .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    color: #475569;
}
.aimbeat-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\F285";
    font-family: "bootstrap-icons";
    font-size: 11px;
    color: #94a3b8;
    padding: 0 8px;
}
.aimbeat-breadcrumb-link {
    color: var(--clr-primary);
    text-decoration: none;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
}
.aimbeat-breadcrumb-link:hover {
    color: var(--clr-secondary);
    text-decoration: none;
}
.aimbeat-breadcrumb .breadcrumb-item.active {
    background: linear-gradient(135deg, rgba(40, 169, 224, 0.12) 0%, rgba(21, 24, 177, 0.08) 100%);
    /* border: 1px solid rgba(40, 169, 224, 0.3); */
    border-radius: var(--radius-pill);
    padding: 3px 6px;
    font-weight: 700;
    /* box-shadow: 0 2px 10px rgba(40, 169, 224, 0.12); */
    color: var(--clr-deep);
}
.aimbeat-breadcrumb .breadcrumb-item.active,
.aimbeat-breadcrumb .breadcrumb-item.active span {
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 991.98px) {
    .about-hero-section,
    .contact-hero-section,
    .blog-hero,
    .career-hero,
    .services-modern-banner {
        padding-top: 55px !important;
    }
    .aimbeat-breadcrumb-nav {
        top: 14px !important;
        left: 16px !important;
    }
}

@media (max-width: 575.98px) {
    .about-hero-section,
    .contact-hero-section,
    .blog-hero,
    .career-hero,
    .services-modern-banner {
        padding-top: 48px !important;
    }
    .aimbeat-breadcrumb-nav {
        top: 10px !important;
        left: 12px !important;
    }
    .aimbeat-breadcrumb {
        font-size: 12px;
    }
    .aimbeat-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 5px;
    }
}
