@import"https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap";

:root {
    --font-primary: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-secondary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font: var(--font-primary);
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 1.875rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 3.75rem;
    --line-height-tight: 1.2;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;
    --letter-spacing-tighter: -0.05em;
    --letter-spacing-tight: -0.025em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.025em;
    --letter-spacing-wider: 0.05em;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --body-color: #637381;
    --heading-color: #212b36;
    --primary-color: #1d3b9e;
    --secondary-color: #2850c7;
    --accent-color: #00D4AA;
    --white: #ffffff;
    --footer-text: #e8eaed;
    --footer-text-light: #9aa0a6
}

body {
    font-family: var(--font);
    font-weight: normal;
    font-style: normal;
    color: var(--body-color);
    overflow-x: hidden
}

.icon-enhanced {
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.icon-visibility-boost {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1))
}

.icon-contrast-high {
    text-shadow: 0 1px 2px rgba(0, 0, 0, .2)
}

/* Social icon base style */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

/* Specific social icon colors */
.lni-instagram-filled {
    color: #8a2042;
    transition: color 0.3s;
}

.lni-facebook-filled {
    color: #1877F3;
    transition: color 0.3s;
}

.lni-whatsapp {
    color: #25D366;
    transition: color 0.3s;
}

/* Hover effects for icons */
.social-link:hover .lni-instagram-filled {
    color: #ee2a7b;
}

.social-link:hover .lni-facebook-filled {
    color: #145db2;
}

.social-link:hover .lni-whatsapp {
    color: #128c4b;
}

.social-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .3s ease
}

.social-icon:hover::before {
    opacity: 1
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15)
}

.lni.icon-enhanced {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: all .3s ease
}

.lni.icon-lg {
    font-size: 1.5em
}

.lni.icon-xl {
    font-size: 2em
}

.lni-star-filled {
    color: #ffc107;
    filter: drop-shadow(0 1px 2px rgba(255, 193, 7, 0.3));
    transition: all .3s ease
}

.lni-star-filled:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.5))
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

img {
    max-width: 100%
}

a,
button,
input,
textarea {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none
}

a:focus,
a:hover {
    text-decoration: none
}

i,
span,
a {
    display: inline-block
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--heading-color);
    margin: 0px
}

h1 {
    font-size: 48px
}

h2 {
    font-size: 36px
}

h3 {
    font-size: 28px
}

h4 {
    font-size: 22px
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

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

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--body-color);
    margin: 0px
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%
}

.ud-main-btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    font-weight: 500;
    font-size: 16px;
    border-radius: 5px;
    padding: 15px 25px;
    border: 1px solid rgba(0, 0, 0, 0);
    color: var(--white);
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    -ms-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    background: var(--primary-color)
}

.ud-main-btn:hover {
    color: var(--white);
    background: var(--heading-color)
}

@media(max-width: 767px) {
    .container {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media only screen and (min-width: 576px)and (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px
    }
}

.back-to-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--primary-color);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    color: var(--white)
}

.back-to-top:hover {
    color: var(--white);
    background: var(--heading-color)
}

.ud-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.sticky {
    position: fixed;
    z-index: 99;
    background-color: hsla(0, 0%, 100%, .8);
    backdrop-filter: blur(5px);
    -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, .1);
    box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, .1);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.sticky .navbar {
    padding: 0
}

.navbar {
    padding: 0px 0;
    border-radius: 5px;
    position: relative;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.navbar-brand {
    padding: 0
}

@media only screen and (min-width: 768px)and (max-width: 991px),
(max-width: 767px) {
    .navbar-brand {
        padding: 5px 0px
    }
}

.navbar-brand img {
    max-width: 160px
}

.navbar-toggler {
    padding: 0
}

.navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    display: block;
    margin: 5px 0;
    position: relative;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px
}

@media only screen and (min-width: 768px)and (max-width: 991px),
(max-width: 767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 0;
        max-width: 300px;
        width: 100%;
        background-color: var(--white);
        z-index: 9;
        -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, .1);
        -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, .1);
        box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, .1);
        padding: 0px;
        display: none;
        border-radius: 5px
    }

    .navbar-collapse.show {
        display: block
    }
}

@media only screen and (min-width: 768px)and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav {
        padding: 20px 30px
    }
}

.navbar-nav .nav-item {
    position: relative;
    padding: 0px 20px
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    .navbar-nav .nav-item {
        padding: 0px 12px
    }
}

@media only screen and (min-width: 768px)and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item {
        padding: 0px
    }
}

.navbar-nav .nav-item>a {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    padding: 25px 6px;
    position: relative
}

@media only screen and (min-width: 768px)and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item>a {
        display: block;
        padding: 8px 0;
        color: var(--heading-color)
    }
}

.navbar-nav .nav-item>a:hover,
.navbar-nav .nav-item>a.active {
    color: var(--white);
    opacity: .5
}

@media only screen and (min-width: 768px)and (max-width: 991px),
(max-width: 767px) {

    .navbar-nav .nav-item>a:hover,
    .navbar-nav .nav-item>a.active {
        color: var(--primary-color);
        opacity: 1
    }
}

.navbar-nav .nav-item .ud-submenu {
    position: absolute;
    width: 250px;
    background: var(--white);
    top: 110%;
    padding: 20px 30px;
    box-shadow: 0 15px 44px rgba(140, 140, 140, .18);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media only screen and (min-width: 768px)and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item .ud-submenu {
        position: static;
        box-shadow: none;
        width: 100%;
        padding: 0px;
        opacity: 1;
        visibility: visible;
        display: none
    }
}

.navbar-nav .nav-item .ud-submenu.show {
    display: block
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link {
    padding: 7px 0;
    color: var(--heading-color);
    font-size: 14px
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link:hover {
    color: var(--primary-color)
}

.navbar-nav .nav-item:hover>a {
    color: var(--white);
    opacity: .5
}

@media only screen and (min-width: 768px)and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item:hover>a {
        color: var(--primary-color);
        opacity: 1
    }
}

.navbar-nav .nav-item:hover>.ud-submenu {
    opacity: 1;
    visibility: visible;
    top: 100%
}

.navbar-nav .nav-item.nav-item-has-children>a {
    position: relative
}

.navbar-nav .nav-item.nav-item-has-children>a::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg) translateY(-50%);
    right: -15px;
    top: 50%;
    margin-top: -2px
}

@media only screen and (min-width: 768px)and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item.nav-item-has-children>a::after {
        right: 5px
    }
}

