/* =========================================================
THEME VARIABLES
========================================================= */
:root {
    /* Premium Colors */
    --primary: #0B1220;
    /* Deepest Navy/Black */
    --primary-light: #1E293B;
    /* Lighter Navy for contrast */
    --secondary: #F59E0B;
    /* High-Converting Amber/Orange */
        --white: #ffffff;
    --light: #F8FAFC;
    /* Off-white background */
    --text: #64748B;
    /* Soft Gray for readability */
    --heading: #0F172A;
    /* Near Black for contrast */
    --border: #E2E8F0;
        /* Fonts */
    --heading-font: 'Manrope', sans-serif;
    --body-font: 'Inter', sans-serif;
        /* Radius & Shadow */
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --shadow-sm: 0 10px 25px rgba(11, 18, 32, 0.06);
    --shadow: 0 20px 50px rgba(11, 18, 32, 0.1);
    --shadow-lg: 0 30px 80px rgba(11, 18, 32, 0.18);
        /* Transitions */
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
/* =========================================================
RESET & GLOBAL
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    margin: 0 !important;
}
body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    margin: 0 !important;
}
/*.page #wpadminbar {
    display: none !important;
}*/
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    transition: var(--transition);
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
ol {
    margin-bottom: 12px;
    margin-left: 0;
}
section {
    padding: 110px 0;
    position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--heading);
    font-weight: 800;
    line-height: 1.2;
}
h1 {
    font-size: 64px;
}
h2 {
    font-size: 44px;
}
h3 {
    font-size: 30px;
}
p {
    margin-bottom: 0;
}
.section-title {
    margin-bottom: 60px;
}
.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 18px;
}
.subtitle::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--secondary);
}
.section-title h2 {
    margin-bottom: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.section-title p {
    max-width: 650px;
    font-size: 18px;
    color: var(--text);
    margin: auto;
}
/* Fallback for missing images */
.theme-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-color: var(--primary-light);
    min-height: 300px;
    display: flex;
}
.theme-image img {
    transition: 0.8s ease;
    width: 100%;
    object-fit: cover;
}
.theme-image:hover img {
    transform: scale(1.06);
}
/* Extracted Inline Styles for Icons */
.header-ext-icon {
    font-size: 11px;
    margin-left: 5px;
}
.footer-ext-icon {
    font-size: 10px;
}
/* =========================================================
PREMIUM BUTTONS & FX
========================================================= */
.btn-theme {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 16px;
    border: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25);
}
.btn-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.btn-theme i {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 14px;
}
.btn-theme:hover {
    background: #f7b032;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.45);
}
.btn-theme:hover::before {
    transform: translateX(100%);
}
.btn-theme:hover i {
    transform: translateX(5px);
}
.btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    z-index: 1;
    overflow: hidden;
}
.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.btn-outline:hover {
    color: var(--primary);
    border-color: var(--white);
}
.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.glow-effect {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.35) !important;
}
.glow-effect:hover {
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.6) !important;
}
/* =========================================================
TOP BAR
========================================================= */
.topbar {
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: 12px 0;
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .7);
}
.topbar__item strong {
    color: var(--white);
}
/* =========================================================
HEADER
========================================================= */
.site-header {
    position: absolute;
    left: 0;
    top: 47px;
    width: 100%;
    z-index: 999;
    transition: .4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site-header.sticky {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    border-bottom: none;
}
.header {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .35s;
}
.site-header.sticky .header {
    min-height: 80px;
}
.header__logo img {
    height: 60px;
    transition: .35s;
}
.site-header.sticky .header__logo img {
    height: 55px;
}
/* Navigation */
.header__nav {
    margin-left: auto;
    margin-right: 20px;
}
.header__nav>ul {
    display: flex;
    align-items: center;
    gap: 5px;
}
.header__nav>ul>li {
    position: relative;
}
.header__nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 45px;
    padding: 0 7px;
    border-radius: 50px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}
.site-header.sticky .header__nav>ul>li>a {
    color: var(--primary);
}
.has-dropdown>a i {
    font-size: 11px;
    transition: var(--transition);
}
.has-dropdown:hover>a i {
    transform: rotate(180deg);
}
.header__nav>ul>li>a:hover {
    background: rgba(245, 158, 11, .15);
    color: var(--secondary);
}
/* Sub Menu */
.sub-menu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 260px;
    background: var(--white);
    border-radius: 10px;
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    max-height: 520px;
    overflow-x: auto;
}
.has-dropdown:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sub-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    padding: 10px 25px;
    transition: .3s;
}
.sub-menu a:hover {
    color: var(--secondary);
    background: #FFF7ED;
    /*padding-left: 32px; */
}
/* Header Right */
.header__right {
    display: flex;
    align-items: center;
    gap: 25px;
}
.header__phone {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}
.site-header.sticky .header__phone {
    color: var(--primary);
}
.header__phone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 18px;
}
.site-header.sticky .header__phone-icon {
    background: #FFF7ED;
}
.header__phone:hover .header__phone-icon {
    transform: rotate(-15deg);
    background: var(--secondary);
    color: var(--white);
}
.header__phone-content span {
    display: block;
    font-size: 11px;
    color: #94A3B8;
    line-height: 1;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.header__phone-content strong {
    display: block;
    color: inherit;
    font-size: 18px;
    font-weight: 800;
    transition: 0.3s;
}
.header__phone:hover .header__phone-content strong {
    color: var(--secondary);
}
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: .35s;
    border-radius: 2px;
}
.site-header.sticky .menu-toggle span {
    background: var(--primary);
}
/* =========================================================
HERO SECTION
========================================================= */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding: 130px 0 140px;
}
.hero__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(11, 18, 32, 0.98) 0%, rgba(11, 18, 32, 0.7) 50%, rgba(11, 18, 32, 0.2) 100%);
}
.hero .container {
    position: relative;
    z-index: 5;
}
.hero__wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 40px;
}
.hero__content {
    color: var(--white);
    max-width: 650px;
}
.hero__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--white);
}
.hero__subtitle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}
.hero__content h1 {
    font-size: 68px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
}
.hero__content h1 span {
    color: var(--secondary);
}
.hero__content p {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin-bottom: 45px;
}
.hero__buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}
/* Floating Glassmorphism HUD (Right Side) */
.hero__floating-ui {
    position: relative;
    height: 450px;
    width: 100%;
}
.hero-card--glass {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-width: 280px;
    animation: float 6s ease-in-out infinite;
}
.hero-card--glass strong {
    display: block;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-card--glass span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}
