:root {
    --primary-color: #192955;
    --secondary-color: rgb(242, 104, 92);
    --white-color: #ffffff;
    --white-color-20: #FFFFFF26;;
    --font-size-lg: 18px;
    --slate-blue: #667293;
    --dark-gray: #333333;
    --text-dark: #1a1a1a;
    --border-bottom: #b2b2b2;
    --light-gray: #f5f5fc;
    --border-card: #d9d9d9;
    --bg-light:#FBFBFB;
    --text-gray:#6C6A6C;
}

.bg-light{
    background: var(--bg-light);
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.slate-blue {
    color: var(--slate-blue);
}

.gray-text {
    color: var(--text-gray);
}

.secondary-text {
    color: var(--secondary-color);
}

.primary-text {
    color: var(--primary-color);
}

.white-text {
    color: var(--white-color);
}

.text-dark {
    color: var(--primary-color);
}

.dark-gray {
    color: var(--dark-gray);
}

.dark-text {
    color: var(--text-dark);
}

.light-gray {
    background-color: var(--light-gray);
}

@keyframes dropIn {
    from {
        transform: scaleY(0.96) translateZ(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1) translateZ(0);
        opacity: 1;
    }
}

.max-w-50{
    max-width: 550px;
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body * {
    font-family: "Figtree", sans-serif;
}

h1 {
    font-weight: 900;
}

p,
a {
    font-weight: 300;
}
.z-index-9999 {
    z-index: 9999;
}

.main-section {
    overflow-x: hidden !important;
    padding: 6.7vh 4.948vw 5.3vh 4.688vw;
}

.section-full {
    padding: 9.6vh 4.948vw;
}

.border-radius-15 {
    border-radius: 15px !important;
}

/* CUSTOM AOS DISTANCE*/
[data-aos="fade-up"] {
    -webkit-transform: translate3d(0, 1.25rem, 0) !important; /* 20px */
    transform: translate3d(0, 1.25rem, 0) !important;
}
[data-aos="fade-up"].aos-animate {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

[data-aos="fade-down"] {
    -webkit-transform: translate3d(0, -1.25rem, 0) !important; /* -20px */
    transform: translate3d(0, -1.25rem, 0) !important;
}
[data-aos="fade-down"].aos-animate {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

[data-aos="fade-left"] {
    -webkit-transform: translate3d(1.25rem, 0, 0) !important; /* 20px */
    transform: translate3d(1.25rem, 0, 0) !important;
}
[data-aos="fade-left"].aos-animate {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

[data-aos="fade-right"] {
    -webkit-transform: translate3d(-1.25rem, 0, 0) !important; /* -20px */
    transform: translate3d(-1.25rem, 0, 0) !important;
}
[data-aos="fade-right"].aos-animate {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

[data-aos="fade-up-right"] {
    -webkit-transform: translate3d(
        -1.25rem,
        1.25rem,
        0
    ) !important; /* -20px, 20px */
    transform: translate3d(-1.25rem, 1.25rem, 0) !important;
}
[data-aos="fade-up-right"].aos-animate {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

[data-aos="fade-up-left"] {
    -webkit-transform: translate3d(
        1.25rem,
        1.25rem,
        0
    ) !important; /* 20px, 20px */
    transform: translate3d(1.25rem, 1.25rem, 0) !important;
}
[data-aos="fade-up-left"].aos-animate {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

[data-aos="fade-down-right"] {
    -webkit-transform: translate3d(
        -1.25rem,
        -1.25rem,
        0
    ) !important; /* -20px, -20px */
    transform: translate3d(-1.25rem, -1.25rem, 0) !important;
}
[data-aos="fade-down-right"].aos-animate {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

[data-aos="fade-down-left"] {
    -webkit-transform: translate3d(
        1.25rem,
        -1.25rem,
        0
    ) !important; /* 20px, -20px */
    transform: translate3d(1.25rem, -1.25rem, 0) !important;
}
[data-aos="fade-down-left"].aos-animate {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

/* END CUSTOM AOS DISTANCE*/

/* FONT SIZE AND LINE HIEGHT */
.line-height-24 {
    line-height: 1.5rem;
}

.line-height-25 {
    line-height: 1.5625rem;
}

.line-height-28 {
    line-height: 1.75rem;
}

.line-height-30 {
    line-height: 1.875rem;
}

.line-height-45 {
    line-height: 2.8125rem;
}

.line-height-60 {
    line-height: 3.75rem;
}

.line-height-70 {
    line-height: 4.375rem;
}

.line-height-80 {
    line-height: 5rem;
}

.line-height-100 {
    line-height: 100%;
}

.font-size-16 {
    font-size: 1rem !important;
}
.font-size-18 {
    font-size: 1.125rem !important;
}
.font-size-21 {
    font-size: 1.3125rem !important;
}
.font-size-24 {
    font-size: 1.5rem !important;
}
.font-size-28 {
    font-size: 1.75rem !important;
}
.font-size-48 {
    font-size: 3rem !important;
}
/* End font size and line height */

/*Font Weight*/
.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}
/* end font weight */

.pb-85 {
    padding-bottom: 5.3125rem !important;
}

.pb-61 {
    padding-bottom: 3.8125rem !important;
}

.pb-118 {
    padding-bottom: 7.375rem !important;
}

.me-87 {
    margin-right: 5.4375rem !important;
}

.mt-11 {
    margin-top: 11rem;
}

#offcanvasNavbar {
    background-color: var(--secondary-color);
}

#offcanvasNavbar {
    a,
    p,
    h6 {
        font-size: var(--font-size-lg);
    }

    .navbar-nav .dropdown-menu {
        background-color: transparent;
        border: 0;
        a {
            color: var(--white-color);
        }
    }
    .dropdown-toggle::after {
        content: none;
    }

    .btn-close {
        --bs-btn-close-bg: none;
        opacity: 1;
    }

    .btn-close i::before {
        color: var(--white-color);
        font-size: var(--font-size-lg);
    }

    a.dropdown-toggle.show > span {
        transform: rotate(180deg);
        transition: transform 0.5s ease-in-out;
    }

    .dropdown-menu.show {
        /* scaleY drawer: originates from the top edge */
        transform-origin: top center;
        /* slightly slower and very smooth easing, no bounce */
        animation: dropIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) both;
        will-change: transform, opacity;
        /* promote to its own layer for smoother animation */
        backface-visibility: hidden;
        transform-style: preserve-3d;
    }

    /* Ensure dropdowns use the top origin for consistent drawer behaviour */
    .dropdown-menu {
        transform-origin: top center;
    }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .dropdown-menu.show,
    .dropdown-menu {
        animation: none !important;
        transition: none !important;
    }
}


.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.nav-link:focus,
.nav-link:hover {
    font-weight: 700;
}

.navbar-toggler,
.navbar-toggler:focus {
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 12px;
}

.navbar-toggler i{
    font-size: 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-wrapper.header-light .navbar-toggler {
    border-color: var(--primary-color);
}

.nav-wrapper.header-light .navbar-toggler i::before {
    color: var(--primary-color);
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.dark-arrow {
    filter: brightness(0.4);
}

/* DARK HERO */

.nav-wrapper.header-dark {
    background: transparent;
}

.nav-wrapper.header-dark .navbar-nav .nav-link {
    color: var(--white-color);
}

.nav-wrapper.header-dark.sticky {
    background: var(--primary-color);
}



/* LIGHT SECTION */

.nav-wrapper.header-light {
    background: #fff;
}

.nav-wrapper.header-light .navbar-nav .nav-link {
    color: var(--primary-color);
}

.nav-wrapper.header-light.sticky {
    background: #fff;
}


/* sticky shadow */

.nav-wrapper.sticky {
    box-shadow: 0 0.125rem 0.125rem rgba(155,155,155,0.1);
}

.nav-wrapper.header-light .offcanvas .nav-link {
    color: #fff!important;
}


#offcanvasNavbar {
    & .navbar-nav .dropdown-menu {
        & a:hover,
        a.active {
            color: var(--white-color) !important;
            border-radius: 10px !important;
            background: var(--bs-danger-border-subtle) !important;
            font-weight: 700 !important;
        }
    }
}

.secondary-bg {
    background-color: var(--secondary-color);
}

.hero {
    p,
    h1 {
        color: var(--white-color);
    }
}

.round-input {
    border: 0.75px solid #ffffff80;
    border-radius: 10px;
    font-size: 21px;
    font-weight: 300;
    line-height: 30px;
    padding: 1.375rem 2.4375rem;
    width: 100%;
    background-color: transparent;
    max-height: 4.51125rem;
    color: #fff;
}

.round-input:focus-visible,
.square-input:focus-visible {
    outline: 0;
}

.square-input {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    font-size: 21px;
    font-weight: 300;
    line-height: 30px;
    padding: 1.375rem 2.4375rem;
    width: 100%;
    background-color: transparent;
    max-height: 4.51125rem;
    color: #b2b2b2;
}

footer .nav-link.active,
footer .nav-link.show,
footer .nav-link:focus,
footer .nav-link:hover {
    color: var(--secondary-color) !important;
}


#landing-hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 0;
    overflow: hidden;
    isolation: isolate;
}

@media (max-width: 767.98px) {
    #landing-hero {
        min-height: 90vh;
    }
}

/* canvas layer */
#landing-hero .hero-sequence-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

#hero-sequence-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

#landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: #000;
}


#landing-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(120deg, #192955 0%, rgba(55, 90, 187, 0.35) 100%);
}

#landing-hero > .container-fluid {
    position: relative;
    z-index: 2;
}

#landing-hero .card-wrapper p{
    margin-bottom: 0!important;
}

h1{
    font-size: 50px;
}

.arrow-bg {
    position: relative;
    z-index: 0;
    display: inline-block;
    overflow: visible;
}
.arrow-circle-dark {
    background-color: var(--primary-color);
}
.arrow-circle-light {
    background-color: var(--secondary-color);
}

.arrow-circle {
    clip-path: circle();
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.arrow-circle img {
    width: 16px;
    aspect-ratio: 1/1;
    display: block;
}

a:hover .arrow-circle img {
    transform: translate(3px, -3px);
}

.arrow-bg:has(.arrow-circle-dark)::after {
    background: rgba(25, 41, 85, 0.6);
}
.arrow-bg:has(.arrow-circle-light)::after {
    background: rgba(242, 104, 92, 0.6);
}

.arrow-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: blur(14px);
    opacity: 0;
    transform: scale(0.85);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
    z-index: -1;
    pointer-events: none;
}

a:hover .arrow-bg::after,
a:focus .arrow-bg::after,
.arrow-bg:hover::after,
.arrow-bg:focus::after {
    opacity: 1;
    transform: scale(1.15);
}

a .arrow-bg img {
    transition: transform 0.3s ease-in-out;
}

a .arrow-bg,
.hvr-glow {
    transition: box-shadow 0.3s ease-in-out;
}

a:hover.hvr-glow {
    box-shadow: rgba(242, 104, 92, 0.8) 0px 0px 10px 1px;
}

#offcanvasNavbar .navbar-nav .dropdown-menu,
.navbar-nav .dropdown-menu {
    display: block !important;
    top: 100%;
    left: 0;
    right: auto;
    z-index: 1000;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition:
        max-height 0.8s cubic-bezier(0.2, 0, 0, 1),
        opacity 0.6s ease,
        padding 0.6s ease;
    will-change: max-height, opacity, padding;
    animation: none !important;
    pointer-events: none;
}

#offcanvasNavbar .navbar-nav .dropdown-menu.show,
.navbar-nav .dropdown-menu.show {
    max-height: 900px;
    opacity: 1;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    pointer-events: auto;
}

.first-section {
    background-image: url(../img/bg-img/bg-footer.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: none !important;
    will-change: auto;
}

footer .nav-link {
    font-size: var(--font-size-lg);
    color: var(--white-color);
    font-weight: 400 !important;
    line-height: 30px;
}

.rounded-100 {
    border-radius: 100px;
}

.card-wrapper {
    background-color: var(--white-color-20);
    padding: 2rem;
    backdrop-filter: blur(10px);
    min-height: 100%;
}

#landing-banner {
    background-image: url(../img/bg-img/bg-banner.jpg);
    background-size: auto;
    background-position: center 4rem;
    background-repeat: no-repeat;
    transform: none !important;
    will-change: auto;
}

.banner-img {
    max-width: 31.5625rem;
    height: 31.875rem;
}

.btn-arrow-sq {
    padding: 0.9375rem 0.375rem;
}

.btn-arrow-sq img {
    width: 3rem;
    height: 3rem;
}

#landing-service {
    background-image:
        url(../img/bg-img/header_pattern.png), url(../img/bg-img/bg-navy.jpg);
    background-size: auto, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    transform: none !important;
    will-change: auto;
}

