/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.main {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.section-tag {
    display: inline-block;
    color: #04C9FF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-heading {
    color: #1B1F5C;
    font-family: Inter;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.section-heading span {
    color: #0051B1;
}

.btn {
    width: fit-content;
    display: inline-flex;
    padding: 10px 16px;
    justify-content: center;
    gap: 10px;
    align-items: center;
    background: #0051B1;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
    transition: all 0.35s ease;
    border: 1px solid #0051B1;
}

.btn:hover {
    background: #04C9FF;
    color: #0051B1;
    border-color: #04C9FF;
}

.btn-primary {
    background: #04C9FF;
    border-color: #04C9FF;
    color: #1B1F5C;
}

.btn-primary:hover {
    background: transparent;
    color: #04C9FF;
    border-color: #04C9FF;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background: #04C9FF;
    border-color: #04C9FF;
    color: #1B1F5C;
}

.btn-outline-dark {
    background: transparent;
    color: #1B1F5C;
    border-color: #1B1F5C;
}

.btn-outline-dark svg {
    width: 14px;
    height: auto;
}

.btn-outline-dark svg path {
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #1B1F5C;
    color: #fff;
    border-color: #1B1F5C;
}

.btn-outline-dark:hover svg path {
    fill: #fff;
}

.btn-outline-dark2 {
    border-color: #04C9FF;
    background: transparent;
    color: #04C9FF;
}

.btn-outline-dark2 svg path {
    fill: #04C9FF;
}

.submit-btn {
    display: flex;
    width: 100%;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #0051B1;
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 166.667% */
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #1B1F5C;
}

/* ============ TOP BAR ============ */
.topbar {
    width: 100%;
    display: inline-flex;
    padding: 12px 30px;
    justify-content: space-between;
    align-items: center;
    background: rgba(27, 31, 92, 0.82);
    backdrop-filter: blur(21.899999618530273px);
}

.topbar-left {
    display: flex;
    gap: 43px;
}

.topbar-left a,
.topbar-left span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 185.714% */
}

.topbar-left img {
    width: 16px;
    height: 16px;
    object-fit: cover;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar-right .socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-right .socials a {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.79);
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-right .socials a img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ============ Header ============ */
.header-area {
    position: relative;
}

.header-wrapper {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
}

.header-logo {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.header-logo img {
    display: block;
    width: 249px;
    height: auto;
    object-fit: cover;
}

.header-right,
.header-left {
    display: flex;
    align-items: stretch;
    gap: 36px;
}

.language-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.40);
}

.language-btn {
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    border: 1px solid #FFF;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    /* 168.75% */
}

.language-btn img {
    width: 20px;
    height: 20px;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
}

.has-dropdown {
    position: relative;
    list-style: none;
}

.has-dropdown>a img {
    width: 24px;
    height: auto;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 180px;
    padding: 10px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0 !important;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    width: 100%;
    display: block;
    padding: 12px 20px;
    color: rgba(27, 31, 92, 0.70);
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover>a img {
    transform: rotate(180deg);
}


/* ============ HERO ============ */
.hero-section {
    width: 100%;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-section .splide__track::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
    pointer-events: none;
}

.hero-slider,
.hero-slider .splide__track,
.hero-slider .splide__list,
.hero-slider .splide__slide {
    width: 100%;
    height: 100%;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px 0 113px;
    padding-left: max(70px, 8vw);
}

/* Top overlay */
.hero-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;

    background: linear-gradient(to bottom,
            rgba(27, 31, 92, 0.55) 0%,
            rgba(27, 31, 92, 0.35) 50%,
            rgba(27, 31, 92, 0) 100%);
}

/* Bottom overlay */
.hero-content::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;

    background: linear-gradient(to top,
            #1B1F5C 0%,
            rgba(27, 31, 92, 0.85) 35%,
            rgba(27, 31, 92, 0.45) 70%,
            rgba(27, 31, 92, 0) 100%);
}

.hero-content h1 {
    color: #FFF;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 532px;
    margin-bottom: 24px;
}