.hero-card--glass .hero-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 22px;
}
.hero-card--one {
    top: 0;
    right: 40px;
    animation-delay: 0s;
}
.hero-card--two {
    top: 35%;
    right: -20px;
    animation-delay: 2s;
}
.hero-card--three {
    bottom: 20px;
    right: 40px;
    animation-delay: 4s;
}
@keyframes float {
    0% {
        transform: translateY(0px);
    }
        50% {
        transform: translateY(-12px);
    }
        100% {
        transform: translateY(0px);
    }
}
/* Trust Strip Over Video */
.hero-trust {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 20;
    background: rgba(11, 18, 32, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-trust__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.hero-trust__item {
    text-align: center;
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-trust__item:last-child {
    border: none;
}
.hero-trust__item strong {
    display: block;
    font-size: 32px;
    color: var(--white);
    font-family: var(--heading-font);
    margin-bottom: 5px;
    line-height: 1;
}
.hero-trust__item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* =========================================================
BRANDS LOGO STRIP
========================================================= */
.brands-strip {
    background: var(--primary);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.brands-title {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.brands-track {
    display: flex;
    width: 200%;
    animation: scrollBrands 30s linear infinite;
}
.brands-track:hover {
    animation-play-state: paused;
}
.brands-slide {
    display: flex;
    justify-content: space-around;
    width: 50%;
    align-items: center;
}
.brand-name {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    cursor: default;
}
.brand-name:hover {
    color: var(--secondary);
}
@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
        100% {
        transform: translateX(-50%);
    }
}
@media (max-width: 767px) {
    .brand-name {
        font-size: 18px;
    }
        .brands-track {
        width: 300%;
        animation-duration: 20s;
    }
        .brands-slide {
        width: 33.33%;
    }
}
/* =========================================================
PROBLEMS GRID
========================================================= */
.problems {
    background: var(--primary);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.problems .section-title h2 {
    color: var(--white);
    margin-left: auto;
    margin-right: auto;
}
.problems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}
.problem-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px;
    transition: var(--transition);
    overflow: hidden;
}
.problem-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--secondary);
    transition: 0.5s ease;
}
.problem-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.problem-card:hover::before {
    height: 100%;
}
.problem-card__icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary);
    font-size: 32px;
    margin-bottom: 30px;
    transition: var(--transition);
}
.problem-card:hover .problem-card__icon {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}
.problem-card h4 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}
.problem-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin: 0;
}
.problems::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.05);
    top: -200px;
    right: -200px;
    filter: blur(40px);
    z-index: 0;
}
.problems::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    bottom: -150px;
    left: -150px;
    z-index: 0;
}
/* =========================================================
SERVICES GRID
========================================================= */
.services {
    background: var(--light);
    padding: 80px 0;
}
.services__heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
}
.services__heading .section-title {
    margin-bottom: 0;
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 340px;
    gap: 30px;
}
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    /*cursor: pointer;*/
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background-color: var(--primary-light);
}
.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.service-card__overlay {
    position: absolute;
    inset: 0;
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(11, 18, 32, 0) 0%, rgba(11, 18, 32, 0.6) 40%, rgba(11, 18, 32, 0.95) 100%);
}
.service-card__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px;
    color: var(--white);
}
.service-card__content span {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
}
.service-card__content h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.service-card__content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.4;
    max-width: 400px;
}
.service-card__content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 800;
    transition: var(--transition);
    font-size: 16px;
    margin-top: 16px;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover img {
    transform: scale(1.05);
}
.service-card:hover .service-card__overlay {
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.2) 0%, rgba(11, 18, 32, 0.7) 40%, rgba(11, 18, 32, 0.98) 100%);
}
.service-card:hover a {
    color: var(--secondary);
}
.service-card--large {
    grid-column: span 7;
    grid-row: span 2;
}
.service-card--large .service-card__content {
    /*padding: 50px;*/
}
.service-card--large h3 {
    /*font-size: 48px;*/
}
.service-card:not(.service-card--large) {
    grid-column: span 5;
}
/* =========================================================
BEFORE & AFTER INTERACTIVE SECTION
========================================================= */
.before-after {
    background: var(--primary);
    padding: 80px 0;
    overflow: hidden;
}
.before-after__row {
    gap: 0;
}
.before-after .section-title h2 {
    color: var(--white);
}
.before-after .section-title p {
    color: rgba(255, 255, 255, 0.7);
}
.benefit-list {
    list-style: none;
    margin-bottom: 45px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
}
.benefit-icon {
    color: var(--secondary);
    font-size: 22px;
}
.comparison-widget {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background-color: var(--primary-light);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    --position: 50%;
}
.comparison-img-after,
.comparison-img-before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.comparison-img-before {
    clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
    z-index: 2;
}
.comparison-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
    margin: 0;
}
.comparison-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--position);
    width: 4px;
    background: var(--white);
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
}
.comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--secondary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.comparison-widget:hover .comparison-handle {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.8);
    color: var(--secondary);
    transform: translate(-50%, -50%) scale(1.1);
}
.comparison-label {
    position: absolute;
    top: 30px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--white);
    background: rgba(11, 18, 32, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 8;
    pointer-events: none;
}
.comparison-label--before {
    left: 30px;
}
.comparison-label--after {
    right: 30px;
}
/* =========================================================
PROCESS SECTION 
========================================================= */
.process-section {
    background: var(--light);
    padding: 120px 0;
    position: relative;
    z-index: 1;
}
.process-wrapper {
    position: relative;
    margin-top: 60px;
}
.process-line {
    position: absolute;
    top: 100px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(11, 18, 32, 0.05);
    z-index: -1;
}
.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
    animation: moveLine 8s linear infinite;
}
@keyframes moveLine {
    0% {
        left: 0;
    }
        100% {
        left: 100%;
    }
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.process-card {
    text-align: center;
    position: relative;
    padding: 0 10px;
}
.process-card__step {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: var(--secondary);
    background: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    border: 1px solid var(--border);
}
.process-card__icon-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    z-index: 2;
}
.process-card__icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-card:hover .process-card__icon {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
    border-color: var(--secondary);
}
.process-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}
.process-card h3 a {
    color: var(--primary);
    text-decoration: underline;
}
.process-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}
/* =========================================================
WHY OUR WORKSHOP
========================================================= */
.workshop {
    background: var(--primary);
    padding: 80px 0;
}
.workshop .section-title h2 {
    color: var(--white);
}
.workshop__wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 70px;
    align-items: center;
}
.workshop__image {
    position: sticky;
    top: 120px;
}
.workshop__image .theme-image {
    min-height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.workshop__image img {
    height: 600px;
    object-fit: cover;
    width: 100%;
}
.workshop__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.workshop-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    transition: var(--transition);
    overflow: hidden;
}
.workshop-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--secondary);
    transition: .4s ease;
}
.workshop-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.workshop-card:hover::before {
    height: 100%;
}
.workshop-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary);
    font-size: 28px;
    margin-bottom: 25px;
    transition: var(--transition);
}
.workshop-card:hover .workshop-card__icon {
    background: var(--secondary);
    color: var(--white);
    transform: rotate(-10deg);
}
.workshop-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--white);
}
.workshop-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}
/* =========================================================
TESTIMONIALS SECTION
========================================================= */
.testimonials {
    background: var(--light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.testimonial-slider {
    padding-bottom: 70px;
    overflow: visible;
}
.testimonial-card {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 45px;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    z-index: 1;
    overflow: hidden;
}
.testimonial-card__quote {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 130px;
    color: rgba(15, 23, 42, 0.03);
    z-index: -1;
    transition: transform 0.5s ease, color 0.5s ease;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(11, 18, 32, 0.08);
}
.testimonial-card:hover .testimonial-card__quote {
    color: rgba(245, 158, 11, 0.06);
    transform: scale(1.1) rotate(5deg);
}
.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
}
.testimonial-rating i.fa-star {
    color: var(--secondary);
    font-size: 16px;
}
.verified-badge {
    margin-left: auto;
    color: var(--text);
    font-size: 20px;
    opacity: 0.4;
    transition: all 0.3s ease;
}
.testimonial-card:hover .verified-badge {
    opacity: 1;
    color: #ff6400;
}
.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--heading);
    font-style: italic;
    margin-bottom: 35px;
    flex-grow: 1;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 18px;
    border-top: 1px solid var(--border);
    padding-top: 25px;
}
.testimonial-user__img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    padding: 2px;
    background: var(--white);
    flex-shrink: 0;
}
.testimonial-user__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial-user__info h5 {
    margin-bottom: 4px;
    font-size: 18px;
    color: var(--primary);
}
.testimonial-user__info span {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.testimonial-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}
.testimonial-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary);
    opacity: 0.15;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 50px;
    margin: 0 !important;
}
.testimonial-pagination .swiper-pagination-bullet-active {
    width: 40px;
    background: var(--secondary);
    opacity: 1;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}