.card-grid {
    padding: 2.25rem 1.75rem 1.75rem;
    border: 1px solid transparent;
    transition: border-color 0.5s ease-in-out;
}

.card-grid .card-img img {
    width: 3.5625rem;
    height: 3.75rem;
}

.card-grid:hover {
    border-color: #fff;
}

#faqs {
    background-image: url(../img/bg-img/bg-faqs.png);
    background-size: auto;
    background-position: left top;
    background-repeat: no-repeat;
    transform: none !important;
    will-change: auto;
}

.accordion {
    --bs-accordion-border-radius: 0 !important;
}

#faqs .accordion-item:first-child .btn-link {
    margin-top: 0 !important;
}

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

.accordion-item .btn-link {
    text-decoration: none;
    width: 100%;
}

.accordion-item h6 {
    color: var(--dark-gray) !important;
}

.medium-br-bottom {
    border-bottom: 0.75px solid var(--border-bottom) !important;
}

#testimonials {
    background-image:
        url(../img/bg-img/sec-testimonials.png),
        url(../img/bg-img/bg-testimonials.jpg);
    background-size: auto, cover;
    background-position:
        center,
        center right;
    background-repeat: no-repeat, no-repeat;
    transform: none !important;
    will-change: auto;
}

.testimonial-card {
    background-color: #f9faff;
    border: none;
    overflow: hidden;
}