@media only screen and (min-width: 768px)and (max-width: 991px),
(max-width: 767px) {
    .navbar-btn {
        position: absolute;
        top: 50%;
        right: 50px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

.navbar-btn .ud-main-btn {
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0)
}

.navbar-btn .ud-login-btn:hover {
    opacity: .5
}

.navbar-btn .ud-white-btn {
    background: hsla(0, 0%, 100%, .2)
}

.navbar-btn .ud-white-btn:hover {
    background: #fff;
    color: var(--heading-color)
}

.sticky .navbar-toggler .toggler-icon {
    background-color: var(--heading-color)
}

.sticky .navbar-nav .nav-item:hover>a {
    color: var(--primary-color);
    opacity: 1
}

.sticky .navbar-nav .nav-item a {
    color: var(--heading-color)
}

.sticky .navbar-nav .nav-item a.active,
.sticky .navbar-nav .nav-item a:hover {
    color: var(--primary-color);
    opacity: 1
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn {
    color: var(--heading-color)
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn:hover {
    color: var(--primary-color);
    opacity: 1
}

.sticky .navbar-btn .ud-white-btn {
    background: var(--primary-color);
    color: var(--white)
}

.sticky .navbar-btn .ud-white-btn:hover {
    background: var(--heading-color)
}

.ud-hero {
    background: var(--primary-color);
    padding-top: 180px
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .ud-hero {
        padding-top: 160px
    }
}

@media(max-width: 767px) {
    .ud-hero {
        padding-top: 130px
    }
}

.ud-hero-content {
    max-width: 780px;
    margin: auto;
    margin-bottom: 30px
}

.ud-hero-content .ud-hero-title {
    color: var(--white);
    font-weight: 700;
    font-size: 45px;
    line-height: 60px;
    text-align: center;
    margin-bottom: 30px
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .ud-hero-content .ud-hero-title {
        font-size: 38px;
        line-height: 50px
    }
}

@media(max-width: 767px) {
    .ud-hero-content .ud-hero-title {
        font-size: 26px;
        line-height: 38px
    }
}

.ud-hero-content .ud-hero-desc {
    font-weight: normal;
    font-size: 20px;
    line-height: 35px;
    text-align: center;
    color: var(--white);
    opacity: .8;
    max-width: 600px;
    margin: auto;
    margin-bottom: 30px
}

@media(max-width: 767px) {
    .ud-hero-content .ud-hero-desc {
        font-size: 16px;
        line-height: 30px
    }
}

.ud-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center
}

.ud-hero-buttons .ud-main-btn {
    margin: 8px
}

@media(max-width: 767px) {
    .ud-hero-buttons .ud-main-btn {
        margin: 5px
    }
}

@media(max-width: 767px) {
    .ud-hero-buttons .ud-main-btn {
        padding: 12px 16px
    }
}

.ud-hero-buttons .ud-white-btn {
    background: var(--white);
    color: var(--heading-color)
}

.ud-hero-buttons .ud-white-btn:hover {
    box-shadow: 0px 0px 25px rgba(0, 0, 0, .2);
    background: #fefefe;
    color: var(--primary-color)
}

.ud-hero-buttons .ud-link-btn:hover {
    color: var(--white);
    background: rgba(0, 0, 0, 0);
    opacity: .5
}

.ud-hero-brands-wrapper {
    text-align: center;
    margin-bottom: 40px
}

.ud-hero-brands-wrapper img {
    transition: all .3s;
    opacity: .5;
    max-width: 250px
}

.ud-hero-brands-wrapper img:hover {
    opacity: 1
}

.ud-hero-image {
    max-width: 845px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 1
}

.ud-hero-image img {
    max-width: 100%;
    text-align: center
}

.ud-hero-image .shape {
    position: absolute;
    z-index: -1
}

.ud-hero-image .shape.shape-1 {
    bottom: 0;
    left: -30px
}

.ud-hero-image .shape.shape-2 {
    top: -20px;
    right: -20px
}

.ud-features {
    padding-top: 120px;
    padding-bottom: 90px
}

@media(max-width: 767px) {
    .ud-features {
        padding-top: 80px;
        padding-bottom: 40px
    }
}

.ud-section-title {
    max-width: 620px;
    margin-bottom: 70px
}

.ud-section-title span {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px
}

.ud-section-title h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 55px;
    text-transform: capitalize;
    color: var(--heading-color);
    margin-bottom: 20px
}

.ud-section-title p {
    font-size: 20px;
    line-height: 30px
}

@media(max-width: 767px) {
    .ud-section-title p {
        font-size: 16px;
        line-height: 26px
    }
}

.ud-single-feature {
    margin-bottom: 40px
}

.ud-single-feature:hover .ud-feature-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(29, 59, 158, .25)
}

.ud-single-feature:hover .ud-feature-icon img {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3))
}

.ud-single-feature:hover .ud-feature-icon i {
    transform: scale(1.1);
    text-shadow: 0 0 10px hsla(0, 0%, 100%, .3)
}

.ud-single-feature:hover .ud-feature-icon::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: .25
}

.ud-single-feature .ud-feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--primary-color);
    font-size: 36px;
    color: var(--white);
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(29, 59, 158, .15)
}

.ud-single-feature .ud-feature-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: all .3s ease
}

.ud-single-feature .ud-feature-icon i {
    font-size: 36px;
    transition: all .3s ease
}

.ud-single-feature .ud-feature-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), #2850c7);
    opacity: .15;
    z-index: -1;
    -webkit-transform: rotate(23deg);
    -moz-transform: rotate(23deg);
    -ms-transform: rotate(23deg);
    -o-transform: rotate(23deg);
    transform: rotate(23deg);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.ud-single-feature .ud-feature-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    .ud-single-feature .ud-feature-title {
        font-size: 18px;
        line-height: 26px
    }
}

.ud-single-feature .ud-feature-desc {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px
}

.ud-single-feature .ud-feature-link {
    font-weight: 500;
    color: var(--body-color)
}

.ud-single-feature .ud-feature-link:hover {
    color: var(--primary-color)
}

.ud-about {
    background: #f3f4fe;
    padding: 120px 0
}

@media(max-width: 767px) {
    .ud-about {
        padding: 80px 0
    }
}

.ud-about-wrapper {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    justify-content: space-between
}

@media only screen and (min-width: 768px)and (max-width: 991px),
(max-width: 767px) {
    .ud-about-wrapper {
        display: block
    }
}

.ud-about-content-wrapper {
    padding: 70px
}

@media(max-width: 767px) {
    .ud-about-content-wrapper {
        padding: 50px 30px
    }
}

@media only screen and (min-width: 576px)and (max-width: 767px) {
    .ud-about-content-wrapper {
        padding: 50px
    }
}

.ud-about-content {
    max-width: 800px
}

.ud-about-content .tag {
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
    background: var(--primary-color);
    padding: 5px 20px;
    display: inline-block;
    margin-bottom: 20px
}

.ud-about-content h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 30px
}

@media(max-width: 767px) {
    .ud-about-content h2 {
        font-size: 26px;
        line-height: 38px
    }
}

.ud-about-content p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 40px
}