/* =========================================================
CONTACT & BOOKING SECTION 
========================================================= */
.contact-section {
    background: var(--white);
    padding: 100px 0 120px;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.contact-info .subtitle {
    margin-bottom: 20px;
}
.contact-info h2 {
    color: var(--primary);
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.contact-info p {
    color: var(--text);
    font-size: 17px;
    margin-bottom: 45px;
    max-width: 90%;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: #FFF7ED;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
}
.contact-item:hover .contact-icon {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}
.contact-text {
    display: flex;
    flex-direction: column;
}
.contact-text strong {
    color: var(--primary);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 2px;
}
.contact-text span {
    color: var(--text);
    font-size: 15px;
}
.contact-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(11, 18, 32, 0.08);
    border: 1px solid var(--border);
}
.contact-form-card h3 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 35px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group.full-width {
    margin-bottom: 30px;
}
.form-control,
.forminator-input,
.select2-selection,
textarea.forminator-textarea {
    width: 100% !important;
    height: 55px !important;
    border-radius: 12px !important;
    border: 1px solid #E2E8F0 !important;
    padding: 0 20px !important;
    background: #ffffff !important;
    color: var(--heading) !important;
    font-family: var(--body-font) !important;
    font-size: 16px !important;
    transition: all 0.3s ease;
}
textarea.form-control,
textarea.forminator-textarea {
    height: 120px !important;
    padding-top: 18px !important;
    resize: none !important;
}
.form-control::placeholder {
    color: #94A3B8;
}
.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}
.custom-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.select-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    pointer-events: none;
    font-size: 13px;
}
.forminator-ui.forminator-custom-form[data-design="default"] .forminator-button.forminator-button-submit.btn-theme.glow-effect {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 16px;
    border: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25);
}
/* =========================================================
FOOTER
========================================================= */
.footer {
    background: #060B14;
    color: var(--white);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-main {
    padding: 80px 0 80px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}
.footer-logo img {
    height: 60px;
    transition: var(--transition);
}
.footer-logo:hover img {
    opacity: 0.8;
}
.footer-bio {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 35px;
    max-width: 90%;
}
.footer-social {
    display: flex;
    gap: 15px;
}
.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}
.widget-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}
.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}
.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-links-list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 500;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}
.footer-links-list a i {
    position: absolute;
    left: -18px;
    color: var(--secondary);
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.footer-links-list a i.fa-arrow-up-right-from-square {
    position: relative;
    left: 0;
    opacity: 1;
    margin-right: 8px;
}
.footer-links-list a:hover {
    color: var(--white);
    transform: translateX(18px);
}
.footer-links-list a:hover i {
    opacity: 1;
}
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-list-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.contact-list-text {
    display: flex;
    flex-direction: column;
}
.contact-list-text span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.contact-list-text strong {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
}
.footer-bottom {
    background: #040810;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}
.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}
.legal-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    transition: var(--transition);
}
.legal-links .divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}
.legal-links a:hover {
    color: var(--secondary);
}

/*=========================================
About Hero
=========================================*/
.aboutHero {
    position: relative;
    padding: 180px 0 80px;
    background: #0b1220;
    overflow: hidden;
}
.aboutHero .aboutHeroOverlay {
    position: absolute;
    inset: 0;
}
.aboutHero .container {
    position: relative;
    z-index: 2;
}
.aboutHero .breadcrumbList {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.aboutHero .breadcrumbList li {
    color: #bbb;
}
.aboutHero .breadcrumbList li a {
    color: #fff;
    text-decoration: none;
}
.aboutHero h1 {
    font-weight: 700;
    font-size: 68px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
}
.aboutHero h1 span {
    color: #f7931d;
}
.aboutHero p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}
.aboutHero .hero__buttons {
    padding-top: 30px;
}
.aboutHero .aboutHeroImage {
    text-align: right;
}
.aboutHero .aboutHeroImage img {
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}
.aboutHero .aboutHeroBottom {
    margin-top: 80px;
}
.aboutHero .heroInfo {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 35px 25px;
    transition: .4s;
    background: rgb(11 18 32 / 30%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.aboutHero .heroInfo:hover {
    border-color: #f7931d;
}
.aboutHero .heroInfo h2 {
    color: #F7931D;
    font-size: 48px;
    margin-bottom: 8px;
}
.aboutHero .heroInfo span {
    color: #ddd;
}

/*=========================================
Company Story
=========================================*/
.companyStory {
    position: relative;
    background: #0b1220;
}
.companyStory .companyStoryImage {
    position: relative;
    padding-right: 80px;
}
.companyStory .mainImage img {
    width: 100%;
    border-radius: 24px;
}
.companyStory .smallImage {
    position: absolute;
    right: 0;
    bottom: 40px;
    width: 220px;
}
.companyStory .smallImage img {
    border-radius: 20px;
    border: 6px solid #0b1220;
}
.companyStory .experienceBox {
    position: absolute;
    left: -20px;
    bottom: -20px;
    background: #f7931d;
    padding: 22px;
    border-radius: 18px;
    text-align: center;
    min-width: 170px;
}
.companyStory .experienceBox h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}
.companyStory .experienceBox span {
    color: #fff;
    font-size: 14px;
}
.companyStory .companyStoryContent p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
    margin-top: 20px;
}
.companyStory .storyPoint {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: #fff;
    font-weight: 500;
}
.companyStory .storyPoint i {
    color: #f7931d;
}

