
:root {
    --body_font: "Inter", sans-serif;
    --heading_font: "Inter", sans-serif;

    --primary_color: #6c63ff;
    --primary_hover: #554de8;
    --primary_light: #6c63ff14;
    --secondary_color: #16b8a6;
    --accent_color: #ffb547;

    --bg_body: #f6f7fb;
    --bg_surface: #ffffff;
    --bg_surface_alt: #eef1f8;
    --bg_dark: #111522;
    --bg_dark_soft: #191f30;
    --bg_overlay: rgba(9, 13, 24, 0.64);

    --text_heading: #151a2a;
    --text_body: #687086;
    --text_muted: #8b92a4;
    --text_white: #ffffff;
    --text_on_dark: rgba(255, 255, 255, 0.74);
    --input_text: #000000;

    --border_color: #dfe3ec;
    --border_light: rgba(255, 255, 255, 0.16);

    --fs_xxs: 12px;
    --fs_xs: 12px;
    --fs_sm: 14px;
    --fs_md: 16px;
    --fs_lg: 18px;
    --fs_xl: 20px;
    --fs_xxl: 24px;

    --fw_400: 400;
    --fw_500: 500;
    --fw_600: 600;
    --fw_700: 700;
    --fw_800: 800;

    --br_xs: 6px;
    --br_sm: 10px;
    --br_md: 14px;
    --br_lg: 20px;
    --br_pill: 999px;

    --shadow_sm: 0 8px 24px rgba(22, 27, 45, 0.06);
    --shadow_md: 0 18px 50px rgba(22, 27, 45, 0.10);
    --shadow_dark: 0 20px 45px rgba(0, 0, 0, 0.22);

    --section_space: 72px;
    --content_gap: 24px;
    --transition: 0.3s ease;
}

html[data_theme="dark"] {
    --bg_body: #0d111b;
    --bg_surface: #151a27;
    --bg_surface_alt: #1a2131;
    --bg_dark: #080b12;
    --bg_dark_soft: #111724;
    --text_heading: #f4f6fb;
    --text_body: #aeb6c8;
    --text_muted: #858ea4;
    --border_color: #2a3244;
    --primary_light: #6c63ff25;
    --shadow_sm: 0 8px 24px rgba(0, 0, 0, 0.20);
    --shadow_md: 0 18px 50px rgba(0, 0, 0, 0.30);
    --input_text: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary_color) var(--bg_surface_alt);
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background-color: var(--bg_body);
    color: var(--text_body);
    font-family: var(--body_font);
    font-size: var(--fs_md);
    line-height: 1.65;
    transition: background-color var(--transition), color var(--transition);
}

body.menu_open {
    overflow: hidden;
}

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

ul,
ol {
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}

figure {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--text_heading);
    font-family: var(--heading_font);
    font-weight: var(--fw_700);
    line-height: 1.22;
}

p {
    margin: 0;
    color: var(--text_body);
    font-size: var(--fs_md);
    line-height: 1.7;
}

button,
input,
textarea,
select {
    font: inherit;
}

section {
    position: relative;
    width: 100%;
    padding: var(--section_space) 0;
    overflow: hidden;
}

body .container {margin:0 auto;
    width: 100%;
    max-width: 1400px !important;
}

.img_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.surface_section {
    background-color: var(--bg_surface);
}

.alt_section {
    background-color: var(--bg_surface_alt);
}

.dark_section {
    background-color: var(--bg_dark);
}

.text_primary {
    color: var(--primary_color) !important;
}

.text_secondary_color {
    color: var(--secondary_color) !important;
}

/***** Common title styles *****/
.title_box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 680px;
    margin-bottom: 32px;
}

.title_box_center {
    margin-inline: auto;
    text-align: center;
}

.title_badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    margin-bottom: 12px;
    padding: 5px 11px;
    border: 1px solid color-mix(in srgb, var(--primary_color) 30%, transparent);
    border-radius: var(--br_pill);
    background-color: var(--primary_light);
    color: var(--primary_color);
    font-size: var(--fs_xs);
    font-weight: var(--fw_700);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.title_badge::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
    content: "";
}

.main_heading {
    margin-bottom: 16px;
    color: var(--text_white);
    font-size: clamp(36px, 5vw, 66px);
    font-weight: var(--fw_800);
    letter-spacing: -0.04em;
}

