/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&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');

@font-face {
    font-family: 'A Note';
    src:
        url('../fonts/ANote.woff2') format('woff2'),
        url('../fonts/ANote.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Google Font */
    --inter: 'Inter', sans-serif;
    --open-sans: 'Open Sans', sans-serif;
    --poppins: 'Poppins', sans-serif;
    --a-note: 'A Note', cursive;

    /* Color Palette */
    --white: #fff;
    --black: #000;
    --primary: #53b6b9;
    --primary-light: #61c1c8;
    --primary-deep: #1d7479;
    --dark: #070120;
    --gray: #333;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--black);
    font-size: 16px;
    font-family: var(--inter);
    font-weight: 400;
    line-height: 1.61;
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
section,
.section {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
a,
button {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
button {
    padding: 0;
    border: none;
    background: unset;
    box-shadow: unset;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
ol li,
ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
    margin: 0;
    padding: 0;
}

*::-moz-selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}
::-moz-selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}

/* =============================== */
/* :: 4.0 Common CSS */
/* =============================== */

/* ===== Typography CSS Start ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--open-sans);
}

.fs-1 {
    font-size: 34px !important;
    line-height: 1.26;
}
.fs-2 {
    font-size: 28px !important;
    line-height: 1.25;
}
.fs-3 {
    font-size: 22px !important;
}
.fs-4 {
    font-size: 18px !important;
    line-height: 1.35;
}

.ff-inter {
    font-family: var(--inter);
}
.ff-open-sans {
    font-family: var(--open-sans);
}
.ff-poppins {
    font-family: var(--poppins);
}
.ff-a-note {
    font-family: var(--a-note);
}

.pretitle {
    font-size: 18px;
}
/* ===== Typography CSS End ===== */

/* ===== Color CSS Start ===== */
.text-primary {
    color: var(--primary) !important;
}
/* ===== Color CSS End ===== */

/* ===== Button CSS Start ===== */
.btn {
    padding: 2px;
    border: none;
    border-radius: 50px;
    overflow: hidden;
    color: var(--black);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    font-family: var(--poppins);
    background: linear-gradient(to right, #fff 0%, #67e1e5 100%);
    transition: all 0.3s ease-in-out;
}
.btn__body {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 32px;
    border-radius: inherit;
    overflow: hidden;
}
.btn--black .btn__body {
    color: var(--white);
    background-color: var(--black);
    transition: all 0.3s ease-in-out;
}
.btn:hover .btn__body {
    color: var(--black);
    background-color: transparent;
}
.btn__icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.btn__icon--arrow {
    width: 14px;
    height: 14px;
}
.btn__icon svg,
.btn__icon img {
    width: 100%;
}
/* Button Animation */
.btn:hover .btn__icon--arrow svg,
.btn:hover .btn__icon--arrow img {
    animation: arrowRightTrough 0.3s ease-in-out forwards;
}

@keyframes arrowRightTrough {
    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }
    33% {
        transform: translateX(100%);
    }
    50% {
        opacity: 0;
    }
    66% {
        transform: translateX(-100%);
    }
}

/* ===== Button CSS End ===== */

/* ===== CSS for Random Componetns/Classes Start ===== */
.text-link {
    color: currentColor;
    text-decoration: underline;
}
.text-link:hover {
    color: var(--primary);
}
.transition-common {
    transition: all 0.3s ease-in-out;
}
/* ===== CSS for Random Componetns/Classes End ===== */

/* =============================== */
/* :: 5.0 Header Area CSS Start */
/* =============================== */
.header--area {
    position: relative;
    z-index: 99;
}
.header__wrapper {
    padding: 16px 0;
}
.logo--header {
    max-width: 60px;
}
.mobile-menu-open,
.mobile-menu-close {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    color: var(--primary);
    font-size: 16px;
    padding: 4px;
    border: 1px solid var(--primary);
    background-color: transparent;
}
.mobile-menu .offcanvas {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9999;
}
.logo--mobileMenu {
    max-width: 48px;
}
.nav__item--mobileMenu {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.nav__link--mobileMenu {
    color: var(--black);
    font-size: 16px;
    padding: 12px 0;
}
.nav__item--mobileMenu:hover .nav__link--mobileMenu,
.nav__link--mobileMenu[aria-expanded='true'],
.submenu-mobile__link:hover {
    color: var(--primary);
}
.submenu__thumb {
    padding-right: 32px;
}
.submenu__thumb__box {
    border-radius: 20px;
}
.submenu__accordion {
    max-width: 556px;
}
.submenu__accordion .accordion-item {
    margin: 0 12px;
}
.submenu__accordion .accordion-item,
.submenu__accordion .accordion-item:hover,
.submenu__accordion
    .accordion-item:has(.accordion-button[aria-expanded='true']) {
    border: none !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    background-color: unset;
    border-radius: 0 !important;
}
.submenu__accordion .accordion-button {
    color: var(--black);
    padding: 12px;
    font-size: 16px;
}
.submenu__accordion .accordion-button:not(.collapsed) {
    color: var(--black);
    font-size: 15px;
}
.submenu__accordion .accordion-body {
    padding: 0 12px 16px;
}
.submenu__wrap {
    gap: 12px;
}
.submenu__link {
    color: #6f6f6f;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
}
.submenu__link:hover {
    color: var(--primary);
}
.submenu__link__icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    transition: all 0.3s ease-in-out;
}
.submenu__link:hover .submenu__link__icon {
    background-color: var(--primary);
}
.mobileSubmenu .nav__link--mobileMenu,
.has-submenu .nav__link--header {
    position: relative;
}
.mobileSubmenu .nav__link--mobileMenu::after,
.has-submenu .nav__link--header::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 11px;
    height: 6px;
    background: url('../imgs/icons-objs/chevron-down-black.svg') no-repeat;
    background-size: 10px;
    margin-top: 1px;
    transition: all 0.3s ease-in-out;
}
.mobileSubmenu:hover .nav__link--mobileMenu::after,
.nav__link--mobileMenu[aria-expanded='true']::after,
.has-submenu:hover .nav__link--header::after {
    transform: translateY(-50%) rotate(-180deg);
    filter: invert(71%) sepia(10%) saturate(1643%) hue-rotate(133deg)
        brightness(86%) contrast(103%);
}
/* Header Navigation for Large Devices Start */
.nav--header {
    gap: 64px;
}
.nav__wrapper--header {
    gap: 36px;
}
.header-btn {
    padding: 6px 20px;
    color: var(--primary);
    font-size: 16px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}
.header-btn:hover {
    color: var(--white);
    background-color: var(--primary);
}
.nav__link--header {
    padding: 28px 0px;
    color: var(--black);
    font-size: 16px;
    display: inline-flex;
    transition: all 0.3s ease-in-out;
}
.nav__item--header:hover .nav__link--header {
    color: var(--primary);
}
.has-submenu .nav__link--header::after {
    right: -16px;
}
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 24px;
    border: 1px solid #d7eeef;
    border-radius: 0 0 10px 10px;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    margin-top: 16px;
    transition: all 0.3s ease-in-out;
}
.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
/* Header Navigation for Large Devices End */