/*=========================================
Journey Timeline
=========================================*/
.journeyTimeline {
    background: #f8fafc;
    overflow: hidden;
}
.journeyTimeline .journeyTimelineWrap {
    position: relative;
    margin-top: 70px;
}
.journeyTimeline .timelineLine {
    position: absolute;
    top: 15px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: #f7931d;
}
.journeyTimeline .journeyItem {
    position: relative;
    text-align: center;
}
.journeyTimeline .journeyYear {
    font-size: 18px;
    font-weight: 700;
    color: #0b1220;
    margin-bottom: 18px;
}
.journeyTimeline .journeyDot {
    width: 18px;
    height: 18px;
    margin: 0 auto 40px;
    background: #f7931d;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(247, 147, 29, .15);
    position: relative;
    z-index: 2;
}
.journeyTimeline .journeyCard {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
    min-height: 340px;
}
.journeyTimeline .journeyCard:hover {
    transform: translateY(-10px);
    border-color: #f7931d;
    box-shadow: 0 20px 45px rgba(2, 6, 23, .12);
}
.journeyTimeline .journeyIcon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    border-radius: 18px;
    background: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
}
.journeyTimeline .journeyIcon i {
    color: #f7931d;
    font-size: 30px;
}
.journeyTimeline .journeyCard h5 {
    color: #0b1220;
    font-weight: 700;
    margin-bottom: 15px;
}
.journeyTimeline .journeyCard p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}
.journeyTimeline .journeyStats {
    margin-top: 30px;
}
.journeyTimeline .statItem {
    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e5e7eb;
    transition: .35s;
}
.journeyTimeline .statItem:hover {
    background: var(--primary);
    border-color: #0b1220;
    transform: translateY(-8px);
}
.journeyTimeline .statItem h3 {
    font-size: 40px;
    font-weight: 700;
    color: #f7931d;
    margin-bottom: 10px;
}
.journeyTimeline .statItem span {
    color: #64748b;
    font-weight: 500;
    transition: .35s;
}
.journeyTimeline .statItem:hover span {
    color: #fff;
}

/*=========================================
Why Choose Us
=========================================*/
.whyChoose-row {
    margin-top: 50px;
    position: relative;
}
.whyChoose {
    background: var(--primary);
}
.whyChoose p {
    color: #b8c2d3;
    line-height: 1.8;
}
.whyChoose .chooseCard {
    height: 100%;
    padding: 30px;
    background: #151d2d;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    transition: .35s;
}
.whyChoose .chooseCard:hover {
    transform: translateY(-8px);
    border-color: #f7931d;
    background: #1a2438;
}
.whyChoose .chooseIcon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(247, 147, 29, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.whyChoose .chooseIcon i {
    font-size: 28px;
    color: #f7931d;
}
.whyChoose .chooseCard h5 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}
.whyChoose .chooseCard p {
    margin: 0;
    color: #b8c2d3;
}

/*=========================================
Services Page
=========================================*/
.servicesPage {
    background: #f8fafc;
}
.servicesPage .serviceCard {
    height: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    transition: .35s ease;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .06);
}
.servicesPage .serviceCard:hover {
    transform: translateY(-10px);
    border-color: #f7931d;
    box-shadow: 0 25px 60px rgba(15, 23, 42, .12);
}
.servicesPage .serviceImage {
    height: 260px;
    overflow: hidden;
}
.servicesPage .serviceImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
.servicesPage .serviceCard:hover .serviceImage img {
    transform: scale(1.08);
}
.servicesPage .serviceContent {
    padding: 30px;
}
.servicesPage .serviceBadge {
    display: inline-block;
    padding: 7px 16px;
    background: #fff4e8;
    color: #f7931d;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}
.servicesPage .serviceContent h3 {
    font-size: 30px;
    color: #0b1220;
    margin-bottom: 15px;
    font-weight: 700;
}
.servicesPage .serviceContent p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
}
.servicesPage .serviceList {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.servicesPage .serviceList li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    margin-bottom: 12px;
}
.servicesPage .serviceList li i {
    color: #f7931d;
    font-size: 15px;
}
.servicesPage .readMore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0b1220;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}
.servicesPage .readMore i {
    transition: .3s;
}
.servicesPage .readMore:hover {
    color: #f7931d;
}
.servicesPage .readMore:hover i {
    transform: translateX(6px);
}
.services__grid_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.services__grid_list article.service-card {
    grid-column: unset;
    aspect-ratio: 1.1;
}
/*=========================================
Our Process
=========================================*/
.ourProcess {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
.ourProcess .section-title h2,
.ourProcess .section-title p {
    color: #fff;
}
.ourProcess .processCard {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 40px 25px 30px;
    text-align: center;
    transition: .35s;
}
.ourProcess .processCard:hover {
    transform: translateY(-10px);
    border-color: #f7931d;
    background: rgba(255, 255, 255, .08);
}
.ourProcess .processNumber {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, .05);
    line-height: 1;
}
.ourProcess .processIcon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #f7931d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}
.ourProcess .processCard h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}
.ourProcess .processCard p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.8;
}