.ud-about-content .ud-main-btn:hover {
    background: #2748b4;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .3)
}

@media only screen and (min-width: 768px)and (max-width: 991px),
(max-width: 767px) {
    .ud-about-image {
        text-align: center
    }
}

/* New About Section Styles */
.about-main-content {
    margin-bottom: 30px;
}

.about-expandable-sections {
    margin-top: 40px;
}

.about-section {
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.about-section-header {
    padding: 15px 20px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.about-section-header:hover {
    background: #fafafa;
    border-color: #e5e5e5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.about-section-header.active-header {
    background: #f8f9fa;
    color: #1a1a1a;
    border-color: #e5e5e5;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.about-section-header h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #212121;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.about-section-header.active-header h3 {
    color: #1a1a1a;
}

.about-section-header .toggle-icon {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    transition: all 0.25s ease;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
    border: 1px solid #eee;
}

.about-section-header:hover .toggle-icon {
    background: #efefef;
    color: #333;
    transform: scale(1.05);
}

.about-section-header.active-header .toggle-icon {
    background: #e9ecef;
    color: #1a1a1a;
    transform: rotate(45deg);
    border-color: #ddd;
}

.about-section-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background: #ffffff;
    border: 1px solid transparent;
    border-top: none;
    margin-bottom: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.about-section-content.active {
    padding: 24px;
    max-height: 2000px;
    border: 1px solid #e5e5e5;
    border-top: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.about-section-content p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 15px;
}

.about-section-content h4 {
    color: #2a2a2a;
    font-size: 17px;
    font-weight: 500;
    margin: 24px 0 12px;
}

.about-section-content ul {
    padding-left: 0;
    margin-bottom: 24px;
    list-style-type: none;
}

.about-section-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #4a4a4a;
    font-size: 15px;
}

.about-section-content ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    color: #666;
}

/* Style for bold text within list items */
.about-section-content ul li strong {
    color: #2a2a2a;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.feature-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item h4 {
    margin: 0 0 8px 0 !important;
    color: #1a1a1a !important;
}

.feature-item p {
    margin: 0 !important;
    font-size: 14px !important;
}

.testimonials-preview blockquote {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-style: italic;
    color: #4a4a4a;
    position: relative;
    border-left: 3px solid #e5e5e5;
}

.testimonials-preview blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-weight: 500;
    color: #2a2a2a;
    font-size: 14px;
}

.testimonial-link {
    margin-top: 20px;
    text-align: right;
}

.testimonial-link a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.testimonial-link a:hover {
    text-decoration: underline;
}

.benefits-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 8px;
}

@media(max-width: 767px) {

    .features-grid,
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-section-content.active {
        padding: 20px;
    }
}
}

.feature-item {
    background: #fafafa;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #ffffff;
    border-color: #e0e0e0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.feature-item h4 {
    font-size: 18px;
    color: #212121;
    margin-bottom: 10px;
    font-weight: 500;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.feature-item p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.5;
}

.benefits-content {
    display: flex;
    gap: 30px;
}

@media(max-width: 767px) {
    .benefits-content {
        flex-direction: column;
    }
}

.benefit-column {
    flex: 1;
}

.benefit-column h4 {
    font-size: 18px;
    color: #212121;
    margin-bottom: 15px;
    font-weight: 500;
    border-left: 3px solid #333;
    padding-left: 12px;
}

.benefit-column ul {
    background: #fafafa;
    border-radius: 6px;
    padding: 15px 15px 15px 30px !important;
    border: 1px solid #f0f0f0;
}

.benefit-column ul li {
    position: relative;
}

.benefit-column ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #333;
    font-weight: bold;
}

.benefit-column {
    flex: 1;
}

.benefit-column h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.benefit-column h4:first-child {
    margin-top: 0;
}

.benefit-column ul {
    margin-bottom: 20px;
}

.testimonials-preview blockquote {
    background: rgba(29, 59, 158, 0.03);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonials-preview blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 500;
}

.testimonials-preview .testimonial-link {
    text-align: right;
}

.testimonials-preview .testimonial-link a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.testimonials-preview .testimonial-link a:hover {
    text-decoration: underline;
}

.ud-pricing {
    padding-top: 120px;
    padding-bottom: 90px
}

@media(max-width: 767px) {
    .ud-pricing {
        padding-top: 80px;
        padding-bottom: 40px
    }
}

.ud-single-pricing {
    margin-bottom: 40px;
    background: var(--white);
    border: 2px solid #d4deff;
    border-radius: 8px;
    text-align: center;
    padding: 45px 30px;
    position: relative
}

.ud-single-pricing.active {
    background: linear-gradient(180deg, #3056d3 0%, #179bee 100%);
    border: none;
    padding: 55px 30px
}

.ud-single-pricing.active .ud-pricing-header h3,
.ud-single-pricing.active .ud-pricing-header h4 {
    color: var(--white)
}

.ud-single-pricing.active .ud-pricing-body li {
    color: var(--white)
}

.ud-single-pricing.first-item::after,
.ud-single-pricing.last-item::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 55px;
    z-index: 1
}

.ud-single-pricing.first-item::after {
    background: var(--primary-color);
    left: -2px;
    bottom: -2px;
    border-radius: 0px 55px 0px 8px
}

.ud-single-pricing.last-item::after {
    background: #13c296;
    top: -2px;
    right: -2px;
    border-radius: 0px 8px 0px 55px
}

.ud-single-pricing .ud-popular-tag {
    display: inline-block;
    padding: 10px 25px;
    background: var(--white);
    border-radius: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600
}

.ud-single-pricing .ud-pricing-header h3 {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 8px
}

.ud-single-pricing .ud-pricing-header h4 {
    font-weight: 600;
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 40px
}

.ud-single-pricing .ud-pricing-body {
    margin-bottom: 40px
}

.ud-single-pricing .ud-pricing-body li {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 18px
}

.ud-single-pricing .ud-main-btn {
    border-radius: 30px;
    padding: 15px 40px
}

.ud-single-pricing .ud-border-btn {
    border: 1px solid #d4deff;
    color: var(--primary-color);
    background: var(--white)
}

.ud-single-pricing .ud-border-btn:hover {
    color: var(--white);
    border-color: var(--primary-color);
    background: var(--primary-color)
}

.ud-single-pricing .ud-white-btn {
    background: var(--white);
    color: var(--heading-color)
}

.ud-single-pricing .ud-white-btn:hover {
    color: var(--white);
    background: var(--heading-color)
}

.ud-faq {
    padding-top: 120px;
    padding-bottom: 90px;
    background: #f8f9fa;
    position: relative;
    z-index: 1
}

@media(max-width: 767px) {
    .ud-faq {
        padding-top: 80px;
        padding-bottom: 50px
    }
}

.ud-faq .shape {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0
}