.arrow-btn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 0.75px solid #b2b2b2;
}

.arrow-btn:hover {
    background-color: #e6f0ff;
    border-color: #bcd1ff;
}

.testimonials-wrapper {
    position: relative;
    min-height: 200px;
}

.testimonials-item {
    opacity: 0;
    transform: translateX(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonials-item.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.subHero {
    position: relative;
    overflow: hidden;
    height: 50svh;
}

.hero-content {
    padding: 150px 0;
}

#landing-hero .hero-content {
    padding:10px 0 150px 0;
}

.survey-title {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.survey-title:hover {
    opacity: 0.8;
    transform: scale(1.04);
    color: var(--secondary-color); 
}

.subHero-background {
    background-image: url(../img/subHero/subHero-background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: none !important;
    will-change: auto;
}

.subHero-overlay {
    background-image: url(../img/subHero/subHero-overlay.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: none !important;
    will-change: auto;
}

.breadcrumb-link,
.breadcrumb-path,
.breadcrumb-separator {
    color: var(--white-color);
    text-decoration: none;
}

.breadcrumb-current {
    color: var(--secondary-color);
    font-weight: 600;
}

#services {
    background-color: var(--light-gray);
}

.card-service {
    border: 0.75px solid var(--border-card);
    padding: 2.3125rem 4.1875rem;
}

.card-service .img-service {
    margin-right: 3.5rem;
}

#service-details {
    background-image: url(../img/bg-img/bg-banner.jpg);
    background-size: auto;
    background-position: center 4rem;
    background-repeat: no-repeat;
    transform: none !important;
    will-change: auto;
}

#service-details img {
    height: auto;
    object-fit: cover;
    display: block;
}

#service-details .card-details {
    background-color: var(--white-color);
    padding: 3.125rem 4rem;
    position: absolute;
    top: 95%;
    left: 56.5%;
    transform: translate(-50%, -50%);
    max-width: 40.875rem;
    width: 90%;
    box-sizing: border-box;
}

