@import url("https://fonts.googleapis.com/css2?family=GoogleSans&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* All Css Variables Start */
:root {
    --heading-font: "Google Sans", serif;
    --body-font: "Poppins", serif;
    --primary: #ed292c;
    --primary-light: #fe0206;
    --white: #ffffff;
    --black: #000000;
    --text-primary: #2b2c3f;
    --text-secondary: #393f44;
    --text-of-white: #7d7d7d;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    font-style: normal;
    line-height: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-style: normal;
    line-height: normal;
}

p {
    margin-bottom: 0;
}

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

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px hsl(var(--base) / 0.2);
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--base) / 0.7);
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--base));
}

@media (max-width: 991px) {
    html {
        font-size: 14px;
    }
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    user-select: none;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rounded-top-end-0 {
    border-top-right-radius: 0 !important;
}

.section-header .section-title {
    color: var(--black);
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 1.125rem;
    text-align: center;
    position: relative;
}

.section-header .section-title .bar-line {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    transform: translateY(-50%, -50%);
    z-index: 0;
    width: 124px;
    height: 18px;
}

.section-header .section-title .marked {
    color: var(--primary);
}

.section-header .section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
}

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

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

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

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

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

.font--36 {
    font-size: 2.25rem;
}

@media (max-width: 768px) {
    .font--36 {
        font-size: 1.5rem;
    }
}

.font--14 {
    font-size: 0.875rem;
}

.font--16 {
    font-size: 1rem;
}

.font--18 {
    font-size: 1.125rem;
}

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

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

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

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

.fw--300 {
    font-weight: 300;
}

.mb--18 {
    margin-bottom: 1.125rem;
}

@media (max-width: 768px) {
    .mb--18 {
        margin-bottom: 0.875rem;
    }
}

.mb--50 {
    margin-bottom: 3.125rem;
}

@media (max-width: 768px) {
    .mb--50 {
        margin-bottom: 1.875rem;
    }
}

.py--100 {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
}

@media (max-width: 768px) {
    .py--100 {
        padding-top: 4.375rem;
        padding-bottom: 4.375rem;
    }
}

.pt--100 {
    padding-top: 6.25rem;
}

@media (max-width: 768px) {
    .pt--100 {
        padding-top: 4.375rem;
    }
}

.btn--primary {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: 1.875rem;
    background: var(--primary);
    display: inline-flex;
    padding: 0.9375rem 1.5625rem;
    align-items: flex-start;
    gap: 0.625rem;
    transition: all 0.3s ease;
}

.btn--primary:hover {
    opacity: 0.8;
}

.btn--outline {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: 1.875rem;
    background: var(--white);
    display: inline-flex;
    padding: 0.9375rem 1.5625rem;
    align-items: flex-start;
    gap: 0.625rem;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn--link-icon {
    display: flex;
    width: 3.25rem;
    height: 3.25rem;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 0.75rem;
    border: 1px solid #e7e7e7;
    background: #f8f8f8;
    font-size: 1.5rem;
    color: var(--primary);
}

#banner {
    padding-top: 10rem;
    position: relative;
    overflow: hidden;
    padding-bottom: 4.375rem;
}

#banner::before {
    content: "";
    position: absolute;
    bottom: 30%;
    left: 0;
    width: 105px;
    height: 75px;
    background-image: url("/assets/images/icon/line4.svg");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

#banner::after {
    content: "";
    position: absolute;
    bottom: 33%;
    left: 20%;
    width: 17px;
    height: 23px;
    background-image: url("/assets/images/icon/star2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

@media (max-width: 991px) {
    #banner {
        padding-top: 9.375rem;
    }
}

@media (max-width: 768px) {
    #banner {
        padding-top: 6.25rem;
    }
}

#banner .banner-left {
    margin-bottom: 23.125rem;
}

@media (max-width: 991px) {
    #banner .banner-left {
        margin-bottom: 0rem;
    }
}

@media (max-width: 576px) {
    #banner .gy-5 {
        --bs-gutter-y: 7rem;
    }
}