.hero-content p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 567px;
    margin-bottom: 36px;
}

.hero-slider-pagination {
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    width: fit-content;
    left: 0;
    z-index: 9;
    gap: 12px;
}

.hero-slider-pagination .splide__pagination__page {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.40);
    border-radius: 0;
}

.hero-slider-pagination .splide__pagination__page.is-active {
    transform: rotate(-45deg);
    border-radius: 2px;
    background: #04C9FF;
    width: 12px;
    height: 12px;
    transform: rotate(-45deg);
}

/* ============ ABOUT ============ */
.about-section {
    width: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
}

.about-img {
    position: relative;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.about-content {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.floating-img {
    position: absolute;
    pointer-events: none;
}

.about-content .floating-img {
    right: 0;
    bottom: 0;
    width: 1277px;
    height: auto;
}

.floating-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .section-heading {
    max-width: 500px;
    margin-bottom: 30px;
}

.about-content p {
    color: rgba(27, 31, 92, 0.70);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.about-content p+p {
    margin-top: 24px;
}

.about-experience {
    width: 100%;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(27, 31, 92, 0.24);
    display: flex;
    align-items: center;
    gap: 24px;
    color: rgba(27, 31, 92, 0.70);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.about-experience span {
    color: #0051B1;
    font-family: Inter;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.about-content ul {
    display: flex;
    flex-direction: column;
    gap: 19px;
    margin: 33px 0 50px;
}

.about-content ul li {
    position: relative;
    color: rgba(27, 31, 92, 0.70);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.about-content ul li::before {
    content: '';
    display: block;
    width: 3px;
    background: #0051B1;
}

/* ============ DEPARTMENTS ============ */
.departments-section {
    width: 100%;
    padding: 70px 0 100px;
    background: #1B1F5C;
}

.section-head {
    padding-left: 50px;
}

.departments-section .section-heading {
    max-width: 914px;
    color: #fff;
}

.departments-section .section-heading span {
    color: #04C9FF;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 50px;
}

.dept-card {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.dept-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}


.dept-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 230px;
    pointer-events: none;

    background: linear-gradient(to top,
            rgba(27, 31, 92, 0.90) 0%,
            rgba(27, 31, 92, 0.75) 35%,
            rgba(27, 31, 92, 0.45) 70%,
            rgba(27, 31, 92, 0) 100%);
    z-index: 3;
}

.dept-card:hover img {
    transform: scale(1.08);
}

.dept-card-content {
    width: 100%;
    position: absolute;
    inset: 0;
    z-index: 9;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dept-card-content span {
    color: #FFF;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: block;
    margin-bottom: 8px;
}

.dept-card-content p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 491px;
}

.dept-card-content a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #04C9FF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
    padding-top: 0;
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.45s ease;
    transform: translateY(100%);
}

.dept-card:hover .dept-card-content a {
    max-height: 100px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    padding-top: 30px;
}

.dept-card-content a img {
    width: 14px;
    height: auto;
    object-fit: cover;
}

/* ============ PROCEDURES ============ */
.procedure-section {
    width: 100%;
    background: #1B1F5C;
    padding-bottom: 50px;
}

.procedure-section .section-heading {
    color: #fff;

}

.procedure-section .section-heading span {
    color: #04C9FF;
}

.proc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.proc-card {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.proc-card-img {
    width: 100%;
}

.proc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s all ease;
}

.proc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 81, 177, 0.00) -24.23%, rgba(27, 31, 92, 0.90) 100%);
    pointer-events: none;
}

.proc-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 81, 177, 0.00) -24.23%, rgba(27, 31, 92, 0.70) 100%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.proc-card:hover::after {
    opacity: 1;
}

.proc-card:hover img {
    transform: scale(1.08);
}

.proc-card-content {
    position: absolute;
    z-index: 9;
    width: 100%;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
}

.proc-card-content span {
    color: #FFF;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
}

.proc-card-content p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 350px;
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.45s ease;
}