#list-service ol {
    list-style-type: decimal;
    font-weight: 700;
}

#list-service ol li {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 51px;
}

#list-service ol li::marker {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}

#list-service ul {
    padding-left: 1.5rem;
    list-style-type: disc;
    color: #000;
}

#list-service ul li::marker {
    color: #000;
    font-weight: 300;
    font-size: 21px;
    line-height: 30px;
}

#list-service ul li {
    margin-bottom: 0.4rem;
    color: #000;
    font-weight: 300;
    font-size: 21px;
    line-height: 30px;
}

#list-service ul li:first-child {
    margin-top: 25px;
}

#expertise {
    background-image: url(../img/bg-img/bg-faqs.png);
    background-size: auto;
    background-position: center 4rem;
    background-repeat: no-repeat;
    transform: none !important;
    will-change: auto;
}

.rectangle-icon {
    height: 0.90625rem;
}

.card-expertise {
    background-color: var(--light-gray);
    padding: 3rem;
    min-height: 36.875rem;
}

@media (max-width: 1199px) {
    .mt-11 {
        margin-top: 0rem;
    }
}

@media (max-width: 992px) {
    #service-details .card-details {
        top: 100%;
        left: 64%;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    #service-details .card-details {
        position: static;
        transform: none;
        margin-top: 1rem;
        width: 100%;
        max-width: none;
    }
}
@media (min-width: 991px) {
    .flex-row-lg-reverse {
        flex-direction: row-reverse !important;
    }
}