#banner .banner-title {
    color: var(--text-primary);
    font-size: 5rem;
    font-weight: 400;
    line-height: 120%;

    /* 96px */
}

@media (max-width: 991px) {
    #banner .banner-title {
        font-size: 3.75rem;
    }
}

#banner .banner-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 180%;

    /* 28.8px */
}

@media (max-width: 576px) {
    #banner .banner-subtitle {
        text-align: justify;
    }
}

#banner .banner-img .image-box {
    position: absolute;
    bottom: 75px;
    right: -150px;
    z-index: -2;
}

@media (max-width: 991px) {
    #banner .banner-img .image-box {
        position: relative;
        right: inherit;
    }
}

#banner .banner-img .image-box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

#banner .banner-img .image-box::after {
    content: "";
    position: absolute;
    top: 15%;
    left: -20%;
    width: 1150px;
    height: 240px;
    background: var(--primary);
    z-index: -1;
    transform: rotate(295deg);
}

@media (max-width: 991px) {
    #banner .banner-img .image-box::after {
        display: none;
    }
}

@media (min-width: 992px) {
    #banner .banner-img {
        /* Large screens */
    }

    #banner .banner-img .image-box {
        margin-left: calc((100% - 960px) / -2);
        width: 745px;
        height: 750px;
        z-index: -2;
    }
}

@media (min-width: 1200px) {
    #banner .banner-img {
        /* Extra large screens */
    }

    #banner .banner-img .image-box {
        margin-left: calc((100% - 1140px) / -2);
        width: 745px;
        height: 750px;
        z-index: -2;
    }

    #banner .banner-img .image-box::after {
        height: 240px;
    }
}

@media (min-width: 1400px) {
    #banner .banner-img {
        /* Extra extra large screens */
    }

    #banner .banner-img .image-box {
        margin-left: calc((100% - 1320px) / -2);
        width: 823px;
        height: 823px;
        z-index: -2;
    }
}

.years-exp {
    position: absolute;
    left: -73%;
    bottom: 25%;
    background: var(--black);
    font-size: 18.75rem;
    font-weight: 900;
    border-radius: 1.375rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
}

@media (max-width: 991px) {
    .years-exp {
        left: 10px;
        bottom: -16px;
        padding: 0.625rem;
    }
}

.years-exp .years-exp-value {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .years-exp .years-exp-value {
        font-size: 2.5rem;
    }
}

.years-exp .years-exp-desc {
    color: var(--white);
    font-weight: 400;
    font-size: .71rem;
}

.lines-banner {
    position: absolute;
    top: -3%;
    left: 111%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media (max-width: 991px) {
    .lines-banner {
        top: 0;
    }
}

.start-icon {
    position: absolute;
    top: -30px;
    left: -35%;
}

.circle-animate {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 40px;
    height: 40px;
    z-index: 1;
    border-radius: 50%;

    /* Make the main circle fully circular */
    background: rgba(18, 130, 236, 0.1);
}

.circle-animate::before {
    content: "";
    position: absolute;
    top: 50%;

    /* Center horizontally */
    left: 50%;

    /* Center vertically */
    width: 22px;
    height: 22px;
    background: rgba(38, 59, 157, 0.5);
    border-radius: 50%;

    /* Fully circular */
    transform: translate(-50%, -50%) rotate(0deg) translateX(20px);

    /* Rotate around the main circle's edge */
    transform-origin: center center;

    /* Rotate around the center of the main circle */
    animation: animateCircle 10s linear infinite;
}

@keyframes animateCircle {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(20px);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(20px);
    }
}

.animated-start {
    opacity: 0;
    transform: translateY(20px);

    /* Initially position it below the view */
    animation: fadeUpStart 5s ease-out infinite,
        fadeOutStart 5s ease-in infinite 4s;

    /* Fade up and fade out infinitely */
}

/* Fade up effect */
@keyframes fadeUpStart {
    0% {
        opacity: 0;
        transform: translateY(20px);

        /* Start off below the screen */
    }

    50% {
        opacity: 1;
        transform: translateY(0);

        /* End at the normal position */
    }

    100% {
        opacity: 0;
        transform: translateY(20px);

        /* Move it down as it fades out */
    }
}

