/********** Template CSS **********/
:root {
    --primary: #13C5DD;
    --secondary: #354F8E;
    --light: #EFF5F9;
    --dark: #1D2A4D;
}

.btn {
    font-weight: 700;
    transition: .5s;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    z-index: 99;
}

.br-10 {
    border-radius: 10px;
}

.br-8 {
    border-radius: 8px;
}

.br-5 {
    border-radius: 5px;
}

.br-30 {
    border-radius: 30px;
}

.br-other {
    border-radius: 0 0 30px 30px;
}

.accordion-button {
    color: #000000 !important;
}

/* Navbar Section */
.header {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 20px 0 40px;
    border-radius: 60px;
    min-height: 82px;
    background-color: rgba(25, 27, 36, 1);
    margin-top: 10px;
}

.header__logo img {
    max-width: 150px;
}

@media (min-width: 992px) {
    .header__logo img {
        max-width: 200px;
    }
}

.header__wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}

.header__navigation-wrapper {
    display: flex;
    width: 80%;
    padding-left: 50px;
}

.header__list {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.header__list-item {
    display: flex;
    padding: 30px 0 50px;
    margin-bottom: -20px;
    gap: 8px;
    font-size: 16px;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 20px;
}

.header__list-item>a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    padding: 2px 2px 2px 5px;
}

.header__list-item>a svg path {
    transition: var(--transition);
}

.header__list-item .submenu-wrapper {
    position: absolute;
    width: 80%;
    top: 105%;
    left: 10%;
    border-radius: 33px;
    padding: 30px 30px 50px 30px;
    background-color: rgba(25, 27, 36, 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
}

.header__buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.header__button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 6px 20px;
    border-radius: 100px;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    transition: var(--transition);
}

.submenu-list__title {
    width: max-content;
    margin-bottom: 25px;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(160, 161, 165, 1);
}

.submenu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 295px;
    padding-left: 0;
}

.submenu-list__item {
    display: flex;
    padding-right: 100px;
    margin-right: -100px;
    cursor: pointer;
}

.submenu-list__item-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 6px 16px 6px 6px;
    gap: 16px;
    border-radius: 14px;
    transition: var(--transition);
}