/* Sticky Header Start */
.sticky-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: top 0.75s ease-in-out;
}
.sticky-header.sticky-active {
    position: fixed;
    top: -100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 32px 0 rgba(0, 0, 0, 0.1);
}
.sticky-header.sticky-active.show {
    top: 0;
    opacity: 1;
    visibility: visible;
}
/* Sticky Header End */
/* =============================== */
/* :: 5.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Hero Section CSS Start */
/* =============================== */
.hero--section {
    background-color: #c7e7e8;
}
.hero__wrapper {
    padding: 48px 0 56px;
}
.hero__content {
    max-width: 708px;
}
.main__sm__title {
    font-size: 64%;
}
.hero__thumb {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.15;
}
/* =============================== */
/* :: 6.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Intro Section CSS Start */
/* =============================== */
.intro--section {
    padding: 48px 0;
    background-color: #efefef;
}
.intro__thumb {
    width: 100%;
}
.intro__thumb__box {
    width: 100%;
    height: auto;
    padding-top: 16px;
    background-color: #c7e7e8;
}
.intro__thumb__obj {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: -1;
}
.intro__info__box {
    width: calc(100% - 24px);
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid var(--white);
    margin: -48px auto 24px;
    position: relative;
    z-index: 3;
}
.intro__info__item::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    height: 1px;
    background-color: var(--black);
    opacity: 0.3;
}
.intro__info__item:last-child::after {
    display: none;
}
.intro__info__item .title {
    font-size: 18px;
}
.intro__info__item .text {
    font-size: 16px;
}
.intro__info__item .text .link {
    color: currentColor;
}
.intro__info__item .text .link:hover {
    color: var(--primary);
}
/* =============================== */
/* :: 7.0 Intro Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Expertise Section CSS Start */
/* =============================== */
.expertise--section {
    padding: 48px 0 0;
}
.expertise__wrapper {
    max-width: 1288px;
}
.card {
    padding: 0;
    border: none;
    background-color: transparent;
}
.card--expertise {
    padding: 24px 20px;
    border: 1px solid var(--primary-light);
    border-radius: 12px;
    background-color: rgba(98, 196, 201, 0.2);
}
.card--expertise:hover {
    box-shadow: 0px 0px 32px 4px rgba(0, 0, 0, 0.1);
}
.card__thumb--expertise {
    margin-bottom: 20px;
}
.card__thumb__img--expertise {
    width: 61.5%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}