/*=========================================
Book Inspection CTA
=========================================*/
.bookInspectionCTA {
    background: #f8fafc;
}
.bookInspectionCTA .ctaBox {
    background: var(--primary);
    border-radius: 30px;
    padding: 70px;
    position: relative;
    overflow: hidden;
}
.bookInspectionCTA .ctaBox::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: rgba(247, 147, 29, .08);
    border-radius: 50%;
}
.bookInspectionCTA .ctaContent h2 {
    color: #fff;
    margin: 20px 0;
}
.bookInspectionCTA .ctaContent p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 0;
}
.bookInspectionCTA .ctaList {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bookInspectionCTA .ctaList li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    margin-bottom: 16px;
}
.bookInspectionCTA .ctaList li i {
    color: #f7931d;
}
.bookInspectionCTA .ctaAction {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
}
.bookInspectionCTA .ctaAction .btn-theme {
    justify-content: center;
    margin-bottom: 25px;
}
.bookInspectionCTA .ctaContact {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: #0b1220;
    padding: 18px 0;
    border-top: 1px solid #e5e7eb;
}
.bookInspectionCTA .ctaContact:first-of-type {
    border-top: none;
}
.bookInspectionCTA .ctaContact i {
    width: 40px;
    height: 40px;
    background: #f7931d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    min-width: 40px;
}
.bookInspectionCTA .ctaContact span {
    display: block;
    color: #64748b;
    font-size: 14px;
}
.bookInspectionCTA .ctaContact strong {
    display: block;
    font-size: 18px;
    color: #0b1220;
}
/*=========================================
workshop-hero
=========================================*/
.car-workshops {
    padding: 70px 0;
    background: #f8fafc;
}
/* GRID */
.car-workshops .car-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}
/* CARD */
.car-workshops .car-category-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
}
.car-workshops .car-category-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
/* ICON */
.car-workshops .icon {
    font-size: 30px;
    margin-bottom: 10px;
}
/* TITLE */
.car-workshops h4 {
    font-family: var(--heading-font);
    color: var(--heading);
    margin: 0 0 8px;
}
/* TEXT */
.car-workshops p {
    color: var(--text);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.journeyTimeline .journeyCard li {
    display: flex;
    column-gap: 10px;
    align-items: start;
}
.journeyTimeline .journeyCard li i.benefit-icon {
    font-size: 16px;
    position: relative;
    top: 5px;
}

/*======================================
Workshop Intro
======================================*/
.workshop-intro {
    padding: 80px 0;
}
.workshop-intro .workshop-intro-content {
    max-width: 980px;
    margin: 0 auto 50px;
}
.workshop-intro .workshop-intro-content p {
    margin: 0 0 22px;
    color: var(--text);
    line-height: 1.8;
}
.workshop-intro .workshop-intro-content p:last-child {
    margin-bottom: 0;
}
.workshop-intro .workshop-intro-content strong {
    color: var(--heading);
    font-weight: 700;
}
/* Highlight Box */
.workshop-intro .workshop-highlight-box {
    padding: 40px;
    border: 1px solid var(--border);
    border-left: 5px solid var(--secondary);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.workshop-intro .workshop-highlight-box h2 {
    margin: 0 0 18px;
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--heading);
    line-height: 1.2;
}
.workshop-intro .workshop-highlight-box p {
    margin: 0;
    color: var(--text);
    line-height: 1.8;
}

/*==================================
Workshop Benefits
==================================*/
.workshop-benefits .section-title {
    margin-bottom: 50px;
}
.workshop-benefits .benefit-block:not(:last-child) {
    margin-bottom: 55px;
}
.workshop-benefits .benefit-block h3 {
    margin-bottom: 18px;
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--heading);
}
.workshop-benefits .benefit-block p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 18px;
}
/* List */
.workshop-benefits .benefit-list {
    margin: 35px 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--border);
}
.workshop-benefits .benefit-list ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.workshop-benefits .benefit-list ul li::before {
    content: "●";
    color: var(--secondary);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}
.workshop-benefits .benefit-list strong {
    color: var(--heading);
    font-weight: 700;
}
.workshop-benefits .benefit-list span {
    color: var(--text);
}
/* Button */
.workshop-benefits .benefit-action {
    margin-top: 35px;
}
.workshop-benefits .benefit-action .btn-theme {
    width: 100%;
    justify-content: center;
}

/*==================================
Workshop CTA
==================================*/
.workshop-cta {
    padding: 80px 0;
    background: var(--white);
}
.workshop-cta .section-title {
    margin-bottom: 35px;
}
.workshop-cta .workshop-cta-btn {
    margin-bottom: 40px;
}
.workshop-cta .workshop-cta-btn .btn-theme {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    font-size: 1rem;
    text-transform: uppercase;
}
.workshop-cta .workshop-cta-content p {
    margin: 0 0 20px;
    color: var(--text);
    line-height: 1.9;
}
.workshop-cta .workshop-cta-content p:last-child {
    margin-bottom: 0;
}
.workshop-cta .workshop-cta-content strong {
    color: var(--heading);
    font-weight: 700;
}