.inner_heading {
    margin-bottom: 12px;
    color: var(--text_white);
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -0.035em;
}

.section_heading {
    margin-bottom: 14px;
    font-size: clamp(25px, 3.1vw, 38px);
    letter-spacing: -0.03em;
}

.card_heading {
    margin-bottom: 8px;
    font-size: var(--fs_lg);
}

.title_box p + p {
    margin-top: 10px;
}

/* Common buttons  */
.btn {
    min-height: 40px;
    padding: 9px 16px;
    border-radius: var(--br_sm);
    box-shadow: none !important;
    font-size: var(--fs_sm);
    font-weight: var(--fw_700);
    transition: transform var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn_primary {
    border: 1px solid var(--primary_color);
    background-color: var(--primary_color);
    color: var(--text_white);
}

.btn_primary:hover,
.btn_primary:focus-visible {
    border-color: var(--primary_hover);
    background-color: var(--primary_hover);
    color: var(--text_white);
}

.btn_outline {
    border: 1px solid var(--border_color);
    background-color: transparent;
    color: var(--text_heading);
}

.btn_outline:hover,
.btn_outline:focus-visible {
    border-color: var(--primary_color);
    color: var(--primary_color);
}

.btn_light {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background-color: rgba(255, 255, 255, 0.10);
    color: var(--text_white);
    backdrop-filter: blur(10px);
}

.btn_light:hover,
.btn_light:focus-visible {
    border-color: var(--text_white);
    background-color: var(--text_white);
    color: var(--bg_dark);
}

.btn_icon {
    display: inline-flex;
    transition: transform var(--transition);
}

.btn:hover .btn_icon,
.btn:focus-visible .btn_icon {
    transform: translateX(3px);
}

/* Shared cards and icons  */
.icon_box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 12px;
    background-color: var(--primary_light);
    color: var(--primary_color);
    font-size: 17px;
}

.common_card {
    height: 100%;
    padding: 24px;
    border: 1px solid var(--border_color);
    border-radius: var(--br_md);
    background-color: var(--bg_surface);
    box-shadow: var(--shadow_sm);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.common_card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--primary_color) 42%, var(--border_color));
    box-shadow: var(--shadow_md);
}

.common_card .icon_box {
    margin-bottom: 18px;
}

.common_card p {
    font-size: var(--fs_sm);
}

.tag_list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.tag_item {
    padding: 6px 10px;
    border: 1px solid var(--border_color);
    border-radius: var(--br_pill);
    background-color: var(--bg_surface_alt);
    color: var(--text_body);
    font-size: var(--fs_xs);
    font-weight: var(--fw_600);
}

/***** Scroll reveal *****/
.reveal_item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal_item.is_visible {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER CSS START */
.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    background-color: color-mix(in srgb, var(--bg_surface) 82%, transparent);
    backdrop-filter: blur(16px);
    transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header.sticky_header {
    border-color: var(--border_color);
    box-shadow: var(--shadow_sm);
}

.header_content,
.header .navbar {
    width: 100%;
}

.header .navbar {
    min-height: 72px;
    padding: 0;
}

.navbar_brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text_heading);
    font-size: var(--fs_lg);
    font-weight: var(--fw_800);
    letter-spacing: -0.03em;
}

.navbar_brand:hover {
    color: var(--text_heading);
}

.brand_mark {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--primary_color), var(--secondary_color));
    color: var(--text_white);
    font-size: 17px;
    box-shadow: 0 9px 20px rgba(108, 99, 255, 0.24);
}

.brand_text span {
    color: var(--primary_color);
}

.header .navbar_nav {
    align-items: center;
    gap: 24px;
}

.header .nav_link {
    position: relative;
    padding: 8px 0 !important;
    color: var(--text_body);
    font-size: var(--fs_sm);
    font-weight: var(--fw_600);
}

.header .nav_link::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: var(--br_pill);
    background-color: var(--primary_color);
    content: "";
    transition: width var(--transition);
}

.header .nav_link:hover,
.header .nav_link.active {
    color: var(--text_heading);
}

.header .nav_link:hover::after,
.header .nav_link.active::after {
    width: 100%;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 22px;
}

.theme_toggle {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--border_color);
    border-radius: var(--br_sm);
    background-color: var(--bg_surface);
    color: var(--text_heading);
    font-size: 15px;
    transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.theme_toggle:hover,