.ud-single-faq {
    background: var(--white);
    border: 1px solid #f3f4fe;
    box-shadow: 0px 20px 95px rgba(201, 203, 204, .3);
    border-radius: 10px;
    margin-bottom: 30px
}

.ud-single-faq .ud-faq-btn {
    text-align: left;
    display: flex;
    width: 100%;
    align-items: center;
    border: none;
    background: rgba(0, 0, 0, 0);
    font-weight: 600;
    font-size: 18px;
    color: var(--heading-color);
    opacity: .88;
    padding: 30px
}

@media only screen and (min-width: 992px)and (max-width: 1199px),
(max-width: 767px) {
    .ud-single-faq .ud-faq-btn {
        padding: 15px
    }
}

.ud-single-faq .ud-faq-btn.collapsed span.icon i {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg)
}

.ud-single-faq .ud-faq-btn span.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(48, 86, 211, .06);
    border-radius: 10px;
    color: var(--primary-color);
    margin-right: 24px
}

.ud-single-faq .ud-faq-btn span.icon i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: all .3s;
    font-size: 14px;
    font-weight: 700
}

.ud-single-faq .ud-faq-body {
    padding: 0px 30px 40px 95px
}

@media only screen and (min-width: 992px)and (max-width: 1199px),
(max-width: 767px) {
    .ud-single-faq .ud-faq-body {
        padding: 0px 16px 20px 82px
    }
}

/* FAQ Category Navigation Styles */
.faq-categories {
    margin-bottom: 50px;
    padding: 20px 0;
}

.faq-category-btn {
    background: var(--white);
    border: 2px solid #e6e8f0;
    border-radius: 50px;
    padding: 12px 24px;
    margin: 0 8px 8px 0;
    font-weight: 600;
    font-size: 16px;
    color: var(--heading-color);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.faq-category-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 59, 158, 0.15);
}

.faq-category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(29, 59, 158, 0.15);
}

@media (max-width: 767px) {
    .faq-category-btn {
        font-size: 14px;
        padding: 10px 20px;
        margin: 0 4px 8px 0;
    }
}

/* FAQ Section Titles */
.faq-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--heading-color);
    margin-bottom: 16px;
    text-align: center;
}

.faq-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: var(--body-color);
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .faq-section-title {
        font-size: 1.875rem;
    }

    .faq-section-subtitle {
        font-size: 1rem;
    }
}

/* FAQ Category Content Sections */
.faq-category-content {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced FAQ Body Styling */
.ud-single-faq .ud-faq-body ul {
    padding-left: 0;
    margin-top: 16px;
}

.ud-single-faq .ud-faq-body ul li {
    margin-bottom: 12px;
    padding-left: 8px;
    line-height: 1.6;
}

.ud-single-faq .ud-faq-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.ud-testimonials {
    padding-top: 120px
}

@media(max-width: 767px) {
    .ud-testimonials {
        padding-top: 80px
    }
}

.ud-single-testimonial {
    padding: 30px;
    box-shadow: 0px 60px 120px -20px #ebeffd;
    background: var(--white);
    margin-bottom: 50px
}

.ud-single-testimonial .ud-testimonial-ratings {
    margin-bottom: 10px
}

.ud-single-testimonial .ud-testimonial-ratings i {
    color: #fbb040
}

.ud-single-testimonial .ud-testimonial-content {
    margin-bottom: 25px
}

.ud-single-testimonial .ud-testimonial-content p {
    font-size: 16px;
    line-height: 30px;
    color: #637381
}

.ud-single-testimonial .ud-testimonial-info {
    display: flex;
    align-items: center
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta h4 {
    font-weight: 600;
    font-size: 14px
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta p {
    font-size: 12px;
    color: #969696
}

.ud-brands .ud-title {
    margin-bottom: 30px
}

.ud-brands .ud-title h6 {
    font-weight: normal;
    font-size: 12px;
    color: var(--body-color);
    display: inline-block;
    position: relative
}

.ud-brands .ud-title h6::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background: #afb2b5;
    right: -40px;
    top: 50%
}

.ud-brands .ud-brands-logo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-right: -40px
}

.ud-brands .ud-brands-logo .ud-single-logo {
    margin-right: 40px;
    margin-bottom: 20px;
    max-width: 140px
}

.ud-brands .ud-brands-logo .ud-single-logo:hover img {
    filter: none
}

.ud-brands .ud-brands-logo .ud-single-logo img {
    filter: grayscale(1);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.ud-team {
    padding-top: 120px;
    padding-bottom: 80px
}

@media(max-width: 767px) {
    .ud-team {
        padding-top: 80px;
        padding-bottom: 40px
    }
}

.ud-single-team {
    margin-bottom: 40px
}

.ud-single-team .ud-team-image-wrapper {
    width: 170px;
    height: 170px;
    position: relative;
    margin: 0px auto 25px
}

.ud-single-team .ud-team-image {
    border-radius: 50%
}

.ud-single-team .ud-team-image img {
    width: 100%;
    border-radius: 50%
}

.ud-single-team .shape {
    position: absolute;
    z-index: -1
}

.ud-single-team .shape.shape-1 {
    top: 0;
    left: 0
}

.ud-single-team .shape.shape-2 {
    bottom: 0;
    right: 0
}

.ud-single-team .ud-team-info {
    text-align: center;
    margin-bottom: 20px
}

.ud-single-team .ud-team-info h5 {
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 10px
}

.ud-single-team .ud-team-info h6 {
    font-weight: 500;
    font-size: 12px;
    color: var(--body-color)
}

.ud-single-team .ud-team-socials {
    display: flex;
    align-items: center;
    justify-content: center
}

.ud-single-team .ud-team-socials a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 10px;
    color: #cdced6
}

.ud-single-team .ud-team-socials a:hover {
    color: var(--primary-color)
}

.ud-contact {
    padding: 120px 0px;
    position: relative
}

@media(max-width: 767px) {
    .ud-contact {
        padding: 80px 0
    }
}

.ud-contact::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    top: 0;
    left: 0;
    height: 50%;
    background: #f3f4fe
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    .ud-contact::after {
        height: 45%
    }
}

.ud-contact-title {
    margin-bottom: 150px
}

@media only screen and (min-width: 768px)and (max-width: 991px),
(max-width: 767px) {
    .ud-contact-title {
        margin-bottom: 50px
    }
}

.ud-contact-title span {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px
}

.ud-contact-title h2 {
    font-weight: 600;
    font-size: 35px;
    line-height: 41px
}

.ud-contact-info-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

@media only screen and (min-width: 768px)and (max-width: 991px),
(max-width: 767px) {
    .ud-contact-info-wrapper {
        margin-bottom: 50px
    }
}

.ud-contact-info-wrapper .ud-single-info {
    display: flex;
    max-width: 100%;
    width: 330px;
    margin-bottom: 30px
}