/*==================================
Workshop Location Info
==================================*/
.workshop-location-info .location-info-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 35px;
    background: linear-gradient(135deg, #f8fbff, #eef6ff);
    border: 1px solid #d7e8fb;
    border-left: 5px solid var(--secondary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.workshop-location-info .location-info-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 12px 30px rgba(245, 158, 11, .25);
}
.workshop-location-info .location-info-content h3 {
    margin: 0 0 15px;
    font-family: var(--heading-font);
    color: var(--heading);
}
.workshop-location-info .location-info-content p {
    margin: 0 0 12px;
    color: var(--text);
    line-height: 1.8;
}
.workshop-location-info .location-info-content p:last-child {
    margin-bottom: 0;
}

/*==================================
Workshop Location
==================================*/
.workshop-location {
    background: var(--primary);
}
.workshop-location .workshop-location-header {
    margin-bottom: 45px;
}
.workshop-location .workshop-location-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.workshop-location .workshop-location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
}
/*==================================
Workshop Services
==================================*/
.workshop-services .workshop-services-header {
    margin-bottom: 45px;
}
.workshop-services .workshop-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.workshop-services .service-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.workshop-services .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--secondary);
}
.workshop-services .service-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, .12);
    color: var(--secondary);
    border-radius: 18px;
    font-size: 28px;
}
.workshop-services .service-content h3 {
    margin: 0 0 10px;
    color: var(--heading);
    font-family: var(--heading-font);
    font-size: 22px;
}
.workshop-services .service-content p {
    margin: 0;
    color: var(--text);
    line-height: 1.8;
}
/*==================================
Areas We Service
==================================*/
.service-areas-location {
    background: var(--light);
}
.service-areas-location .service-areas-header {
    max-width: 700px;
    margin-bottom: 50px;
}
.service-areas-location .service-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-areas-location .area-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.service-areas-location .area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}
.service-areas-location .area-card-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}
.service-areas-location .area-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(245, 158, 11, .12);
    color: var(--secondary);
    font-size: 24px;
    min-width: 60px;
}
.service-areas-location .area-card h3 {
    margin: 0 0 5px;
    color: var(--heading);
}
.service-areas-location .area-card-top p {
    margin: 0;
    color: var(--text);
    font-size: .95rem;
}
.service-areas-location ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-areas-location li {
    position: relative;
    padding: 14px 0 14px 30px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.service-areas-location li:last-child {
    border-bottom: none;
}
.service-areas-location li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*==================================
Workshop Video
==================================*/
.workshop-video {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.workshop-video video {
    width: 100%;
    height: 100%;
    aspect-ratio: 2.3;
    object-fit: cover;
    display: block;
}
/*==================================
Workshop FAQ
==================================*/
.workshop-faq {
    padding: 80px 0;
    background: var(--light);
}
.sidebar-title h4 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.sidebar-box ul {
    display: flex;
    flex-direction: column;
}
.sidebar-box li {
    line-height: 1.4;
}
.sidebar-box li a {
    font-size: 0.875rem;
    font-family: var(--heading-font);
    color: var(--heading);
    font-weight: 500;
    opacity: 0.6;
    border-bottom: 1px solid #ddd;
    display: block;
    padding: 8px 0;
}
.sidebar-box li a:hover {
    opacity: 1;
    color: var(--secondary);
}   
.accordion.workshop-accordion {
    max-width: 97%;
}
.workshop-faq .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
}
.workshop-faq .accordion-button {
    background: var(--white);
    color: var(--heading);
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 16px;
    box-shadow: none !important;
}
.workshop-faq .accordion-button:not(.collapsed) {
    /*background: var(--primary);*/
    color: var(--secondary);
}
.workshop-faq .accordion-button:focus {
    box-shadow: none;
}
.workshop-faq .accordion-button::after {
    filter: brightness(0);
}
.workshop-faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.workshop-faq .accordion-body {
    padding: 14px 25px;
    color: var(--text);
    line-height: 1.4;
    background: var(--white);
}
.workshop-faq .accordion-footer {
    padding: 0 25px 16px;
    color: var(--text);
    line-height: 1.4;
    background: var(--white);
}
.workshop-faq .accordion-footer .action-item {
    display: flex;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
}
.workshop-faq .accordion-footer .action-item span {
    font-weight: 600;
    color: var(--heading);
}
.workshop-faq .accordion-footer {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.workshop-faq .accordion-footer .action-item a {
    font-size: 0.875rem;
    font-family: var(--heading-font);
    color: var(--heading);
    font-weight: 500;
    opacity: 0.6;
    border: 1px solid #ddd;
    padding: 5px 12px;
    display: inline-flex;
    border-radius: 50px;
    line-height: 1;
    background-color: #eee;
}
.workshop-faq .accordion-footer .action-item a:hover {
    color: var(--secondary);
    background-color: #fff;
}
.workshop-faq .accordion-body h2 {
    font-size: 28px;
}
.workshop-faq .accordion-body h3 {
    font-size: 24px;
}
.workshop-faq .accordion-body h4 {
    font-size: 20px;
}
.workshop-faq .accordion-body h5 {
    font-size: 16px;
}
.workshop-faq .accordion-body ul, .workshop-faq .accordion-body p {
    margin-bottom: 12px;
}
/*==================================
Benefit Section
==================================*/
.bg_dark {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
.benefit-section .benefit-image {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.bg_dark .benefit-content p,
.bg_dark .benefit-content {
    color: #cbd5e1;
}
.benefit-section .benefit-image img {
    width: 100%;
    aspect-ratio: 1.1;
    display: block;
    transition: var(--transition);
    object-fit: cover;
}
.benefit-section .benefit-image:hover img {
    transform: scale(1.06);
}
.benefit-section .benefit-content {
    max-width: 560px;
}
.benefit-section .section-title {
    margin: 12px 0 20px;
}
.benefit-section p {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 10px;
}
.benefit-content ul {
    list-style: disc;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 16px;
}
.benefit-section .benefit-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.benefit-section .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.benefit-section .benefit-item i {
    color: var(--secondary);
    font-size: 20px;
    margin-top: 3px;
}
.benefit-section .benefit-item span {
    color: var(--heading);
    line-height: 1.7;
    font-weight: 500;
}
.policy-content-block P {
    margin-bottom: 1rem;
}
.gallery-row {
    display: flex;
    flex-direction: column;
    row-gap: 70px;
}
.galleryItem {
    display: block;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    box-shadow: 8px 8px 10px #0000002b;
    border-radius: 10px;
    /* border: 1px solid var(--secondary) !important; */
    /* padding: 0; */
}
.galleryItem img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
    transition: .4s;
}
.galleryItem::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, .55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    opacity: 0;
    transition: .3s;
}
.galleryItem:hover img {
    transform: scale(1.08);
}
.galleryItem:hover::after {
    opacity: 1;
}
.galleryBlock {
    box-shadow: 0px 0px 15px #0000001c;
    background-color: #fff;
    border-radius: 10px;
    /* border: 1px solid var(--secondary) !important; */
    padding: 30px;
}
/*=========================================
News Listing
=========================================*/
.newsListing {
    background: #f8fafc;
}
.newsCard {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    transition: .35s;
    height: 100%;
}
.newsCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}
.newsImage {
    width: 360px;
    flex-shrink: 0;
    overflow: hidden;
}
.newsImage img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: .4s;
}
.newsCard:hover img {
    transform: scale(1.08);
}
.newsContent {
    padding: 40px;
}
.newsMeta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    font-size: 14px;
    color: #64748b;
}
.newsMeta span:first-child {
    color: #f7931d;
    font-weight: 600;
}
.newsContent h3 {
    margin-bottom: 18px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}
.newsContent h3 a {
    color: #0b1220;
    text-decoration: none;
}
.newsContent h3 a:hover {
    color: #f7931d;
}
.newsContent p {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 25px;
}
.newsBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0b1220;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}
.newsBtn:hover {
    color: #f7931d;
}
.newsBtn i {
    transition: .3s;
}
.newsBtn:hover i {
    transform: translateX(5px);
}

/*=========================================
Albums Section
=========================================*/
.albumsSection {
    background: #f8fafc;
}
.albumsSection .albumCard {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}
.albumsSection .albumCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}
.albumsSection .albumImage {
    position: relative;
    overflow: hidden;
}
.albumsSection .albumImage img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .4s;
}
.albumsSection .albumCard:hover .albumImage img {
    transform: scale(1.08);
}
.albumsSection .albumPhotos {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: #f7931d;
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.albumsSection .albumContent {
    padding: 30px;
}
.albumsSection .albumContent .gallery-content {
    margin-bottom: 16px;
}
.albumsSection .albumCategory {
    display: inline-block;
    color: #f7931d;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.albumsSection .albumContent h4 {
    margin-bottom: 15px;
}
.albumsSection .albumContent h4 a {
    color: #0b1220;
    text-decoration: none;
    transition: .3s;
}
.albumsSection .albumContent h4 a:hover {
    color: #f7931d;
}
.albumsSection .albumContent p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
}
.albumsSection .albumBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0b1220;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}
.albumsSection .albumBtn:hover {
    color: #f7931d;
}
.albumsSection .albumBtn i {
    transition: .3s;
}
.albumsSection .albumBtn:hover i {
    transform: translateX(5px);
}
.albumsSection .albumContent a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0b1220;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}
.albumsSection .albumContent a:hover {
    color: #f7931d;
}
.albumsSection .albumContent a i {
    transition: 0.3s;
}
.albumsSection .albumContent a:hover i {
    transform: translateX(5px);
}
.workshop-benefits.album-details-sec .benefit-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: none;
    display: unset;
}
.workshop-benefits.album-details-sec .benefit-list ul {
    margin: 32px 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--border);
}
.policy-content-block .entry-header {
    display: none;
}
.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    row-gap: 5px;
    flex-wrap: wrap;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}
