/**
 * Paintbrush Marketing Theme - Custom Styles
 * Based on MainFile design system
 */

/* Hero Section */
.hero__area-3 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0b0b;
    overflow: hidden;
    padding: 100px 0;
}

.hero__inner-3 {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sec-sub-title {
    font-size: 20px;
    font-weight: 300;
    color: #999;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sec-title {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.title-left {
    display: inline-block;
    margin-right: 10px;
}

.title-right {
    display: inline-block;
}

.hero__text-3 {
    max-width: 600px;
    margin: 40px auto;
}

.hero__text-animation {
    font-size: 18px;
    color: #999;
    line-height: 1.8;
}

.hero3-img-ani {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    max-width: 1195px;
    z-index: 1;
    opacity: 0.8;
}

.hero3-img {
    width: 100%;
    height: auto;
}

.scroll-down button {
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 40px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Header */
.header__area-3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    transition: all 0.3s ease;
    background: transparent;
}

.header__area-3.sticky-3 {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header__inner-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header__logo img {
    max-height: 50px;
    width: auto;
}

.main-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.menu__list li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.menu__list li a:hover {
    color: #999;
}

/* ── Desktop dropdown sub-menu ── */
.menu__list li {
    position: relative;
}

.menu__list li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    list-style: none;
    margin: 12px 0 0;
    padding: 8px 0;
    background: #111;
    border: 1px solid #262626;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.menu__list li .sub-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.menu__list li:hover > .sub-menu {
    display: block;
}

.menu__list li .sub-menu li {
    margin: 0;
    padding: 0;
}

.menu__list li .sub-menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #ccc;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.menu__list li .sub-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

/* Dropdown caret for parent items */
.menu__list > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
}

.header__nav-icon-3 {
    display: none;
}

.header__nav-icon-3 button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
}