/* Fade out effect */
@keyframes fadeOutStart {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);

        /* Move it down as it fades out */
    }
}

#testimonials {
    background-color: var(--black);
    color: var(--white);
    border-radius: 3.125rem;
}

@media (max-width: 768px) {
    #testimonials {
        border-radius: 1.875rem;
    }
}

@media (min-width: 576px) {
    #testimonials {
        /* Small screens */
    }

    #testimonials .slider-wrap {
        margin-left: calc((100% - 540px) / 2);
    }
}

@media (min-width: 768px) {
    #testimonials {
        /* Medium screens */
    }

    #testimonials .slider-wrap {
        margin-left: calc((100% - 720px) / 2);
    }
}

@media (min-width: 992px) {
    #testimonials {
        /* Large screens */
    }

    #testimonials .slider-wrap {
        margin-left: calc((100% - 960px) / 2);
    }
}

@media (min-width: 1200px) {
    #testimonials {
        /* Extra large screens */
    }

    #testimonials .slider-wrap {
        margin-left: calc((100% - 1140px) / 2);
    }
}

@media (min-width: 1400px) {
    #testimonials {
        /* Extra extra large screens */
    }

    #testimonials .slider-wrap {
        margin-left: calc((100% - 1320px) / 2);
    }
}

.testiomnial2 {
    --swiper-pagination-bottom: 0;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .testiomnial2 {
        padding-bottom: 30px;
    }
}

.testiomnial2 .swiper-pagination-bullet {
    background-color: #383838;
    opacity: 1;
    width: 12px;
    height: 12px;
}

.testiomnial2 .swiper-pagination-bullet-active {
    background-color: var(--primary);
    width: 40px;
    border-radius: 10px;
}

.testimonials-card {
    position: relative;
    border-radius: 22px;
    border: 1px solid #2e2e2e;
    background: #070707;
    padding: 2.375rem 1.75rem;
}

@media (max-width: 768px) {
    .testimonials-card {
        padding: 1.875rem 1.25rem;
    }
}

.testimonials-card .icon {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1.375rem;
}

.testimonials-card .content {
    color: var(--text-of-white);
    margin-bottom: 1.25rem;
}

.testimonials-card .content .quote {
    color: var(--text-of-white);
}

.testimonials-card .author .avatar img {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
}

.testimonials-card .gide-icon {
    color: var(--black);
    font-size: 1.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    right: 1.25rem;
    bottom: 3.75rem;
}

.catch-percent-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.catch-percent-card .icon {
    width: 3.125rem;
    height: 3.125rem;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--primary);
    font-size: 1.5rem;
    color: var(--white);
}

.catch-percent-card .percent {
    color: var(--white);
    font-size: 2.625rem;
    font-weight: 400;
    margin-right: 15px;
    position: relative;
}

@media (max-width: 576px) {
    .catch-percent-card .percent {
        margin-right: 0;
    }
}

.catch-percent-card .percent:before {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    width: 4px;
    height: 100%;
    background: var(--white);
    border-radius: 10px;
}

@media (max-width: 576px) {
    .catch-percent-card .percent:before {
        display: none;
    }
}

.catch-percent-card .desc {
    color: var(--text-of-white);
    font-size: 0.875rem;
    line-height: 140%;

    /* 19.6px */
    font-weight: 300;
}

.counting-wrap .counter-value {
    color: #305dff;
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1.125rem;
}

.counting-wrap .counter-desc {
    color: #616161;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 300;
}

.counter-box {
    border-radius: 94px;
    background: #1a1a1a;
    padding: 1.25rem;
}

@media (max-width: 768px) {
    .counter-box {
        padding: 0.9375rem;
        border-radius: 3.75rem;
    }
}

.product-card .img {
    margin-bottom: 1.375rem;
}

.product-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.375rem;
}

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

.product-card .content .title {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.625rem;
}