.pagination-wrapper span.page-numbers, .pagination-wrapper a.page-numbers:hover {
    color: var(--secondary);
}
.pagination-wrapper a.page-numbers {
    color: var(--text);
}
.galleryBlock .section-title h2 {
    font-size: 28px;
    font-weight: 700;
    max-width: 520px;
}


.news-action-footer {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.news-action-footer .action-item {
    display: flex;
    column-gap: 5px;
    flex-wrap: wrap;
    row-gap: 5px;
}
.news-action-footer .action-item a {
    font-size: 0.875rem;
    font-family: var(--heading-font);
    color: var(--heading);
    font-weight: 500;
    opacity: 0.6;
    border: 1px solid #ddd;
    padding: 5px 12px;
    display: inline-flex;
    border-radius: 50px;
    line-height: 1;
    background-color: #eee;
}
.news-action-footer .action-item a:hover {
    color: var(--secondary);
    background-color: #fff;
}
.news-action-footer .action-item span {
    font-weight: 600;
    color: var(--heading);
}

.workshop-benefits.services-dt .benefit-list ul {
    border: none;
    margin: 16px 0;
}
.workshop-benefits.services-dt .benefit-list li {
    padding: 0 0 0 20px;
    border: none;
    display: block;
    position: relative;
}
.workshop-benefits.services-dt .benefit-list ul li::before {
    position: absolute;
    top: -4px;
    left: 0;
    font-size: 16px;
}
.manufacturers-sec ul {
     display: grid; 
     grid-template-columns: auto auto auto auto; 
    column-gap: 10px;
    row-gap: 10px;
    /*display: flex;
    flex-wrap: wrap;*/
}
.manufacturers-sec ul li {
    display: flex;
    align-items: start;
    column-gap: 8px;
    padding: 4px 10px;
    border-radius: 6px;
    background-color: #fff7ed;
}
.manufacturers-sec ul li i {
    position: relative;
    top: 5px;
    color: var(--secondary);
}

.share-post {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 24px 0;
    border-top: 1px solid #ddd;
    padding: 24px 0;
    border-bottom: 1px solid #ddd;
}
.post-navigation {
    display: flex;
    justify-content: space-between;
}
.post-navigation .nav-title {
    display: none;
}
.post-navigation a {
    color: #0f172a;
    font-weight: 700;
    font-size: 1rem;
}
.related-posts .related-pagination {
    display: flex;
    justify-content: center;
}
.related-posts .related-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--secondary);
}
.related-posts {
    padding: 70px 0;
}
.related-posts .blog-card .blog-content h3 {
    line-height: 0.8;
    margin-bottom: 16px;
}
.related-posts .blog-card .blog-content h3 a {
    font-size: 18px;
    color: var(--heading);
}
.related-posts .blog-card .blog-content .meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}
.related-posts .blog-card .blog-content .meta a {
    font-size: 0.875rem;
    font-family: var(--heading-font);
    color: var(--heading);
    font-weight: 500;
    opacity: 0.6;
    border: 1px solid #ddd;
    padding: 5px 12px;
    display: inline-flex;
    border-radius: 50px;
    line-height: 1;
    background-color: #eee;
}
.blog-card .blog-image .wp-post-image {
    aspect-ratio: 1.3;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}
.blog-card .blog-content .read-more {
    font-size: 1rem;
    color: #f59e0b;
}
.related-slider .related-prev {
    position: absolute;
    top: 90px;
    left: 0;
    z-index: 1;
    min-width: 50px;
    height: 50px;
    display: none !important;
    align-items: center;
    justify-content: center;
    background-color: #f59e0b70;
    border-radius: 50px;
    color: #fff;
    backdrop-filter: blur(2px);
}
.related-slider .related-next {
    position: absolute;
    top: 90px;
    right: 0;
    z-index: 1;
    min-width: 50px;
    height: 50px;
    display: none !important;
    align-items: center;
    justify-content: center;
    background-color: #f59e0b70;
    border-radius: 50px;
    color: #fff;
    backdrop-filter: blur(2px);
}
.workshop-benefits.services-dt h2 {
    font-size: 34px;
}
.single-service p {
    margin-bottom: 1rem;
}
.wp-block-table {
    overflow: auto;
}
.wp-block-table table thead th {
    white-space: nowrap;
}
.wp-block-table table th, .wp-block-table table td {
    padding: 0 10px 0 0;
}
.sub-menu .current-menu-item a, .current_page_item a, .current-menu-parent > a {
    color: #f59e0b !important;
}
.am-fs__wrapper {
    margin: 0 auto !important;
}
.performance-cards {
    background-color: #fff7ed;
    padding: 1rem;
    border-radius: 5px 0.875rem 0.875rem 0.875rem;
    border: 1px solid #f59e0b36;
    height: 100%;
    position: relative;
}
.performance-cards h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    background-color: #fff7ed;
    padding: 5px 15px;
    border-radius: 5px 5px 0 0;
    border: 1px solid #f59e0b36;
    border-bottom: none;
    display: inline-block;
    position: absolute;
    top: -34px;
    left: 16px;
}

.am-button.am-button-continue {
    position: relative;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px;
    padding: 16px 36px !important;
    background: var(--secondary) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    font-family: var(--heading-font) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border: none !important;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25);
    min-height: 48px;
}
.am-button.am-button-continue:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;  
}
.am-button.am-button-continue:hover::before {
    transform: translateX(100%);
}
.am-button.am-button-continue:hover {
    background: #f7b032 !important;
    color: var(--white) inherit;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.45) !important;
}


