/********** Template CSS **********/
:root {
    --primary: #0047b1;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
    --blue: #2072ea;
    --navy: #131741;
    --yellow: #ffd800;
    --white: #fff;
    --gradient: linear-gradient(102deg, #2072ea 0%, #131741 110%);
}

/* html { zoom: 80%;} */
/* html { transform: scale(0.8); transform-origin: top left; width: 125%;} */
/* body { width: 125%;} */
/* body{ zoom: 0.8;} */

/*** Spinner ***/
.spinner {
    width: 32px;
    height: 32px;
    background: var(--primary);
    margin: 80px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}

/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 29px;
    height: 29px;
}

.btn-sm-square {
    width: 24px;
    height: 24px;
}

.btn-lg-square {
    width: 38px;
    height: 38px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 20px;
    padding: 28px 0;
    color: #FFFFFF;
    font-size: 14.4px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 16px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 8px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 1.6px;
        bottom: -0.8px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 80%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 11.2px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 24px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.4rem;
    height: 2.4rem;
}

/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 120px;
    height: 4px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 1.6px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -60px;
}

.section-title.section-title-sm::before {
    width: 72px;
    height: 2.4px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4.8px;
    height: 4px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 3.2px;
    height: 2.4px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 116px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -60px;
    }

    50% {
        left: 50%;
        margin-left: 36px;
    }

    100% {
        left: 50%;
        margin-left: -60px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 68px;
    }

    100% {
        left: 0;
    }
}

/*** Service ***/
.service-item {
    position: relative;
    height: 240px;
    padding: 0 24px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 1.6px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 48px;
    bottom: -38.4px;
    left: 50%;
    margin-left: -24px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -19.2px;
    opacity: 1;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 4px;
    width: 12px;
    height: 12px;
    background: #DDDDDD;
    border-radius: 1.6px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 24px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 24px #DDDDDD;
}

/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 2.4px;
    margin-top: 80px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 24px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .24s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .24s .04s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .24s .08s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .24s .12s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -60px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 36px;
    bottom: 36px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 8px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -60px;
    }
}

/* ADDED  */
.scrollable-dropdown {
    max-height: 56vh;
    overflow-y: auto;
    min-width: 280px !important;
    width: 336px !important;
    left: auto;
    right: 0;
    box-sizing: border-box;
}