/* Desktop Navigation Styles */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        transition: color 0.3s ease;
    }

    .nav-wrapper.header-dark .navbar-nav .nav-link {
        color: var(--white-color);
    }

    .nav-wrapper.header-light .navbar-nav .nav-link {
        color: var(--primary-color);
    }

    .nav-wrapper.header-dark .navbar-nav .nav-link:hover,
    .nav-wrapper.header-dark .navbar-nav .nav-link.active {
        color: var(--secondary-color) !important;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link.show,
    .nav-link:focus,
    .nav-link:hover {
        font-weight: 700;
        color: var(--secondary-color) !important;
    }

    .nav-wrapper.header-dark .navbar-nav .dropdown-toggle i {
        color: var(--white-color);
    }

    .nav-wrapper.header-light .navbar-nav .dropdown-toggle i {
        color: var(--primary-color);
    }

    .navbar-nav .nav-link:hover i,
    .navbar-nav .nav-link.active i {
        color: var(--secondary-color);
    }

    .navbar-nav .dropdown-toggle::after {
        display: none;
    }

    .navbar-nav .dropdown-toggle i {
        font-size: 0.75rem;
        transition:
            color 0.3s ease,
            transform 0.3s ease;
    }

    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
    }

    .navbar-nav .dropdown:hover .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .navbar-nav .dropdown-menu {
        margin-top: 0;
    }

    .navbar-nav .dropdown-item {
        color: var(--primary-color);
        transition:
            color 0.3s ease,
            background-color 0.3s ease;
    }

    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item.active {
        color: var(--secondary-color);
        background-color: rgba(242, 104, 92, 0.1);
    }
}