.theme_toggle:focus-visible {
    transform: translateY(-2px);
    border-color: var(--primary_color);
    color: var(--primary_color);
}

.header .navbar_toggler {
    width: 40px;
    height: 40px;
    padding: 9px;
    border: 1px solid var(--border_color);
    border-radius: var(--br_sm);
    box-shadow: none !important;
    background-color: transparent;
}

.header .navbar_toggler_icon {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: var(--br_pill);
    background-color: var(--text_heading);
    transition: transform var(--transition), opacity var(--transition);
}

.header .navbar_toggler.is_open .navbar_toggler_icon:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.header .navbar_toggler.is_open .navbar_toggler_icon:nth-child(2) {
    opacity: 0;
}

.header .navbar_toggler.is_open .navbar_toggler_icon:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* HERO CSS START */
.hero_section {
    min-height: 760px;
    display: flex;
    align-items: center;
    padding-top: 146px;
    padding-bottom: 104px;
    background-image: linear-gradient(90deg, rgba(9, 13, 24, 0.92) 0%, rgba(9, 13, 24, 0.72) 49%, rgba(9, 13, 24, 0.22) 100%), url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1800&q=85");
    background-position: center;
    background-size: cover;
}

.hero_content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero_content .title_badge {
    border-color: rgba(255, 255, 255, 0.22);
    background-color: rgba(255, 255, 255, 0.10);
    color: var(--text_white);
}

.hero_content p {
    max-width: 610px;
    margin-bottom: 26px;
    color: var(--text_on_dark);
    font-size: var(--fs_lg);
}

.hero_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero_note {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: var(--text_on_dark);
    font-size: var(--fs_xs);
}

.hero_note span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero_note i {
    color: var(--secondary_color);
}

/* FLOATING STATS CSS START*/
.stats_section {
    z-index: 2;
    padding: 0;
    margin-top: -48px;
    overflow: visible;
}

.stats_box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border_color);
    border-radius: var(--br_lg);
    background-color: var(--bg_surface);
    box-shadow: var(--shadow_md);
    overflow: hidden;
}

.stat_item {
    position: relative;
    padding: 23px 24px;
}

.stat_item:not(:last-child)::after {
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background-color: var(--border_color);
    content: "";
}

.stat_value {
    display: block;
    margin-bottom: 3px;
    color: var(--text_heading);
    font-size: var(--fs_xxl);
    font-weight: var(--fw_800);
    letter-spacing: -0.03em;
}

.stat_label {
    color: var(--text_body);
    font-size: var(--fs_xs);
}

/* ABOUT PREVIEW CSS START */
.about_preview .row {
    row-gap: var(--content_gap);
}

.about_image_box {
    position: relative;
    height: 520px;
    padding-right: 28px;
    padding-bottom: 28px;
}

.about_image_box::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 62%;
    height: 62%;
    border-radius: var(--br_lg);
    background: linear-gradient(145deg, var(--primary_color), var(--secondary_color));
    content: "";
}

.about_image {
    position: relative;
    z-index: 1;
    height: 100%;
    border-radius: var(--br_lg);
    box-shadow: var(--shadow_md);
    overflow: hidden;
}

.about_float_card {
    position: absolute;
    z-index: 2;
    right: 4px;
    bottom: 60px;
    width: 190px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: var(--br_md);
    background-color: color-mix(in srgb, var(--bg_surface) 88%, transparent);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow_md);
}

.about_float_card strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text_heading);
    font-size: var(--fs_lg);
}

.about_float_card span {
    font-size: var(--fs_xs);
}

.feature_list {
    display: grid;
    gap: 14px;
    margin: 24px 0 26px;
    list-style: none;
}

.feature_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature_item i {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    margin-top: 1px;
    border-radius: 50%;
    background-color: var(--primary_light);
    color: var(--primary_color);
    font-size: 12px;
}

.feature_item strong {
    display: block;
    margin-bottom: 2px;
    color: var(--text_heading);
    font-size: var(--fs_sm);
}

.feature_item span {
    font-size: var(--fs_xs);
}

/* SERVICES CSS START */
.service_card {
    position: relative;
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--border_color);
    border-radius: var(--br_md);
    background-color: var(--bg_surface);
    box-shadow: var(--shadow_sm);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service_card::before {
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: var(--primary_light);
    content: "";
    transition: transform var(--transition);
}

