:root {
    --dark-gray: #333333;
    --brand-orange: #ff9656;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --gradient-start: #ff9656;
    --gradient-end: #ff7e29;
    --accent-purple: #9161f5;
    --accent-blue: #61a0f5;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-gray);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-orange);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gray);
}

/* Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 150, 86, 0.5);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor.expand {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 150, 86, 0.2);
}

/* Header & Navigation (legacy alt header, unused by current markup but kept) */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

header.hidden {
    transform: translateY(-100%);
}

.logo-container {
    padding: 5px 0;
}

.logo-container img {
    height: 50px;
    transition: all 0.5s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 5px;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover:before,
.nav-link.active:before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-orange);
}

.login-btn {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(255, 150, 86, 0.3);
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 150, 86, 0.4);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

/* Hero Section (legacy alt hero, unused by current markup but kept) */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    margin-bottom: 20px;
    background: gray;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--white);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px;
    display: inline-block;
    text-align: center;
}

.hero-subtitle3 {
    font-size: .80rem;
    margin-bottom: 30px;
    color: var(--white);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px;
    display: inline-block;
    width: 90%;
    max-width: 1200px;
    box-sizing: border-box;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 0px;
    width: 100%;
}

.divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 15px;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.button-container {
    display: flex;
    gap: 20px;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: bold;
    border: 1px solid #fff;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-filled {
    display: inline-block;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-filled:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .hero-subtitle3 {
        width: 95%;
        padding: 15px 10px;
    }

    .btn-outline, .btn-filled {
        min-width: 100px;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .divider {
        width: 80%;
        height: 1px;
        margin: 5px 0;
    }

    .cta-section {
        align-items: center;
        width: 100%;
    }

    .button-container {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .button-container {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .btn-outline, .btn-filled {
        width: 90%;
        min-width: auto;
        text-align: center;
    }
}

.hero-images {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    object-fit: cover;
}

.hero-image.active {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 180px;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--brand-orange);
}

/* Feature Cards (legacy, unused by current markup but kept) */
.feature-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    transition: height 0.5s ease;
}

.feature-card:hover:before {
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--light-gray), #e9ecef);
    font-size: 2rem;
    color: var(--brand-orange);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    transform: rotateY(360deg);
}

.feature-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.feature-text {
    color: #666;
    margin-bottom: 20px;
}

.feature-link {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: var(--dark-gray);
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* Solutions (legacy, unused) */
.solution-tab-container {
    margin-bottom: 20px;
}

.solution-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    margin-bottom: 30px;
}

.solution-tab {
    flex: 1 1 auto;
    min-width: 120px;
    max-width: 200px;
    padding: 10px 15px;
    font-size: 1rem;
    border: none;
    background-color: #eee;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
}

.solution-tab.active {
    background-color: #ccc;
}

.solution-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.solution-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-image:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.solution-body {
    padding: 25px;
}

.solution-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.solution-text {
    color: #666;
    margin-bottom: 20px;
}

/* Contact (legacy alt block, unused by current markup but kept) */
.contact-info-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-content {
    flex-grow: 1;
}

.contact-info-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.contact-info-text {
    color: #666;
}

.contact-form-container {
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 10px;
    display: block;
}

.contact-form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.contact-form-input:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(255, 150, 86, 0.2);
    outline: none;
}

.contact-form-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-btn:hover {
    box-shadow: 0 10px 30px rgba(255, 150, 86, 0.3);
    transform: translateY(-3px);
}

/* Back to Top Button (legacy, unused) */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border: none;
    box-shadow: 0 5px 15px rgba(255, 150, 86, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 150, 86, 0.4);
}

/* Load Animation (legacy, unused) */
.load-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--dark-gray), #444);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Generic modal (legacy, unused by current markup but kept) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 100%;
    max-width: 500px;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(50px) scale(0.9);
    transition: all 0.3s ease;
}

.modal.open .modal-container {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--dark-gray);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