.ud-contact-info-wrapper .ud-info-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-right: 24px
}

.ud-contact-info-wrapper .ud-info-meta h5 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px
}

.ud-contact-info-wrapper .ud-info-meta p {
    font-size: 15px;
    line-height: 24px
}

.ud-contact-form-wrapper {
    box-shadow: 0px 4px 28px rgba(0, 0, 0, .05);
    border-radius: 8px;
    background: var(--white);
    padding: 60px
}

@media(max-width: 767px) {
    .ud-contact-form-wrapper {
        padding: 40px 30px
    }
}

@media only screen and (min-width: 1200px)and (max-width: 1399px),
only screen and (min-width: 992px)and (max-width: 1199px),
only screen and (min-width: 576px)and (max-width: 767px) {
    .ud-contact-form-wrapper {
        padding: 50px 40px
    }
}

.ud-contact-form-wrapper .ud-contact-form-title {
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 30px
}

@media(max-width: 767px) {
    .ud-contact-form-wrapper .ud-contact-form-title {
        font-size: 24px
    }
}

.ud-contact-form-wrapper .ud-form-group {
    margin-bottom: 25px
}

.ud-contact-form-wrapper .ud-form-group label {
    display: block;
    font-weight: normal;
    font-size: 12px
}

.ud-contact-form-wrapper .ud-form-group input,
.ud-contact-form-wrapper .ud-form-group textarea {
    display: block;
    width: 100%;
    padding: 15px 0;
    border: none;
    outline: none;
    border-bottom: 1px solid #f1f1f1;
    resize: none
}

.ud-contact-form-wrapper .ud-form-group input:focus,
.ud-contact-form-wrapper .ud-form-group textarea:focus {
    border-color: var(--primary-color)
}

.ud-footer {
    background: var(--heading-color);
    padding-top: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.ud-footer .shape {
    position: absolute;
    z-index: -1
}

.ud-footer .shape.shape-1 {
    top: 0;
    left: 0
}

.ud-footer .shape.shape-2 {
    top: 0;
    right: 0
}

.ud-footer .shape.shape-3 {
    bottom: 0;
    right: 0
}

.ud-widget {
    margin-bottom: 50px
}

.ud-widget .ud-footer-logo {
    max-width: 160px;
    display: block;
    margin-bottom: 10px
}

.ud-widget .ud-footer-logo img {
    width: 100%
}

.ud-widget .ud-widget-desc {
    font-size: 15px;
    line-height: 24px;
    color: var(--footer-text);
    margin-bottom: 30px;
    max-width: 260px
}

.ud-widget .ud-widget-socials {
    display: flex;
    align-items: center
}

.ud-widget .ud-widget-socials a {
    font-size: 16px;
    color: var(--footer-text-light);
    margin-right: 20px
}

.ud-widget .ud-widget-socials a:hover {
    color: var(--primary-color)
}

.ud-widget .ud-widget-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--white)
}

.ud-widget .ud-widget-links a {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 30px;
    color: var(--footer-text)
}

.ud-widget .ud-widget-links a:hover {
    color: var(--primary-color);
    padding-left: 10px
}

.ud-widget .ud-widget-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.ud-widget .ud-widget-brands a {
    display: block;
    max-width: 120px;
    margin-bottom: 20px;
    margin-right: 20px
}

@media only screen and (min-width: 1200px)and (max-width: 1399px) {
    .ud-widget .ud-widget-brands a {
        max-width: 100px
    }
}

.ud-footer-bottom {
    padding: 35px 0;
    border-top: 1px solid rgba(136, 144, 164, .43)
}

.ud-footer-bottom .ud-footer-bottom-left {
    display: flex;
    align-items: center
}

@media(max-width: 767px) {
    .ud-footer-bottom .ud-footer-bottom-left {
        justify-content: center
    }
}

.ud-footer-bottom .ud-footer-bottom-left a {
    font-weight: normal;
    font-size: 15px;
    color: var(--footer-text);
    margin-right: 30px;
    display: inline-block
}

@media(max-width: 767px) {
    .ud-footer-bottom .ud-footer-bottom-left a {
        margin: 0px 8px 8px
    }
}

.ud-footer-bottom .ud-footer-bottom-left a:hover {
    color: var(--primary-color)
}

.ud-footer-bottom .ud-footer-bottom-right {
    text-align: right;
    font-weight: normal;
    font-size: 15px;
    color: var(--footer-text)
}

.ud-footer-bottom .ud-footer-bottom-right a {
    color: var(--primary-color)
}

.ud-footer-bottom .ud-footer-bottom-right a:hover {
    text-decoration: underline
}

@media(max-width: 767px) {
    .ud-footer-bottom .ud-footer-bottom-right {
        text-align: center;
        margin-top: 10px
    }
}

.ud-page-banner {
    padding-top: 130px;
    padding-bottom: 80px;
    background: var(--primary-color);
    background-image: url("../images/banner/banner-bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.ud-banner-content {
    text-align: center;
    max-width: 600px;
    margin: auto
}

.ud-banner-content h1 {
    color: var(--white);
    font-size: 38px;
    font-weight: 600
}

.ud-login {
    padding-top: 80px;
    padding-bottom: 80px
}

.ud-login-wrapper {
    max-width: 500px;
    margin: auto;
    background: var(--white);
    text-align: center;
    padding: 60px;
    box-shadow: 0px 10px 35px rgba(0, 0, 0, .05)
}

.ud-login-wrapper .ud-login-logo {
    margin-bottom: 30px
}

.ud-login-form .ud-form-group {
    margin-bottom: 25px
}

.ud-login-form .ud-form-group input {
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 4px;
    padding: 12px 24px;
    background: #fcfdfe;
    color: var(--body-color)
}

.ud-login-form .ud-form-group input:focus {
    border-color: var(--primary-color)
}

.ud-socials-connect {
    padding-top: 10px;
    padding-bottom: 30px
}

.ud-socials-connect p {
    font-size: 16px;
    color: var(--body-color);
    margin-bottom: 10px
}

.ud-socials-connect ul {
    display: flex;
    align-items: center;
    margin-left: -10px;
    margin-right: -10px
}

.ud-socials-connect ul li {
    width: 100%
}

.ud-socials-connect ul li a {
    height: 45px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    border-radius: 6px;
    color: var(--white);
    font-size: 20px
}

.ud-socials-connect ul li a.facebook {
    background: #4064ac
}

.ud-socials-connect ul li a.facebook:hover {
    background: #315294
}

.ud-socials-connect ul li a.twitter {
    background: #1c9cea
}

.ud-socials-connect ul li a.twitter:hover {
    background: #0f8bd8
}

.ud-socials-connect ul li a.google {
    background: #d64937
}

.ud-socials-connect ul li a.google:hover {
    background: #c53b29
}

.forget-pass {
    font-size: 16px;
    color: var(--body-color);
    margin-bottom: 8px
}

.signup-option {
    color: var(--body-color);
    font-size: 16px
}

.signup-option a {
    color: var(--primary-color)
}

.ud-blog-grids {
    padding-top: 120px;
    padding-bottom: 80px
}

.ud-blog-grids.ud-related-articles {
    padding-top: 100px
}

@media(max-width: 767px) {
    .ud-blog-grids {
        padding-top: 80px;
        padding-bottom: 40px
    }
}

.ud-single-blog {
    margin-bottom: 40px
}

.ud-single-blog:hover .ud-blog-image img {
    -webkit-transform: scale(1.1) rotate(3deg);
    -moz-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    -o-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg)
}