.service_card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--primary_color) 44%, var(--border_color));
    box-shadow: var(--shadow_md);
}

.service_card:hover::before {
    transform: scale(1.15);
}

.service_card .icon_box,
.service_card h3,
.service_card p,
.service_card .explore_link {
    position: relative;
    z-index: 1;
}

.service_card .icon_box {
    margin-bottom: 34px;
}

.service_card p {
    margin-bottom: 20px;
    font-size: var(--fs_sm);
}

.explore_link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: max-content;
    margin-top: auto;
    color: var(--primary_color);
    font-size: var(--fs_sm);
    font-weight: var(--fw_700);
}

.explore_link i {
    transition: transform var(--transition);
}

.explore_link:hover {
    color: var(--primary_hover);
}

.explore_link:hover i {
    transform: translateX(4px);
}

/* CLASSES CSS START*/
.class_card {
    position: relative;
    height: 390px;
    border-radius: var(--br_md);
    box-shadow: var(--shadow_sm);
    overflow: hidden;
}

.class_card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 11, 18, 0.04) 20%, rgba(8, 11, 18, 0.92) 100%);
    content: "";
}

.class_card img {
    transition: transform 0.5s ease;
}

.class_card:hover img {
    transform: scale(1.06);
}

.class_content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 22px;
}

.class_content h3 {
    margin-bottom: 8px;
    color: var(--text_white);
    font-size: var(--fs_xl);
}

.class_content p {
    margin-bottom: 14px;
    color: var(--text_on_dark);
    font-size: var(--fs_sm);
}

.class_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--text_on_dark);
    font-size: var(--fs_xs);
}

.class_meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--br_pill);
    background-color: rgba(255, 255, 255, 0.08);
}

.class_filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.filter_btn {
    min-height: 34px;
    padding: 7px 13px;
    border: 1px solid var(--border_color);
    border-radius: var(--br_pill);
    background-color: var(--bg_surface);
    color: var(--text_body);
    font-size: var(--fs_xs);
    font-weight: var(--fw_700);
    transition: all var(--transition);
}

.filter_btn:hover,
.filter_btn.active {
    border-color: var(--primary_color);
    background-color: var(--primary_color);
    color: var(--text_white);
}

.class_grid_item.is_hidden {
    display: none;
}

/*  APPROACH CSS START*/
.approach_section {
    background-image: linear-gradient(90deg, rgba(8, 11, 18, 0.96), rgba(8, 11, 18, 0.78)), url("https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?auto=format&fit=crop&w=1800&q=80");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.approach_section .section_heading,
.approach_section .card_heading {
    color: var(--text_white);
}

.approach_section .title_box p {
    color: var(--text_on_dark);
}

.approach_steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.approach_step {
    padding: 22px;
    border: 1px solid var(--border_light);
    border-radius: var(--br_md);
    background-color: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
}

.step_number {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--secondary_color);
    font-size: var(--fs_xs);
    font-weight: var(--fw_800);
}

.approach_step p {
    color: var(--text_on_dark);
    font-size: var(--fs_sm);
}

/* TEAM CSS START */
.team_card {
    height: 100%;
}

.team_image {
    height: 330px;
    margin-bottom: 16px;
    border-radius: var(--br_md);
    background-color: var(--bg_surface_alt);
    overflow: hidden;
}

.team_image img {
    filter: saturate(0.85);
    transition: filter var(--transition), transform 0.5s ease;
}

.team_card:hover .team_image img {
    filter: saturate(1);
    transform: scale(1.04);
}

.team_name {
    margin-bottom: 4px;
    font-size: var(--fs_lg);
}

.team_role {
    display: block;
    margin-bottom: 9px;
    color: var(--primary_color);
    font-size: var(--fs_xs);
    font-weight: var(--fw_700);
}

.team_card p {
    font-size: var(--fs_sm);
}

.social_list {
    display: flex;
    gap: 8px;
    margin-top: 13px;
    list-style: none;
}

.social_link {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--border_color);
    border-radius: 50%;
    color: var(--text_body);
    font-size: var(--fs_xs);
    transition: all var(--transition);
}

.social_link:hover {
    border-color: var(--primary_color);
    background-color: var(--primary_color);
    color: var(--text_white);
}