@keyframes image-float {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    50% { transform: translateY(-10px) scale(1.03) rotate(0.5deg); }
    100% { transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes cvSpinAnimation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   ACTIVE THEME (this :root intentionally overrides
   the legacy one above for the current layout)
   ============================================ */
:root {
    --primary: #ff9656;
    --white: #ffffff;
    --gray: #808080;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--white);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 8px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: var(--dark-gray);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.8s;
}

.hero-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 1.1s;
    cursor: pointer;
}

.hero-btn:hover {
    background-color: transparent;
    color: var(--primary);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* About Section */
.about {
    padding: 100px 5%;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    top: 15px;
    left: 15px;
    z-index: -1;
}

/* Video Section */
.video-section {
    padding: 100px 5%;
    background-color: var(--light-gray);
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-play {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.1);
}

.video-overlay:hover .video-play {
    transform: scale(1.1);
}

/* Services Section */
.services {
    padding: 100px 5%;
    background-color: var(--white);
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 40px 30px;
    width: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--primary);
    transition: height 0.3s ease;
}

.service-card:hover:before {
    height: 100%;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.service-desc {
    color: var(--gray);
    line-height: 1.6;
}

/* Program Section */
.program {
    padding: 100px 5%;
    background-color: var(--light-gray);
}

.program-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 15px 25px;
    margin: 0 10px 10px;
    background-color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.program-content {
    max-width: 900px;
    margin: 0 auto;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s forwards;
}

.tab-content.active {
    display: block;
}

.program-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.program-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 2rem;
}

.program-info {
    flex: 1;
    min-width: 200px;
}

.program-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.program-desc {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--dark-gray);
}

.meta-item i {
    color: var(--primary);
    margin-right: 10px;
}

.program-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.program-btn:hover {
    background-color: var(--dark-gray);
}

/* Testimonial Section */
.testimonials {
    padding: 100px 5%;
    background-color: var(--white);
    position: relative;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    padding: 0 40px;
    color: var(--dark-gray);
}

.testimonial-quote:before, .testimonial-quote:after {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    position: absolute;
    opacity: 0.3;
}

.testimonial-quote:before {
    top: -20px;
    left: 0;
}

.testimonial-quote:after {
    bottom: -60px;
    right: 0;
}

.testimonial-author {
    margin-bottom: 15px;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.author-role {
    color: var(--primary);
    font-size: 0.9rem;
}

.slider-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--dark-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 100px 5%;
    background-color: var(--light-gray);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 20px;
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.contact-text p, .contact-text a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.contact-text a:hover {
    color: var(--primary);
}

.contact-map {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 150, 86, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.char-counter {
    color: #999;
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
}

.submit-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.submit-btn:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

.book-meeting-cta {
    margin-bottom: 25px;
}

/* CTA Section */
.cta {
    padding: 80px 5%;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: var(--white);
    color: var(--primary);
}

.primary-btn:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

.secondary-btn {
    border: 2px solid var(--white);
    color: var(--white);
}

.secondary-btn:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--gray);
    padding: 50px 5% 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--white);
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact .contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact .contact-text {
    color: var(--white);
    line-height: 1.6;
    opacity: 0.8;
}

