:root {
    /* ===== PRIMARY BRAND COLORS ===== */
    --color-primary: #ff7a00;
    --color-secondary: #ff9f1a;
    --color-gradient: linear-gradient(135deg, #ff7a00, #ff9f1a);
    --color-gradient2: linear-gradient(135deg, #fff5e9, #fff);
    --color-orange-light: #fff5e9;
    --color-orange-soft: #ffe4d5;
    --color-hover: #ff7342;
    /* ===== DARK THEME / FOOTER COLORS ===== */
    --color-dark-primary: #0f172a;
    --color-dark-secondary: #1e293b;
    --color-dark-gradient: linear-gradient(135deg, #0f172a, #1e293b);
    --color-purple-dark: #3a1d6e;
    /* Used in flip cards back */

    /* ===== NEUTRAL / GRAY SCALE ===== */
    --color-gray-50: var(--bg-light);
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;

    /* ===== BACKGROUND COLORS ===== */
    --bg-body: #f6f4ef;
    --bg-white: #ffffff;
    --bg-light: var(--bg-light);
    --bg-card-hover: #fff5ed;

    /* ===== TEXT COLORS ===== */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-white: #ffffff;

    /* ===== STATUS / BADGE COLORS ===== */
    --color-success: #22c55e;
    --color-success-dark: #16a34a;
    --color-success-gradient: linear-gradient(135deg, #22c55e, #16a34a);

    --color-danger: #ef4444;
    --color-danger-dark: #dc2626;
    --color-danger-gradient: linear-gradient(135deg, #ef4444, #dc2626);

    --color-warning: #f59e0b;
    --color-warning-dark: #d97706;
    --color-warning-gradient: linear-gradient(135deg, #f59e0b, #d97706);

    --color-info: #38bdf8;
    /* Used in AJAX icon */
    --color-info-dark: #0ea5e9;

    /* ===== BORDER COLORS ===== */
    --border-light: #f1f5f9;
    --border-default: #e2e8f0;
    --border-soft-orange: #ffe4d5;
    --border-orange: #ff9f1a;

    /* ===== SHADOWS ===== */
    --shadow-sm: 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.08);

    --shadow-orange-sm: 0 10px 20px rgba(255, 122, 0, 0.2);
    --shadow-orange-md: 0 15px 30px rgba(255, 122, 0, 0.3);
    --shadow-orange-lg: 0 30px 50px -15px rgba(255, 122, 0, 0.25);
    --shadow-orange-xl: 0 25px 40px -8px rgba(255, 122, 0, 0.35);

    --shadow-success: 0 8px 16px rgba(34, 197, 94, 0.25);
    --shadow-danger: 0 8px 16px rgba(239, 68, 68, 0.2);
    --shadow-warning: 0 8px 16px rgba(245, 158, 11, 0.25);

    /* ===== BORDER RADIUS ===== */
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 18px;
    --radius-2xl: 20px;
    --radius-3xl: 24px;
    --radius-4xl: 28px;
    --radius-5xl: 32px;
    --radius-full: 50px;
    --radius-circle: 50%;

    /* ===== TYPOGRAPHY ===== */
    --font-family: 'Inter', sans-serif;

    --font-size-xs: 13px;
    --font-size-sm: 14px;
    --font-size-base: 15px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 22px;
    --font-size-3xl: 24px;
    --font-size-4xl: 26px;
    --font-size-5xl: 28px;
    --font-size-6xl: 32px;
    --font-size-7xl: 36px;
    --font-size-8xl: 40px;
    --font-size-9xl: 42px;
    --font-size-10xl: 48px;
    --font-size-11xl: 64px;

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* ===== SPACING ===== */
    --spacing-1: 4px;
    --spacing-2: 8px;
    --spacing-3: 12px;
    --spacing-4: 14px;
    --spacing-5: 16px;
    --spacing-6: 18px;
    --spacing-7: 20px;
    --spacing-8: 22px;
    --spacing-9: 24px;
    --spacing-10: 25px;
    --spacing-11: 28px;
    --spacing-12: 30px;
    --spacing-13: 32px;
    --spacing-14: 35px;
    --spacing-15: 40px;
    --spacing-16: 48px;
    --spacing-17: 50px;
    --spacing-18: 60px;
    --spacing-19: 64px;
    --spacing-20: 70px;
    --spacing-21: 80px;
    --spacing-22: 100px;
    --spacing-23: 120px;
    --spacing-24: 140px;
    --spacing-25: 180px;

    /* ===== CONTAINER SIZES ===== */
    --container-width: 90%;
    --container-max-width: 1280px;
    --container-inner-max: 1200px;

    /* ===== TRANSITIONS ===== */
    --transition-fast: 0.3s ease;
    --transition-base: 0.4s ease;
    --transition-slow: 0.6s ease;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* ===== Z-INDEX ===== */
    --z-dropdown: 1;
    --z-header: 100;
    --z-fixed: 999;
    --z-modal: 1000;
    --z-popover: 1050;
    --z-tooltip: 1100;
    --z-toast: 1200;

    /* ===== GRID BREAKPOINTS (for reference) ===== */
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;

    /* ===== COMPONENT SPECIFIC ===== */
    /* Header */
    --header-padding: 25px 0;
    --header-inner-padding: 28px 20px;
    --header-border-radius: 18px;

    /* Buttons */
    --btn-padding: 14px 32px;
    --btn-border-radius: 50px;

    /* Cards */
    --card-padding: 40px 30px;
    --card-padding-sm: 30px 20px;
    --card-border-radius: 24px;
    --card-border-radius-lg: 28px;
    --card-border-radius-xl: 32px;

    /* Icons */
    --icon-size-sm: 60px;
    --icon-size-md: 70px;
    --icon-size-lg: 80px;
    --icon-size-xl: 90px;
    --icon-size-2xl: 100px;
    --icon-size-3xl: 120px;

    --icon-border-radius: 18px;
    --icon-border-radius-lg: 28px;
    --icon-border-radius-xl: 30px;
    --icon-border-radius-circle: 50%;

    /* Flip Cards */
    --flip-card-size: 80px;
    --flip-card-front-bg: #ff9f1a;
    --flip-card-back-bg: #3a1d6e;

    /* Tech Slider */
    --tech-item-width: 250px;
    --tech-item-padding: 25px;
    --tech-slider-speed: 25s linear infinite;

    /* Filter Tabs */
    --filter-btn-padding: 12px 28px;
    --filter-btn-padding-sm: 10px 20px;
    --filter-btn-border-radius: 50px;

    /* Position Cards */
    --position-card-padding: 28px;
    --position-card-border-radius: 28px;
    --skill-tag-padding: 6px 16px;
    --skill-tag-border-radius: 50px;

    /* Badges */
    --badge-padding: 8px 20px;
    --badge-padding-sm: 6px 18px;
    --badge-padding-xs: 4px 8px;
    --badge-border-radius: 50px;

    /* Forms */
    --form-control-border-radius: 16px;
    --form-control-padding: 14px 18px;
    --form-control-border-color: #e2e8f0;
    --form-control-focus-border: #ff9f1a;
    --form-control-focus-shadow: 0 0 0 4px rgba(255, 159, 26, 0.1);

    /* ===== HERO SECTION ===== */
    --hero-padding: 120px 0 180px;
    --hero-padding-md: 80px 0 120px;
    --hero-badge-bg: rgba(255, 255, 255, 0.5);
    --hero-badge-backdrop: blur(10px);
    --hero-badge-border: 1px solid rgba(255, 255, 255, 0.2);

    /* ===== STATS ===== */
    --stat-number-size: 32px;
    --stat-number-color: #ff9f1a;
    --stat-label-size: 14px;
    /* ===== FOOTER ===== */
    --footer-bg: linear-gradient(135deg, #0f172a, #1e293b);
    --footer-text: #cbd5e1;
    --footer-title-color: #ffffff;
    --footer-link-hover: #ff9f1a;
}

/* ===== DARK THEME VARIANT (if needed) ===== */
.dark-theme {
    --bg-body: #0f172a;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-light: #334155;
}

/* ===== UTILITY CLASSES USING ROOT VARIABLES ===== */
.bg-orange-gradient {
    background: var(--color-orange-gradient) !important;
}

.bg-dark-gradient {
    background: var(--color-dark-gradient) !important;
}

.text-orange-gradient {
    background: var(--color-orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-orange {
    box-shadow: var(--shadow-orange-md) !important;
}

.radius-full {
    border-radius: var(--radius-full) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body {
    /* background: #f6f4ef; */
    color: var(--color-dark-primary);
    overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--color-dark-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.section-header h2 span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
}

.section-header.light h2,
.section-header.light p {
    color: white;
    -webkit-text-fill-color: white;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(120deg, var(--color-hover), var(--color-secondary), var(--color-hover));
    background-size: 200% 200%;
    transition: background-position 0.6s ease, transform 0.3s ease;
    border: none !important;
    display: inline-block;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--color-primary);
}

.btn:hover {
    transform: translateY(-3px);
}

/* ================= HERO ================= */
.hero-section {
    padding: 70px 0 100px;
    background-image: url('./image/body-img.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

/* TEXT */
.hero-text h1 {
    font-size: 66px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-text span {
    color: var(--color-hover);
}

.hero-text p {
    max-width: 520px;
    color: #64748b;
    margin-bottom: 32px;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #000;
}

.btn-secondary {
    background: #fff;
    border: 1px solid var(--border-default);
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-dark-primary);
    font-weight: 600;
    display: inline-block;
}

.btn-secondary:hover {
    background: linear-gradient(120deg, var(--color-hover), var(--color-secondary), var(--color-hover));
    color: #fff;
}

/* Hero Stats Animation */
.hero-stats {
    display: flex;
    gap: 50px !important;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 5px;
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* IMAGE */
.hero-media {
    position: relative;
    overflow: visible;
}

.hero-media-inner {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

/* Image */
.hero-img {
    width: 100%;
    border-radius: 22px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 85% 100%, 0 100%);
    position: relative;
    z-index: 1;
    display: block;
}

/* Overlay (initially visible) */
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--color-hover), var(--color-secondary), var(--color-hover));
    z-index: 2;
    border-radius: 22px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 85% 100%, 0 100%);
    animation: revealOverlay 1.2s ease forwards;
}

/* Solino-style reveal animation */
@keyframes revealOverlay {
    0% {
        transform: translateY(0%);
    }

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

/* Floating Cards */
.client-box,
.progress-box {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.client-box {
    top: 20px;
    right: -50px;
    padding: 14px 18px;
    z-index: 3;
}

.progress-box {
    bottom: -35px;
    left: 30px;
    padding: 16px;
    z-index: 3;
}

.progress-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: conic-gradient(var(--color-hover) 0 84%, #e5e7eb 84% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 6px;
}

/* ================= RESPONSIVE HERO ================= */
@media (max-width: 1200px) {
    .hero-container {
        gap: 50px;
    }

    .hero-text h1 {
        font-size: 56px;
    }

    .client-box {
        right: -30px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-metrics {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .progress-box {
        left: 50%;
        transform: translateX(-50%);
    }

    .client-box {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0 80px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hero-stats {
        gap: 30px !important;
        justify-content: space-around;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .client-box {
        top: 10px;
        right: 10px;
        padding: 10px 14px;
    }

    .progress-box {
        bottom: -25px;
        left: 20px;
        padding: 12px;
    }

    .progress-circle {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px !important;
    }

    .stat-item {
        width: 100%;
    }

    .client-box {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
        display: inline-block;
    }

    .progress-box {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
        display: inline-block;
    }

    .hero-media {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* About Section */
/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 120px 20px;
    background: #f5f3ef;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* ================= LEFT IMAGE ================= */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.illustration-wrap {
    width: 100%;
    max-width: 500px;
}

.illustration-wrap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/* Floating Stats */
.stat-box {
    position: absolute;
    background: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 120px;
}

.stat-box strong {
    display: block;
    font-size: 18px;
    color: #ff6b00;
}

.stat-box span {
    font-size: 13px;
    color: #666;
}

.stat-top {
    top: 20px;
    right: -20px;
}

.stat-bottom {
    bottom: 20px;
    left: -20px;
}

/* ================= RIGHT CONTENT ================= */
.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-top: 70px;
    /* Important space for bg text */
}

/* Background Big Text */
.bg-title {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 100px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #cdd9f3;
    /* brighter + thicker */
    letter-spacing: 8px;
    opacity: 0.9;
    z-index: 0;
    white-space: nowrap;

}

/* Main Title */
.section-title h2 {
    position: relative;
    font-size: 38px;
    font-weight: 700;
    color: #2d1b55;
    z-index: 1;
    margin-top: 50px;

}


.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 550px;
}

.about-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-points li {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.about-points li i {
    margin-right: 10px;
    color: #6c4cff;
}

/* ================= RESPONSIVE ================= */

/* Large Tablet */
@media (max-width: 992px) {

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about-content {
        margin: 0 auto;
    }


    .about-content p {
        max-width: 100%;
    }

    .section-title {
        padding-top: 60px;
        text-align: center;
    }

    .bg-title {
        font-size: 70px;
        left: 50%;
        transform: translateX(-50%);
    }


    .stat-top {
        right: 20px;
    }

    .stat-bottom {
        left: 20px;
    }
}

/* Tablet */
@media (max-width: 768px) {

    .about-section {
        padding: 80px 20px;
    }

    .section-title {
        padding-top: 50px;
    }

    .bg-title {
        font-size: 55px;
        top: -40px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .illustration-wrap {
        max-width: 380px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .about-section {
        padding: 60px 15px;
    }

    .section-title {
        padding-top: 40px;
    }

    .bg-title {
        font-size: 38px;
        letter-spacing: 3px;
    }

    .illustration-wrap {
        max-width: 300px;
    }

    /* Stack stat cards below image */
    .stat-box {
        position: relative;
        margin: 10px auto;
        display: block;
        left: 0;
        right: 0;
    }

    .stat-top,
    .stat-bottom {
        top: 0;
        bottom: 0;
    }
}


/* Why Section */
.why-section {
    position: relative;
    padding: 100px 20px;
    background: #fff;
    overflow: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.why-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--color-purple-dark);
}

.why-title span {
    color: var(--color-primary);
}

.why-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.stats-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 60px;
    position: relative;
}

.stat {
    position: relative;
}

.stat h3 {
    font-size: 32px;
    color: #4b2ca3;
    margin-bottom: 6px;
}

.stat p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.stat.divider::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background: #f3b183;
}

.highlight-box {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.highlight-box h3 {
    font-size: 40px;
    margin-bottom: 5px;
}

.highlight-box p {
    font-size: 14px;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #333;
}

/* ================= RESPONSIVE WHY SECTION ================= */
@media (max-width: 992px) {
    .why-content {
        grid-template-columns: 1fr;
    }

    .stats-card {
        grid-template-columns: 1fr;
    }

    .highlight-box {
        padding: 30px;
    }

    .why-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 60px 20px;
    }

    .why-title h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .stats-card {
        padding: 30px 20px;
    }

    .stats-grid {
        gap: 20px 30px;
    }

    .stat h3 {
        font-size: 28px;
    }

    .stat.divider::before {
        left: -15px;
    }

    .highlight-box h3 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat.divider::before {
        display: none;
    }

    .stat {
        text-align: center;
    }
}

/* Service Section */
.service-section {
    padding: 100px 20px;
}

.service-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 20px;
}

/* ================= LEFT VISUAL ================= */
.service-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Illustration */
.service-visual .illustration-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.service-visual .illustration-wrap img {
    width: 70%;
    max-width: 100%;
    height: auto;
}

/* ================= RIGHT CONTENT ================= */
.service-content .section-tag {
    font-weight: 700;
    letter-spacing: 2px;
    color: #d1d1d1;
    display: inline-block;
    margin-bottom: 10px;
}

.service-content h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #2d1b55;
    margin-bottom: 20px;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-points li {
    margin-bottom: 12px;
    padding: 25px 30px;
    border-bottom: 1px dashed #444;
    position: relative;
    color: #444;
    font-size: 20px;
}

/* ================= RESPONSIVE SERVICE SECTION ================= */
@media (max-width: 992px) {
    .service-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .service-visual .illustration-wrap img {
        width: 90%;
    }

    .service-content .section-title {
        margin-left: auto;
        margin-right: auto;
    }

    .service-content h2 {
        font-size: 32px;
    }

    .service-points {
        display: inline-block;
        text-align: left;
    }

    .service-points li {
        padding: 15px 20px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .service-section {
        padding: 60px 20px;
    }

    .service-content h2 {
        font-size: 28px;
    }

    .service-content p {
        font-size: 15px;
    }

    .service-points li {
        padding: 12px 15px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .service-points li {
        padding: 10px;
    }
}

/* Features Section */
.features-section {
    padding: 120px 20px;
    background: #f5f5f7;
    text-align: center;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

/* Card */
.feature-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
}

.feature-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
    background-color: #f6f4ef;
    transform: translateY(-5px);
}

.feature-card:hover .read-more {
    color: var(--color-primary);
}

/* Icon */
.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: #f6f4ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
}

/* Headings */
.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111827;
}

/* Text */
.feature-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Read More */
.read-more {
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--color-primary);
}

/* Bottom Help Text */
.help-text {
    margin-top: 60px;
    color: #6b7280;
    font-size: 15px;
}

.help-text a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

/* ================= RESPONSIVE FEATURES ================= */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card h4 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Projects Section */
.project-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.projects-card {
    position: relative;
    top: 120px;
    min-height: 650px;
    margin-bottom: 200px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.20);
    z-index: 1;
    clip-path: inset(0 round 20px);
    border: 1px solid #dad6d6;
}

.card-inner {
    padding: 80px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Blob style */
.blob {
    position: absolute;
    z-index: 0;
    opacity: 0.15;
    border-radius: 50%;
}

.blob-top {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #b55dcd, var(--color-hover));
    top: -80px;
    right: -80px;
}

.blob-bottom {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, var(--color-hover), #b55dcd);
    bottom: -80px;
    left: -80px;
}

.projects-card:not(:first-child) {
    margin-top: -150px;
}

.projects-card:nth-child(1) {
    z-index: 1;
}

.projects-card:nth-child(2) {
    z-index: 2;
}

.projects-card:nth-child(3) {
    z-index: 3;
}

.projects-card:nth-child(4) {
    z-index: 4;
}

.projects-card+.projects-card {
    margin-top: -120px;
}

.project1,
.project2,
.project3,
.project4 {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.projects-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.projects-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.projects-points li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #444;
}

.about-points li i,
.why-list li i,
.service-points li i,
.projects-points i {
    color: var(--color-purple-dark);
    margin-right: 10px;
}

@keyframes floatStat {

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

    50% {
        transform: translateY(-25px);
    }
}

/* Solution Visual Modern */
.solution-visual-modern {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-mockup {
    width: 400px;
    height: 300px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
}

.visual-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

.project-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.fs1 {
    top: 15%;
    left: -5%;
    animation: floatStat 5s ease-in-out infinite;
}

.fs2 {
    bottom: 20%;
    right: -5%;
    animation: floatStat 6s ease-in-out infinite 1s;
}

.floating-stat {
    position: absolute;
    background: white;
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.floating-stat i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.fs-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* ================= RESPONSIVE PROJECTS ================= */
@media (max-width: 1200px) {
    .card-inner {
        padding: 60px 40px;
    }

    .project1,
    .project2,
    .project3,
    .project4 {
        display: flex;
        flex-direction: column;
    }

    .visual-mockup {
        width: 350px;
        height: 260px;
    }

    .fs-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .projects-card {
        min-height: auto;
        margin-bottom: 150px;
    }

    .project1,
    .project2,
    .project3,
    .project4 {
        flex-direction: column;
        gap: 2rem;
    }

    .order-1 {
        order: 1;
    }

    .order-2 {
        order: 2;
    }

    .card-inner {
        padding: 40px 30px;
    }

    .solution-visual-modern {
        height: 400px;
    }

    .visual-mockup {
        width: 300px;
        height: 220px;
    }

    .floating-stat {
        padding: 0.75rem 1rem;
    }

    .floating-stat i {
        font-size: 1.5rem;
    }

    .fs-value {
        font-size: 1.25rem;
    }

    .projects-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .projects-card {
        top: 80px;
        margin-bottom: 120px;
    }

    .projects-card+.projects-card {
        margin-top: -80px;
    }

    .card-inner {
        padding: 30px 20px;
    }

    .blob-top {
        width: 180px;
        height: 180px;
        top: -60px;
        right: -60px;
    }

    .blob-bottom {
        width: 150px;
        height: 150px;
        bottom: -60px;
        left: -60px;
    }

    .solution-visual-modern {
        height: 350px;
    }

    .visual-mockup {
        width: 250px;
        height: 180px;
    }

    .fs1 {
        top: 10%;
        left: 0;
    }

    .fs2 {
        bottom: 15%;
        right: 0;
    }

    .projects-content h2 {
        font-size: 28px;
    }

    .projects-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .projects-card {
        top: 60px;
        margin-bottom: 100px;
    }

    .solution-visual-modern {
        height: 300px;
    }

    .visual-mockup {
        width: 200px;
        height: 150px;
    }

    .floating-stat {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

    .fs1 {
        top: 5%;
        left: 5%;
    }

    .fs2 {
        bottom: 5%;
        right: 5%;
    }
}

/* Testimonials Section */
:root {
    --gray-text: #64748B;
    --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
    background-image: url('../gym_all_logo/body-bg.webp');
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    flex: 0 0 33.333%;
    padding: 15px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    font-size: 32px;
    color: var(--color-secondary);
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-dark-primary);
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--color-purple-dark);
    border-radius: 2px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-secondary);
}

.client-details h4 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.client-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.client-company {
    color: var(--primary);
    font-weight: 600;
}


.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-default);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary);
}

@media (max-width: 992px) {
    .testimonial-slider {
        padding: 0 40px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .client-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-slider {
        padding: 0 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .client-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .testimonial-slide {
        flex: 0 0 100%;
    }

    .slider-nav {
        flex-wrap: wrap;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .testimonial-slider {
        padding: 0 15px;
    }

    .testimonial-card {
        padding: 25px 15px;
    }

    .quote-icon {
        font-size: 28px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        padding-left: 15px;
    }
}

/* General Responsive Utilities */
@media (max-width: 1200px) {

    .container,
    .hero-container,
    .about-container,
    .service-container,
    .project-container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {

    .container,
    .hero-container,
    .about-container,
    .service-container,
    .project-container {
        max-width: 720px;
    }

    .bg-title {
        font-size: 4rem;
        top: -50px;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {

    .container,
    .hero-container,
    .about-container,
    .service-container,
    .project-container {
        max-width: 540px;
    }

    .bg-title {
        font-size: 3rem;
        top: -40px;
        letter-spacing: 3px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .about-visual,
    .service-visual {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {

    .container,
    .hero-container,
    .about-container,
    .service-container,
    .project-container {
        max-width: 100%;
        /* padding: 0 15px; */
    }

    .bg-title {
        font-size: 2rem;
        top: -30px;
        letter-spacing: 2px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Fix for order classes */
.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

/* Fix for image responsiveness */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Fix for flex gaps */
.d-flex {
    display: flex;
}

.gap-5 {
    gap: 3rem;
}

/* Fix for floating elements */
@media (max-width: 768px) {
    .floating-stat {
        padding: 0.5rem 0.75rem;
    }

    .floating-stat i {
        font-size: 1.25rem;
    }
}