section.single-page-section ul {
    display: flex;
    column-gap: 24px;
    flex-wrap: wrap;
    row-gap: 24px;
    margin-bottom: 1.5rem;

    padding: 20px !important;
    box-shadow: 0 0px 15px #0000000f;
    background-color: #fff7ed;
    border-radius: 10px;
    border: 1px solid var(--secondary) !important;
}
section.single-page-section ul li {
    padding: 16px 16px 16px 16px !important;
    box-shadow: 0 15px 15px #0000000f;
    background-color: #fff;
    border-radius: 10px;
    border-left: 3px solid var(--secondary) !important;
    min-width: 200px;
}
section.single-page-section ul li::before {
    display: none;
}
section.single-page-section ul li strong {
    color: var(--secondary) !important;
}
section.single-page-section ul li a {
    text-decoration: underline !important;
    color: var(--secondary) !important;
}
.sidebar-col {
    padding: 16px 16px 16px 16px !important;
    box-shadow: 0 15px 15px #0000000f;
    background-color: #fff;
    border-radius: 10px;
    border-left: 3px solid var(--secondary) !important;
}
.woocommerce span.onsale {
    background-color: #f59e0b;
    line-height: 2.7;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
    color: #f59e0b;
}
.woocommerce ul.products li.product .button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 16px;
    border: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25);
    margin-top: 0;
}
.woocommerce ul.products li.product .button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.woocommerce ul.products li.product .button:hover::before {
    transform: translateX(100%);
}
.woocommerce ul.products li.product a img {
    aspect-ratio: 1;
    border-radius: 10px;
    border: 1px solid #eee;
    object-fit: cover;
}
.woocommerce .woocommerce-ordering select {
    vertical-align: top;
    width: 100%;
    height: 55px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    padding: 0 20px;
    background: #ffffff;
    color: var(--heading);
    font-family: var(--body-font);
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.woocommerce-page .site-header {
    background-color: #0f172a;
}
.woocommerce-page .site-header.sticky {
    background-color: rgba(255, 255, 255, .98);
}


.single.single-product .woocommerce-breadcrumb {
    margin-top: 102px;
}
.woocommerce-shop section.workshop-benefits {
    padding-bottom: 30px;
}
.woocommerce ul.products {
    column-gap: 24px;
    row-gap: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.woocommerce ul.products:after,
.woocommerce ul.products:before {
    display: none;
}
.woocommerce ul.products li.product,
.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product {
    border-radius: 10px;
    border: 1px solid #eee;
    background-color: #fff;
    box-shadow: 0 0 15px #0000001c;
    height: auto;
    float: unset !important;
    margin: 0 !important;
    padding: 1rem 1rem 5rem;
    width: 100%;
    position: relative;
}
.woocommerce ul.products li.product .button.product_type_simple {
    position: absolute;
    bottom: 1.3rem;
    left: 1rem;
    z-index: 0;
}
.woocommerce ul.products li.product a.woocommerce-loop-product__link .woocommerce-loop-product__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
    padding: 0;
    margin: 0 0 0.5rem;
}

/*.woocommerce-shop .woocommerce-notices-wrapper {
    display: none;
}*/

.single-product .product-page-outer {
    padding: 200px 0 0;
}
.single-product.woocommerce div.product .product_title.entry-title {
    font-size: 42px;
    line-height: 1.3;
    margin: 0 0 16px;
}
.single-product.woocommerce .summary.entry-summary {
    margin: 0 0 2rem;
}
.single-product.woocommerce .cart {
    margin: 0 !important;
    padding: 1rem 0;
}
.single-product.woocommerce .cart .input-text.qty {
    width: 100%;
    height: 55px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    padding: 0 20px;
    background: #fff;
    color: var(--heading);
    font-family: var(--body-font);
    font-size: 16px;
    transition: all 0.3s ease;
    max-width: 100px;
}
.single-product.woocommerce .cart button.button,
.button.wc-forward,
button.button,
a.button,
.form-row.place-order button.button {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--secondary) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 16px;
    border: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25);
    height: 55px;
    min-width: 80px;
}
.single-product.woocommerce .cart button.button:before,
.button.wc-forward:before,
button.button:before,
a.button:before,
.form-row.place-order button.button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.single-product.woocommerce .cart button.button:hover:before,
.button.wc-forward:hover:before,
button.button:hover:before,
a.button:hover:before,
.form-row.place-order button.button:hover:before {
    transform: translateX(100%);
}
.single-product.woocommerce .summary.entry-summary .price {
    color: #f59e0b;
    font-weight: 600;
}
/*.woocommerce-product-gallery__image img.wp-post-image {
    max-width: 100%;
}*/
.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
    column-gap: 10px;
    row-gap: 10px;
    margin: 10px 0;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
    aspect-ratio: 1.0;
    max-width: 100px;
    border-radius: 12px;
    border: 1px solid #eee;
}
.woocommerce div.product div.images .flex-control-thumbs li {
    width: auto;
    float: none !important;
}
.single-product .product-page-outer .related.products {
    padding: 35px 0 110px;
}
.woocommerce-Tabs-panel h2 {
    font-size: 24px;
    display: none;
}
.single-product .product-page-outer .related.products h2 {
    margin-bottom: 24px;
    font-size: 42px;
    line-height: 1.4;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    background-color: transparent !important;
    margin: 0;
    padding: 0;
    line-height: 1;
    border-bottom: 2px solid #f59e0b !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before {
    display: none;
}
.input-text {
    width: 100% !important;
    height: 55px !important;
    border-radius: 12px !important;
    border: 1px solid #E2E8F0 !important;
    padding: 0 20px !important;
    background: #ffffff !important;
    color: var(--heading) !important;
    font-family: var(--body-font) !important;
    font-size: 16px !important;
    transition: all 0.3s ease;
}
.select2-selection.select2-selection--single .select2-selection__rendered {
    line-height: 2.3;
    padding: .5em 0 !important;
}
.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
    display: flex;
    column-gap: 10px;
    align-items: start;
}
.woocommerce-shipping-fields .woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox .woocommerce-form__input.input-checkbox {
    position: relative;
    top: 10px;
    width: 20px;
    height: 20px;
}
.woocommerce-billing-fields .woocommerce-form__label-for-checkbox.checkbox input {
    position: relative;
    top: 7px;
}
.woocommerce-cart-form__contents tbody a {
    color: #f59e0b;
}
.top-cart-sec {
    display: inline-flex;
    align-items: center;
    column-gap: 20px;
    margin-left: 20px;
}
.top-cart-sec .cartmenuBtn {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    padding: 5px 5px;
    position: relative;
}
.site-header.sticky .top-cart-sec .cartmenuBtn {
    color: #000;
}
.top-cart-sec .cartmenuBtn span {
    position: absolute;
    left: 20px;
    font-size: 13px;
    top: -1px;
    min-width: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #f59e0b;
    color: #fff;
    height: 16px;
    padding: 1px 0 2px;
}
.header__right .btn-theme {
    padding: 16px 20px;
}
.woocommerce-page .site-header.sticky .cartmenuBtn {
    color: #000;
}
.woocommerce-order section {
    padding: 30px 0 !important;
    margin: 0 !important;
}
.product_meta {
    display: flex;
    flex-direction: column;
}
.product_meta span a {
    color: #f59e0b;
}
.woocommerce-order section section {
    padding: 0 !important;
    margin: 0 !important;
}
.woocommerce-order-received section.workshop-benefits {
    padding-top: 110px !important;
}
.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    background-color: #eee;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 10px;
}
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-size: 24px;
    color: #f59e0b;
    font-weight: 600;
}
.woocommerce .woocommerce-customer-details address {
    background-color: #eee;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 10px;
    font-style: normal;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, .1) !important;
}
.showlogin {
    color: #f59e0b;
}