.proc-card:hover .proc-card-content p {
    max-height: 150px;
    padding-top: 12px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.pattern-strip {
    width: 100%;
    overflow: hidden;
}

.pattern-track {
    display: flex;
    width: max-content;
}

.pattern-track img {
    display: block;
    flex-shrink: 0;
    max-width: none;
}

.pattern-track.left {
    animation: marqueeLeft 18s linear infinite;
}

.pattern-track.right {
    animation: marqueeRight 18s linear infinite;
}

@keyframes marqueeLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* ============ STATS ============ */
.stats-section {
    width: 100%;
    background: #1B1F5C;
    padding-bottom: 25px;
}

.stats-grid {
    width: 100%;
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stats-grid .stat {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    padding: 4px 32px;
}

.stats-grid .stat:last-child {
    border-right: none;
}

.stats-grid .num {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.stats-grid .num::after {
    content: '';
    width: 60px;
    height: 1px;
    background: #04C9FF;
    display: block;
    margin: 12px auto;
}

.stats-grid .lbl {
    color: rgba(255, 255, 255, 0.50);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 171.429% */
    text-transform: uppercase;
}

/* ============ SURGEONS ============ */
.team-section {
    width: 100%;
    padding: 70px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-section .floating-img {
    width: 1029px;
    height: auto;
    left: 90px;
    bottom: -30px;
    z-index: -1;
}

.team-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 64px;
}

.team-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.team-card-content span {
    color: #1B1F5C;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
    display: block;
    margin-bottom: 8px;
}

.team-card-content p {
    color: rgba(27, 31, 92, 0.70);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    /* 135.714% */
    max-width: 205px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
}

.team-card:last-child p {
    max-width: 240px;
}

.team-member-img {
    margin-top: auto;
}

.team-member-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.license-wrapper {
    padding: 70px 50px 0;
}

.license-by {
    position: relative;
}

.license-by span {
    color: rgba(27, 31, 92, 0.52);
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 200% */
    letter-spacing: 1.44px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 24px;
}

.license-by span::before,
.license-by span::after {
    content: '';
    width: 100%;
    height: 1px;
    flex: 1;
    background: rgba(27, 31, 92, 0.25);
    display: block;
}

.license-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.license-grid>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.license-grid div img {
    width: 110px;
    height: auto;
    object-fit: cover;
    margin-bottom: auto;
}

.license-grid div:last-child img {
    width: 85px;
}

.license-grid div p {
    color: rgba(27, 31, 92, 0.70);
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 133.333% */
    max-width: 339px;
}

.license-name-wrapper {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 20px 0 12px;
}

.license-name {
    color: #0051B1;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    /* 135.714% */
    text-transform: uppercase;
    display: block;
}

.license-date {
    color: rgba(27, 31, 92, 0.70);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    /* 158.333% */
    display: block;
}


/* ============ RESULTS ============ */
.results-section {
    width: 100%;
    padding: 70px 50px;
    background: #1B1F5C;
    position: relative;
}

.results-section .section-heading {
    color: #fff;
}

.results-section p {
    color: rgba(255, 255, 255, 0.50);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin: 12px 0 36px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.result-card {
    display: block;
}

.result-card.hide {
    display: none;
}

.results-filter {
    display: flex;
    gap: 50px;
    margin-bottom: 36px;
    position: relative;
    padding-top: 20px;
}

.results-filter::before {
    content: '';
    width: calc(100% + 100px);
    height: 1px;
    position: absolute;
    left: -50px;
    top: 0;
    background: rgba(255, 255, 255, 0.07);
}

.results-filter button {
    color: #FFF;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 171.429% */
    letter-spacing: 0.42px;
    text-transform: uppercase;
}

.results-filter button.active {
    color: #04C9FF;
}

/* ============ DIFFERENT ============ */
.why-eve-sec {
    width: 100%;
    background: #1B1F5C;
}

.different-grid {
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
}

.different-content {
    padding: 70px 0 70px 50px;
    position: relative;
    z-index: 9;
}

.different-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: -20%;
    width: 120%;
    height: 140%;
    background: #1B1F5C;
    filter: blur(75.94999694824219px);
    z-index: -1;
    pointer-events: none;
}

.different-content .section-heading {
    color: #fff;
    margin-bottom: 50px;
}

.different-content .section-heading span {
    color: #04C9FF;
    max-width: 500px;
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.diff-list .item {
    display: flex;
    gap: 35px;
}

.diff-list .num {
    color: rgba(255, 255, 255, 0.37);
    font-family: "Cormorant Garamond";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 55.556% */
}

.diff-list div span {
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: block;
    margin-bottom: 10px;
}

.diff-list p {
    color: rgba(255, 255, 255, 0.50);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.different-img {
    position: relative;
    width: 100%;
    margin-left: -50px;
}

.different-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============ LOCATION ============ */
.branches-sec {
    width: 100%;
    padding: 100px 50px 70px;
    background: #1B1F5C;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.branches-sec .floating-img {
    width: 1083px;
    height: auto;
    left: 15px;
    top: 0;
}

.branches-sec .section-heading {
    color: #fff;
    text-align: center;
    margin-bottom: 36px;
}

.branches-sec>p {
    color: rgba(255, 255, 255, 0.50);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.branches-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 70px;
    align-items: center;
}

.branch>span {
    color: #FFF;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 36px;
    display: block;
}

.branch-info {
    display: flex;
    gap: 24px;
    margin-bottom: 50px;
}

.branch-info img {
    width: 24px;
    height: 24px;
}

.branch-info span {
    color: rgba(255, 255, 255, 0.53);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    /* 191.667% */
    letter-spacing: 2.04px;
    text-transform: uppercase;
    display: block;
}

.branch-info p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
    /* 143.75% */
    max-width: 306px;
}

/* ============ TESTIMONIALS ============ */
.testimonial-section {
    width: 100%;
    background: rgba(27, 31, 92, 0.06);
    position: relative;
    padding-top: 5px;
    overflow: hidden;
}

.testimonial-section .floating-img {
    width: 497px;
    height: auto;
    right: 0;
    top: 0;
    z-index: -1;
}

.testimonial-container {
    width: 100%;
    padding: 70px 50px 60px;
}

.testimonial-container .section-heading {
    margin-bottom: 50px;
}

.testi-card {
    width: 100%;
    background: #FBFBFC;
    padding: 24px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-info>img:first-child {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
}

.user-info>div {
    flex: 1;
}

.user-info>div span:first-child {
    color: #1F1F1F;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 100% */
    display: block;
    margin-bottom: 8px;
}

.user-info>div span:last-child {
    color: rgba(0, 0, 0, 0.50);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    /* 125% */
    display: block;
}

.user-info>img:last-child {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 16px 0;
}

.rating img {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
}

.testi-card p {
    color: rgba(27, 31, 92, 0.70);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
}

.testimonial-arrows {
    display: none;
}

/* ============ FAQ ============ */
.faq-section {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.faq-section .floating-img {
    width: 1008px;
    height: auto;
    top: 0;
    right: 80px;
    z-index: -1;
}

.faq-section .section-heading {
    max-width: 680px;
    text-align: center;
}

.faq-wrapper {
    width: 100%;
    max-width: 1114px;
    margin-top: 50px;
}

.faq-item {
    border-top: 1px solid rgba(27, 31, 92, 0.12);
    padding: 30px 30px 30px 24px;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    cursor: pointer;
    text-align: left;
}

.faq-number {
    color: rgba(27, 31, 92, 0.30);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.faq-title {
    color: #1B1F5C;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.faq-icon {
    width: 24px;
    position: relative;
}

.faq-icon img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon img {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all .35s ease;
    padding-left: 55px;
}

.faq-answer p {
    padding-top: 14px;
    max-width: 907px;
    color: rgba(27, 31, 92, 0.70);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ============ APPOINTMENT ============ */
.appointment-section {
    width: 100%;
}

.appointment-heading {
    width: 100%;
    padding: 50px;
    background: #F1F2F5;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.appointment-heading>div {
    width: fit-content;
}

.appointment-heading .section-heading {
    max-width: 604px;
}

.appointment-heading p {
    color: rgba(27, 31, 92, 0.70);
    text-align: right;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 462px;
}

.appointment-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #FFF;
    position: relative;
    overflow: hidden;
}

.appointment-form form {
    width: 100%;
    padding: 50px;
}

.appointment-form form input,
.appointment-form form textarea,
.appointment-form form select {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid rgba(95, 98, 141, 0.50);
    padding-bottom: 30px;
    margin-bottom: 26px;
    color: rgba(27, 31, 92, 0.70);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.appointment-form form input::placeholder,
.appointment-form form textarea::placeholder {
    color: rgba(27, 31, 92, 0.70);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.appointment-form form textarea {
    resize: none;
    height: 50px;
    margin-bottom: 30px;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 100%;
}

/* ============ CTA ============ */
.cta-section {
    padding: 150px 50px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1B1F5C;
    background-image: url('../images/cta-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 240px;
    pointer-events: none;
    background: linear-gradient(to top,
            #1B1F5C 0%,
            rgba(27, 31, 92, 1) 20%,
            rgba(27, 31, 92, 0.7) 55%,
            rgba(27, 31, 92, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.cta-section * {
    position: relative;
    z-index: 9;
}

.cta-section .section-heading {
    color: #fff;
    max-width: 806px;
    text-align: center;
}

.cta-section .section-heading span {
    color: #04C9FF;
}

.cta-section .section-heading::after {
    content: '';
    width: 132px;
    height: 1px;
    display: block;
    background: #04C9FF;
    margin: 50px auto 36px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.50);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 510px;
    margin-bottom: 50px;
}

.btn-wrapper {
    width: fit-content;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ============ FOOTER ============ */
.footer {
    width: 100%;
    background: #1B1F5C;
    overflow: hidden;
}

.footer-content-wrapper {
    width: 100%;
    padding: 80px 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr 2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.footer-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-content .footer-logo {
    width: 249px;
    margin-bottom: 27px;
    display: block;
}

.footer-content .footer-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.footer-content p {
    color: #FFF;
    text-align: right;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 416px;
    margin-bottom: 30px;
}

.footer-content .socials {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-content .socials a {
    display: flex;
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.79);
}

.footer-content .socials a img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-grid span {
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
    margin-bottom: 24px;
}

.footer-grid ul li {
    margin-bottom: 12px;
}

.footer-grid ul li:last-child {
    margin-bottom: 0;
}

.footer-grid ul li a,
.footer-grid ul li p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.footer-grid ul li p {
    max-width: 319px;
}

.footer-bottom {
    width: 100%;
    padding: 50px 20px 36px;
    display: flex;
    justify-content: center;
}

.footer-bottom span {
    color: rgba(255, 255, 255, 0.50);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    text-align: center;
}

/* Inner Pages */
.innerpage .topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: #1B1F5C;
}

.common-hero {
    width: 100%;
    height: 506px;
    background: #1B1F5C;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 100px 30px;
}

.breadcrumb {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.50);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
}

.breadcrumb span:nth-child(2) {
    color: rgba(255, 255, 255, 0.50);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
}

.breadcrumb span {
    color: #04C9FF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
}

.common-hero h1 {
    color: #FFF;
    font-family: Inter;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 16px 0 22px;
}

.common-hero p {
    color: rgba(255, 255, 255, 0.50);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 543px;
}

.innerpage-cta {
    background: #1B1F5C;
    padding: 70px 50px;
}

.innerpage-cta .section-heading {
    max-width: 100%;
}

.innerpage-cta .section-heading::after {
    margin: 36px auto;
}

.innerpage-cta p {
    max-width: 462px;
    margin-bottom: 74px;
}

.innerpage-cta .section-tag {
    position: relative;
}

.innerpage-cta .section-tag::before {
    content: '';
    display: block;
    width: 1px;
    height: 65px;
    background: #04C9FF;
    margin: 0 auto 20px;
    pointer-events: none;
}

.overview-section {
    width: 100%;
    padding: 100px 50px;
    display: flex;
    justify-content: center;
}

.overview-container {
    width: 100%;
    max-width: 987px;
}

.overview-container .section-tag {
    margin-bottom: 18px;
}

.overview-container .section-heading {
    max-width: 744px;
}

.overview-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
    margin-top: 40px;
}

.overview-grid p {
    color: rgba(27, 31, 92, 0.70);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 460px;
}

.choose-section {
    width: 100%;
    padding: 100px 30px;
    background: #1B1F5C;
}

.choose-section .section-heading {
    color: #fff;
    margin-bottom: 50px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    padding: 32px 0;
}

.choose-grid::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.releated-procedures {
    width: 100%;
    padding: 100px 30px;
}

.releated-procedure-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding-top: 32px;
    border-top: 1px solid rgba(27, 31, 92, 0.12);
    margin-top: 50px;
}

.releated-procedure-grid .num {
    color: rgba(27, 31, 92, 0.12);
    font-family: "Cormorant Garamond";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 70%;
    /* 25.2px */
    display: block;
}

.releated-procedure-grid .name {
    color: #1B1F5C;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: block;
    margin: 24px 0 10px;
}

.releated-procedure-grid p {
    color: rgba(27, 31, 92, 0.70);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 380px;
}

.releated-procedure-grid>div:first-child p {
    max-width: 348px;
}

.releated-procedure-grid>div:last-child p {
    max-width: 360px;
}

.common-hero:has(.procedure-details) {
    height: 563px;
    padding-bottom: 0;
    overflow: hidden;
}

.procedure-details {
    width: calc(100% + 60px);
    margin: 0 -30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.procedure-details>div {
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.procedure-details>div:last-child {
    border: none;
}

.procedure-details>div span:first-child {
    color: #04C9FF;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 200% */
    letter-spacing: 1.56px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.procedure-details>div span:last-child {
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.choose-grid-2 .choose-grid {
    grid-template-columns: repeat(2, 1fr);
}

.bg-white {
    background: #fff;
}

.bg-white .section-heading {
    color: #1B1F5C;
}

.bg-white .diff-list div span {
    color: #1B1F5C;
}

.bg-white .diff-list .num {
    color: rgba(27, 31, 92, 0.12);
}

.bg-white .diff-list p {
    color: rgba(27, 31, 92, 0.70);
}

.bg-white .choose-grid {
    border-color: rgba(27, 31, 92, 0.12);
}

.bg-white .choose-grid::after {
    background: rgba(27, 31, 92, 0.12);
}

.how-works-sec {
    width: 100%;
    background: #1B1F5C;
    padding: 100px 50px;
    display: flex;
    justify-content: center;
}

.how-works-container {
    width: 100%;
    max-width: 920px;
}

.how-works-container .section-heading {
    color: #fff;
    margin-bottom: 70px;
}

.how-works-container .diff-list {
    gap: 70px;
}

.service-faq-section {
    width: 100%;
    padding: 50px 50px 100px;
    display: flex;
    justify-content: center;
}

.service-faq-container {
    width: 100%;
    max-width: 1114px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-faq-container .section-heading {
    max-width: 806px;
    text-align: center;
}

.service-faq-list {
    width: 100%;
    margin-top: 50px;
}

.service-faq-item {
    border-top: 1px solid rgba(27, 31, 92, 0.12);
    padding: 30px 30px 30px 24px;
}

.service-faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    cursor: pointer;
    text-align: left;
}

.service-faq-number {
    color: rgba(27, 31, 92, 0.30);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
}

.service-faq-content {
    flex: 1;
}

.service-faq-content span {
    color: #1B1F5C;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.service-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.service-faq-answer p {
    overflow: hidden;
    margin: 0;
    padding-top: 14px;
    max-width: 907px;
    color: rgba(27, 31, 92, 0.70);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.service-faq-icon {
    width: 28px;
    height: auto;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.service-faq-item.active .service-faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
}

.service-faq-item.active .service-faq-icon {
    transform: rotate(180deg);
}

.sculpting-page .overview-container .section-heading{
    max-width: 100%;
}