.header__nav-icon-3 button:hover {
    color: #999;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: #999;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: #111;
    padding: 80px 30px 30px;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 1001;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: #999;
    transform: rotate(90deg);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 0;
    border-bottom: 1px solid #222;
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list li a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 18px 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-menu-list li a:hover {
    color: #999;
    padding-left: 10px;
}

/* ── Mobile sub-menu ── */
.mobile-menu-list .sub-menu {
    list-style: none;
    padding: 0 0 0 18px;
    margin: 0;
}

.mobile-menu-list .sub-menu li {
    border-bottom: 1px solid #1a1a1a;
}

.mobile-menu-list .sub-menu li:last-child {
    border-bottom: none;
}

.mobile-menu-list .sub-menu li a {
    font-size: 16px;
    font-weight: 400;
    color: #999;
    padding: 14px 0;
}

.mobile-menu-list .sub-menu li a:hover {
    color: #fff;
    padding-left: 10px;
}

/* Service Section */
.service__area-3 {
    padding: 100px 0;
    background: #000;
}

.sec-title-wrapper {
    margin-bottom: 60px;
}

.service__area-3 .sec-title {
    font-size: clamp(40px, 7vw, 80px);
}

.service__list-3 {
    display: grid;
    gap: 40px;
}

.service__item-3 {
    position: relative;
    padding: 40px;
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service__item-3:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.service__item-3 h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service__title-3 {
    color: #fff;
    transition: all 0.3s ease;
}

.service__title-3:hover {
    color: #999;
}

.service__content-3 {
    color: #999;
    margin-bottom: 20px;
}

.service__content-3 ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service__content-3 ul li {
    padding: 8px 0;
    color: #999;
}

.service__hover-3 {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service__item-3:hover .service__hover-3 {
    opacity: 0.3;
}

/* Service Cards (for service page) */
.service__card {
    padding: 30px;
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.service__card:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.service__card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.service__card p {
    color: #999;
    margin-bottom: 15px;
}

.service__card ul {
    list-style: none;
    padding: 0;
}

.service__card ul li {
    color: #999;
    padding: 5px 0;
}

.service__image {
    border-radius: 8px;
    overflow: hidden;
}

/* About Section */
.about__area-3 {
    padding: 100px 0;
    background: #0b0b0b;
}

.about__area-3 .sec-title {
    font-size: clamp(35px, 6vw, 70px);
}

.about__img-3 img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.sec-text-wrapper {
    margin-top: 30px;
}

.sec-text p {
    color: #999;
    font-size: 16px;
    line-height: 1.8;
}

.capability__card {
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.capability__card:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.capability__card i {
    color: #fff;
}

.capability__card h4 {
    color: #fff;
    font-size: 20px;
    margin: 15px 0 10px;
}

.capability__card p {
    color: #999;
    margin: 0;
}

/* Portfolio Section */
.portfolio__area-3 {
    padding: 100px 0;
    background: #000;
}

.portfolio__area-3 .sec-title {
    font-size: clamp(35px, 6vw, 70px);
}

.portfolio__area-3 .row {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
}

/* Only target Bootstrap column classes (col-), not portfolio-fw-col */
.portfolio__area-3 [class*="col-"]:not(.portfolio-fw-col) {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
}

.portfolio__item-3 {
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.portfolio__item-3:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.portfolio__item-3 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

.portfolio__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

.portfolio__content {
    background: #111;
    padding: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio__title-3 {
    color: #fff;
    font-size: 24px;
    margin: 0;
    text-align: center;
    padding: 20px 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio__title-3 span {
    color: #999;
}

/* World Domination Section */
.world-domination {
    background: linear-gradient(180deg, #e8f4f8 0%, #d4e8f0 100%);
    color: #111;
    overflow: hidden;
}

.world-domination .sec-title-wrapper {
    margin-bottom: 30px;
}

.world-domination .sec-sub-title {
    color: #0b5c7a;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.world-domination .sec-title {
    color: #0a4a61;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    margin-top: 12px;
}

.world-domination__text {
    max-width: 820px;
    margin: 24px auto 0;
    color: #1a5570;
    font-size: 19px;
    line-height: 1.7;
}

.world-domination__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0c7aad 0%, #0a5c85 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(12, 122, 173, 0.35);
}

.world-domination__map-wrap {
    background: linear-gradient(180deg, #c4dce6 0%, #b0d0dd 100%);
    padding: 70px 0 80px;
}

.world-domination__map-stage {
    max-width: 1380px;
    margin: 0 auto;
    border: 3px dashed rgba(12, 122, 173, 0.25);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.world-domination__svg {
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.world-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.world-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.world-map-overlay .world-map-marker {
    pointer-events: all;
}

.world-map-land {
    fill: #8bc98f;
    stroke: #fff;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.world-map-land:hover {
    fill: #7ab87e;
}

.world-map-marker {
    cursor: pointer;
    transition: transform 0.2s ease;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
}

.world-map-marker:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

.world-map-marker:focus {
    outline: none;
}

.world-map-marker:focus .marker-dot,
.world-map-marker.is-active .marker-dot {
    fill: #1a1a1a;
    stroke: #fff;
    stroke-width: 4;
}

.world-map-marker.is-active .marker-ring {
    fill: rgba(26, 26, 26, 0.25);
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1;
}

.world-map-marker .marker-ring {
    fill: rgba(255, 59, 59, 0.3);
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1;
    animation: markerPulse 2.5s ease-in-out infinite;
}

.world-map-marker .marker-dot {
    fill: #ff3b3b;
    stroke: #fff;
    stroke-width: 3;
    transition: all 0.2s ease;
}

.world-map-marker:hover .marker-dot {
    fill: #ff1a1a;
    stroke: #fff;
    stroke-width: 3.5;
}

.world-domination__info {
    margin-top: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    border-radius: 12px;
    padding: 18px 24px;
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.world-domination__info-country {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.world-domination__info-projects {
    margin: 0;
    font-size: 15px;
    color: #bbb;
    font-weight: 500;
}

.world-map-tooltip {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(14px, -18px);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.4;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    white-space: nowrap;
}

.world-map-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
}

.world-map-tooltip__country {
    display: block;
    font-weight: 700;
}

.world-map-tooltip__projects {
    display: block;
    color: #cfcfcf;
}

@keyframes markerPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.35);
        opacity: 0.35;
    }
}

.map-stats .stat-item {
    padding: 36px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
    border: 2px solid #e3eef7;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.map-stats .stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #0c7aad;
}

.map-stats .counter__number {
    font-size: 68px;
    line-height: 1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #0c7aad 0%, #0a5c85 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-stats p {
    color: #5a6c7d;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Workflow Section */
.workflow__area-3 {
    background: #f0f0f0;
    color: #111;
}

.workflow__wrapper-3 {
    width: 100%;
}

.choose-wrapper {
    padding: 120px 0;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.choose-title-wrapper {
    text-align: center;
}

.choose-title {
    font-size: clamp(60px, 12vw, 180px);
    line-height: 0.95;
    text-transform: uppercase;
    color: #111;
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.research__area {
    background: #f5f5f5;
    padding: 100px 0;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.research__area .inner_content {
    width: 100%;
}

.research__area .sec-title-wrapper {
    margin-bottom: 30px;
}

.research__area .sec-sub-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 15px;
}

.workflow__sec-title {
    font-size: clamp(32px, 5vw, 48px);
    color: #111;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.research__area .sec-title-wrapper p {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 15px;
}

.research__tools {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.research__tools li a {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.research__tools li a:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.research__list {
    display: grid;
    gap: 20px;
}

.research__item {
    display: flex;
    gap: 24px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    align-items: center;
}

.research__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #ccc;
}

.research__number {
    flex-shrink: 0;
    min-width: 80px;
}

.research__number span {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    color: #111;
    display: block;
}

.research__info {
    flex: 1;
}

.research__title {
    font-size: 20px;
    color: #111;
    margin-bottom: 8px;
    font-weight: 700;
}

.research__info p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.counter__area-3 {
    padding: 100px 0;
    background: #f0f0f0;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.counter__area-3 .sec-title-wrapper {
    margin-bottom: 50px;
}

.counter__area-3 .sec-sub-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.counter__wrapper-3 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.counter__item-3 {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    text-align: center;
}

.counter__item-3:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #ccc;
}

.counter__item-3 .counter__number {
    color: #111;
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1;
}

.counter__item-3 p {
    color: #666;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.counter__img-3 {
    padding-left: 40px;
}

.counter__img-3 img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.cta__area-3 {
    background: #f5f5f5;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.cta__content-3 {
    max-width: 800px;
    margin: 0 auto;
}

.cta__sub-title-2 {
    color: #888;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta__title-2 {
    color: #111;
    font-size: clamp(40px, 7vw, 80px);
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 900;
}

/* Workflow Slider Styles */
.workflow-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 800px;
}

.workflow-slider-track {
    position: relative;
    width: 100%;
    min-height: 800px;
}

.workflow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    pointer-events: none;
}

.workflow-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: 1;
}

.workflow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(17, 17, 17, 0.85);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.workflow-nav:hover {
    background: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.workflow-nav-prev {
    left: 30px;
}

.workflow-nav-next {
    right: 30px;
}

.workflow-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.workflow-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #111;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.workflow-indicator:hover {
    background: rgba(17, 17, 17, 0.5);
    transform: scale(1.2);
}

.workflow-indicator.active {
    background: #111;
    width: 32px;
    border-radius: 6px;
}

/* Pricing Section */
.price__area {
    background: #0b0b0b;
    position: relative;
    overflow: hidden;
}

.price__area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #333, transparent);
}

.price__area .sec-title-wrapper {
    margin-bottom: 50px;
}

.price__area .sec-sub-title {
    color: #999;
    font-size: 16px;
    margin-bottom: 15px;
}

.price__sec-title {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.2;
    color: #fff;
    position: relative;
    padding-bottom: 20px;
}

.price__sec-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #fff, transparent);
}

.faq__list-3 {
    margin-top: 40px;
}

.faq__list-3 .accordion-item {
    border: 1px solid #222;
    margin-bottom: 14px;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    transition: all 0.3s ease;
}

.faq__list-3 .accordion-item:hover {
    border-color: #444;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.faq__list-3 .accordion-button {
    background: #111;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    box-shadow: none;
    padding: 18px 22px;
    transition: all 0.3s ease;
}

.faq__list-3 .accordion-button:not(.collapsed) {
    background: #1a1a1a;
    color: #fff;
    box-shadow: none;
}

.faq__list-3 .accordion-button:hover {
    background: #1a1a1a;
}

.faq__list-3 .accordion-button::after {
    filter: invert(1);
}

.faq__list-3 .accordion-body {
    background: #0f0f0f;
    color: #999;
    font-size: 14px;
    line-height: 1.7;
    padding: 18px 22px;
    border-top: 1px solid #222;
}

.price__table {
    margin-top: 0;
}

.price__item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #111;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 14px;
    border: 2px solid #222;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.price__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.price__item:hover {
    transform: translateY(-8px);
    border-color: #555;
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.08);
}

.price__item:hover::before {
    opacity: 1;
}

.price__item:nth-child(2) {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-color: #444;
}

.price__item:nth-child(2):hover {
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.12);
    border-color: #666;
}

.price__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.price__item:hover .price__icon {
    transform: scale(1.1) rotate(5deg);
}

.price__icon span {
    width: 48px;
    height: 48px;
    border: 2px solid #444;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.price__item:hover .price__icon span {
    background: rgba(255, 255, 255, 0.1);
    border-color: #666;
}

.price__info {
    flex: 1;
    min-width: 0;
}

.price__type {
    display: inline-block;
    border: 1px solid #444;
    border-radius: 999px;
    padding: 5px 12px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #999;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.price__item:hover .price__type {
    border-color: #666;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.price__title {
    font-size: 24px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.price__item:hover .price__title {
    letter-spacing: 0.3px;
}

.price__info p {
    color: #999;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.price__amount {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    padding-left: 20px;
}

.price__amount::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, #333, transparent);
}

.price__amount p {
    font-size: 28px;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.price__item:hover .price__amount p {
    transform: scale(1.05);
}

.best-value {
    position: absolute;
    top: -12px;
    right: 25px;
    background: linear-gradient(135deg, #fff 0%, #e8e8e8 100%);
    color: #111;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 6px;
    padding: 7px 11px;
    margin: 0 0 8px 0;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.price__btn {
    margin-top: 30px;
    text-align: left;
}

.price__btn .wc-btn-black {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
}

/* Contact Section */
.contact__area {
    background: #0b0b0b;
}

.contact__services h4,
.contact__info h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.service__list {
    list-style: none;
    padding: 0;
}

.service__list li {
    color: #999;
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

.service__list li i {
    margin-right: 10px;
    color: #fff;
}

.contact__info p {
    color: #999;
    padding: 10px 0;
}

.contact__info i {
    margin-right: 10px;
    color: #fff;
}

.contact__form {
    background: #111;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #222;
}

.contact__form h4 {
    color: #fff;
}

.form-control {
    background: #000;
    border: 1px solid #222;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
}

.form-control:focus {
    background: #0b0b0b;
    border-color: #444;
    color: #fff;
    outline: none;
    box-shadow: none;
}

.form-control::placeholder {
    color: #666;
}

/* FAQ Section */
.faq__area {
    background: #000;
}

.faq__item {
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq__item:hover {
    border-color: #444;
}

.faq__question {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
}

.faq__question i {
    margin-right: 10px;
    color: #999;
}

.faq__answer p {
    color: #999;
    margin: 0;
    line-height: 1.8;
}

/* Blog Section */
.blog__area {
    background: #0b0b0b;
}

.blog__item {
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.blog__item:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.blog__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog__content {
    background: #111;
}

.blog__meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.blog__meta i {
    margin-right: 5px;
}

.blog__title a {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.blog__title a:hover {
    color: #999;
}

.blog__excerpt {
    color: #999;
    line-height: 1.8;
}

.blog__link a {
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog__link a:hover {
    color: #999;
}

/* Buttons */
.wc-btn-light,
.wc-btn-black {
    display: inline-block;
    padding: 15px 30px;
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wc-btn-black {
    background: #000;
    color: #fff;
    border-color: #fff;
}

.wc-btn-light:hover,
.wc-btn-black:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-hover i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-hover:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer__area-3 {
    background: #0b0b0b;
    position: relative;
    overflow: hidden;
}

.footer__top-3 {
    padding: 0;
    border-bottom: 1px solid #222;
}

.footer__top-wrapper-3 {
    display: grid;
    grid-template-columns: 30% 10% auto;
    gap: 0;
    align-items: start;
    padding: 0 50px;
}

.footer__logo-3 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.footer__logo-3 img {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

.footer__logo-3 p {
    color: #999;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    max-width: 310px;
}

.footer__social-3 {
    border-left: 1px solid #222;
    border-right: 1px solid #222;
}

.footer__social-3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__social-3 ul li {
    display: block;
    border-bottom: 1px solid #222;
}

.footer__social-3 ul li:last-child {
    border-bottom: 0;
}

.footer__social-3 ul li.footer__info-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    padding: 38px 0;
    background-color: transparent;
    cursor: default;
}

.footer__social-3 ul li a {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    padding: 38px 0;
    background-color: transparent;
    transition: all 0.3s ease;
}

.footer__social-3 ul li a:hover {
    color: #0b0b0b;
    background-color: #fff;
}

.footer__contact-3 {
    text-align: right;
    padding-top: 90px;
    padding-bottom: 75px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer__contact-3 .end {
    font-weight: 400;
    font-size: 100px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer__contact-3 .end:hover {
    color: #ff2d2d;
}

.footer__btm-3 {
    padding: 50px;
}

.footer__copyright-3 p {
    color: #999;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    max-width: 235px;
}

.footer__copyright-3 a {
    color: #fff;
    transition: all 0.3s ease;
}

.footer__copyright-3 a:hover {
    color: #999;
}

.footer__nav-2 {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-menu-2 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
}

.footer-menu-2 li a {
    color: #999;
    font-size: 16px;
    line-height: 1.5;
    text-transform: lowercase;
    transition: all 0.3s ease;
}

.footer-menu-2 li a:hover {
    color: #fff;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer__top-wrapper-3 {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .footer__logo-3 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .footer__social-3 {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid #222;
        border-bottom: 1px solid #222;
        margin-top: 0;
    }

    .footer__social-3 ul li a {
        padding: 30px 0;
    }

    .footer__contact-3 {
        text-align: center;
        padding-top: 60px;
        padding-bottom: 50px;
        justify-content: center;
    }

    .footer__contact-3 .end {
        font-size: 36px;
    }

    .footer__btm-3 {
        padding: 30px 10px;
    }

    .footer__btm-3 .row {
        flex-direction: column-reverse;
    }

    .footer__copyright-3 {
        text-align: center;
        margin-top: 20px;
    }

    .footer__copyright-3 p {
        max-width: 100%;
    }

    .footer__nav-2 {
        justify-content: center;
    }

    .footer-menu-2 {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer__top-wrapper-3 {
        grid-template-columns: 35% 20% auto;
        gap: 20px;
    }

    .footer__logo-3 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .footer__social-3 ul li a {
        padding: 30px 0;
    }

    .footer__contact-3 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .footer__contact-3 .end {
        font-size: 48px;
    }

    .footer__btm-3 {
        padding: 40px 15px;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .footer__top-wrapper-3 {
        grid-template-columns: 35% 15% auto;
        gap: 20px;
    }

    .footer__contact-3 .end {
        font-size: 60px;
    }
}

/* Team Page */
.team__area-6 {
    background: #0b0b0b;
    overflow: hidden;
}

.team__area-6 .sec-title-wrapper {
    text-align: left;
    padding-bottom: 60px;
}

.team__area-6 .sec-title {
    color: #fff;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
}

.team__area-6 .sec-title-wrapper p {
    color: #999;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}

.team__slider {
    padding: 80px 0;
    overflow: hidden;
}

.team__slide {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.team__slide:nth-child(even) {
    padding-top: 100px;
}

.team__slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.team__slide:hover img {
    transform: scale(1.05);
}

.team__info {
    padding: 20px 0;
}

.team__member-name-6 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    color: #fff;
    padding-top: 20px;
    margin: 0;
}

.team__member-role-6 {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #999;
    margin: 8px 0 0;
}

.team__join-btn {
    text-align: center;
    padding: 60px 0 100px;
}

.wc-btn-primary {
    display: inline-block;
    padding: 20px 40px;
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.wc-btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.wc-btn-primary i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.wc-btn-primary:hover i {
    transform: translateX(5px);
}

.team__btm {
    background: #000;
    padding: 100px 0;
}

.team__btm .sec-title-wrapper {
    text-align: center;
}

.team__btm .sec-title {
    color: #fff;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.3;
    margin-bottom: 30px;
}

.team__btm .sec-title-wrapper p {
    color: #999;
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Line decorations */
.line {
    position: relative;
}

.line-3 {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #222;
    z-index: 1;
}

.pt-120 {
    padding-top: 120px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-150 {
    padding-top: 150px;
}

.pb-140 {
    padding-bottom: 140px;
}

/* Swiper overrides for team slider */
.team__slider .swiper-slide {
    height: auto;
}

.team__slider .swiper-wrapper {
    align-items: flex-start;
}

/* Utility Classes */
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.pt-130 { padding-top: 130px; }
.pt-140 { padding-top: 140px; }
.pb-110 { padding-bottom: 110px; }
.pb-150 { padding-bottom: 150px; }

.text-anim,
.title-anim {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .sec-title {
        font-size: 60px;
    }

    .hero3-img-ani {
        width: 100%;
        opacity: 0.5;
    }

    /* Mobile Header */
    .header__area-3 {
        padding: 15px 0;
    }

    .header__inner-3 {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .header__logo img {
        max-height: 40px;
    }

    /* Hide desktop menu on mobile */
    .main-menu {
        display: none;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
    }

    .header__nav-icon-3 {
        display: none;
    }

    /* Team Page Mobile */
    .team__area-6 .sec-title {
        font-size: clamp(36px, 10vw, 60px);
    }

    .team__area-6 .sec-title-wrapper p {
        font-size: 16px;
    }

    .team__slider {
        padding: 40px 0;
    }

    .team__slide:nth-child(even) {
        padding-top: 0;
    }

    .team__member-name-6 {
        font-size: 20px;
        padding-top: 15px;
    }

    .team__member-role-6 {
        font-size: 14px;
    }

    .team__join-btn {
        padding: 40px 0 60px;
    }

    .wc-btn-primary {
        padding: 16px 32px;
        font-size: 16px;
    }

    .team__btm {
        padding: 60px 0;
    }

    .team__btm .sec-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .team__btm .sec-title-wrapper p {
        font-size: 16px;
    }

    .pt-120 {
        padding-top: 60px;
    }

    .pt-130 {
        padding-top: 70px;
    }

    .pt-150 {
        padding-top: 80px;
    }

    .pb-140 {
        padding-bottom: 70px;
    }

    .service__item-3,
    .service__card,
    .blog__item {
        margin-bottom: 30px;
    }

    .portfolio__item-3 img,
    .portfolio__image img {
        height: 300px;
    }

    .portfolio__title-3 {
        font-size: 20px;
        padding: 15px 10px;
    }

    .world-domination__text {
        font-size: 16px;
    }

    .world-domination__map-stage {
        padding: 14px;
    }

    .world-domination__info {
        width: 100%;
    }

    .map-stats .counter__number {
        font-size: 48px;
    }

    .map-stats p {
        font-size: 18px;
    }

    .choose-title {
        font-size: clamp(48px, 12vw, 80px);
    }

    .choose-wrapper {
        padding: 80px 0;
        min-height: 700px;
    }

    .research__area {
        padding: 60px 0;
        min-height: 700px;
    }

    .workflow__sec-title {
        font-size: clamp(28px, 6vw, 36px);
    }

    .research__area .sec-title-wrapper {
        margin-bottom: 30px;
    }

    .research__area .sec-title-wrapper p {
        font-size: 15px;
    }

    .research__tools {
        margin-top: 20px;
        gap: 8px;
    }

    .research__tools li a {
        padding: 8px 14px;
        font-size: 12px;
    }

    .research__item {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
        align-items: flex-start;
    }

    .research__number {
        min-width: auto;
    }

    .research__number span {
        font-size: 38px;
    }

    .research__title {
        font-size: 18px;
    }

    .research__info p {
        font-size: 13px;
    }

    .counter__area-3 {
        padding: 60px 0;
        min-height: 700px;
    }

    .counter__area-3 .sec-title-wrapper {
        margin-bottom: 35px;
    }

    .counter__wrapper-3 {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
        gap: 16px;
    }

    .counter__item-3 {
        padding: 24px 20px;
    }

    .counter__item-3 .counter__number {
        font-size: 52px;
    }

    .counter__item-3 p {
        font-size: 14px;
    }

    .counter__img-3 {
        padding-left: 0;
        margin-top: 20px;
    }

    .cta__area-3 {
        min-height: 700px;
    }

    .cta__sub-title-2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .cta__title-2 {
        font-size: clamp(32px, 8vw, 52px);
        margin-bottom: 30px;
    }

    .counter__wrapper-3 {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }

    .workflow-slider-container {
        min-height: 700px;
    }

    .workflow-slide {
        min-height: 700px;
    }

    .workflow-nav {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .workflow-nav-prev {
        left: 15px;
    }

    .workflow-nav-next {
        right: 15px;
    }

    .workflow-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .workflow-indicator {
        width: 10px;
        height: 10px;
    }

    .workflow-indicator.active {
        width: 24px;
    }

    .price__area .sec-title-wrapper {
        margin-bottom: 35px;
    }

    .price__sec-title {
        font-size: clamp(28px, 6vw, 40px);
        padding-bottom: 15px;
    }

    .faq__list-3 {
        margin-top: 25px;
        margin-bottom: 40px;
    }

    .faq__list-3 .accordion-button {
        font-size: 14px;
        padding: 16px 18px;
    }

    .faq__list-3 .accordion-body {
        font-size: 13px;
        padding: 16px 18px;
    }

    .price__table {
        margin-top: 0;
    }

    .price__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px 20px;
        margin-bottom: 16px;
    }

    .price__icon span {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .price__type {
        font-size: 9px;
        padding: 4px 10px;
    }

    .price__title {
        font-size: 22px;
    }

    .price__info p {
        font-size: 13px;
    }

    .price__amount {
        align-items: flex-start;
        padding-left: 0;
        width: 100%;
    }

    .price__amount::before {
        display: none;
    }

    .price__amount p {
        font-size: 24px;
    }

    .best-value {
        right: 15px;
        top: -10px;
        font-size: 8px;
        padding: 6px 9px;
        letter-spacing: 1px;
    }

    .price__btn {
        margin-top: 20px;
    }

    .price__btn .wc-btn-black {
        padding: 15px 28px;
        font-size: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    /* Hide mobile menu on tablet/desktop */
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu-overlay {
        display: none !important;
    }

    /* Tablet Header */
    .header__logo img {
        max-height: 45px;
    }

    .menu__list {
        gap: 25px;
    }

    .menu__list li a {
        font-size: 15px;
    }

    .portfolio__item-3 img,
    .portfolio__image img {
        height: 350px;
    }

    .choose-title {
        font-size: clamp(60px, 10vw, 120px);
    }

    .choose-wrapper {
        padding: 100px 0;
    }

    .workflow__sec-title {
        font-size: clamp(30px, 5vw, 42px);
    }

    .research__area {
        padding: 80px 0;
    }

    .research__item {
        padding: 24px;
        gap: 20px;
    }

    .research__number span {
        font-size: 40px;
    }

    .research__title {
        font-size: 19px;
    }

    .counter__area-3 {
        padding: 80px 0;
    }

    .counter__item-3 {
        padding: 28px 24px;
    }

    .counter__item-3 .counter__number {
        font-size: 56px;
    }

    .counter__img-3 {
        padding-left: 20px;
    }

    .cta__title-2 {
        font-size: clamp(36px, 6vw, 64px);
    }

    .price__item {
        gap: 18px;
        padding: 28px 30px;
    }

    .price__title {
        font-size: 22px;
    }

    .price__info p {
        font-size: 14px;
    }

    .price__amount p {
        font-size: 26px;
    }

    .price__icon span {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}

/* Full-Width Container */
.container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
}

.container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.container-fluid [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

/* Desktop - Hide mobile menu elements */
@media (min-width: 1200px) {
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Max Mega Menu Full-Width Layout */
.header__area-3 .header__inner-3 {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    gap: 20px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.header__area-3 .main-menu {
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    justify-content: stretch !important;
}

.header__area-3 #mega-menu-wrap-primary,
.header__area-3 .main-menu > div[id^="mega-menu-wrap-"] {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

.header__area-3 #mega-menu-wrap-primary #mega-menu-primary,
.header__area-3 .main-menu > div[id^="mega-menu-wrap-"] > ul[id^="mega-menu-"] {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    margin: 0 !important;
}

.header__area-3 #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item,
.header__area-3 .main-menu > div[id^="mega-menu-wrap-"] > ul[id^="mega-menu-"] > li.mega-menu-item {
    flex: 1 1 0 !important;
    text-align: center !important;
}

.header__area-3 #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link,
.header__area-3 .main-menu > div[id^="mega-menu-wrap-"] > ul[id^="mega-menu-"] > li.mega-menu-item > a.mega-menu-link {
    display: flex !important;
    justify-content: center !important;
}

.header__area-3 #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* ── Max Mega Menu — Dark theme overrides ───────────────────── */

/* Strip plugin default backgrounds so the header bg shows through */
.header__area-3 #mega-menu-wrap-primary {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    clear: none !important;
}

/* Top-level links match Paintbrush nav style */
.header__area-3 #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #fff !important;
    font-family: 'Kanit', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    text-transform: capitalize !important;
    padding: 0 18px !important;
    line-height: 80px !important;
    background: transparent !important;
    transition: color 0.3s ease !important;
}

.header__area-3 #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover,
.header__area-3 #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
.header__area-3 #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link {
    color: #ff2d2d !important;
    background: transparent !important;
}

/* Mega dropdown / flyout panel */
.header__area-3 #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu,
.header__area-3 #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
    background: #111 !important;
    border: 1px solid #262626 !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 36px rgba(0,0,0,.55) !important;
    padding: 12px 0 !important;
}

/* Sub-menu links */
.header__area-3 #mega-menu-wrap-primary .mega-sub-menu a.mega-menu-link {
    color: #ccc !important;
    font-family: 'Kanit', sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    padding: 10px 24px !important;
    background: transparent !important;
    transition: color 0.2s, background 0.2s !important;
}

.header__area-3 #mega-menu-wrap-primary .mega-sub-menu a.mega-menu-link:hover {
    color: #fff !important;
    background: rgba(255, 45, 45, 0.08) !important;
}

/* Mega menu column headers (widget titles) */
.header__area-3 #mega-menu-wrap-primary .mega-sub-menu .widget-title,
.header__area-3 #mega-menu-wrap-primary .mega-sub-menu h4.mega-block-title {
    color: #ff2d2d !important;
    font-family: 'Kanit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 10px 24px !important;
    border-bottom: 1px solid #262626 !important;
    margin-bottom: 6px !important;
}

/* Mega menu column separators */
.header__area-3 #mega-menu-wrap-primary .mega-sub-menu > li.mega-menu-column {
    border-right: 1px solid #1a1a1a !important;
}
.header__area-3 #mega-menu-wrap-primary .mega-sub-menu > li.mega-menu-column:last-child {
    border-right: none !important;
}

/* Mobile toggle button generated by the plugin — keep hidden,
   we use the theme's own .mobile-menu-toggle instead */
.header__area-3 #mega-menu-wrap-primary .mega-menu-toggle {
    display: none !important;
}

/* Arrow / caret indicator on parent items */
.header__area-3 #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children > a.mega-menu-link::after {
    content: '\f107' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-size: 11px !important;
    margin-left: 6px !important;
    opacity: 0.6 !important;
    transition: transform 0.25s ease !important;
}

.header__area-3 #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children:hover > a.mega-menu-link::after {
    transform: rotate(180deg) !important;
    opacity: 1 !important;
}

@media (max-width: 1199px) {
    .header__area-3 .header__inner-3 {
        grid-template-columns: auto auto;
    }

    .header__area-3 .main-menu {
        display: none;
    }
}

/* ============================================================
   PORTFOLIO PAGE — Interactive 3-Column Grid
   ============================================================ */

/* ── Portfolio Page \u2014 Full Width Layout ───────────────────── */

/**
 * .portfolio-fullwidth overrides the container constraint set on
 * .portfolio__area-3 so the entire section is edge-to-edge.
 */
.portfolio__area-3.portfolio-fullwidth {
    padding-top: 0;
    padding-bottom: 0;
    overflow-x: hidden;
}

.portfolio-header {
    padding-top: 100px;
    padding-bottom: 40px;
}

/**
 * Full-width CSS grid: 3 equal columns across the entire viewport.
 * Gaps handled by padding on the column, so edge cards sit flush.
 * !important used to override any inherited flexbox from parent selectors.
 */
.portfolio-fullwidth-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.portfolio-fw-col {
    padding: 12px;
    display: block;
    flex-direction: column;
}

/* Make items fill their column fully */
.portfolio-fw-col .portfolio__item-3 {
    flex: 1;
    min-height: 420px;
}

/* Responsive: 2-col only on small tablets */
@media (max-width: 768px) {
    .portfolio-fullwidth-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 12px;
    }
}

/* Responsive: 1-col on mobile */
@media (max-width: 480px) {
    .portfolio-fullwidth-grid {
        grid-template-columns: 1fr;
        padding: 0 8px;
    }
}

/* ── End Portfolio Full Width ─────────────────────────────── */

/* ── Filter Tabs ──────────────────────────────────────────── */
.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}

.portfolio-filter__btn {
    background: transparent;
    border: 1px solid #333;
    color: #999;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.portfolio-filter__btn:hover {
    border-color: #fff;
    color: #fff;
}

.portfolio-filter__btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* ── Card Grid — 3 columns ────────────────────────────────── */
.portfolio-page-grid {
    display: flex;
    flex-wrap: wrap;
}

.portfolio-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-card--hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.portfolio-card--visible {
    opacity: 1;
    transform: scale(1);
}

/* ── Image Overlay ────────────────────────────────────────── */
.portfolio__image {
    position: relative;
    overflow: hidden;
}

.portfolio__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.portfolio__item-3:hover .portfolio__overlay {
    opacity: 1;
}

.portfolio__zoom {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.portfolio__zoom:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: scale(1.1);
}

.portfolio__category-badge {
    background: rgba(255,255,255,0.15);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.25);
}

/* ── Card Content & Description ───────────────────────────── */
.portfolio__desc {
    color: #777;
    font-size: 14px;
    margin: 6px 0 0;
    text-align: center;
}

.portfolio__content {
    flex-direction: column;
}

/* ── Image cursor ─────────────────────────────────────────── */
.portfolio__image img {
    cursor: pointer;
}

/* ── Load More Button ─────────────────────────────────────── */
.portfolio-load-more {
    position: relative;
}

.portfolio-load-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.portfolio-load-more:hover i {
    transform: rotate(180deg);
}

/* ── Lightbox ─────────────────────────────────────────────── */
.portfolio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.portfolio-lightbox--open {
    opacity: 1;
    visibility: visible;
}

.portfolio-lightbox__content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
    position: relative;
}

.portfolio-lightbox__content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.portfolio-lightbox__caption {
    color: #ccc;
    font-size: 15px;
    margin-top: 14px;
    letter-spacing: 0.5px;
}

.portfolio-lightbox__close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease;
}

.portfolio-lightbox__close:hover {
    transform: scale(1.2);
    color: #ff4444;
}

.portfolio-lightbox__prev,
.portfolio-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.25s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.portfolio-lightbox__prev { left: 24px; }
.portfolio-lightbox__next { right: 24px; }

.portfolio-lightbox__prev:hover,
.portfolio-lightbox__next:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* ── Responsive: Portfolio Page ───────────────────────────── */
@media (max-width: 991px) {
    .portfolio-filter {
        gap: 8px;
    }

    .portfolio-filter__btn {
        font-size: 13px;
        padding: 6px 16px;
    }

    .portfolio-lightbox__prev { left: 12px; }
    .portfolio-lightbox__next { right: 12px; }
}

@media (max-width: 767px) {
    .portfolio-filter__btn {
        font-size: 12px;
        padding: 6px 14px;
    }

    .portfolio__zoom {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .portfolio-lightbox__prev,
    .portfolio-lightbox__next {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .portfolio-lightbox__prev { left: 8px; }
    .portfolio-lightbox__next { right: 8px; }
}

/* =============================================================
   SERVICE DETAILS PAGE  (page-service-details.php)
   ============================================================= */

/* Hero */
.service-details__hero {
    background: #0b0b0b;
}

.service-details__hero-img img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    max-height: 420px;
}

/* Feature checklist grid */
.service-details__feature-item {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    color: #ccc;
    line-height: 1.5;
    transition: border-color 0.25s ease;
}

.service-details__feature-item:hover {
    border-color: #ff2d2d;
}

/* Process steps */
.service-details__step {
    border-left: 2px solid #222;
    padding-left: 20px;
    position: relative;
}

.service-details__step::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff2d2d;
}

.service-details__step-number span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ff2d2d;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.service-details__step-body h5 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.service-details__step-body p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* Sidebar services nav */
.service-details__nav-list li a {
    display: block;
    padding: 11px 16px;
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.service-details__nav-list li a:hover {
    border-color: #ff2d2d;
    color: #fff;
}

.service-details__nav-item--active a {
    border-color: #ff2d2d !important;
    color: #fff !important;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .service-details__hero-img {
        margin-top: 40px;
    }

    .service-details__step-number span {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
}