#hero-survey{
    background-image: url(../img/bg-img/bg-surveys.png);
    background-size: auto;
    background-position: left 200px;
    background-repeat: no-repeat;
    transform: none !important;
    will-change: auto;
    padding-top: 60px;
}

#hero-survey .hero-survey-img{
    position: absolute;
    top: -45px;
}

.survey-container{
    padding: 15% 20%;
    background: #FBFBFB;
}

.survey-container-details{
    padding: 7% 8%;
    background: #FBFBFB;
}

.survey-container .icon-arrow-right{
    font-size: 10px;
    margin-top: 3px;
}

/* Header */

.survey-header{
    display:flex;
    justify-content:space-between;
    gap:15px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.search-box{
    position:relative;
    flex:1;
}

.search-box input{
    width:100%;
    padding:10px 15px 10px 40px;
    border:0.5px solid #EBEBEB;
}

.search-box .search-img{
    position: absolute;
    top: 13px;
    left: 12px;
}

.sort-box{
    display:flex;
    align-items:center;
    gap:10px;
    border:0.5px solid #EBEBEB;
    padding:10px 4px;
    border-radius:0px;
    width:220px;
    background:#fff;
}

.sort-label{
    color:#B2B2B2;
}

.sort-select{
    border:none;
    outline:none;
    font-weight:600;
    font-size:16px;
    cursor:pointer;
    background:transparent;
    color: #1A1A1A;

}

#searchInput::placeholder{
    color:#B2B2B2;
    font-size:16px;
    font-weight:300;
}

input{
    outline: none!important;
}

/* Cards */
.survey-card{
    background:#fff;
    padding:20px;
    margin-bottom:20px;
    border:0.5px solid #EBEBEB;
    transition: opacity .3s ease, transform .3s ease;
    width: 100%;
}

.survey-category{
    color: #000;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.dash{
    border: 2px solid #F2685C;
    width: 12px;
    display:inline-block;
    margin-right: 6px;
    border-radius: 10px;
}

.survey-title{
    margin-bottom:4px;
    color: #000;
}

.survey-desc{
    color:#6C6A6C;
    margin-bottom:17px;
}

/* badges */

.badge{
    border-radius:15px;
    font-size:12px;
    margin-right:6px;
}

.badge.active{
    background:#CFF3DE;
    color:#00A651;
    border: 1px solid #00A651;
    padding: 6px 12px;
}

.badge.completed{
    background:#FFE9E9;
    color:#F34848;
    border: 1px solid #F34848;
    padding: 6px 12px;
}

.responses{
    padding:6px 20px;
    background:#F2685C;
    color:white;
}

.responses img{
    width: 18px;
    height: 18px;
    margin-right: 7px;
}

/* footer */

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

.view-link{
    text-decoration:none;
    color: #192955;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* arrow */
.view-link i {
    transition: transform 0.3s ease;
}

/* hover */
.view-link:hover {
    transform: translateX(4px);
    color: #F2685C;
}

/* arrow moves more */
.view-link:hover i {
    transform: translateX(8px);
}

.view-link:hover .icon-arrow-right::before {
    color: #F2685C;
}

/* Pagination */

.pagination{
    display: flex;
    justify-content: end;
    gap: 5px;
    margin-top: 40px;
}

.pagination button{
    border: 0.75px solid #B2B2B2;
    background: transparent;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

#pageNumbers{
    gap: 5px;
    display: flex;
    align-items: center;
}

#pageNumbers button.active{
    color: white;
    background: #F2685C;
    border-color: #F2685C;
    font-weight: 600;
}

#pageNumbers button:hover{
    color: white;
    background: #F2685C;
    border-color: #F2685C;
    font-weight: 600;
}