.product-card .content .text {
    color: var(----text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
}

.product-card .content .year {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
}

#about-me {
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(36, 56, 149, 0.1) 7.53%,
            rgba(15, 24, 63, 0.1) 92.58%,
            rgba(255, 255, 255, 0.1) 100%);
}

#about-me::before {
    content: "";
    position: absolute;
    top: 43%;
    right: -30px;
    width: 50%;
    height: 20px;
    background: #d9dfff;
    z-index: -1;
}

#about-me::after {
    content: "";
    position: absolute;
    bottom: 45%;
    left: 0;
    width: 50%;
    height: 20px;
    background: #d9dfff;
    z-index: -1;
}

#recent-project {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(36, 56, 149, 0.1) 7.53%,
            rgba(15, 24, 63, 0.1) 92.58%,
            rgba(255, 255, 255, 0.1) 100%);
}

#recent-project::before {
    content: "";
    position: absolute;
    top: 20%;
    right: -30px;
    width: 105px;
    height: 75px;
    background-image: url("/assets/images/icon/line5.svg");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

#recent-project::after {
    content: "";
    position: absolute;
    bottom: 33%;
    left: 20%;
    width: 17px;
    height: 23px;
    background-image: url("/assets/images/icon/star.svg");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.my-profile-wrap .my-profile {
    position: relative;
    z-index: 1;
}

.my-profile-wrap .my-profile:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 139px;
    background: linear-gradient(180deg, rgba(232, 234, 241, 0) 0%, #e8eaf1 100%);
    z-index: 1;
}

.my-profile-wrap .details {
    color: var(--black);
    font-size: 1.375rem;
    margin-bottom: 1.375rem;
    font-weight: 400;
}

.my-profile-wrap .text {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
}

#slider-company {
    background: transparent;
    padding-top: 6.25rem;
    overflow: hidden;
}

#slider-company .container {
    position: relative;
}

#slider-company .container::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 54px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(231, 232, 236, 0.01) 0%,
            #e7e8ec 100%);
    z-index: 2;
}

#slider-company .container::after {
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    width: 54px;
    height: 140%;
    background: linear-gradient(180deg,
            rgba(231, 232, 236, 0.01) 0%,
            #e7e8ec 100%);
    z-index: 2;
}

.service-wrap {
    padding: 1.5rem 1.25rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.service-wrap:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    .service-wrap {
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    }
}

.service-wrap .service-icon {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 12px;
    background: rgba(38, 59, 157, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    color: var(--primary);
}

.service-wrap .service-content {
    margin-bottom: 2rem;
}

.service-wrap .service-content .title {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.service-wrap .service-content .desc {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
}

.service-wrap .service-action .link {
    display: inline-flex;
    align-items: center;
    gap: 0.3125rem;
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    position: relative;
}

.service-wrap .service-action .link::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -0.75rem;
    transform: translateY(-50%);
    border-radius: 1.125rem;
    background: rgba(198, 208, 255, 0.5);
    transition: width 0.3s ease;
    width: 2.1875rem;
    height: 2.1875rem;
    flex-shrink: 0;
    z-index: 1;
}

.service-wrap .service-action .link:hover::after {
    width: 5.3125rem;
}

#faq {
    position: relative;
    overflow: hidden;
    padding: 6.25rem 0;
}

#faq::before {
    content: "";
    position: absolute;
    bottom: 20%;
    right: -30px;
    width: 105px;
    height: 75px;
    background-image: url("/assets/images/icon/line5.svg");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

@media (max-width: 576px) {
    #faq::before {
        display: none;
    }
}

#faq::after {
    content: "";
    position: absolute;
    top: 33%;
    right: 13%;
    width: 17px;
    height: 23px;
    background-image: url("/assets/images/icon/star.svg");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

#faq .circle-animate {
    top: 50%;
}

@media (max-width: 768px) {
    #faq {
        padding: 3.125rem 0;
    }
}

#faq .section-top {
    margin-bottom: 3.125rem;
}

@media (max-width: 768px) {
    #faq .section-top {
        margin-bottom: 1.875rem;
    }
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion .accordion-body {
    padding-left: 5rem;
}

@media screen and (max-width: 991px) {
    .accordion .accordion-body {
        padding-left: 1.25rem;
    }
}