/*  TESTIMONIAL CSS START*/
.testimonial_box {
    padding: 30px;
    border: 1px solid var(--border_color);
    border-radius: var(--br_lg);
    background-color: var(--bg_surface);
    box-shadow: var(--shadow_sm);
}

.testimonial_rating {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
    color: var(--accent_color);
    font-size: var(--fs_sm);
}

.testimonial_text {
    margin-bottom: 24px;
    color: var(--text_heading);
    font-size: var(--fs_lg);
    line-height: 1.6;
}

.client_box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client_avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
}

.client_name {
    display: block;
    color: var(--text_heading);
    font-size: var(--fs_sm);
    font-weight: var(--fw_700);
}

.client_role {
    color: var(--text_muted);
    font-size: var(--fs_xs);
}

.testimonial_carousel .carousel_indicators {
    position: static;
    gap: 6px;
    margin: 22px 0 0;
}

.testimonial_carousel .carousel_indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background-color: var(--text_muted);
}

.testimonial_carousel .carousel_indicators .active {
    width: 20px;
    border-radius: var(--br_pill);
    background-color: var(--primary_color);
}

/*PRICING CSS START */
.pricing_card {
    position: relative;
    height: 100%;
    padding: 28px;
    border: 1px solid var(--border_color);
    border-radius: var(--br_lg);
    background-color: var(--bg_surface);
    box-shadow: var(--shadow_sm);
}

.pricing_card.featured {
    border-color: var(--primary_color);
    background: linear-gradient(180deg, var(--primary_light), var(--bg_surface) 42%);
    box-shadow: var(--shadow_md);
}

.plan_badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 5px 9px;
    border-radius: var(--br_pill);
    background-color: var(--primary_color);
    color: var(--text_white);
    font-size: var(--fs_xxs);
    font-weight: var(--fw_800);
    text-transform: uppercase;
}

.plan_name {
    margin-bottom: 6px;
    font-size: var(--fs_lg);
}

.plan_text {
    min-height: 44px;
    font-size: var(--fs_sm);
}

.plan_price {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin: 20px 0;
}

.plan_price strong {
    color: var(--text_heading);
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.plan_price span {
    color: var(--text_muted);
    font-size: var(--fs_xs);
}

.plan_list {
    display: grid;
    gap: 11px;
    margin-bottom: 24px;
    list-style: none;
}

.plan_list li {
    display: flex;
    gap: 9px;
    font-size: var(--fs_sm);
}

.plan_list i {
    margin-top: 4px;
    color: var(--secondary_color);
}

.pricing_card .btn {
    width: 100%;
}

/* FAQ CSS START */
.faq_accordion .accordion_item {
    margin-bottom: 10px;
    border: 1px solid var(--border_color);
    border-radius: var(--br_md) !important;
    background-color: var(--bg_surface);
    overflow: hidden;
}

.faq_accordion .accordion_item:last-child {
    margin-bottom: 0;
}

.faq_accordion .accordion_button {
    padding: 17px 18px;
    background-color: var(--bg_surface);
    box-shadow: none !important;
    color: var(--text_heading);
    font-size: var(--fs_sm);
    font-weight: var(--fw_700);
}

.faq_accordion .accordion_button:not(.collapsed) {
    background-color: var(--primary_light);
    color: var(--primary_color);
}

.faq_accordion .accordion_button::after {
    filter: var(--accordion_icon_filter, none);
}

html[data_theme="dark"] .faq_accordion .accordion_button::after {
    filter: invert(1);
}

.faq_accordion .accordion_body {
    padding: 18px 18px 18px;
    color: var(--text_body);
    font-size: var(--fs_sm);
}

/* CTA CSS START*/
.cta_section {
    padding: 54px 0;
    background: linear-gradient(125deg, var(--primary_color), #5047d8 52%, var(--secondary_color));
}

.cta_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta_content {
    max-width: 720px;
}

.cta_content h2 {
    margin-bottom: 10px;
    color: var(--text_white);
    font-size: clamp(25px, 3vw, 36px);
}

.cta_content p {
    color: rgba(255, 255, 255, 0.74);
}

.cta_actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.cta_section .btn_light {
    background-color: var(--text_white);
    color: var(--primary_color);
}

/* INNER BANNER CSS START*/
.inner_banner {
    min-height: 430px;
    display: flex;
    align-items: center;
    padding-top: 128px;
    padding-bottom: 72px;
    background-position: center;
    background-size: cover;
}

.inner_banner::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 11, 18, 0.9), rgba(8, 11, 18, 0.48));
    content: "";
}