.obj-img--expertise {
    width: 45%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: var(--primary-light);
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.obj-img--expertise img {
    opacity: 0.3;
}
.obj-img--expertise img {
    width: 60%;
}
.card__para {
    opacity: 0.44;
}
.card--expertise .btn__body {
    padding: 12px 20px;
}
/* =============================== */
/* :: 8.0 Expertise Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 FAQ Section CSS Start */
/* =============================== */
.faq--section {
    padding: 48px 0;
}
.faq__wrapper {
    max-width: 1080px;
}
.faq--section .section__head {
    max-width: 724px;
}
.faq--section .section__head__para {
    color: rgba(0, 0, 0, 0.6);
}
.accordion-button::after {
    display: none;
}
.accordion-button:not(.collapsed),
.accordion-button:focus {
    background-color: unset;
    box-shadow: unset;
}
.accordion-item {
    border: 1px solid #e4ebf0 !important;
    border-radius: 8px !important;
    overflow: hidden;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}
.accordion-item:hover,
.accordion-item:has(.accordion-button[aria-expanded='true']) {
    border-color: transparent !important;
    background-color: rgba(97, 193, 200, 0.15);
}
.accordion-button {
    font-size: 16px;
    letter-spacing: -0.24px;
    justify-content: space-between;
    gap: 10px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}
.accordion-button:not(.collapsed) {
    color: var(--primary);
}
.accordion__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-light);
    position: relative;
}
.accordion__icon__bar {
    width: 40%;
    height: 2px;
    display: inline-block;
    border-radius: 2px;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
}
.accordion__icon__bar--two {
    transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-button[aria-expanded='true'] .accordion__icon__bar--one {
    transform: translate(-50%, -50%) rotate(180deg);
}
.accordion-button[aria-expanded='true'] .accordion__icon__bar--two {
    transform: translate(-50%, -50%) rotate(360deg);
}
.accordion-body {
    padding-top: 0;
    font-size: 15px;
}
.section__btn--faq {
    padding-top: 40px;
}
/* =============================== */
/* :: 9.0 FAQ Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Service Section CSS Start */
/* =============================== */
.service--section {
    background-color: #d7eeef;
}
.service__wrapper {
    padding: 48px 0;
}
.service__content {
    max-width: 1232px;
}
.service--section .section__head__text {
    max-width: 456px;
}
.card--service {
    width: 100%;
    height: 300px;
    border-radius: 16px;
}
.card--service::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000 0%, #0000 100%);
    z-index: -1;
}
.card__bg__thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s linear;
}
.card--service:hover .card__bg__thumb {
    transform: scale(1.05);
}
.card__content__top--service,
.card__content__bottom--service {
    padding: 20px;
}
.card__link--service {
    width: 48px;
    height: 32px;
    padding: 8px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}