.submenu-list__item-wrapper>svg {
    margin-left: auto;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.submenu-list__wrapper {
    position: relative;
}

.submenu-content {
    position: absolute;
    right: 0;
    top: 0;
    max-width: calc(100% - 365px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
}

.submenu-list__item.has-submenu.active .submenu-content {
    opacity: 1;
    visibility: visible;
}

.submenu-list__item.has-submenu.active .submenu-list__item-wrapper {
    background-color: rgba(255, 255, 255, 0.04);
}

.submenu-list__item.has-submenu.active .submenu-list__item-wrapper>svg {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.submenu-list__item-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.submenu-list__item-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.submenu-list__item-subtile {
    font-size: 12px;
    font-weight: 400;
    color: rgba(160, 161, 165, 1);
}

.submenu-content__title {
    width: max-content;
    margin-bottom: 25px;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(160, 161, 165, 1);
}

.submenu-content__list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
}

.submenu-content__list-item {
    display: block;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.05);
}

.submenu-content__link {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 10px 10px 20px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.submenu-content__link-img {
    margin-bottom: 20px;
    border-radius: 13px;
    overflow: hidden;
    transition: var(--transition);
}

.submenu-content__link-img img {
    transition: 0.4s ease-in;
}

.submenu-content__link-title {
    padding: 0 10px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.submenu-content__link-text {
    padding: 0 10px;
    font-size: 12px;
    color: rgba(160, 161, 165, 1);
}


/* Call Button Styles */
.header__call-button {
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background-color: var(--color-primary);
    margin-left: auto;
    margin-right: 15px;
    transition: var(--transition);
    color: #000000;
    padding: 2px 12px;
}

.header__call-button:hover {
    background-color: rgba(5, 249, 255, 0.8);
}

.header__call-button svg {
    width: 20px;
    height: 20px;
}

.header__burger {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    width: 24px;
    margin-left: auto;
}

.header__burger i {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 13px;
    transition: var(--transition);
}

.header__burger.active i:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.header__burger.active i:nth-child(2) {
    opacity: 0;
}

.header__burger.active i:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

@media (hover: hover) and (pointer: fine) {
    .header__list-item:hover .submenu-wrapper {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header__list-item:hover~.header__list-item .submenu-wrapper {
        display: none;
    }

    .header__list-item:hover>a,
    .header__list-item:hover>a svg path {
        color: var(--color-primary);
        fill: var(--color-primary);
    }

    .header__button:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .submenu-list__item.has-submenu:hover .submenu-list__item-wrapper {
        background-color: rgba(255, 255, 255, 0.04);
    }

    .submenu-list__item.has-submenu:hover .submenu-content,
    .submenu-list__item.has-submenu:hover .submenu-list__item-wrapper>svg {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .submenu-content__list-item:hover .submenu-content__link {
        border-color: rgba(255, 255, 255, 0.3);
    }

    .submenu-content__list-item:hover .submenu-content__link-img img {
        transform: scale(1.05);
    }
}

@media screen and (max-width: 1280px) {
    .header__navigation-wrapper {
        padding-left: 25px;
    }

    .submenu-list {
        max-width: 250px;
    }

    .submenu-content {
        max-width: calc(100% - 270px);
    }
}

@media screen and (max-width: 1024px) {
    .header {
        min-height: 64px;
        padding: 0 20px;
    }

    /* Show call button and burger in mobile view */
    .header__call-button {
        display: flex;
    }

    .header__burger {
        display: flex;
        margin-left: 0;
    }

    .header__navigation-wrapper {
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 105%;
        right: 10%;
        padding: 20px;
        background-color: rgba(25, 27, 36, 1);
        border-radius: 20px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .header__navigation-wrapper.open {
        opacity: 1;
        visibility: visible;
    }

    .header__list {
        flex-direction: column;
        gap: 10px;
    }

    .header__buttons-wrapper {
        flex-direction: column;
        margin-left: 0;
        margin-top: 50px;
        gap: 8px;
    }

    .header__navigation,
    .header__list {
        width: 100%;
    }

    .header__list-item {
        flex-direction: column;
        width: 100%;
        padding: 0;
        gap: 0;
        margin: 0;
    }

    .header__list-item.active a,
    .header__list-item.active a>svg path {
        fill: var(--color-primary);
        color: var(--color-primary);
    }

    .header__list-item .submenu-wrapper {
        position: static;
        padding: 0;
        max-height: 0;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        overflow: hidden;
        transition: max-height var(--transition);
    }

    .submenu-list {
        width: 100%;
        max-width: 100%;
        gap: 5px;
    }

    .submenu-list__wrapper {
        margin-top: 30px;
    }

    .submenu-list__item {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .submenu-list__title {
        display: none;
    }

    .submenu-content {
        display: none;
    }

    .header__button {
        border: 1px solid rgba(255, 255, 255, 1);
    }
}

@media screen and (max-width: 767.9px) {

    .header__buttons-wrapper,
    .header__button {
        width: 100%;
    }
}


/* Hero-Section  */
.hero-section {
    background: #f7fbf6;
    border-radius: 30px;
}

.bg-soft {
    background: #e6f4df;
}

.hero-img {
    max-height: 420px;
}

.badge-item {
    position: absolute;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.badge-green {
    background: #13c5dd;
    color: #fff;
}

.badge-dark {
    background: #1f1f1f;
    color: #fff;
}

.badge-item:nth-child(2) {
    top: 20%;
    right: 0;
}

.badge-item:nth-child(3) {
    top: 35%;
    right: 0;
}

.badge-item:nth-child(4) {
    top: 50%;
    right: 0;
}

.badge-item:nth-child(5) {
    top: 65%;
    right: 0;
}

/* CALL TO ACTION  */
.pulse-btn {
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

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

.cta-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    background: #ffffff;
    animation: float 8s infinite ease-in-out;
}

.cta-circle-1 {
    width: 180px;
    height: 180px;
    top: -60px;
    left: -60px;
}

.cta-circle-2 {
    width: 250px;
    height: 250px;
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* FOOTER SECTION  */
.footer-section {
    background: #1e1e1e;
}

.footer-logo {
    font-size: 42px;
    font-weight: 800;
}

.footer-title {
    margin-bottom: 15px;
    font-weight: 600;
}

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

.footer-list li {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
}

.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid #1d8fae;
    border-radius: 50px;
    color: #1d8fae;
    text-decoration: none;
    font-weight: 600;
}

.expert-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #1d8fae;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: #1d8fae;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.footer-bottom {
    background: #2a2a2a;
    font-size: 13px;
    color: #bbb;
}

.footer-bottom a {
    color: #bbb;
    text-decoration: underline;
}

/* CALL BUTTON PHONE VIEW  */
.mobile-call-btn {
    text-align: center;
    display: none;
    position: fixed;
    bottom: 0;
    background: #000000;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
    width: 100%;
}

.mobile-call-btn i {
    border-radius: 50%;
    padding: 6px 10px !important;
    color: #13c5dd;
    border: 2px solid #13c5dd;
    display: inline-block;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1) rotate(0deg); }
    20% { transform: scale(1.1) rotate(-10deg); }
    40% { transform: scale(1.1) rotate(10deg); }
    60% { transform: scale(1.1) rotate(-8deg); }
    80% { transform: scale(1.1) rotate(8deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.mobile-call-btn:hover {
    background: #084298;
    color: #fff;
    transform: translateX(-50%) scale(1.05);
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: block;
    }
}