.ud-single-blog .ud-blog-image {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px
}

.ud-single-blog .ud-blog-image a {
    display: block
}

.ud-single-blog .ud-blog-image img {
    width: 100%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.ud-single-blog .ud-blog-date {
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    margin-bottom: 20px
}

.ud-single-blog .ud-blog-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    .ud-single-blog .ud-blog-title {
        font-size: 20px;
        line-height: 28px
    }
}

.ud-single-blog .ud-blog-title a {
    color: inherit
}

.ud-single-blog .ud-blog-title a:hover {
    color: var(--primary-color)
}

.ud-single-blog .ud-blog-desc {
    font-size: 16px;
    line-height: 28px
}

.ud-related-articles-title {
    font-weight: 800;
    font-size: 28px;
    padding-bottom: 25px;
    position: relative;
    margin-bottom: 50px
}

.ud-related-articles-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0
}

.ud-blog-details {
    padding-top: 120px
}

@media(max-width: 767px) {
    .ud-blog-details {
        padding-top: 80px
    }
}

.ud-blog-details-image {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 500px
}

@media(max-width: 767px) {
    .ud-blog-details-image {
        height: 300px
    }
}

.ud-blog-details-image>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center
}

.ud-blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(48, 86, 211, 0) 46.88%, rgba(13, 21, 49, 0.72) 93.23%);
    border-radius: 5px;
    padding: 30px
}

.ud-blog-overlay-content {
    display: flex;
    align-items: center
}

@media(max-width: 767px) {
    .ud-blog-overlay-content {
        flex-direction: column;
        align-items: flex-start
    }
}

.ud-blog-overlay-content .ud-blog-author {
    display: flex;
    align-items: center;
    margin-right: 40px
}

@media(max-width: 767px) {
    .ud-blog-overlay-content .ud-blog-author {
        margin-right: 0px;
        margin-bottom: 20px
    }
}

.ud-blog-overlay-content .ud-blog-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px
}

.ud-blog-overlay-content .ud-blog-author span {
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    color: #fff
}

.ud-blog-overlay-content .ud-blog-author a {
    color: inherit
}

.ud-blog-overlay-content .ud-blog-author a:hover {
    color: var(--primary-color)
}

.ud-blog-overlay-content .ud-blog-meta {
    display: flex;
    align-items: center
}

.ud-blog-overlay-content .ud-blog-meta p {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    margin-right: 30px
}

.ud-blog-overlay-content .ud-blog-meta p:last-child {
    margin-right: 0px
}

.ud-blog-overlay-content .ud-blog-meta p i {
    font-size: 16px;
    margin-right: 10px
}

.ud-blog-details-content {
    padding-top: 60px
}

@media only screen and (min-width: 1400px)and (max-width: 1920px),
only screen and (min-width: 1200px)and (max-width: 1399px) {
    .ud-blog-details-content {
        padding-right: 50px
    }
}

.ud-blog-details-title {
    font-weight: 700;
    font-size: 35px;
    line-height: 50px;
    margin-bottom: 35px
}

@media(max-width: 767px) {
    .ud-blog-details-title {
        font-size: 26px;
        line-height: 35px
    }
}

@media only screen and (min-width: 576px)and (max-width: 767px) {
    .ud-blog-details-title {
        font-size: 30px;
        line-height: 40px
    }
}

.ud-blog-details-para {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px
}

.ud-blog-details-subtitle {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 30px
}

@media(max-width: 767px) {
    .ud-blog-details-subtitle {
        font-size: 22px;
        margin-bottom: 25px
    }
}