.inner_banner_content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.inner_banner_content p {
    max-width: 520px;
    color: var(--text_on_dark);
    font-size: var(--fs_lg);
}

.breadcrumb_list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
    color: var(--text_on_dark);
    font-size: var(--fs_xs);
    list-style: none;
}

.breadcrumb_list a:hover {
    color: var(--text_white);
}

.breadcrumb_list li:not(:last-child)::after {
    margin-left: 7px;
    content: "/";
}

/*  ABOUT PAGE CSS START*/
.story_image {
    height: 470px;
    border-radius: var(--br_lg);
    box-shadow: var(--shadow_md);
    overflow: hidden;
}

.value_card .value_number {
    display: block;
    margin-bottom: 20px;
    color: var(--primary_color);
    font-size: var(--fs_xs);
    font-weight: var(--fw_800);
}

.timeline_list {
    position: relative;
    display: grid;
    gap: 20px;
    list-style: none;
}

.timeline_list::before {
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 14px;
    width: 1px;
    background-color: var(--border_color);
    content: "";
}

.timeline_item {
    position: relative;
    display: flex;
    gap: 18px;
}

.timeline_dot {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 29px;
    height: 29px;
    flex: 0 0 auto;
    border: 7px solid var(--bg_surface);
    border-radius: 50%;
    background-color: var(--primary_color);
    box-shadow: 0 0 0 1px var(--border_color);
}

.timeline_content {
    padding-bottom: 8px;
}

.timeline_content h3 {
    margin-bottom: 5px;
    font-size: var(--fs_lg);
}

.timeline_content p {
    font-size: var(--fs_sm);
}

/* SERVICES PAGE CSS START*/
.service_detail_card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 380px;
    border: 1px solid var(--border_color);
    border-radius: var(--br_lg);
    background-color: var(--bg_surface);
    box-shadow: var(--shadow_sm);
    overflow: hidden;
}

.service_detail_card + .service_detail_card {
    margin-top: 22px;
}

.service_detail_card:nth-child(even) .service_detail_image {
    order: 2;
}

.service_detail_image {
    min-height: 340px;
}

.service_detail_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.service_detail_content .icon_box {
    margin-bottom: 20px;
}

.service_detail_content p {
    margin-bottom: 20px;
}

.benefit_strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border_color);
    border-radius: var(--br_lg);
    background-color: var(--bg_surface);
    box-shadow: var(--shadow_sm);
    overflow: hidden;
}

.benefit_item {
    padding: 25px;
    text-align: center;
}

.benefit_item:not(:last-child) {
    border-right: 1px solid var(--border_color);
}

.benefit_item i {
    display: block;
    margin-bottom: 12px;
    color: var(--primary_color);
    font-size: 20px;
}

.benefit_item strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text_heading);
    font-size: var(--fs_sm);
}

.benefit_item span {
    font-size: var(--fs_xs);
}

/* SCHEDULE CSS START*/
.schedule_wrap {
    border: 1px solid var(--border_color);
    border-radius: var(--br_lg);
    background-color: var(--bg_surface);
    box-shadow: var(--shadow_sm);
    overflow: hidden;
}

.schedule_table {
    min-width: 760px;
    margin: 0;
    color: var(--text_body);
    font-size: var(--fs_sm);
}

.schedule_table > :not(caption) > * > * {
    padding: 16px;
    border-color: var(--border_color);
    background-color: transparent;
    color: inherit;
    vertical-align: middle;
}

.schedule_table thead th {
    background-color: var(--bg_surface_alt);
    color: var(--text_heading);
    font-size: var(--fs_xs);
    font-weight: var(--fw_800);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.schedule_class {
    display: block;
    color: var(--text_heading);
    font-weight: var(--fw_700);
}

.schedule_coach {
    color: var(--text_muted);
    font-size: var(--fs_xs);
}

.level_badge {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: var(--br_pill);
    background-color: var(--primary_light);
    color: var(--primary_color);
    font-size: var(--fs_xxs);
    font-weight: var(--fw_800);
}

/* CONTACT CSS START*/
.contact_info_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.contact_info_card {
    display: flex;
    gap: 13px;
    padding: 20px;
    border: 1px solid var(--border_color);
    border-radius: var(--br_md);
    background-color: var(--bg_surface);
}

.contact_info_card .icon_box {
    width: 38px;
    height: 38px;
    font-size: 14px;
}

.contact_info_card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text_heading);
    font-size: var(--fs_sm);
}