.accordion .accordion-item {
    border-radius: 1.375rem;
    border: 1px solid var(--text-of-white);
}

.accordion .accordion-item .accordion-button {
    border-radius: 1.375rem;
    display: flex;
    align-items: center;
    gap: 1.125rem;
    color: #000;
    font-size: 1.375rem;
    font-weight: 400;
}

.accordion .accordion-item .accordion-button .accordion-number {
    border-radius: 0.75rem;
    background: var(--primary);
    display: flex;
    width: 2.25rem;
    height: 2.25rem;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: var(--white);
}

.accordion .accordion-item .accordion-button:focus {
    box-shadow: none;
}

.accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--primary);
    box-shadow: none;
    color: var(--white);
    border-radius: 1.375rem 1.375rem 0 0;
}

.accordion .accordion-item .accordion-button:not(.collapsed) .accordion-number {
    background: var(--white);
    color: var(--primary);
}

.accordion .accordion-item .accordion-button:not(.collapsed)::before {
    background: rgba(255, 255, 255, 0.1);
}

.accordion .accordion-item .accordion-button::before {
    border-radius: 0.75rem;
    background: rgba(10, 69, 69, 0.1);
    display: flex;
    width: 2.25rem;
    height: 2.25rem;
    padding: 7px 6px 6px 7px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    content: "";
    position: absolute;
    right: 0.9375rem;
}

.accordion .accordion-item .accordion-button::after {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M12.75 7.75h-10m5-5v10'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.accordion .accordion-item .accordion-button:not(.collapsed)::after {
    width: 1.5rem;
    height: 1.5rem;
    background-image: none;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M228 128a12 12 0 0 1-12 12H40a12 12 0 0 1 0-24h176a12 12 0 0 1 12 12'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.accordion .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 1.375rem;
    border-top-right-radius: 1.375rem;
}

.accordion .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 1.375rem;
    border-bottom-left-radius: 1.375rem;
}

.accordion .accordion-collapse.show,
.accordion .accordion-collapse.collapsing {
    background: var(--primary);
    color: #d0d0d0;
    border-radius: 0 0 1.375rem 1.375rem;
}

#footer {
    padding-top: 6.25rem;
    padding-bottom: 2.5rem;
    background-image: url("/assets/images/footer/footer-bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    #footer {
        padding-top: 3.125rem;
        padding-bottom: 1.25rem;
    }
}

.footer-side-1 .footer-logo {
    margin-bottom: 2.625rem;
}

.footer-side-1 .footer-logo img {
    width: 10.3125rem;
    height: 4.375rem;
    object-fit: contain;
}

.footer-side-1 .content .text {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 26px;

    /* 162.5% */
}

.title-box .title {
    color: var(--black);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.title-box .subtext {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    line-height: 26px;

    /* 162.5% */
}

.footer-link {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-link li a {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
}

.footer-link li a::before {
    content: "";
    transition: all 0.3s ease;
}

.footer-link li a:hover {
    color: var(--primary);
    font-weight: 600;
    margin-left: 1.25rem;
}

.footer-link li a:hover::before {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}

.footer-contact-info {
    display: flex;
    gap: 0.625rem;
    align-items: center;
}

.footer-contact-info .icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

.footer-contact-info .details .title {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    line-height: 26px;

    /* 162.5% */
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.footer-contact-info .details .subtext {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 26px;

    /* 162.5% */
}

.footer-contact-info:hover .icon {
    color: var(--primary-light);
}

.footer-contact-info:hover .details .title {
    color: var(--primary-light);
}

.email-subscribe {
    border-radius: 0.75rem;
    background: #e9eaf3;
    position: relative;
    margin-bottom: 1.875rem;
}

.email-subscribe input {
    background: transparent;
    width: 100%;
    border: none;
    outline: none;
    color: var(--black);
    font-size: 1rem;
    font-weight: 400;
    padding: 0.9375rem 1.25rem;
    padding-right: 3.75rem;
}

.email-subscribe button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.25rem;
    background: var(--white);
    color: var(--primary);
    font-size: 1.25rem;
    border-radius: 50%;
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: end;
    margin-bottom: 2.625rem;
}

@media (max-width: 768px) {
    .footer-social {
        gap: 0.75rem;
        margin-bottom: 1.875rem;
        justify-content: center;
    }
}

.footer-social li a {
    color: var(--white);
    background: #ddd;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    width: 1.875rem;
    height: 1.875rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.footer-social li a:hover {
    opacity: 0.8;
    color: var(--primary);
}

.copyright {
    color: var(--text-of-white);
    font-size: 0.875rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .copyright {
        text-align: center;
    }
}

#header {
    padding: 0.75rem 0.625rem;
    border-bottom: 1px solid #e9e9e9;
    background: var(--white);
}

#header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
}

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

#header .header-wrap .logo img {
    width: 185px;
}