.ud-blog-quote {
    background-image: url("../images/blog/quote-bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px
}

@media(max-width: 767px) {
    .ud-blog-quote {
        padding: 30px
    }
}

.ud-blog-quote i {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px
}

@media(max-width: 767px) {
    .ud-blog-quote i {
        margin-bottom: 15px
    }
}

.ud-blog-quote p {
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    color: var(--heading-color);
    margin-bottom: 15px
}

@media(max-width: 767px) {
    .ud-blog-quote p {
        font-size: 14px;
        line-height: 24px
    }
}

.ud-blog-quote h6 {
    color: var(--body-color);
    font-style: italic;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    text-align: center
}

.ud-blog-details-action {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media(max-width: 767px) {
    .ud-blog-details-action {
        flex-direction: column;
        align-items: flex-start
    }
}

.ud-blog-tags {
    display: flex;
    align-items: center
}

@media(max-width: 767px) {
    .ud-blog-tags {
        margin-bottom: 20px
    }
}

.ud-blog-tags li {
    margin-right: 14px
}

.ud-blog-tags li:last-child {
    margin-right: 0px
}

.ud-blog-tags a {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    background: rgba(48, 86, 211, .06);
    border-radius: 3px
}

.ud-blog-tags a:hover {
    background: var(--primary-color);
    color: var(--white)
}

.ud-blog-share {
    display: flex;
    align-items: center
}

.ud-blog-share h6 {
    font-weight: 500;
    font-size: 12px;
    color: var(--body-color);
    margin-right: 20px
}

.ud-blog-share-links {
    display: flex;
    align-items: center
}

.ud-blog-share-links li {
    margin-right: 14px
}

.ud-blog-share-links li:last-child {
    margin-right: 0px
}

.ud-blog-share-links a {
    font-size: 18px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white)
}

.ud-blog-share-links a.facebook {
    background: #4064ac
}

.ud-blog-share-links a.facebook:hover {
    background: #315294
}

.ud-blog-share-links a.twitter {
    background: #1c9cea
}

.ud-blog-share-links a.twitter:hover {
    background: #0f8bd8
}

.ud-blog-share-links a.linkedin {
    background: #007ab9
}

.ud-blog-share-links a.linkedin:hover {
    background: #03689b
}

.ud-blog-sidebar {
    padding-top: 60px
}

.ud-newsletter-box {
    background: var(--primary-color);
    padding: 60px 45px;
    position: relative;
    z-index: 1;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 50px
}

@media only screen and (min-width: 992px)and (max-width: 1199px),
(max-width: 767px) {
    .ud-newsletter-box {
        padding: 50px 30px
    }
}

@media only screen and (min-width: 576px)and (max-width: 767px) {
    .ud-newsletter-box {
        padding: 60px 45px
    }
}

.ud-newsletter-box .shape {
    position: absolute;
    z-index: -1
}

.ud-newsletter-box .shape.shape-1 {
    top: 0;
    right: 0
}

.ud-newsletter-box .shape.shape-2 {
    left: 0;
    bottom: 0
}

.ud-newsletter-box .ud-newsletter-title {
    font-weight: 600;
    font-size: 25px;
    color: var(--white);
    margin-bottom: 5px
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    .ud-newsletter-box .ud-newsletter-title {
        font-size: 23px
    }
}

.ud-newsletter-box p {
    font-size: 16px;
    line-height: 24px;
    color: var(--white)
}

.ud-newsletter-box .ud-newsletter-form {
    margin-top: 30px
}

.ud-newsletter-box .ud-newsletter-form input {
    width: 100%;
    box-shadow: 0px 4px 42px rgba(0, 0, 0, .01);
    border-radius: 5px;
    background: hsla(0, 0%, 100%, .2);
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
    border: 2px solid rgba(0, 0, 0, 0);
    padding: 12px 20px
}

.ud-newsletter-box .ud-newsletter-form input::placeholder {
    color: var(--white);
    opacity: 1
}

.ud-newsletter-box .ud-newsletter-form input:focus {
    border-color: var(--white)
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn {
    background: #13c296;
    box-shadow: 0px 4px 42px rgba(0, 0, 0, .01);
    border-radius: 5px;
    width: 100%;
    margin-bottom: 24px
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn:hover {
    background: var(--heading-color)
}

.ud-newsletter-box .ud-newsletter-form .ud-newsletter-note {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px
}

.ud-articles-box {
    margin-bottom: 50px
}

.ud-articles-box .ud-articles-box-title {
    font-weight: 600;
    font-size: 28px;
    padding-bottom: 25px;
    position: relative;
    margin-bottom: 20px
}

.ud-articles-box .ud-articles-box-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0
}

.ud-articles-box .ud-articles-list li {
    padding: 20px 0;
    border-bottom: 1px solid #f2f3f8;
    display: flex;
    align-items: center
}

.ud-articles-box .ud-articles-list li:last-child {
    padding-bottom: 0px;
    border-bottom: 0px
}

.ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 80px;
    width: 100%;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px
}

@media only screen and (min-width: 992px)and (max-width: 1199px),
(max-width: 767px) {
    .ud-articles-box .ud-articles-list .ud-article-image {
        max-width: 65px;
        height: 65px
    }
}

@media only screen and (min-width: 576px)and (max-width: 767px) {
    .ud-articles-box .ud-articles-list .ud-article-image {
        max-width: 80px;
        height: 80px
    }
}

.ud-articles-box .ud-articles-list .ud-article-image img {
    width: 100%
}

.ud-articles-box .ud-articles-list .ud-article-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    .ud-articles-box .ud-articles-list .ud-article-title {
        font-size: 16px
    }
}

.ud-articles-box .ud-articles-list .ud-article-title a {
    color: inherit
}

.ud-articles-box .ud-articles-list .ud-article-title a:hover {
    color: var(--primary-color)
}

.ud-articles-box .ud-articles-list .ud-article-author {
    font-size: 14px
}

.ud-banner-ad {
    border-radius: 5px;
    overflow: hidden
}

.ud-banner-ad a {
    display: block
}

.ud-banner-ad img {
    width: 100%
}

.ud-404 {
    padding-top: 120px;
    padding-bottom: 120px
}

@media(max-width: 767px) {
    .ud-404 {
        padding-top: 80px;
        padding-bottom: 80px
    }
}

.ud-404-wrapper {
    text-align: center;
    max-width: 850px;
    margin: 0px auto;
    background: var(--white);
    padding: 100px 60px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, .1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1
}

@media(max-width: 767px) {
    .ud-404-wrapper {
        padding: 50px 30px
    }
}

.ud-404-wrapper .shape {
    position: absolute;
    z-index: -1
}

.ud-404-wrapper .shape.shape-1 {
    top: 0;
    left: 0
}

.ud-404-wrapper .shape.shape-2 {
    right: 0;
    bottom: 0
}

.ud-404-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .ud-404-title {
        font-size: 35px
    }
}

@media(max-width: 767px) {
    .ud-404-title {
        font-size: 30px
    }
}

.ud-404-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px
}

@media only screen and (min-width: 768px)and (max-width: 991px) {
    .ud-404-subtitle {
        font-size: 22px
    }
}

@media(max-width: 767px) {
    .ud-404-subtitle {
        font-size: 18px
    }
}

.ud-404-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.ud-404-links a {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    color: var(--heading-color);
    background: rgba(48, 86, 211, .06);
    border-radius: 5px;
    margin: 5px 10px
}

.ud-404-links a:hover {
    background: var(--heading-color);
    color: var(--white)
}

@media(max-width: 767px) {
    .ud-404-links a {
        margin: 5px 10px;
        font-size: 14px;
        padding: 10px 20px
    }
}

/*# sourceMappingURL=ud-styles.css.map */
.ud-widget .ud-widget-socials a:hover {
    color: var(--primary-color)
}