.footer-contact .contact-text a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-text a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--white);
    opacity: 0.6;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar .nav-links.active {
        left: 0;
    }

    .navbar .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .about-text,
    .about-image {
        flex: 100%;
    }

    .about-image {
        margin-top: 30px;
    }

    .service-card {
        width: 100%;
        max-width: 350px;
    }

    .contact-info,
    .contact-form {
        flex: 100%;
    }

    .contact-form {
        margin-top: 40px;
    }

    .footer-content > div {
        flex: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
        margin: 0 5px 10px;
    }

    .program-card {
        flex-direction: column;
        text-align: center;
    }

    .program-icon {
        margin: 0 auto 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto 15px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Pricing Section (Remote Workforce page) */
.pricing-section {
    background-color: var(--light-gray);
    padding: 70px 0;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.popular:before {
    content: 'Most Popular';
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 4px 35px;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.pricing-card.popular {
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-header {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
}

.pricing-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-orange);
    margin-bottom: 8px;
}

.pricing-period {
    color: #666;
    font-size: 0.8rem;
}

.pricing-features {
    padding: 20px 15px;
    list-style: none;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-feature {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px dashed #eee;
    font-size: 0.85rem;
    text-align: left;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    margin-right: 8px;
    color: var(--brand-orange);
}

.pricing-cta {
    padding: 0 15px 15px;
    margin-top: auto;
    margin-bottom: 5px;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid var(--brand-orange);
    background-color: transparent;
    color: var(--brand-orange);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-btn:hover {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
}

.pricing-card.popular .pricing-btn {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
}

.pricing-card.popular .pricing-btn:hover {
    background: transparent;
    color: var(--brand-orange);
}

/* Remote Workforce page hero band */
.bm-hero-band {
    padding-top: 120px;
    position: relative;
    min-height: 50vh;
    text-align: center;
    background: linear-gradient(to bottom, gray, #c0c0c0);
}

.bm-hero-band-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.bm-hero-band-title {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
}

.bm-hero-band-title span {
    color: #222;
}

.bm-hero-band-text {
    font-size: 1.2rem;
    color: #555;
}

/* Virtual Staff Request Modal */
.vs-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    font-family: Arial, sans-serif;
    color: #333;
}

.vs-modal-container {
    background: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 95%;
    max-width: 850px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    position: relative;
}

.vs-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}

.vs-modal-heading {
    margin: 0;
    font-size: 28px;
    color: #222;
    text-align: center;
}

.vs-modal-subheading {
    margin-top: 8px;
    font-size: 20px;
    color: #ff6600;
    text-align: center;
}

.vs-modal-hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #ddd;
}

.vs-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.vs-form-col {
    flex: 1;
    min-width: 200px;
}

.vs-label {
    font-weight: bold;
}

.vs-input {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.vs-input-small {
    width: 120px;
    padding: 8px;
    margin-left: 10px;
    display: inline-block;
}

.vs-subheading {
    margin: 20px 0 10px;
    font-size: 18px;
    color: #444;
}

.vs-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.vs-submit-wrap {
    margin-top: 30px;
    text-align: center;
}

.vs-submit-btn {
    background: #ff6600;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.vs-btn-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   BOOK A MEETING PAGE
   ============================================ */
.bm-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}
@media (max-width: 850px) {
	.bm-grid {
		grid-template-columns: 1fr;
	}
}

.bm-card {
	background: #fff;
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.bm-cal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}
.bm-cal-header h3 {
	font-size: 1.1rem;
	color: var(--dark-gray, #333);
}
.bm-cal-nav {
	background: var(--light-gray, #f5f5f5);
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.2s ease;
}
.bm-cal-nav:hover {
	background: var(--primary, #ff9656);
	color: #fff;
}

.bm-cal-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	text-align: center;
	font-size: 0.75rem;
	font-weight: 600;
	color: #999;
	margin-bottom: 5px;
}

.bm-cal-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.bm-cal-day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-size: 0.85rem;
	cursor: pointer;
	background: var(--light-gray, #f5f5f5);
	color: var(--dark-gray, #333);
	transition: all 0.2s ease;
	border: 2px solid transparent;
}
.bm-cal-day.bm-disabled {
	color: #ccc;
	cursor: not-allowed;
	background: transparent;
}
.bm-cal-day.bm-empty {
	visibility: hidden;
	cursor: default;
}
.bm-cal-day:not(.bm-disabled):not(.bm-empty):hover {
	background: #ffe3cc;
}
.bm-cal-day.bm-selected {
	background: var(--primary, #ff9656);
	color: #fff;
	border-color: var(--primary, #ff9656);
}

.bm-duration-toggle {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}
.bm-duration-toggle label {
	font-size: 0.9rem;
	color: var(--dark-gray, #333);
	cursor: pointer;
}

.bm-slots {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
	gap: 8px;
	max-height: 320px;
	overflow-y: auto;
	padding-right: 5px;
}

.bm-slot-btn {
	padding: 10px 5px;
	border-radius: 8px;
	border: 2px solid #eee;
	background: #fff;
	color: var(--dark-gray, #333);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}
.bm-slot-btn:hover:not(:disabled) {
	border-color: var(--primary, #ff9656);
}
.bm-slot-btn.bm-selected {
	background: var(--primary, #ff9656);
	border-color: var(--primary, #ff9656);
	color: #fff;
}
.bm-slot-btn:disabled {
	background: #f5f5f5;
	color: #ccc;
	border-color: #f5f5f5;
	cursor: not-allowed;
	text-decoration: line-through;
}

.bm-modal {
	display: none;
	position: fixed;
	z-index: 99998;
	left: 0; top: 0;
	width: 100%; height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.6);
}
.bm-modal.bm-open {
	display: flex;
	align-items: center;
	justify-content: center;
}
.bm-modal-container {
	background: #fff;
	margin: 5% auto;
	padding: 30px;
	border-radius: 12px;
	width: 95%;
	max-width: 480px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.25);
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
}
.bm-modal-close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	color: #666;
}
.bm-confirm-summary {
	background: var(--light-gray, #f5f5f5);
	border-radius: 8px;
	padding: 15px 20px;
}
.bm-confirm-summary div {
	padding: 6px 0;
	font-size: 0.95rem;
	border-bottom: 1px dashed #ddd;
}
.bm-confirm-summary div:last-child {
	border-bottom: none;
}

@media (max-width: 480px) {
	.bm-slots {
		grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
	}
	.bm-modal-container {
		padding: 20px;
	}
}