@media (max-width: 991px) {
    #header .header-wrap .menu {
        display: none;
    }
}

#header .header-wrap .menu ul {
    display: flex;
    align-items: center;
    gap: 2.8125rem;
}

#header .header-wrap .menu ul li a {
    color: #000;
    font-size: 1rem;
    font-weight: 400;
    transition: 0.3s ease;
}

#header .header-wrap .menu ul li a.active {
    font-weight: 700;
    text-decoration-line: underline;
    color: var(--primary);
}

#header .header-wrap .menu ul li a:hover {
    font-weight: 700;
    color: var(--primary);
}

#header .header-wrap .action {
    display: flex;
    gap: 0.625rem;
}

#header .header-wrap .action .btn--primary {
    padding: 0.8125rem 1.625rem;
}

@media (max-width: 576px) {
    #header .header-wrap .action .btn--primary {
        display: none;
    }
}

#header .header-wrap .mobile-menu {
    height: 2.9375rem;
    width: 2.9375rem;
    padding: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #000;
    font-size: 1.25rem;
    cursor: pointer;
}

@media (max-width: 991px) {
    #header .header-wrap .mobile-menu {
        display: inline-flex;
    }
}

#header .header-wrap .mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#header .header-wrap .mobile-menu-list a {
    color: #000;
    font-size: 0.875rem;
    font-weight: 400;
    transition: 0.3s ease;
}

#header .header-wrap .mobile-menu-list a.active {
    font-weight: 700;
    text-decoration-line: underline;
    color: var(--primary);
}

#header .header-wrap .mobile-menu-list a:hover {
    font-weight: 700;
    color: var(--primary);
}

#mobile-canvas {
    max-width: 250px;
}

/* ===== Contact Section ===== */
#contact-info {
    padding: 5rem 0 3rem;
    background: #fff;
}

.contact-info-cards {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
}

.contact-info-card .icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px dashed #d0d0d0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover .icon-circle {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(237, 41, 44, 0.12);
}

.contact-info-card .icon-circle iconify-icon {
    font-size: 2.8rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.contact-info-card .card-title {
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    font-family: var(--heading-font);
}

.contact-info-card .card-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin: 0.5rem auto 0;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.contact-info-card:hover .card-title::after {
    width: 60px;
}

.contact-info-card .card-detail {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
}

.contact-info-card .card-detail a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.contact-info-card .card-detail a:hover {
    color: var(--primary);
}

/* ===== Send Message Section ===== */
#contact-form {
    padding: 5rem 0 6.25rem;
    background: #f8f8f8;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-header .subtitle {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-family: var(--body-font);
}

.contact-form-header .main-title {
    color: var(--black);
    font-size: 2.25rem;
    font-weight: 700;
    font-family: var(--heading-font);
}

.contact-form-header .main-title span {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.contact-form-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-wrap .form-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.contact-form-wrap .form-row .form-group {
    flex: 1;
}

.contact-form-wrap .form-group {
    margin-bottom: 1.25rem;
}

.contact-form-wrap .form-group input,
.contact-form-wrap .form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    background: #fff;
    font-size: 0.9375rem;
    font-family: var(--body-font);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrap .form-group input::placeholder,
.contact-form-wrap .form-group textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.contact-form-wrap .form-group input:focus,
.contact-form-wrap .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(237, 41, 44, 0.08);
}