.social-footer .lni {
    color: var(--white) !important;
    background: var(--primary-color);
    border-radius: 50%;
    padding: 8px;
    transition: color .3s, background .3s;

    /* ===== Clients CSS ===== */
    .ud-clients {
        padding: 80px 0;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #fafbff 0%, #f8fafe 50%, #f0f9ff 100%);
        /* Enhanced background for individual cards showcase */
    }

    .ud-clients-wrapper {
        width: 100%;
        overflow: hidden;
        position: relative;
        min-height: 220px;
        /* Increased height for individual cards */
        padding: 10px 0;
    }

    .ud-clients-scroll {
        width: 100%;
        overflow: hidden;
        position: relative;
        touch-action: pan-y pinch-zoom;
        cursor: grab;
        height: 200px;
        /* Adjusted height for individual cards */
        padding: 0 20px;
        /* Add padding to prevent card cutoff */
    }

    .ud-clients-scroll:active {
        cursor: grabbing;
    }

    .ud-clients-track {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        transition: none;
        /* Controlled by JavaScript */
        width: auto;
        /* Width controlled by JavaScript based on number of items */
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        align-items: flex-start;
        /* Ensure items align properly */
    }

    /* Dragging state */
    .ud-clients-scroll.dragging {
        cursor: grabbing;
    }

    .ud-clients-scroll.dragging .ud-clients-track {
        transition: none !important;
    }

    /* Direction change animation */
    .ud-clients-scroll.direction-change {
        animation: directionPulse 0.5s ease-out;
    }

    @keyframes directionPulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.02);
            box-shadow: 0 0 20px rgba(29, 59, 158, 0.3);
        }

        100% {
            transform: scale(1);
        }
    }

    /* Navigation Arrows */
    .ud-clients-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 10;
        padding: 0 20px;
    }

    .ud-clients-prev,
    .ud-clients-next {
        background: rgba(29, 59, 158, 0.9);
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
        cursor: pointer;
        pointer-events: auto;
        transition: all 0.3s ease;
        opacity: 0;
        transform: scale(0.8);
        box-shadow: 0 4px 12px rgba(29, 59, 158, 0.3);
    }

    .ud-clients-wrapper:hover .ud-clients-prev,
    .ud-clients-wrapper:hover .ud-clients-next {
        opacity: 1;
        transform: scale(1);
    }

    .ud-clients-prev:hover,
    .ud-clients-next:hover {
        background: var(--primary-color);
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(29, 59, 158, 0.4);
    }

    .ud-clients-prev:active,
    .ud-clients-next:active {
        transform: scale(0.95);
    }

    /* Indicators */
    .ud-clients-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        gap: 10px;
    }

    .ud-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(29, 59, 158, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .ud-indicator:hover {
        background: rgba(29, 59, 158, 0.6);
        transform: scale(1.1);
    }

    .ud-indicator.active {
        background: var(--primary-color);
        transform: scale(1.2);
    }

    .ud-indicator.active::after {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        opacity: 0.3;
    }


    .ud-single-client {
        flex: 0 0 200px;
        margin: 0 12px 12px 12px;
        text-align: center;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 16px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid rgba(29, 59, 158, 0.08);
        position: relative;
        overflow: hidden;
        /* Make it look like individual cards */
        backdrop-filter: blur(10px);
    }

    .ud-single-client::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), #00D4AA);
        transform: scaleX(0);
        transition: transform 0.4s ease;
        border-radius: 16px 16px 0 0;
    }

    .ud-single-client::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(29, 59, 158, 0.03) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .ud-single-client:hover::before {
        transform: scaleX(1);
    }

    .ud-single-client:hover::after {
        opacity: 1;
    }

    .ud-client-image-wrapper {
        position: relative;
        height: 100px;
        width: 100%;
        background: linear-gradient(135deg, #f8fafe 0%, #ffffff 50%, #f0f9ff 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(29, 59, 158, 0.05);
        margin-bottom: 16px;
        overflow: hidden;
        box-sizing: border-box;
        /* Enhanced card styling */
        max-width: 170px;
        max-height: 100px;
        margin: 0 auto 16px auto;
        box-shadow: inset 0 1px 3px rgba(29, 59, 158, 0.06);
    }

    .ud-client-name {
        font-size: 12px;
        font-weight: 600;
        color: #1a202c;
        text-align: center;
        line-height: 1.4;
        opacity: 0.95;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0;
        padding: 8px 4px 4px 4px;
        /* Better text handling for long names */
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        max-height: 3.2em;
        font-family: 'Poppins', sans-serif;
        letter-spacing: 0.3px;
        /* Card-specific styling */
        background: rgba(29, 59, 158, 0.02);
        border-radius: 8px;
        position: relative;
    }

    .ud-client-name::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), #00D4AA);
        transition: all 0.4s ease;
        transform: translateX(-50%);
    }

    .ud-single-client:hover .ud-client-name {
        opacity: 1;
        color: var(--primary-color);
        transform: translateY(-2px);
        background: rgba(29, 59, 158, 0.05);
    }

    .ud-single-client:hover .ud-client-name::before {
        width: 60%;
    }

    .ud-client-image-wrapper:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 12px 30px rgba(29, 59, 158, 0.15);
        background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
        border-color: rgba(29, 59, 158, 0.12);
    }

    .ud-single-client:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(29, 59, 158, 0.2);
        border-color: rgba(29, 59, 158, 0.15);
        background: #ffffff;
    }

    .ud-client-logo {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 0;
        /* Center and fill the card space */
        max-width: 100%;
        max-height: 100%;
    }

    .ud-clients-wrapper .ud-clients-scroll .ud-clients-track .ud-single-client .ud-client-image-wrapper .ud-client-logo img {
        max-width: 100% !important;
        max-height: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        transition: all 0.3s cubic-bezier(.4, 2, .6, 1);
        filter: grayscale(0.2);
        margin: 0 auto;
        display: block;
        /* Center and fill until edge touches */
        object-position: center;
    }

    .ud-client-logo img {
        max-width: 100% !important;
        max-height: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain;
        transition: all 0.3s cubic-bezier(.4, 2, .6, 1);
        filter: grayscale(0.2);
        margin: 0 auto;
        display: block;
        /* Center and fill until edge touches */
        object-position: center;
    }

    .ud-client-image-wrapper:hover .ud-client-logo img {
        filter: grayscale(0);
        transform: scale(1.02);
        /* Reduced scale to prevent overflow */
    }

    /* Direction change animation */
    .ud-clients-scroll.direction-change {
        animation: directionPulse 0.5s ease-out;
    }

    @keyframes directionPulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.02);
            box-shadow: 0 0 20px rgba(29, 59, 158, 0.3);
        }

        100% {
            transform: scale(1);
        }
    }

    /* Touch interaction feedback */
    .ud-clients-scroll.touching .ud-clients-track {
        transition: none;
    }

    /* Add responsive adjustments */
    @media (max-width: 767px) {
        .ud-single-client {
            flex: 0 0 160px;
            /* Individual card size on mobile */
            margin: 0 8px;
            min-height: 160px;
            padding: 16px 12px;
            border-radius: 14px;
        }

        .ud-client-image-wrapper {
            height: 80px;
            padding: 10px;
            margin-bottom: 12px;
            max-width: 130px;
            max-height: 80px;
            border-radius: 10px;
        }

        .ud-client-name {
            font-size: 11px;
            padding: 6px 3px 3px 3px;
            max-height: 3em;
            line-height: 1.3;
            border-radius: 6px;
        }

        .ud-client-logo img {
            max-width: 100% !important;
            max-height: 100% !important;
            object-fit: contain !important;
            object-position: center !important;
        }

        .ud-clients-nav {
            padding: 0 10px;
        }

        .ud-clients-prev,
        .ud-clients-next {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

        .ud-clients-indicators {
            margin-top: 20px;
            gap: 8px;
        }

        .ud-indicator {
            width: 10px;
            height: 10px;
        }

        /* Hide navigation arrows on mobile, rely on touch */
        .ud-clients-prev,
        .ud-clients-next {
            display: none;
        }
    }

    /* High-resolution displays */
    @media (min-width: 1400px) {
        .ud-single-client {
            flex: 0 0 220px;
            margin: 0 25px;
        }

        .ud-client-image-wrapper {
            height: 120px;
            padding: 25px;
        }
    }
}