.pagination button:hover{
    background: #EBEBEB;
}

.pagination button.disabled{
    pointer-events:none;
}

.pagination button.disabled .icon-pagination-left::before,
.pagination button.disabled .icon-pagination-right::before{
    color:#B3B3B3;
}

.pagination button.active i::before{
    color:var(--primary-color);
}

.empty-state{
    text-align:center;
    padding:60px 0;
    color:#777;
    font-size:16px;
}

#hero-details {
    background-image: url(../img/bg-img/bg-surveys.png);
    background-size: auto;
    background-position: left 200px;
    background-repeat: no-repeat;
    transform: none !important;
    will-change: auto;
    padding-top: 60px;
}

.progress-bar-bg{
background:#e5e5e5;
height:10px;
border-radius:20px;
overflow:hidden;
}

.progress-bar-fill{
height:100%;
border-radius:20px;
transition:width .4s ease;
}

.chart-section{
display:flex;
flex-direction:column;
align-items:center;
}

.donut-wrapper{
width:260px;
height:260px;
position:relative;
}

#surveyDonut{
width:100% !important;
height:100% !important;
}

@media(max-width:768px){

.donut-wrapper{
width:200px;
height:200px;
}

}

#donutChart{
width:260px;
height:260px;
}

/* Responsive */

@media (max-width:1200px){
    .survey-container{
        padding: 15% 12%;
    } 

    .max-w-50 {
        max-width: 770px;
    }
}

@media (max-width:768px){
    #hero-survey .hero-survey-img {
        top: 10px;
    }

    .box-img-survey{
        padding-bottom: 200px;
    }
}

@media (max-width:600px){
    .survey-container{
        padding: 15% 9%;
    }

    .hero-content {
        padding: 75px 0;
    }

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

@media (max-width:400px){
    .card-footer{
        display:flex;
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

    .box-img-survey{
        padding-bottom: 250px;
    }
}

.survey-header-card{
background:#fff;
padding:30px;
border: 0.5px solid #EBEBEB;
}

.card{
    background:#fff;
    border: 0.5px solid #EBEBEB;
    border-radius: 0;
}

.meta-item{
    margin-bottom:10px;
    display: flex;
    align-items: center;
}

.meta-label{
    font-size: 16px;
    color: #6C6A6C;
    display: block;
    font-weight: 300;
}

.meta-value{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:#192955;
    font-size: 21px;
}

.meta-bar{
    height:80%;
    border: 2px solid #F2685C;
    border-radius:4px;
    margin-right: 6px;
}


#landing-survey {
  background: #FBFBFB;
}

.survey-carousel{
    overflow:hidden;
    position:relative;
}

.carousel-wrapper{
    display:flex;
    gap:20px;
    transition:transform 2s cubic-bezier(.4,0,.2,1);
    will-change:transform;
}

.carousel-wrapper .survey-card{
    min-width:100%;
    flex-shrink:0;
    padding: 30px;
}


/* DOTS */

.carousel-dots{
display:flex;
gap:2px;
margin-top:15px;
}

.carousel-dots span{
width:5px;
height:5px;
background:#E9E9E9;
border-radius:50%;
cursor:pointer;
}

.carousel-dots span.active{
background:#F2685C;
width: 17px;
border-radius: 10px;
}

/* ARROWS */

.carousel-arrows{
display:flex;
gap:10px;
margin-top:15px;
}

.carousel-arrows button{
width:46px;
height:46px;
border-radius:50%;
border: 0.75px solid #B2B2B2;
cursor:pointer;
}

.carousel-arrows button:disabled{
    border: 0.75px solid #B2B2B2!important;
}

.carousel-arrows button:hover{
    border: 0.75px solid #B2B2B2;
    background-color: #6C6A6C;
}

@media(max-width:992px){

.industry-surveys{
padding:60px 0;
}

.survey-heading{
font-size:32px;
}

}