.card__link--service svg {
    width: 41%;
    color: var(--white);
    transition: transform 0.3s ease-in-out;
    position: relative;
}

.card--service:hover .card__link--service svg {
    transform: rotate(30deg);
}

.card__link--service:hover svg {
    animation: cardServiceLinkAnim 0.3s ease-in-out forwards;
}

@keyframes cardServiceLinkAnim {
    0%,
    100% {
        left: 0;
        opacity: 1;
    }
    33% {
        left: 100%;
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    66% {
        left: -100%;
    }
}
.card__title--service {
    font-size: 18px;
}
.service__object {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: -1;
}
.section__btn--service {
    padding-top: 40px;
}
/* =============================== */
/* :: 10.0 Service Section CSS End */
/* =============================== */

/* =============================== */
/* :: 11.0 Contact Section CSS Start */
/* =============================== */
.contact--section {
    padding: 48px 0;
}
.contact__wrapper {
    max-width: 1376px;
    border-radius: 16px;
    background-color: #1d7479;
}
.contact__block--one {
    padding: 24px 20px;
    border-radius: 16px;
    background-color: var(--primary-light);
}
.form__input {
    width: 100%;
    height: 44px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 14px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}
.form__input:focus,
.form__input:not(:placeholder-shown) {
    border-color: var(--white);
}
.form__input::placeholder {
    color: var(--white);
    font-size: 14px;
    opacity: 1;
}
.form__privacy {
    max-width: 538px;
    font-size: 14px;
}
.contact__block--two {
    padding: 48px 20px;
    background-color: #1d7479;
}
.contact--section .section__title--two {
    max-width: 340px;
}
.contact__block--two .text {
    font-size: 18px;
}
.contact__shape {
    position: absolute;
    z-index: -1;
}
.contact__shape--one {
    width: clamp(100px, 30%, 191px);
    top: 0;
    left: -8%;
    mix-blend-mode: luminosity;
}
.contact__shape--two {
    width: clamp(100px, 29%, 187px);
    top: -16px;
    right: -13%;
    mix-blend-mode: luminosity;
}
.contact__shape--three {
    width: clamp(128px, 49%, 312px);
    bottom: -24px;
    left: -38%;
}
.contact__shape--four {
    width: clamp(160px, 81%, 508px);
    bottom: 14%;
    right: -35%;
}
/* =============================== */
/* :: 11.0 Contact Section CSS End */
/* =============================== */

/* =============================== */
/* :: 12.0 Footer Area CSS Start */
/* =============================== */
.footer--area {
    background-color: #efefef;
}
.footer__wrapper {
    max-width: 1288px;
}
.footer__top {
    padding: 24px 0 32px;
}
.logo--footer {
    max-width: 200px;
    margin-bottom: 8px;
}
.footer__item__title {
    font-size: 18px;
}
.footer__bottom {
    max-width: 1184px;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.nav__link--footer {
    color: var(--gray);
    font-size: 16px;
    line-height: 2.1;
    text-decoration: underline;
}
.nav__link--footer:hover {
    color: var(--primary);
}
.footer__social {
    margin-bottom: 24px;
}
.footer__social {
    gap: 8px;
}
.footer__social__link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #dff3f4;
    color: #8c8c8c;
    transition: all 0.3s ease-in-out;
}
.footer__social__link:hover {
    color: var(--white);
    background-color: var(--primary-light);
}
.footer__social__link svg {
    height: 14px;
    width: auto;
}
.footer__contact__text,
.footer__contact__text__two,
.footer__contact__link {
    color: currentColor;
    font-size: 20px;
}
.footer__contact__link:hover {
    color: var(--primary);
}
.copyright-text {
    font-size: 12px;
}
/* =============================== */
/* :: 12.0 Footer Area CSS End */
/* =============================== */

/* CUSTOM */
ul.nav__wrapper--mobileMenu li:last-child { display: none; }