.contact-form-wrap .form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrap .form-row .form-group {
    margin-bottom: 0;
}

.submit-btn-wrap {
    text-align: center;
    margin-top: 1.5rem;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9375rem 2rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: var(--body-font);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn .btn-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #c41f22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 41, 44, 0.3);
}

.submit-btn:hover .btn-icon {
    background: rgba(255, 255, 255, 0.35);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    #contact-info {
        padding: 3.5rem 0 2rem;
    }

    .contact-info-cards {
        gap: 2.5rem;
    }

    .contact-info-card .icon-circle {
        width: 100px;
        height: 100px;
    }

    .contact-info-card .icon-circle iconify-icon {
        font-size: 2.2rem;
    }

    .contact-form-wrap .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form-wrap .form-row .form-group {
        margin-bottom: 1.25rem;
    }

    #contact-form {
        padding: 3.5rem 0 4rem;
    }

    .contact-form-header .main-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .contact-info-cards {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}

/* ===== 404 Section ===== */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, rgba(36, 56, 149, 0.04) 50%, #fff 100%);
    padding: 8rem 0 4rem;
}

.error-section::before {
    content: "404";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: clamp(14rem, 30vw, 28rem);
    font-weight: 900;
    font-family: var(--heading-font);
    color: rgba(237, 41, 44, 0.04);
    z-index: 0;
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.error-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 580px;
}

.error-icon-wrap {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: rgba(237, 41, 44, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: floatBounce 3s ease-in-out infinite;
}

.error-icon-wrap::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 8px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    animation: shadowPulse 3s ease-in-out infinite;
}

@keyframes floatBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes shadowPulse {
    0%,
    100% {
        width: 80px;
        opacity: 0.6;
    }

    50% {
        width: 60px;
        opacity: 0.3;
    }
}

.error-icon-wrap iconify-icon {
    font-size: 4rem;
    color: var(--primary);
}

.error-code {
    font-size: 5rem;
    font-weight: 900;
    color: var(--black);
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.error-code span {
    color: var(--primary);
}

.error-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.error-text {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.error-search {
    display: flex;
    max-width: 400px;
    margin: 0 auto 2rem;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: border-color 0.3s;
}

.error-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(237, 41, 44, 0.08);
}

.error-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.9375rem;
    font-family: var(--body-font);
    color: var(--text-primary);
    background: transparent;
}

.error-search input::placeholder {
    color: #aaa;
}

.error-search button {
    border: none;
    background: var(--primary);
    color: #fff;
    padding: 0 1.25rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.error-search button:hover {
    background: #c41f22;
}

/* Floating decorations */
.error-deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.error-deco--1 {
    width: 18px;
    height: 18px;
    background: var(--primary);
    top: 20%;
    left: 12%;
    animation: floatBounce 4s ease-in-out infinite 0.5s;
    opacity: 0.15;
}

.error-deco--2 {
    width: 10px;
    height: 10px;
    background: #263b9d;
    top: 30%;
    right: 15%;
    animation: floatBounce 3.5s ease-in-out infinite 1s;
    opacity: 0.2;
}

.error-deco--3 {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary);
    background: transparent;
    bottom: 25%;
    left: 18%;
    animation: floatBounce 5s ease-in-out infinite 0.3s;
    opacity: 0.12;
}

.error-deco--4 {
    width: 14px;
    height: 14px;
    background: #263b9d;
    bottom: 30%;
    right: 20%;
    animation: floatBounce 4.5s ease-in-out infinite 0.7s;
    opacity: 0.1;
}

@media (max-width: 768px) {
    .error-section {
        padding: 6rem 1rem 3rem;
    }

    .error-code {
        font-size: 3.5rem;
    }

    .error-title {
        font-size: 1.375rem;
    }

    .error-icon-wrap {
        width: 110px;
        height: 110px;
    }

    .error-icon-wrap iconify-icon {
        font-size: 3rem;
    }
}

p.tagline {
    font-size: 15px;
}