.contact_info_card a,
.contact_info_card span {
    color: var(--text_body);
    font-size: var(--fs_xs);
}

.contact_info_card a:hover {
    color: var(--primary_color);
}

.contact_form {
    padding: 30px;
    border: 1px solid var(--border_color);
    border-radius: var(--br_lg);
    background-color: var(--bg_surface);
    box-shadow: var(--shadow_sm);
}

.form_group {
    margin-bottom: 16px;
}

.form_group label {
    display: block;
    margin-bottom: 7px;
    color: var(--text_heading);
    font-size: var(--fs_xs);
    font-weight: var(--fw_700);
}

.form_control,
.form_select {
    min-height: 44px;
    border: 1px solid var(--border_color);
    border-radius: var(--br_sm);
    background-color: var(--bg_surface_alt);
    color: var(--input_text);
    font-size: var(--fs_sm);
    box-shadow: none !important;
}

.form_control:focus,
.form_select:focus {
     color: var(--input_text);
    border-color: var(--primary_color);
    background-color: var(--bg_surface);
}

textarea.form_control {
    min-height: 130px;
    padding-top: 12px;
    resize: vertical;
}

.form_control::placeholder {
    color: var(--text_muted);
}

.form_check_input {
    box-shadow: none !important;
}

.form_check_input:checked {
    border-color: var(--primary_color);
    background-color: var(--primary_color);
}

.form_check_label {
    color: var(--text_body);
    font-size: var(--fs_xs);
}

.form_status {
    display: none;
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: var(--br_sm);
    background-color: rgba(22, 184, 166, 0.12);
    color: var(--secondary_color);
    font-size: var(--fs_xs);
    font-weight: var(--fw_700);
}

.form_status.show {
    display: block;
}

.map_card {
    position: relative;
    min-height: 360px;
    margin-top: 22px;
    border-radius: var(--br_lg);
    background-image: linear-gradient(rgba(13, 17, 27, 0.20), rgba(13, 17, 27, 0.20)), url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1800&q=80");
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow_sm);
    overflow: hidden;
}

.map_pin {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 7px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background-color: var(--primary_color);
    color: var(--text_white);
    font-size: 18px;
    box-shadow: var(--shadow_dark);
    transform: translate(-50%, -50%);
}

.hours_list {
    display: grid;
    gap: 10px;
    list-style: none;
}

.hours_list li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border_color);
    font-size: var(--fs_sm);
}

.hours_list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.hours_list strong {
    color: var(--text_heading);
    font-weight: var(--fw_600);
}

/*FOOTER CSS START */
.footer {
    padding: 60px 0 24px;
    background-color: var(--bg_dark);
}

.footer .navbar_brand {
    color: var(--text_white);
}

.footer_intro {
    max-width: 330px;
    margin-top: 18px;
    color: var(--text_on_dark);
    font-size: var(--fs_sm);
}

.footer_heading {
    margin-bottom: 16px;
    color: var(--text_white);
    font-size: var(--fs_sm);
}

.footer_list {
    display: grid;
    gap: 10px;
    list-style: none;
}

.footer_link,
.footer_text {
    color: var(--text_on_dark);
    font-size: var(--fs_xs);
    transition: color var(--transition);
}

.footer_link:hover {
    color: var(--text_white);
}

.footer_contact_link {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.footer_contact_link i {
    margin-top: 3px;
    color: var(--secondary_color);
}

.footer_socials {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    list-style: none;
}

.footer_socials .social_link {
    border-color: var(--border_light);
    color: var(--text_on_dark);
}

.footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid var(--border_light);
}

.footer_bottom p,
.footer_bottom a {
    color: var(--text_on_dark);
    font-size: var(--fs_xxs);
}

.footer_bottom_links {
    display: flex;
    gap: 16px;
    list-style: none;
}

   /* SCROLL TOP CSS START */
.scroll_top {
    position: fixed;
    z-index: 990;
    right: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background-color: var(--primary_color);
    color: var(--text_white);
    box-shadow: var(--shadow_md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
}

.scroll_top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll_top:hover {
    background-color: var(--primary_hover);
}