@media (max-width:991px) {
    .scrollable-dropdown {
        width: 80vw !important;
        min-width: 80vw !important;
        max-width: 80vw !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .dropdown-menu {
        box-sizing: border-box !important;
        padding: 0.4rem 0.64rem !important;
    }

    .navbar-collapse {
        position: relative;
        left: -2.4rem;
    }
}

body,
html {
    overflow-x: hidden;
}

.dropdown-header {
    font-weight: 600;
    color: #0280e0;
    margin-top: 0.4em;
    margin-bottom: 0.2em;
    font-size: 0.8rem;
}

/* CUSTOM CSS BELOW  */
/* HERO SECTION CSS BELOW  */
/* Main background and layout */
.hero-banner {
    background: #0a1736 linear-gradient(100deg, #1c2544 0%, #2d3d67 100%);
    padding: 128px 0;
    position: relative;
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-icons .fi {
    position: absolute;
    opacity: 0.19;
    filter: blur(0.16px) grayscale(0.11);
}

/* Border icons (1-10) */
.fi1 {
    left: 0vw;
    top: 1.6vh;
    animation: floatY1 15.2s linear infinite;
}

.fi2 {
    left: 36vw;
    top: 0vh;
    animation: floatY2 20.8s ease-in-out infinite;
}

.fi3 {
    right: 0vw;
    top: 2.4vh;
    animation: floatY3 18.4s ease-in-out infinite;
}

.fi4 {
    left: 1.6vw;
    top: 33.6vh;
    animation: floatY4 12.8s ease-in-out infinite;
}

.fi5 {
    right: 1.6vw;
    top: 33.6vh;
    animation: floatY5 20s linear infinite;
}

.fi6 {
    left: 1.6vw;
    bottom: 2.4vh;
    animation: floatY6 17.6s ease-in-out infinite;
}

.fi7 {
    left: 29.6vw;
    bottom: 2vh;
    animation: floatY7 16.8s linear infinite;
}

.fi8 {
    left: 40vw;
    bottom: 0.4vh;
    animation: floatY8 12.8s ease-in-out infinite;
}

.fi9 {
    right: 21.6vw;
    bottom: 1.6vh;
    animation: floatY9 14.4s linear infinite;
}

.fi10 {
    right: 1.6vw;
    bottom: 2.4vh;
    animation: floatY10 12s ease-in-out infinite;
}

/* Center/foreground icons (11-14) */
.fi11 {
    left: 21.6vw;
    top: 26.4vh;
    animation: floatCenter1 16s ease-in-out infinite;
}

.fi12 {
    left: 44.8vw;
    top: 36vh;
    animation: floatCenter2 18.4s ease-in-out infinite;
}

.fi13 {
    left: 32vw;
    top: 17.6vh;
    animation: floatCenter3 20.8s ease-in-out infinite;
}

.fi14 {
    left: 48.8vw;
    top: 22.4vh;
    animation: floatCenter4 14.4s ease-in-out infinite;
}

/* Keyframes for all icons */
@keyframes floatY1 {
    0% {
        transform: translateY(0) rotate(-7deg);
    }

    50% {
        transform: translateY(-9.6px) rotate(7deg);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatY2 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25.6px) rotate(-9deg);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatY3 {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-14.4px) rotate(9deg);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatY4 {
    0% {
        transform: translateY(0);
    }

    65% {
        transform: translateY(-8px) rotate(-12deg);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatY5 {
    0% {
        transform: translateY(0);
    }

    80% {
        transform: translateY(-8.8px) rotate(12deg);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatY6 {
    0% {
        transform: translateY(0);
    }

    55% {
        transform: translateY(-11.2px) rotate(-5deg);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatY7 {
    0% {
        transform: translateY(0);
    }

    60% {
        transform: translateY(-13.6px) rotate(10deg);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatY8 {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-8px) rotate(-7deg);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatY9 {
    0% {
        transform: translateY(0);
    }

    60% {
        transform: translateY(-12.8px) rotate(-5deg);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatY10 {
    0% {
        transform: translateY(0);
    }

    90% {
        transform: translateY(-10.4px) rotate(14deg);
    }

    100% {
        transform: translateY(0);
    }
}

/* Center icons - separate slower/different motion */
@keyframes floatCenter1 {
    0% {
        transform: translateY(0) rotate(2deg);
    }

    55% {
        transform: translateY(-24px) rotate(5deg);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatCenter2 {
    0% {
        transform: translateY(0) rotate(-4deg);
    }

    60% {
        transform: translateY(-18.4px) rotate(3deg);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatCenter3 {
    0% {
        transform: translateY(0) rotate(3deg);
    }

    45% {
        transform: translateY(-14.4px) rotate(-2deg);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatCenter4 {
    0% {
        transform: translateY(0) rotate(-2deg);
    }

    40% {
        transform: translateY(-21.6px) rotate(7deg);
    }

    100% {
        transform: translateY(0);
    }
}

/* Hero GIF float */
.hero-gif-wrapper {
    position: relative;
    min-height: 128px;
}

.hero-gif {
    animation: hero-float 2.4s ease-in-out infinite alternate;
}

@keyframes hero-float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-51.2px);
    }
}

/* Responsive adjusts icons & gif placement/opacity for smaller screens */
@media (max-width:991px) {
    .fi1 {
        left: 1.6vw;
        top: 2.4vh;
        transform: scale(0.432);
    }

    .fi2 {
        left: 29.6vw;
    }

    .fi3 {
        right: 1.6vw;
    }

    .fi6,
    .fi10,
    .fi7,
    .fi8,
    .fi9,
    .fi11,
    .fi12,
    .fi13,
    .fi14 {
        transform: scale(0.56);
    }

    .hero-gif {
        max-height: 128px;
    }
}

@media (max-width:767px) {
    .floating-icons .fi {
        opacity: 0.09;
    }

    .fi1 {
        left: 0.8vw;
        top: 0.8vh;
        transform: scale(0.24);
    }

    .fi2 {
        left: 12vw;
        top: 0.8vh;
        transform: scale(0.2);
    }

    .fi3 {
        right: 0.8vw;
        top: 1.6vh;
        transform: scale(0.176);
    }

    .fi4 {
        left: 0.8vw;
        top: 24vh;
    }

    .fi5 {
        right: 0.8vw;
        top: 28.8vh;
    }

    .fi6 {
        left: 3.2vw;
        bottom: 2.4vh;
    }

    .fi7 {
        left: 16.8vw;
        bottom: 1.6vh;
    }

    .fi8 {
        left: 30.4vw;
        bottom: 1.6vh;
    }

    .fi9 {
        right: 15.2vw;
        bottom: 0.8vh;
    }

    .fi10 {
        right: 2.4vw;
        bottom: 0.8vh;
    }

    .fi11,
    .fi12,
    .fi13,
    .fi14 {
        left: 24vw;
        top: 13.6vh;
        transform: scale(0.184);
    }

    .hero-gif {
        max-height: 80px;
    }

    .display-5 {
        font-size: 1.6rem;
    }
}

/* CTA button hover effect */
.btn.btn-warning:hover {
    box-shadow: 0 3.2px 19.2px 0 #43cea299;
    transform: translateY(-1.6px) scale(1.04);
}

.hero-section-main-text {
    font-size: 2.8rem;
}

.hero-section-btns {
    font-size: 1.2rem;
}

/* FACTS SECTION CSS BELOW */
.facts-overlap-container {
    margin-top: -72px;
    margin-bottom: 25.6px;
    position: relative;
    z-index: 10;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30.4px;
    align-items: stretch;
    justify-items: stretch;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 9.6px;
}

@media (max-width: 991px) {
    .facts-overlap-container {
        margin-top: -44.8px;
    }

    .facts-grid {
        grid-template-columns: 1fr;
        gap: 22.4px;
    }
}

.fact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 176px;
    padding: 28px 21.6px 17.6px 21.6px;
    background: linear-gradient(120deg, #fff 60%, #FEF8F5 100%);
    border-radius: 1.12rem;
    box-shadow: 0 6.4px 32px 0 rgba(56, 90, 245, 0.04), 0 1.6px 12.8px 0 rgba(44, 51, 73, 0.05);
    transition: box-shadow .192s cubic-bezier(.7, .2, .24, 1.18), transform .192s cubic-bezier(.7, .2, .24, 1.18);
    overflow: visible;
    z-index: 1;
}

.fact-card:hover,
.fact-card:focus-within {
    box-shadow: 0 14.4px 48px 0 #a5dffd2c, 0 6.4px 32px 0 #fcb97b2c;
    transform: translateY(-8px) scale(1.03);
}

.fact-icon {
    width: 57.6px;
    height: 57.6px;
    border-radius: 0.96em;
    margin-bottom: 15.2px;
    background: linear-gradient(140deg, #FFF5F7 10%, #FFE6D5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1.6px 12.8px #ffe6d544;
    transition: box-shadow .16s;
    will-change: transform;
}

.fact-card:hover .fact-icon,
.fact-card:focus-within .fact-icon {
    box-shadow: 0 6.4px 28.8px 0 #ffe6d530;
}

.fact-icon svg {
    width: 36px;
    height: 36px;
    display: block;
    filter: drop-shadow(0 0 0 #fff4b3);
    transform-box: fill-box;
    transform-origin: 50% 50%;
    transition: filter .128s;
    animation: logo-spin-bounce 2.4s cubic-bezier(.5, -0.5, .589, 1.42) infinite;
}

@keyframes logo-spin-bounce {
    0% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(336deg);
    }

    80% {
        transform: rotate(304deg);
    }

    84% {
        transform: rotate(284deg);
    }

    87% {
        transform: rotate(294.4deg);
    }

    100% {
        transform: rotate(288deg);
    }
}

.fact-details {
    text-align: center;
    min-width: 152px;
    max-width: 216px;
}

.fact-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: #3a4764;
    margin-bottom: 0.232em;
    letter-spacing: 0.008em;
}

.fact-value {
    font-size: 1.92rem;
    font-weight: 700;
    background: linear-gradient(90deg, #F59C3B 10%, #6366F1 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.88;
    letter-spacing: .032em;
    font-family: inherit;
}

.fact-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 1.12rem;
    z-index: 2;
}

.fact-border:before {
    content: "";
    display: block;
    position: absolute;
    border-radius: 1.12rem;
    inset: 0;
    border: 2.4px solid #69D5F7;
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    transition: clip-path 0.56s cubic-bezier(.7, 0, .23, 1.2);
}

.fact-card:hover .fact-border:before,
.fact-card:focus-within .fact-border:before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
}

.fact-border:before {
    transition: clip-path 0.52s cubic-bezier(0.89, -0.09, .09, 0.97);
}

@media (max-width:991px) {
    .facts-overlap-container {
        margin-top: -44.8px;
    }

    .facts-grid {
        grid-template-columns: 1fr;
        gap: 22.4px;
    }
}

@media (max-width:700px) {
    .fact-details {
        min-width: 0;
        max-width: 100%;
    }

    .fact-value {
        font-size: 1.2rem;
    }

    .fact-title {
        font-size: 0.8rem;
    }

    .fact-icon {
        width: 39.2px;
        height: 39.2px;
    }
}

@media (max-width:400px) {
    .fact-card {
        padding: 15.2px 4px;
    }
}

/* ABOUT US SECTION CSS BELOW  */
.about-section-creative {
    background: #fff !important;
    position: relative;
    overflow-x: hidden;
}

.about-section-creative>.container {
    position: relative;
    z-index: 1;
}

.image-bg-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-55%, -48%);
    width: 328px;
    height: 328px;
    background: radial-gradient(circle, #ffe176 70%, transparent 100%);
    opacity: 0.19;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Make sure the image is above the circle */
.hero-gif {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .image-bg-circle {
        width: 480px;
        height: 480px;
        transform: translate(-60%, -48%);
    }
}

@media (max-width: 767px) {
    .image-bg-circle {
        width: 240px;
        height: 240px;
        transform: translate(-70%, -48%);
    }
}

/* Decorative semicircles */
.about-semicircle-left {
    position: absolute;
    left: -88px;
    top: 8px;
    width: 176px;
    height: 176px;
    background: radial-gradient(ellipse at 30% 75%, #e5f1ff 62%, #fff 72%, transparent 91%);
    z-index: 0;
    opacity: .53;
    border-top-right-radius: 176px;
    border-bottom-right-radius: 176px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    pointer-events: none;
}

.about-semicircle-right {
    position: absolute;
    right: -88px;
    bottom: 0px;
    width: 176px;
    height: 176px;
    background: radial-gradient(ellipse at 66% 30%, #e1f7fe 60%, #fff 73%, transparent 92%);
    z-index: 0;
    opacity: .43;
    border-top-left-radius: 176px;
    border-bottom-left-radius: 176px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    pointer-events: none;
}

/* Full yellow circle in the middle, behind content */
.about-fullcircle-middle {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 328px;
    height: 328px;
    background: radial-gradient(circle, #ffe176 70%, transparent 100%);
    opacity: 0.19;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Badge gets readable, subdued look */
.about-badge {
    background: linear-gradient(108deg, #f7fafb 0%, #f3f6fb 100%);
    color: #424652;
    font-size: 0.88rem;
    font-family: inherit;
    border: 0.96px solid #f3e8ff;
    box-shadow: 0 1.6px 6.4px #dde5ff12;
}

.about-badge-icon {
    animation: badge-appear .64s cubic-bezier(.63, .23, .39, 1.21);
}

@keyframes badge-appear {
    0% {
        opacity: 0;
        transform: scale(0.64);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Title Group: left animated vertical line */
.about-title-group {
    position: relative;
}

.about-left-line {
    display: inline-block;
    width: 3.2px;
    height: 0;
    background: linear-gradient(180deg, #0A1736 8%, #41e396 90%);
    border-radius: 4px;
    margin-right: 14.4px;
    margin-top: 4px;
    min-height: 59.2px;
    transition: height 0.96s cubic-bezier(.85, .2, .19, 1.01);
    animation: leftline-grow 0.96s .12s both;
}

@keyframes leftline-grow {
    0% {
        height: 0;
    }

    100% {
        height: 59.2px;
    }
}

.about-title {
    font-size: 2.08rem;
    font-weight: 800;
    color: #0A1736;
    line-height: 0.968;
    margin-bottom: .32rem;
}

.about-compliance-color {
    color: #0ea5e9;
    font-weight: 700;
    letter-spacing: .048em;
}

.about-years {
    font-size: 0.92rem;
    color: #6366F1;
    margin-left: 0.144em;
    font-weight: 600;
}

/* About text - fixed on mobile: heading always larger than para! */
.about-text p {
    font-size: 0.96rem;
    color: #293243;
    margin-bottom: .32em;
}

@media (max-width: 991px) {
    .about-title {
        font-size: 1.096rem;
    }
}

@media (max-width: 767px) {
    .about-title {
        font-size: 0.96rem;
    }

    .about-text p {
        font-size: 0.832rem;
    }
}

@media (max-width: 525px) {
    .about-title {
        font-size: 0.96rem;
    }

    .about-text p {
        font-size: .768rem;
    }
}

.about-intro-emoji {
    font-size: 1.056em;
}

.about-highlighted {
    color: #16b398;
    font-weight: bold;
}

.about-link {
    color: #2a79e7;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

/* Contact call (no box, just icon + text) */
.about-contact-box {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 0.88rem !important;
    padding: 0 !important;
}

.about-contact-icon {
    width: 36.8px;
    height: 36.8px;
    background: #e2efff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.about-phone-anim {
    animation: logo-spin-bounce 2.4s cubic-bezier(.65, -0.7, .7, 1.4) infinite;
}

@keyframes logo-spin-bounce {
    0% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(336deg);
    }

    80% {
        transform: rotate(304deg);
    }

    84% {
        transform: rotate(284deg);
    }

    87% {
        transform: rotate(294.4deg);
    }

    100% {
        transform: rotate(288deg);
    }
}

.about-contact-label {
    color: #0a1736;
    margin-bottom: 2.4px;
    font-size: 0.808rem;
    font-weight: 600;
}

.about-contact-phone {
    color: #0ea5e9;
    font-weight: 800;
    font-size: 0.944rem;
    letter-spacing: .008em;
}

/* --- FORM BOX & ANIMATION --- */
.about-form-container {
    background: rgba(248, 251, 255, 0.99);
    border-radius: 0.944em;
    box-shadow: 0 6.4px 32px 0 rgba(56, 90, 245, 0.055), 0 1.6px 12.8px 0 rgba(44, 51, 73, 0.05);
    backdrop-filter: blur(1.84px);
    z-index: 2;
    position: relative;
}

.about-illustration-anim {
    animation: logo-spin-bounce 2.4s cubic-bezier(.65, -0.7, .7, 1.4) infinite;
    display: inline-block;
}

.about-input {
    height: 36.8px;
    border-radius: .56em;
    border: none !important;
    background: #eaf5fb;
    font-size: 0.8rem;
    margin-bottom: .32em;
    box-shadow: 0 0.8px 6.4px #baebff12;
    transition: box-shadow .128s;
}

.about-input:focus {
    box-shadow: 0 0 0 1.6px #2dbffd25;
}

.about-form-btn {
    background: #0ea5e9;
    color: #fff;
    border-radius: .48em;
    font-size: 0.904rem;
    font-weight: 700;
    border: none;
    transition: background .168s, color .168s, box-shadow .168s;
}

.about-form-btn:hover {
    background: #0a1736;
    color: #fff;
}

/* --- Responsive adjustments: mobile-friendly heading/para sizing --- */
@media (min-width:992px) {
    .about-title {
        font-size: 1.904rem;
    }
}

@media (max-width:991px) {
    .about-title {
        font-size: 1.096rem;
    }

    .about-section-creative {
        padding-top: 22.4px;
    }

    .about-form-container {
        margin-top: 0.88rem;
    }
}

@media (max-width:700px) {
    .about-section-creative {
        padding-top: 3.2px;
    }

    .about-badge {
        font-size: .696rem;
    }

    .about-title {
        font-size: 0.864rem;
    }

    .about-form-container {
        padding: 0.824rem !important;
    }
}

@media (max-width:500px) {
    .about-title {
        font-size: 1.528rem;
    }

    .about-years {
        font-size: .744rem;
    }

    .about-form-container {
        padding: 1.6rem !important;
    }
}

.about-us-text {
    /* font-weight: 500; */
    text-align: justify;
}

/* CLIENTS SECTION CSS BELOW  */
.clients-slider-section {
    position: relative;
    background: #fff;
    overflow-x: hidden;
}

.client-marquee-outer {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    padding: 9.6px 0;
}

.client-marquee-inner {
    display: flex;
    align-items: center;
    gap: 33.6px;
    will-change: transform;
    /* JS will handle the animation -- remove any CSS animation! */
}

.client-logo img {
    max-height: 112px;
    max-width: 112px;
    min-width: 64px;
    object-fit: contain;
    display: block;
    /* filter: grayscale(0.15) brightness(96%); */
    opacity: 0.85;
    transition: filter .208s;
    padding: 3.2px 9.6px;
    background: transparent;
}

/* .client-logo img:hover { filter: none; opacity: 1; background: #f4f9ff; border-radius: 9.6px;} */
@media (max-width: 991px) {
    .client-marquee-inner {
        gap: 20.8px;
    }

    .client-logo img {
        max-height: 35.2px;
    }
}

@media (max-width: 575px) {
    .client-marquee-inner {
        gap: 9.6px;
    }

    .client-logo img {
        max-height: 80px;
        min-width: 39.2px;
    }
}

/* FEATURES CSS BELOW  */
.features-section-creative {
    position: relative;
    background: #fff;
    overflow-x: hidden;
}

.features-bg-circle {
    position: absolute;
    left: 50%;
    top: 56px;
    width: 640px;
    height: 640px;
    transform: translate(-50%, 0);
    background: radial-gradient(#EDF6FF 60%, transparent 95%);
    opacity: 0.42;
    pointer-events: none;
    z-index: 0;
}

.features-title {
    font-weight: 800;
    color: #0a1736;
    letter-spacing: -.032em;
    font-size: 2.12rem;
    line-height: 0.936;
}

.exp-gradient {
    background: linear-gradient(90deg, #4fd1c5 31%, #60a5fa 92%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.features-badge {
    color: #12b1ef;
    letter-spacing: .096em;
    font-size: 0.856rem;
}

.features-underline {
    width: 136px;
    height: 4.8px;
    margin-bottom: -15.2px;
    border-radius: 5.6px;
    background: linear-gradient(90deg, #4fd1c5 0%, #44a5f9 100%);
    animation: featuresUnderlineGrow .72s cubic-bezier(.75, 0, .17, 1) both;
}

@keyframes featuresUnderlineGrow {
    0% {
        width: 0;
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        width: 136px;
        opacity: 1;
    }
}

/* Feature Card Styles (bigger) */
.feature-card {
    background: linear-gradient(107deg, #f5faff 80%, #fff 100%);
    border-radius: 1.12rem;
    box-shadow: 0 3.2px 28px 0 rgba(56, 90, 245, .08);
    display: flex;
    gap: 1.04rem;
    align-items: flex-start;
    padding: 28.8px 21.6px 25.6px 21.6px;
    margin-bottom: 1.76rem;
    transition: box-shadow .152s, transform .152s;
    position: relative;
    z-index: 1;
    border: 0.984px solid #E7F1FC;
}

.feature-card:hover {
    box-shadow: 0 6.4px 30.4px 0 #60a5faa1, 0 1.6px 9.6px #4fd1c545;
    transform: translateY(-3.2px) scale(1.04);
}

.feature-ico {
    width: 59.2px;
    height: 59.2px;
    min-width: 59.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, #fff, #e3f1fe 80%);
    border-radius: 0.8em;
    margin-right: .144em;
    box-shadow: 0 1.6px 13.6px #18b3a018;
    transition: box-shadow .16s;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    animation: featureIconPop 1.84s infinite cubic-bezier(.70, -0.5, .64, 1.6) alternate;
}

@keyframes featureIconPop {
    0% {
        transform: scale(1) rotate(0);
    }

    70% {
        transform: scale(1.08) rotate(-7deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

.feature-card:hover .feature-ico {
    box-shadow: 0 4.8px 16px #4fd1c540;
    animation: featureIconPopFast 0.4s 1;
}

@keyframes featureIconPopFast {
    20% {
        transform: scale(1.18) rotate(7deg);
    }

    40% {
        transform: scale(1) rotate(-6deg);
    }

    100% {
        transform: scale(1);
    }
}

.feature-title {
    color: #07346f;
    font-weight: 800;
    font-size: 1.008rem;
    margin-bottom: .592em;
    letter-spacing: .008em;
}

.feature-desc {
    font-size: 0.896rem;
    color: #325163;
    font-weight: 500;
    margin-bottom: 0;
}

.feature-desc b {
    color: #0ea5e9;
    font-weight: 700;
}

/* Center Glass/Graphic/Shapes */
.features-center-graphic {
    width: 276px;
    height: 276px;
    background: transparent;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.88rem;
    overflow: visible;
    min-width: 196px;
}

.features-center-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(#60a5fa 0%,
            #213e7d 22%,
            #ffe176 39%,
            #41e396 57%,
            #ffd8b5 77%,
            #60a5fa 100%);
    animation: spin-gradient 2.24s linear infinite;
    /* create ring using mask: transparent center, visible border */
    -webkit-mask: radial-gradient(circle 44% at 50% 50%, #0000 52%, #000 52.8%);
    mask: radial-gradient(circle 44% at 50% 50%, #0000 52%, #000 52.8%);
}

@keyframes spin-gradient {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(288deg);
    }
}

.features-center-mainimg {
    position: relative;
    z-index: 3;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 100%;
    object-fit: cover;
    background: transparent;
    margin: 0 auto;
    display: block;
}

.features-floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: featuresShapeFloat 8s linear infinite alternate;
    opacity: .37;
    pointer-events: none;
}

.features-floating-shape-1 {
    left: -20.8px;
    top: 49.6px;
    width: 36.8px;
    height: 36.8px;
    background: radial-gradient(circle, #f59e42 0 52.8%, transparent 77.6%);
    animation-delay: 0.88s;
}

.features-floating-shape-2 {
    right: 0px;
    bottom: 31.2px;
    width: 30.4px;
    height: 30.4px;
    background: radial-gradient(circle, #60a5fa 0 52.8%, transparent 77.6%);
    animation-delay: 2.96s;
}

@keyframes featuresShapeFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-35.2px);
    }
}

@media (max-width:1350px) {
    .features-center-graphic {
        width: 212px;
        height: 212px;
    }

    /* .features-center-mainimg { width: 136px; height: 136px; } */
    .features-center-ring {
        border-width: 10.4px;
    }
}

@media (max-width:991px) {
    .feature-card {
        padding: 16px 11.2px;
    }

    .features-center-graphic {
        width: 170px;
        height: 170px;
    }

    /* .features-center-mainimg { width: 84.8px; height: 84.8px; } */
    .features-center-ring {
        border-width: 6.4px;
    }

    .feature-title {
        font-size: 0.872rem;
    }

    .feature-desc {
        font-size: .776rem;
    }
}

@media (max-width:767px) {
    .feature-card {
        margin-bottom: 0.856rem;
    }

    .features-center-graphic {
        width: 108.8px;
        height: 108.8px;
    }

    /* .features-center-mainimg { width: 53.6px; height: 53.6px; } */
    .features-center-ring {
        border-width: 4.8px;
    }

    .features-underline {
        height: 3.2px;
    }

    .features-title {
        font-size: 0.96rem;
    }
}

@media (max-width:600px) {
    .features-center-graphic {
        width: 74.4px;
        height: 74.4px;
        margin-bottom: .264rem;
    }

    /* .features-center-mainimg { width: 30.4px; height: 30.4px; } */
    .features-center-ring {
        border-width: 3.2px;
    }

    .feature-title {
        font-size: .776rem;
    }

    .feature-desc {
        font-size: .704rem;
    }
}

/* SERVICES SECTION CSS BELOW  */
/* Make columns and cards in .services-section-creative uniform in height */
.services-section-creative .row.g-5 {
    /* Only this row is flex */
    display: flex;
    flex-wrap: wrap;
}

/* Only columns inside this row stretch */
.services-section-creative .row.g-5>[class*="col-"] {
    display: flex;
}

/* Only cards inside these columns fill the height */
.services-section-creative .row.g-5>[class*="col-"]>.services-card,
.services-section-creative .row.g-5>[class*="col-"]>.services-card-cta {
    flex: 1 1 auto;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-section-creative {
    position: relative;
    background: #070c1b;
    overflow: hidden;
    z-index: 0;
    min-height: 80vh;
}

.services-bg-img {
    position: absolute;
    inset: 0;
    background: url('img/background-blur.jpg') center/cover no-repeat;
    opacity: .15;
    z-index: 1;
}

.services-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #034e6c 0%, #0a1736 100%);
    opacity: .97;
    z-index: 2;
}

.services-bg-shape-bottom {
    position: absolute;
    right: -96px;
    bottom: -88px;
    width: 272px;
    height: 272px;
    background: radial-gradient(circle, #41e396 0 39.2%, transparent 79.2%);
    opacity: .22;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    animation: bgCircleFloatBR 6.4s ease-in-out infinite alternate;
}

.services-bg-shape-top {
    position: absolute;
    left: -96px;
    top: -88px;
    width: 272px;
    height: 272px;
    background: radial-gradient(circle, #bae6fd 0 39.2%, transparent 79.2%);
    opacity: .21;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    animation: bgCircleFloatTL 5.6s ease-in-out infinite alternate;
}

@keyframes bgCircleFloatBR {
    0% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1.08) translateY(20px);
    }
}

@keyframes bgCircleFloatTL {
    0% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1.07) translateY(-17.6px);
    }
}

.section-title {
    z-index: 7;
}

.services-badge {
    color: #4fd1c5;
    letter-spacing: .08em;
    font-size: 0.928rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
    display: inline-block;
    border-radius: 0.904em;
    padding: 0.36em 0.96em 0.32em 0.96em;
    margin-bottom: 0.56em;
    text-shadow: 0 3.2px 12.8px #01223242;
}

.services-title {
    line-height: 0.96;
    font-weight: 900;
    font-size: 2rem;
    color: #fff;
    background: linear-gradient(90deg, #fff 65%, #52e7e7 98%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    letter-spacing: -.024em;
}

.services-title-highlight {
    background: linear-gradient(90deg, #45e6cf 8%, #60a5fa 92%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    font-weight: 900;
}

.services-underline {
    width: 120px;
    height: 4.8px;
    border-radius: 5.6px;
    margin: 0.12em auto 0;
    background: linear-gradient(90deg, #41e396 0%, #44a5f9 100%);
    animation: servicesUnderlineGrow .704s cubic-bezier(.75, 0, .17, 1) both;
}

@keyframes servicesUnderlineGrow {
    0% {
        width: 0;
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        width: 120px;
        opacity: 1;
    }
}

/* Card Styles */
.services-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1.112em;
    box-shadow: 0 6.4px 35.2px 0 #1526391e;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 219.2px;
    padding: 2.24rem 1.36rem 1.84rem 1.36rem;
    position: relative;
    z-index: 5;
    transition: box-shadow .184s, border-color .184s, transform .184s;
    border: 1.2px solid #e3f3ff;
    overflow: hidden;
    opacity: 0;
    transform: translateY(32px) scale(0.97);
}

.services-card.show-card {
    opacity: 1;
    transform: none;
    transition: opacity .528s cubic-bezier(.46, .63, .52, 1.01), transform .528s cubic-bezier(.23, .9, .45, 1.16);
}

.services-card:hover {
    box-shadow: 0 11.2px 44.8px 0 #29e7fa18, 0 2.4px 17.6px #41e3962d;
    transform: translateY(-5.6px) scale(1.041);
    border-color: #0ea5e9;
}

.services-card h4 {
    color: #00334c;
    font-weight: 800;
    margin: 0.896rem 0 .64rem 0;
    font-size: 1.064rem;
    text-shadow: 0 1.6px 6.4px #21e6e727;
    letter-spacing: .008em;
    z-index: 4;
    position: relative;
}

.services-card p {
    font-size: 0.856rem;
    color: #253d51;
    font-weight: 500;
    margin-bottom: 0;
    z-index: 4;
    position: relative;
}

.services-card b,
.services-highlight {
    color: #0ea5e9;
}

.services-highlight-orange {
    color: #f59e42;
}

.services-highlight-blue {
    color: #6366f1;
}

.services-highlight-green {
    color: #41e396;
}

.services-card-cta {
    background: linear-gradient(135deg, #e9fcf7 0%, #fff 100%);
    box-shadow: 0 8px 40px #4fd1c540;
    min-height: 204.8px;
    border: 1.76px solid #d7f6ff;
    z-index: 8;
    animation: ctaPulse 2.8s ease-in-out infinite alternate;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 #41e39620;
    }

    100% {
        box-shadow: 0 0 40px #41e39660;
    }
}

.services-card-cta h3,
.services-card-cta h4 {
    color: #00334c !important;
}

.services-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57.6px;
    height: 57.6px;
    border-radius: 0.912em;
    margin: 0 auto 0px auto;
    background: linear-gradient(135deg, #eef6fb 0%, #fff 100%);
    box-shadow: 0 2.4px 24px #bae6fd25;
    font-size: 2.24rem;
    position: relative;
    animation: icon-bounce 2s cubic-bezier(.5, .5, .45, 1.14) infinite alternate;
    transition: box-shadow .16s, background .184s, transform .2s;
    z-index: 22;
}

.services-icon svg {
    width: 30.4px;
    height: 30.4px;
}

@keyframes icon-bounce {
    0% {
        transform: scale(1) translateY(0);
    }

    55% {
        transform: scale(1.09) translateY(-8.8px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

.services-card:hover .services-icon {
    animation: icon-glow .4s;
    box-shadow: 0 4.8px 16px #4fd1c540, 0 0 11.2px #41e39637;
    transform: scale(1.07) rotate(-5deg);
}

@keyframes icon-glow {
    35% {
        transform: scale(1.25) rotate(9deg);
    }

    65% {
        transform: scale(1) rotate(-6deg);
    }

    100% {
        transform: scale(1);
    }
}

/* Card entrance animations staggered */
.service-in {
    opacity: 0;
}

.show-card {
    opacity: 1;
    transition-delay: .12s !important;
}

.animation-delay-1 {
    transition-delay: .16s !important;
}

.animation-delay-2 {
    transition-delay: .28s !important;
}

.animation-delay-3 {
    transition-delay: .4s !important;
}

.animation-delay-4 {
    transition-delay: .56s !important;
}

.animation-delay-5 {
    transition-delay: .72s !important;
}

.animation-delay-6 {
    transition-delay: .84s !important;
}

.animation-delay-7 {
    transition-delay: .96s !important;
}

/* Glimmery overlay for cards on hover */
.services-card::after {
    content: "";
    display: block;
    pointer-events: none;
    position: absolute;
    left: -72px;
    top: 0;
    width: 48%;
    height: 100%;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.24) 100%);
    filter: blur(2.4px);
    opacity: 0;
    transition: opacity 0.24s;
    z-index: 2;
}

.services-card:hover::after {
    left: 64%;
    opacity: 1;
    transition: opacity 0.16s, left 0.56s cubic-bezier(.63, .1, .19, 1.08);
}

/* Colorful gradient for icon backgrounds (overrides above background if needed) */
.services-icon-blue {
    background: linear-gradient(130deg, #e0f2ff 0%, #bae6fd 100%);
}

.services-icon-orange {
    background: linear-gradient(135deg, #fffbe7 0%, #fbe2c1 100%);
}

.services-icon-green {
    background: linear-gradient(135deg, #f3faf4 0%, #e7fbf5 100%);
}

.services-icon-cyan {
    background: linear-gradient(135deg, #e9fcfd 0%, #e7faff 100%);
}

.services-icon-purple {
    background: linear-gradient(135deg, #f6f7ff 0%, #ede9fa 100%);
}

.services-icon-darkcyan {
    background: linear-gradient(135deg, #e5fafd 0%, #d9f6ff 100%);
}

.services-icon-pink {
    background: linear-gradient(135deg, #fae5f7 0%, #fdf6fe 100%);
}

.services-icon-cta {
    background: linear-gradient(135deg, #e6fff8 0%, #c9fee0 100%);
}

@media (max-width:991px) {
    .services-section-creative {
        padding: 1.68rem .16rem;
    }

    .services-card,
    .services-card-cta {
        padding: 1.08rem .64rem;
    }

    .services-title {
        font-size: 1.096rem;
    }

    .services-badge {
        font-size: 0.8rem;
    }
}

/* Make sure it's beautiful on mobile/tablet */
@media (max-width:700px) {
    .services-section-creative {
        padding-top: 6.4px;
    }

    .services-bg-shape-bottom,
    .services-bg-shape-top {
        width: 104px;
        height: 104px;
    }

    .services-title {
        font-size: 0.88rem;
    }
}

/* QUOTE SECTION CSS BELOW   */
/* Add this CSS for the left illustration if you're using the example SVG */
.quote-left-bg {
    position: absolute;
    left: 0;
    top: 8%;
    width: 272px;
    height: 272px;
    z-index: 0;
    opacity: 0.08;
    /* nice and light */
    pointer-events: none;
}

@media (max-width: 991px) {
    .quote-left-bg {
        display: none;
    }
}

/* Make info items blocky and use up more left space */
.info-feature-card {
    display: flex;
    align-items: center;
    background: #f6fbff;
    border-radius: 11.2px;
    padding: 0.8rem 0.96rem;
    margin-bottom: 1rem;
    min-width: 180px;
    box-shadow: 0 1.6px 4.8px rgba(20, 60, 120, 0.03);
    font-size: 0.88rem;
    font-weight: 500;
}

.info-feature-card .info-feature-ico {
    min-width: 30.4px;
    min-height: 30.4px;
    background: #e8f3fa;
    color: #0ea5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6.4px;
    font-size: 1.08rem;
    margin-right: 0.72rem;
}

/* OTHER CSS BELOW  */
.contentOuterContainer {
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    max-width: 64vw;
}