/* custom-style.css — single site-wide stylesheet.
   1) HEADER/FOOTER (global)  2) HOME (scoped .ai-dev-page)  3) AI-DEVELOPMENT (scoped .page-ai-development)
   Scoped via :where()/body:where() so specificity (and thus each page's cascade) is preserved.
   Future: append each new page's CSS scoped under its own body class. */
/* ===== GLOBAL VARIABLES (hoisted, shared by all pages) ===== */
:root {
    --primary: #258412;
    --wd-soft-green-gradient: linear-gradient(135deg, rgba(37, 132, 18, 0.05) 0%, rgba(78, 205, 196, 0.08) 100%);
    --wd-soft-green-solid: #EBF4E9;
    --secondary: #1C2A3E;
    --white: #FFFFFF;
    --wd-accent-color: #4ECDC4;
    --wd-font-heading: "Inter", sans-serif;
    --wd-font-body: "Inter", sans-serif;
    --wd-button-gradient: linear-gradient(135deg, var(--wd-primary-color), var(--wd-secondary-color));
    --wd-pill-background: #e8f4fd;
    --fa-style-family-brands: "Font Awesome 6 Brands";
    --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
    --font-heading: 'Source Serif Pro', serif;
    --font-body: 'Inter', sans-serif;
    --text-primary: #242424;
    --text-secondary: #6b6b6b;
    --text-tertiary: #9a9a9a;
    --background: #ffffff;
    --background-secondary: #f9f9f9;
    --border-color: #e6e6e6;
    --accent-color: #1a8917;
    --accent-hover: #0f730c;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --wd-border-color: rgba(0, 0, 0, 0.1);
}

/* ===== 0) BASE RESET (global, all pages) ===== */
body {
    margin: 0;
}

strong {
    font-weight: 600;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    --wd-primary-color: #258412;
    --wd-secondary-color: #4ecdc4;
    --wd-text-color: #4A5568;
    --wd-heading-color: #2C3E50;
    --wd-background-light: #F8F9FA;
    --wd-background-dark: #1C2A3E;
    --wd-border-radius: 6px; 
    --wd-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-family: 'Inter', sans-serif;
    color: var(--wd-text-color);
    line-height: 1.6;
    overflow-x: clip;
    background-color: var(--white);
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

.btn-secondary {
    background-color: transparent;
    color: var(--wd-primary-color);
    border: 2px solid var(--wd-primary-color);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--wd-box-shadow);
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}


.bg-white {
    background: var(--white)!important;
}
.text-left {
    text-align: left!important;
}
/* Third-party booking/appointment widget (dynamically injected) — global */

/* ===== 1) HEADER / FOOTER (global) ===== */
/* ============================================================
   header-footer.css
   Single source of truth for header + footer styles.
   Order:  1) HEADER   2) FOOTER   3) RESPONSIVE (media queries)
   ============================================================ */
/* ============================================================
   1) HEADER
   ============================================================ */
.logo-link, .nav-link {
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-links a, .nav-links li {
    position: relative;
}

.logo-container, .logo-link {
    display: flex;
    align-items: center;
}

.logo-wd {
    color: var(--primary);
    margin-right: 4px;
}

.nav-link, .nav-links, .nav-links li {
    height: 100%;
    display: flex;
}

.ai-header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.scrolled .ai-nav {
    padding: 10px 0;
}

.logo-container:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.scrolled .logo-img {
    height: 35px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--wd-primary-color), var(--wd-primary-color-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-actions .btn {
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-actions .btn-primary {
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.nav-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--wd-primary-rgb), 0.2);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--wd-primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--wd-primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links li.mobile-only {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--wd-primary-color);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--wd-primary-color);
}

.ai-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0px;
}

.ai-nav {
    padding: 12px 0px;
    width: 100%;
    transition: padding 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1420px;
    margin: 0 auto;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

img.logo-img {
    width: 100%;
    max-width: 250px;
}

.nav-links {
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100%;
    align-items: center;
    margin-right: 2rem;
    flex-grow: 1;
    max-width: 620px;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-links li {
    align-items: center;
    margin: 0rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-grow: 1;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: color 0.2s ease;
    padding: 0 8px;
    align-items: center;
    position: relative;
    text-decoration: none;
    display: flex;
    height: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--wd-primary-color);
}

.nav-links a {
    color: var(--wd-heading-color);
    font-weight: 500;
    padding: 0.5rem 0;
    margin: 0 auto;
    text-align: start;
    width: 100%;
    justify-content: center;
    position: relative;
}

/* ============================================================
   2) FOOTER
   ============================================================ */
.copyright a, .footer-logo, .social-icon {
    text-decoration: none;
}

.footer-policy {
    display: flex !important;
    gap: 15px;
}

.ai-footer {
    padding: 60px 0 20px;
    background: var(--wd-soft-green-gradient);
    color: #000000;
    font-size: 14px;
}

.footer-wrapper {
    justify-content: space-between;
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-logo .logo-text {
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.footer-logo .logo-wd {
    color: var(--primary);
    margin-right: 4px;
}

.company-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 420px;
}

.footer-menu h3, .footer-services h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    margin-top: 0px;
}

.footer-nav ul, .footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li, .footer-services ul li {
    margin-bottom: 15px;
}

.footer-nav ul li a, .footer-services ul li a {
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-policy ul {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav ul li a:hover, .footer-services ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
    padding-top: 0px;
    border-top: 1px solid #e5e5e5;
    flex-wrap: wrap;
}
.footer-bottom .social-icons { order: 1; }
.footer-bottom .footer-policy { order: 2; }
.footer-bottom .copyright { order: 3; }

.copyright p {
    margin: 0;
}

.copyright a {
    color: var(--primary);
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 15px;
    padding-top: 16px;
}

.footer-policy, .copyright {
    padding-top: 15px;
}

.social-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #26851533;
    color: #258412;
    transition: all 0.2s;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--wd-primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
}

.footer-menu h3 {
    margin-bottom: 16px;
    font-size: 20px !important;
}

.company-contact h3 {
    font-size: 20px !important;
    margin-bottom: 0px;
    color: #2c3e50;
    margin: 0;
}

.footer-offices {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-offices .office-location {
    min-width: 40%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Footer contact block — utility classes (replace repeated inline styles, scoped to .company-contact) */
.company-contact .wd-c-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.company-contact .wd-c-row-top {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.company-contact .wd-c-icon {
    color: #2BB965;
}

.company-contact .wd-c-icon-top {
    color: #2BB965;
    margin-top: 4px;
}

.company-contact .wd-c-link {
    text-decoration: none;
    color: inherit;
}

.company-contact .wd-c-link-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
    color: inherit;
    line-height: 1.5;
}

.company-contact .wd-c-flagrow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-contact .wd-c-flag {
    font-size: 20px;
    line-height: 1;
    position: relative;
    top: -4px;
}

.company-contact .wd-c-country {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    top: -2px;
}

/* Inline-accent link (article body green bold links — replaces repeated inline color:#2BB965;font-weight:600) */
.wd-link-accent {
    color: #2BB965;
    font-weight: 600;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 0px;
}

.copyright a:hover {
    color: var(--wd-primary-color);
}

.footer-nav h4 {
    margin-bottom: 20px;
}

.footer-menu h4 {
    margin-bottom: 16px;
    font-size: 18px !important;
}

.company-contact h4 {
    font-size: 18px !important;
    margin-bottom: 8px;
}

.footer-services h4 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    margin-top: 0px;
}

.ai-footer h3 {
    font-size: 18px;
    font-weight: 700;
}

.ai-footer h4 {
    font-size: 18px;
    font-weight: 600;
}

.ai-footer .footer-nav ul li a {
    font-size: 14px;
}

.ai-footer .footer-policy a {
    font-size: 14px;
}

.ai-footer .footer-company p {
    font-size: 14px;
    margin-top: 0;
}

/* ============================================================
   3) RESPONSIVE  (media queries — header + footer)
   ============================================================ */
/* ===== 2) HOME PAGE (.ai-dev-page) ===== */
/* ============================================================
   home-page.css
   All section styles for the Home page (index.html).
   Moved out of inline <style> blocks.
   ============================================================ */
.btn-outline, .btn-primary, .card-cta, .contact-button, .dropdown-menu a, .geo-link, .learn-more, .read-more, a {
    text-decoration: none;
}

.approach-card, .btn, .free_demo_title, .section-scroll-anim, .section-subtitle, .service-card, .text-center, .timeline-item {
    text-align: center;
}

.ai-dev-page {
    color: var(--secondary);
}

.free_demo_title, body.ai-dev-page {
    margin: 0;
}

.btn, a {
    transition: .3s;
}

.ai-dev-page {
    font-family: Inter, sans-serif;
    overflow-x: clip;
}

.hero-new-visual {
    flex: 1;
    position: relative;
}

.floating-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.shape-fill {
    fill: var(--wd-background-dark);
}

.case-meta i, .contact-item a:hover, .feature-item i, .highlight-text, a {
    color: var(--primary);
}

.chevron, .dropdown {
    position: relative;
}

.logo-text {
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.play-button a {
    color: #ffff !important;
}

.contact-button, .dropdown-menu a {
    transition: background-color .2s;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.chevron {
    width: 10px;
    height: 10px;
    margin-left: 4px;
}

.chevron:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(45deg);
    top: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 8px;
    min-width: 200px;
    display: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .1);
    padding: 10px 0;
    z-index: 100;
}

.btn-primary, .btn-primary:hover, .contact-button, .contact-button:hover {
    background: linear-gradient(90deg, var(--primary), #4ecdc4);
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: .2s fadeIn;
}

.dropdown-menu li {
    display: block;
    height: auto;
    margin: 0;
}

.dropdown-menu a {
    color: #333;
    font-size: 15px;
    padding: 10px 20px;
    display: block;
}

.dropdown-menu a:hover {
    background-color: rgba(0, 0, 0, .05);
    color: var(--primary);
}

.carousel-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.team_carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel_team_container .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel_team_container .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel_team_container .slide.active {
    opacity: 1;
    position: relative;
}

.carousel_team_container .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #258412, #4ECDC4);
    color: white;
    border: none;
    padding: 0;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 20;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    line-height: 42px;
    display: inline-block;
}

.carousel_team_container .arrow.left {
    left: 15px;
}

.carousel_team_container .arrow.right {
    right: 15px;
}

.carousel_team_container .arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.cta-card, .geo-block, .geo-link, .play-button, .resource-card, .service-card, .step-next, .step-prev {
    transition: transform .3s;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    margin-top: 80px;
    background-color: var(--white);
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-features {
    margin-bottom: 3rem;
}

.hero-features p {
    font-size: 20px;
    margin-bottom: 1.5rem;
    line-height: 28px;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.btn, .card-cta {
    display: inline-block;
}

.cta-card {
    background: rgb(43 185 101 / 8%);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    flex: 1;
}

.case-study-card:hover, .cta-card:hover, .geo-block:hover, .resource-card:hover, .service-card:hover {
    transform: translateY(-5px);
}

.cta-card h3 {
    font-size: 22px;
    margin-bottom: 1rem;
}

.card-cta {
    margin-top: 1.5rem;
    background: linear-gradient(90deg, var(--primary), #4ecdc4);
    color: var(--white);
    padding: .75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.video-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
}

.free_demo_title {
    font-size: 36px;
    color: var(--secondary);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

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

.trust-badges p {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-logos img {
    transition: filter .3s;
    width: 130px;
    height: 100%;
}

.client-logos img:hover {
    filter: grayscale(0) brightness(1);
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.certifications span {
    font-size: 14px;
    color: var(--secondary);
}

#case-studies, .services-section {
    padding: 60px 0;
    background: var(--wd-soft-green-gradient);
    color: var(--secondary);
}

.service-card:first-child .service-icon-new {
    background-color: rgba(76, 217, 100, .1);
}

#testimonials, .faq-item.active .faq-question {
    background-color: #EBF4E9;

}
.faq-item.active .faq-question {
    border-bottom: 1px solid #25841236;
}

.service-card:nth-child(4) .service-icon-new i {
    color: var(--wd-primary-color);
}

.service-card h3 {
    font-size: 1.17rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.learn-more {
    color: var(--primary);
    font-weight: 600;
    transition: color .3s;
}

.learn-more:hover {
    color: darken(var(--primary), 10%);
}

.edge-section, .geo-section {
    padding: 60px 0;
    background: var(--white);
    color: var(--secondary);
}

.geo-section {
    padding-bottom: 0;
}

.edge-content {
    display: flex;
    gap: 0rem;
}

.edge-info {
    padding-right: 30px;
}

.edge-info .section-title {
    color: var(--secondary);
    text-align: start;
    margin-bottom: 40px;
}

.bar-charts, .edge-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.bar-charts {
    gap: 32px;
}

.edge-card {
    display: flex;
    gap: 1.5rem;
}

.icon-container {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(43, 185, 101, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.edge-stats, .expert-card, .form-selects, .radial-chart {
    flex-direction: column;
    display: flex;
}

.edge-card .card-text h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 7px;
}

.edge-card .card-text ul {
    padding-left: 1.5rem;
    list-style: none;
}

.edge-card .card-text li {
    margin-bottom: .8rem;
    color: rgba(28, 42, 62, .8);
}

.edge-stats {
    justify-content: center;
    gap: 3rem;
    flex-grow: 1;
    width: 100%;
}

.radial-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0 68%, rgba(43, 185, 101, .2) 68% 100%);
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.radial-chart::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    background: var(--white);
}

.chart-label, .chart-value {
    position: relative;
    z-index: 1;
}

.chart-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.bar-label, .chart-label {
    font-size: 16px;
    color: var(--secondary);
    font-weight: 700;
}

.bar-chart-item, .select-group {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.bar-container {
    height: 20px;
    background: rgba(43, 185, 101, .2);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 12px;
}

.btn, .case-tag, .read-more {
    font-weight: 600;
}

.case-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 1;
}

.case-meta {
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.case-author, .case-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.case-study-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-outline, .btn-primary {
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 600;
    transition: .3s;
}

#our_team {
    background: var(--wd-soft-green-gradient);
}

.faq-question, .step-buttons, .timeline-track {
    justify-content: space-between;
}

.geo-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.geo-block {
    background: var(--wd-soft-green-gradient);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 18px;
    border: 1px solid #e1f3f1;
}

.geo-block h3 {
    font-size: 22px;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.geo-block p {
    color: rgba(28, 42, 62, .8);
    margin-bottom: 1.5rem;
}

.geo-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-block;
}

.geo-link:hover {
    transform: translateX(5px);
}

.demo-steps {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .05);
    border-radius: 12px;
    position: relative;
    min-height: 400px;
}

.expert-team, .form-selects, .resource-cards, .step-card h3 {
    margin-bottom: 2rem;
}

.step-card {
    padding: 3rem;
    display: none;
    animation: .5s fadeIn;
}

.step-card.active {
    display: block;
}

.step-card h3 {
    font-size: 26px;
}

.form-selects {
    gap: 1.5rem;
}

.select-group label {
    font-size: 16px;
}

.select-group select {
    padding: .8rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
}

.expert-team {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.expert-card {
    align-items: center;
    gap: 1rem;
}

.expert-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.client-image img, .expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.resource-card {
    background: rgba(255, 255, 255, .1);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.resource-card i {
    font-size: 36px;
    color: var(--primary);
}

.step-buttons {
    display: flex;
}

.step-next, .step-prev {
    padding: .8rem 1.5rem;
    border: 0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.step-next {
    background: var(--primary);
    color: var(--secondary);
}

.step-prev {
    background: 0;
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
}

.step-submit {
    border: 0;
    font-weight: 600;
    cursor: pointer;
}

.client-details p {
    margin: 0;
    font-style: normal;
    font-size: 14px;
    color: #6c757d;
}


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

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

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* ---- */
/* ---- */

.option-group {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.option-group h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.calculate-btn {
    background: var(--primary-color, #2BB965);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1.5rem 0;
    width: 100%;
    display: block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.calculate-btn:hover {
    background: var(--primary-color-dark, #229251);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.calculator-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #2BB965 0%, #1A8B4B 100%);
    border-radius: 8px;
    text-align: center;
    display: none;
}

.calculator-result.show {
    display: block;
}

.result-text {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.lead-capture-form {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.lead-text {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-group input, .form-group select {
    padding: 0.5rem;
    font-size: 0.85rem;
}

.get-details-btn {
    background: #fff;
    color: var(--primary-color, #2BB965);
    border: none;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.get-details-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.privacy-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
}

.success-message {
    text-align: center;
    color: #fff;
    padding: 1rem;
}

.success-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.calculate-button-wrapper {
    margin: 2rem 0;
    text-align: center;
}

.progress-bar {
    margin-bottom: 0.5rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step.active .step-number, .launch-step-number {
    background: var(--primary-color, #2BB965);
    color: white;
}

.step.completed .step-number, .launch-step-number {
    background: var(--primary-color, #2BB965);
    color: white;
}

.step-label {
    font-size: 0.7rem;
    color: #666;
    text-align: center;
}

.progress-line {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: var(--primary-color, #2BB965);
    transition: width 0.3s ease;
}

.prev-btn {
    background: white;
    border: 1px solid #E2E8F0;
    color: #4A5568;
}

.prev-btn:hover {
    background: #F7FAFC;
    border-color: #CBD5E0;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #CBD5E0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    height: 40px;
}

.contact-form input:focus {
    border-color: linear-gradient(90deg, var(--primary), #4ECDC4);
    outline: none;
    box-shadow: 0 0 0 2px rgba(43, 185, 101, 0.2);
}

.get-estimate-btn {
    padding: 0 1.5rem;
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 40px;
    margin-top: 0;
    white-space: nowrap;
    width: 100%;
}

.get-estimate-btn:hover {
    background: linear-gradient(20deg, var(--primary), #4ECDC4);
}

.restart-btn, .contact-sales-btn {
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-sales-btn {
    background: #2BB965;
    border: none;
    color: white;
}

.restart-btn:hover, .contact-sales-btn:hover {
    transform: translateY(-1px);
}

.contact-sales-btn:hover {
    background: #229251;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    min-height: 315px;
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button.next-btn {
    margin: 0px;
}

.next-btn {
    background: white;
    border: 1px solid #E2E8F0;
    color: #2D3748;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 2rem;
}

.next-btn:hover {
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    transform: translateY(-1px);
    border-color: #2BB965;
    color: #2BB965;
}

.calculator-section, .video-section {
    background: linear-gradient(135deg, rgba(43, 185, 101, 0.1) 0%, rgba(43, 185, 101, 0.05) 100%);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.calculator-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
}

.calculator-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.calculator-header h2 {
    font-size: 36px;
    color: #2D3748;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    line-height: 1.2;
}

.calculator-subtitle {
    color: #4A5568;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: left;
    margin: 0;
    line-height: 1.5;
}

.progress-ring-container {
    margin-left: 1rem;
}

.progress-ring {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.step-page.active {
    display: block;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
}

.step-page h3 {
    font-size: 1.5rem;
    color: #2D3748;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 0 1.5rem 0;
    flex-direction: column;
}

.radio-option {
    flex: 1;
    min-width: 150px;
    position: relative;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.radio-option:hover {
    background: #f0f0f0;
    border-color: #CBD5E0;
    transform: translateY(-1px);
}

.radio-option.selected {
    background: white;
    border-color: #2BB965;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(43, 185, 101, 0.1);
    background-color: #F0FFF4;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    margin: 0;
}

.radio-option label {
    flex: 1;
    cursor: pointer;
    font-size: 0.9rem;
    color: #2D3748;
    margin: 0;
    padding-left: 28px;
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 400;
    width: 100%;
}

.radio-option label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #CBD5E0;
    border-radius: 50%;
    transition: all 0.2s ease;
    background: white;
}

.radio-option:hover label:before {
    border-color: #A0AEC0;
}

.radio-option.selected label:before {
    border-color: #2BB965;
}

.radio-option.selected label:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2BB965;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E2E8F0;
    align-items: center;
}

.prev-btn, .next-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    background: white;
    border: 1px solid #CBD5E0;
    color: #2D3748;
}

.prev-btn:hover, .next-btn:hover {
    border-color: #A0AEC0;
    background-color: #F7FAFC;
}

.next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #F7FAFC;
    border-color: #E2E8F0;
}

.lead-form-navigation {
    justify-content: flex-start;
    margin-top: 1.5rem;
}

.result-page {
    text-align: center;
    padding: 2rem 0;
}

.estimate-result h3 {
    font-size: 1.5rem;
    color: #2D3748;
    margin-bottom: 1.5rem;
}

.result-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2BB965;
    margin-bottom: 1rem;
}

.result-description {
    color: #4A5568;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.restart-btn {
    background: white;
    border: 1px solid #CBD5E0;
    color: #2D3748;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.restart-btn:hover {
    background: #F7FAFC;
    border-color: #A0AEC0;
    background-color: #F7FAFC;
    transform: translateY(-1px);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.slide-in {
    animation: slideInRight 0.3s ease forwards;
}

.slide-out {
    animation: slideOutLeft 0.3s ease forwards;
}

.cta-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
    grid-template-columns: 6fr 4fr;
    margin-top: 2rem;
    min-height: 500px;
}

.video-section {
    background: linear-gradient(135deg, #eefaf3 0%, #d8f3e3 100%);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
    position: relative;
    z-index: 20;
}

.video-section h3 {
    font-size: 1.5rem;
    color: #2D3748;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.video-container {
    flex: 1;
    position: relative;
    width: 100%;
    min-height: 250px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}



.services-hero {
    position: relative;
    padding: 60px 0 120px;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.12) 0%, rgba(37, 132, 18, 0.05) 100%);
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(30px) scale(1.05);
    }
}

.services-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge i {
    margin-right: 8px;
    font-size: 12px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #258412;
    margin-bottom: 4px;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.hero-image:hover img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #258412 0%, #4ECDC4 100%);
    border-radius: 9999px;
    top: -30px;
    right: -30px;
    z-index: 1;
    opacity: 0.15;
    animation: pulse 3s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.15;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.floating-tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}

.tech-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: float 6s infinite alternate ease-in-out;
}

.tech-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.tech-icon:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.tech-icon:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.tech-icon:nth-child(4) {
    bottom: 25%;
    right: 15%;
    animation-delay: 3s;
}

.tech-icon i {
    font-size: 24px;
    color: #258412;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}

#our-approach {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.approach-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.approach-cards .approach-card {
    flex: 0 0 23.2%;
    max-width: 100%;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wd-primary-color), var(--wd-accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.approach-card:hover::before {
    opacity: 1;
}

.approach-icon i {
    font-size: 24px;
    color: var(--wd-primary-color);
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
    background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-accent-color));
    color: var(--white);
}

.approach-card:hover .approach-icon i {
    color: #FFFFFF;
}

.approach-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #2C3E50;
}

.approach-card p {
    color: #6C757D;
    line-height: 1.6;
}

ul.industry_list {
    list-style: none;
}



.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--wd-primary-color), var(--wd-secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card h3 {
    font-size: 1.5rem;
    color: var(--wd-heading-color);
    margin-bottom: 15px;
}

.industry-card p {
    color: var(--wd-text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

#services-grid {
    background: var(--wd-soft-green-gradient);
    padding: 60px 0;
}

.services-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.tab-btn {
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    user-select: none;
    color: var(--wd-text-color);
    text-decoration: none;
    display: inline-block;
}

.tab-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 132, 18, 0.2);
    color: var(--wd-primary-color);
}

.tab-btn.active {
    background: linear-gradient(90deg, var(--wd-primary-color), var(--wd-accent-color));
    color: white;
    border-color: white;
    box-shadow: 0 5px 15px rgba(37, 132, 18, 0.25);
    animation: tab-pulse 2s infinite;
}

@keyframes tab-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 132, 18, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 132, 18, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 132, 18, 0);
    }
}

.services-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    min-height: 460px;
}

.service-item {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: 100%;
}

.service-item.animate-in .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    height: auto;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}

.service-content {
    padding: 24px;
    position: relative;
}

.service-icon {
    width: 40px;
    height: 40px;
    background-color: rgb(40 137 30);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -20px;
    right: 10px;
    z-index: 3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-icon i {
    font-size: 20px;
    color: #ffffff;
}

.service-content h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #2C3E50;
}

.service-content p {
    margin-bottom: 16px;
    color: #6C757D;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.service-features li {
    background-color: #25851517;
    color: #495057;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #258412;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #0A9A84;
}

.service-link:hover i {
    transform: translateX(4px);
}

#process {
    background-color: var(--wd-soft-green-solid);
    padding: 60px 0 10px;
}

.timeline-item {
    position: relative;
    z-index: 2;
    width: 23%;
    text-align: center;
    flex-grow: 1;
    padding-bottom: 30px;
}

.timeline-item:before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #c6ddd7;
    z-index: 1;
    content: "";
}

.timeline-item:first-child:before {
    left: 50%;
}

.timeline-item:last-child:before {
    right: 50%;
    left: 0;
    width: auto;
}

.timeline-marker {
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background-color: #258412;
    color: #FFFFFF;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -18px auto 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.timeline-content {
    padding: 0 10px;
}

.timeline-content h3 {
    margin-bottom: 8px;
    font-size: 20px;
    color: #1c2a3e;
}

.client-details {
    text-align: start;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.services-section {
    padding: 70px 0;
    background-color: var(--wd-soft-green-gradient);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.services-section .service-card {
    background: #fff;
    padding: 26px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgb(0 0 0 / 9%);
    position: relative;
    overflow: hidden;
}

.services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wd-primary-color), var(--wd-accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-section .service-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 132, 18, 0.12);
}

.services-section .service-card:hover::before {
    opacity: 1;
}

.service-icon-new i {
    font-size: 24px;
    color: var(--wd-primary-color);
    transition: all 0.3s ease;
}

.services-section .service-card:hover .service-icon-new {
    background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-accent-color));
    color: var(--white);
}

.services-section .service-card:hover .service-icon-new i {
    color: #FFFFFF;
}

.services-section .service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--wd-heading-color);
    margin-bottom: 12px;
}

.services-section .service-card p {
    font-size: 14px;
    color: var(--wd-text-color);
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.services-section .service-card .learn-more {
    color: var(--wd-primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.services-section .service-card:hover .learn-more {
    color: var(--wd-primary-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-scroll-anim.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-downloads h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    margin-top: 0px;
}

.services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-button {
    display: inline-block;
    margin-bottom: 0px;
}

.download-button img {
    max-width: 150px;
    height: auto;
}

.content-section {
    padding-top: 120px;
    padding-bottom: 70px;
    font-family: 'Inter', sans-serif;
}

.box {
    background: white;
    padding: 0 25px;
    width: 100%;
    margin: 0 auto;
    flex: 1 1 250px;
    border-radius: 18px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header_section {
    margin-bottom: 50px;
}

.header_section p {
    margin-bottom: 20px !important;
    width: 50%;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    width: 400px;
    margin: auto;
    overflow: hidden;
    min-height: 180px;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.testimonial-prev, .testimonial-next {
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    background-color: #FFFFFF;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    background: #333;
    padding: 8px 14px;
    margin: 10px;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: #258412;
    color: #FFFFFF;
    border-color: #258412;
    background: #555;
}

.project-author {
    word-break: break-all;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.contact-button:hover {
    background: linear-gradient(90deg, #219652, #4ECDC4);
    color: white;
}

.feature-list-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.feature-item i {
    color: var(--primary);
}

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

#recent-projects {
    padding: 60px 0px;
    background: var(--wd-soft-green-gradient);
}

.projects-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 0 30px;
}

.projects-carousel {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.project-slide {
    position: absolute;
    opacity: 0;
    transition: all 1s ease;
}

.project-slide.active {
    display: block;
    opacity: 1;
    transition: all 1s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.project-meta {
    display: flex;
    gap: 0px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #6C757D;
    flex-wrap: wrap;
}

.project-date i, .project-author i {
    color: var(--wd-primary-color);
}

.read-more:hover i {
    transform: translateX(4px);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.projects-carousel-container .carousel-nav {
    top: 40%;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    color: var(--wd-heading-color);
}

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

.carousel-nav .prev-btn {
    margin-left: -18px;
}

.carousel-nav .next-btn {
    margin-right: -18px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #E9ECEF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--wd-primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--wd-primary-color);
    opacity: 0.7;
}

.project-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: nowrap;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--wd-primary-color);
    margin-bottom: 0;
}

.trust-new-section .section-title {
    padding-bottom: 18px;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(rgba(37, 132, 18, 0.1), transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.tech-stack-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(rgba(78, 205, 196, 0.1), transparent 70%);
    bottom: -200px;
    left: -150px;
    z-index: 0;
}

.text-center {
    text-align: center;
}

.tech-stack-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.tech-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tech-content-wrapper {
    position: relative;
    z-index: 1;
}

.tech-content {
    display: none;
    animation: fadeInRight 0.5s ease-in-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.tech-content.active {
    display: block;
}

.tech-showcase {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tech-title {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.tech-title i {
    font-size: 28px;
    margin-right: 18px;
    background: linear-gradient(135deg, var(--primary), var(--wd-accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.tech-main p {
    color: var(--wd-text-color);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 16px;
    text-align: left;
}

.tech-hexgrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
}

.hex-item {
    position: relative;
    padding-bottom: 0;
    overflow: visible;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.05));
    height: 220px;
    width: 14%;
    flex-grow: 1;
}

.hex-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    z-index: 1;
    left: 0;
    top: 10px;
}

.hex-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 15%;
    z-index: 2;
}

.hex-content i {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.hex-content span {
    font-size: 16px;
    font-weight: 600;
    color: var(--wd-heading-color);
    transition: all 0.3s ease;
}

.hex-item:hover::before {
    background: linear-gradient(135deg, var(--primary), var(--wd-accent-color));
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 132, 18, 0.2);
}

.hex-item:hover .hex-content i, .hex-item:hover .hex-content span {
    color: white;
}

@keyframes subtle-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 132, 18, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 132, 18, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 132, 18, 0);
    }
}

.tech-tab.active {
    background: linear-gradient(90deg, var(--primary), var(--wd-accent-color));
    color: white;
    border-color: white;
    box-shadow: 0 5px 15px rgba(37, 132, 18, 0.25);
    animation: subtle-pulse 2s infinite;
}

/* ---- */
/* ---- */


/* ---- */
.client-info .client-image img {
    display: block;
}

/* ---- */
.testimonial-content .client-details p {
    margin-bottom: 0;
}

/* ---- */
#trust-new .swiper-slide img, .trust-new-section .swiper-slide img {
    height: 55px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0;
    filter: none;
}

/* ---- */

/* ---- */
.field-error {
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 5px;
    line-height: 1.35;
    display: none;
}

.contact-form input.input-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.15) !important;
}

/* ---- */
.step-navigation .next-btn {
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    border-color: #2BB965;
    color: #fff;
}

.step-navigation .next-btn:hover {
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    border-color: #239a53;
    color: #fff;
}

.step-navigation .next-btn:disabled {
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    border-color: #2BB965;
    color: #fff;
    opacity: 0.5;
}

/* ---- */
.step-content {
    flex: 1;
    overflow: visible !important;
    position: relative;
}

.step-page {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    height: auto !important;
    width: 100%;
    visibility: hidden;
}

/* ===== 3) AI-DEVELOPMENT (.page-ai-development) ===== */
/* ai-development.css — page styles for ai-development.html.
   Moved out of inline <style> blocks. Header/footer rules are in header-footer.css;
   media queries are in responsive.css. */

.floating-card .card-content p {
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 0;
}

.team-cta {
    text-align: center;
    margin-top: 40px;
}

.team-cta .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
}
 

h3 {
    font-size: 1.4rem;
}

.hero-background, .shape-divider {
    position: absolute;
    left: 0;
    width: 100%;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #2bb965, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.btn-outline-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid hsla(0, 0%, 100%, .2);
    background: transparent;
}

.btn-outline-secondary:hover {
    background-color: var(--wd-primary-color);
    color: var(--white);
    border-color: var(--wd-primary-color);
    background: hsla(0, 0%, 100%, .1);
    transform: translateY(-3px);
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 30%;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 0;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

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

.feature-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(44, 62, 80, .15);
    border-top-color: var(--wd-primary-color);
}

.feature-icon-new {
    width: 62px;
    height: 62px;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto 20px;
    font-size: 1.6rem;
}

.feature-title-new {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: .8rem;
    color: var(--wd-heading-color);
}

.feature-description-new {
    font-size: .95rem;
    color: var(--wd-text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.how-it-works-new-section {
    background-color: var(--white);
}

.step-new-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: .8rem;
    color: var(--wd-heading-color);
}

.step-new-description {
    font-size: .95rem;
    color: var(--wd-text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.step-new-connector {
    flex-grow: 0.5;
    height: 2px;
    background-color: var(--wd-primary-color);
    opacity: .2;
    align-self: center;
    margin: 40px -10px 0;
}

.pricing-new-section {
    background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-secondary-color));
    color: var(--white);
    text-align: center;
}

.pricing-new-content {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-new-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.pricing-new-rate {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
    line-height: 1;
}

.pricing-new-rate .rate-unit {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: .8;
    display: inline-block;
    margin-left: 5px;
}

.pricing-new-description {
    font-size: 1.1rem;
    opacity: .9;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.testimonials-header {
    text-align: center;
}

.trust-new-logos:hover {
    filter: grayscale(0);
    opacity: 1;
}

.trust-new-logos img:hover {
    transform: scale(1.1);
}

.trust-stat-item .stat-label {
    font-size: 1rem;
    color: var(--wd-light-text-color);
    font-weight: 600;
}

.form-new-section {
    background-color: var(--wd-background-light);
}

.form-new-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--wd-border-radius);
    box-shadow: var(--wd-box-shadow);
}

.form-new-text .section-subtitle, .form-new-text .section-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.form-new-text .section-title {
    margin-bottom: 1rem;
}

.form-new-text .section-subtitle {
    margin-bottom: 0;
}

.form-new-wrapper {
    width: 100%;
}

#lead-form-new .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

#lead-form-new .form-group {
    flex: 1;
    margin-bottom: 0;
}

#lead-form-new label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--wd-heading-color);
    font-size: .9rem;
}

#lead-form-new input, #lead-form-new textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: var(--wd-font-body);
    font-size: 1rem;
    transition: border-color .3s ease, box-shadow .3s ease;
    background-color: #f9f9f9;
}

#lead-form-new input:focus, #lead-form-new textarea:focus {
    outline: none;
    border-color: var(--wd-primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, .2);
    background-color: var(--white);
}

#lead-form-new textarea {
    resize: vertical;
    min-height: 100px;
}

#lead-form-new button {
    width: 100%;
    margin-top: 1rem;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.645, .045, .355, 1), transform .8s cubic-bezier(.645, .045, .355, 1);
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-item i, .highlight-text {
    color: var(--primary);
}

.pricing-rate-focus {
    text-align: left;
    padding-right: 2rem;
    border-right: 1px solid #e0e6ed;
    height: 100%;
}

.pricing-title-left {
    text-align: left;
    margin-bottom: 1.5rem;
}

.rate-unit-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--wd-light-text-color);
    display: block;
    margin-top: .2rem;
}

.pricing-value-breakdown {
    padding-left: 2rem;
}

.value-breakdown-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--wd-heading-color);
    margin-bottom: 2rem;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.value-icon {
    font-size: 1.5rem;
    color: var(--wd-primary-color);
    margin-top: 5px;
    flex-shrink: 0;
    width: 25px;
    text-align: center;
}

.value-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wd-heading-color);
    margin-bottom: .3rem;
    margin-top: 3px;
}

.value-text p {
    font-size: .95rem;
    color: var(--wd-text-color);
    line-height: 1.5;
    margin: 0;
}

.pricing-value-cta {
    width: auto;
    display: inline-block;
}

.process-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}



.process-steps:before, .launch-steps:before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--wd-primary-color), var(--wd-secondary-color) 50%, var(--wd-primary-color));
    z-index: 1;
}

.process-step:hover, .launch-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
}

.step-icon, .step-number, .launch-step-number {
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--wd-primary-color), var(--wd-secondary-color));
    opacity: 0;
    transition: opacity .3s ease;
}

.industry-card:hover:before {
    opacity: 1;
}

.compliance-section, .solutions-section {
    padding: 60px 0;
}

.compliance-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}



.compliance-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--wd-primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.compliance-card:hover:before {
    transform: scaleX(1);
}

.compliance-icon i {
    font-size: 24px;
    color: var(--wd-primary-color);
}

.compliance-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--wd-heading-color);
    font-weight: 600;
}

.compliance-card p {
    color: var(--wd-text-color);
    line-height: 1.6;
    font-size: .95rem;
    margin: 0;
}

.compliance-cta {
    text-align: center;
    margin-top: 20px;
}

.compliance-cta .btn {
    padding: 12px 30px;
}

.challenges-section {
    background: var(--wd-soft-green-gradient);
    padding: 60px 0;
    position: relative;
}

.challenge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(44, 62, 80, .15);
}

.challenge-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--wd-primary-color);
    transition: height .3s ease;
}

.challenge-card:hover:before {
    height: 100%;
}

.challenge-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(44, 62, 80, .05);
    line-height: 1;
}

.challenge-icon i {
    font-size: 24px;
    color: var(--wd-primary-color);
}

.challenge-block, .solution-block {
    margin-bottom: 20px;
}

.challenge-label, .solution-label {
    font-weight: 600;
    color: var(--wd-heading-color);
    margin-bottom: 5px;
}

.challenge-description, .solution-description {
    color: var(--wd-text-color);
    line-height: 1.6;
}

.solution-label {
    color: var(--wd-primary-color);
}

/* (removed .solution-card:before hover-fill — original design uses flex number badge) */

.solution-icon i {
    font-size: 24px;
    color: var(--wd-primary-color);
}

.solution-description {
    color: var(--wd-text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution-features {
    margin-bottom: 25px;
}

.solution-benefits h4, .solution-features h4 {
    font-size: 1.1rem;
    color: var(--wd-heading-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.solution-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: var(--wd-text-color);
}

.solution-features ul li i {
    color: var(--wd-primary-color);
    margin-right: 10px;
    font-size: 1rem;
    margin-top: 3px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--wd-primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.benefit-label {
    font-size: .9rem;
    color: var(--wd-text-color);
    line-height: 1.3;
}

.solutions-cta {
    text-align: center;
    margin-top: 30px;
}

.solutions-cta .btn {
    padding: 12px 30px;
}

.case-studies-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}



.case-study-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: hsla(0, 0%, 100%, .9);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--wd-primary-color);
}

.case-study-solution h4 {
    color: #258412;
    font-size: 20px;
}

.case-study-stats {
    display: flex;
}

.case-study-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.stat {
    text-align: center;
    flex: 1;
}



.tech-stack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(44, 62, 80, .15);
}

.tech-stack-card:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--wd-primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
}

.tech-stack-card:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

.tech-stack-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 132, 18, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tech-stack-icon i {
    font-size: 24px;
    color: var(--wd-primary-color);
}

.tech-stack-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--wd-heading-color);
    font-weight: 600;
}

.tech-stack-card p {
    color: var(--wd-text-color);
    line-height: 1.6;
    font-size: .95rem;
}

/* ===== 4) SERVICES PAGE (.page-services) ===== */

/* ===== 5) PORTFOLIO PAGE (.page-portfolio) ===== */

.creative-brands {
    background-color: rgba(37, 132, 18, 0.05);
    padding: 60px 0;
    position: relative;
}

.brands-container {
    text-align: center;
}

.brands-headline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.headline-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--wd-text-color);
    margin: 0 20px;
    white-space: nowrap;
}

.headline-line {
    flex: 1;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    max-width: 100px;
}

.brands-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.brands-logo-container img {
    height: 50px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brands-logo-container img:hover {
    opacity: 1;
    filter: grayscale(0);
}

#portfolio-grid {
    background-color: var(--white);
    padding: 60px 0;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 40px;
}

.filter-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    gap: 16px;
}

.filter-btn {
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 400;
    font-size: 15px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
    user-select: none;
    will-change: transform;
    background: #2585141f;
}

.filter-btn:hover {
    transform: translateY(-3px);
    border-color: rgb(37 132 18);
    color: var(--wd-primary-color);
    background: #25841217;
}

.filter-btn.active {
    background: linear-gradient(90deg, var(--wd-primary-color), var(--wd-accent-color));
    color: white;
    border-color: white;
    transform: scale(1);
}


.portfolio-grid.masonry-layout {
    column-count: 3;
    column-gap: 24px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.portfolio-grid.masonry-layout .portfolio-item {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 24px;
    display: block;
}

/* Flexbox layout: used for filtered tabs — 3 per row, centered.
   ("all" & "ui-ux" use masonry-layout above; JS swaps the class per filter.) */
.portfolio-grid.flex-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(20px, 2.5vw, 32px);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-grid.flex-layout .portfolio-item {
    flex: 0 0 calc(33.333% - 22px);
    max-width: calc(33.333% - 22px);
    display: flex;
    flex-direction: column;
}

.portfolio-item.animate-in:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
    margin-bottom: 5px;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 441px;
    background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 40px;
    z-index: 1;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    top: calc(49% - 202px);
    left: 50%;
    transform: translateX(-50%);
    width: 62px;
    height: 16px;
    background: #1a1a1a;
    border-radius: 20px;
    z-index: 3;
}

.portfolio-gif {
    position: relative;
    width: 206px;
    height: 426px;
    border-radius: 34px;
    overflow: hidden;
    z-index: 2;
    background: #ffffff;
}

.portfolio-gif img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-gif img {
    transform: scale(1.02);
}

.portfolio-item.web-project .portfolio-image::before, .portfolio-item.web-project .portfolio-image::after {
    display: none;
}

.portfolio-item.web-project .portfolio-image {
    position: relative;
    padding: 14px 20px 17px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio-item.web-project {
    overflow: visible;
}

.portfolio-item.web-project .laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 320px;
    z-index: 2;
}

.portfolio-item.web-project .laptop-screen {
    position: relative;
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 16px 16px 0 0;
    padding: 6px 6px 0 6px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.portfolio-item.web-project .laptop-screen::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #2a2a2a 40%, #1a1a1a 70%);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.portfolio-item.web-project .laptop-screen-inner {
    background: #0f0f0f;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.portfolio-item.web-project .laptop-screen-inner img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: top center;
    display: block;
    flex-shrink: 0;
    animation: smoothScrollAuto 30s ease-in-out infinite;
}

@keyframes smoothScrollAuto {
    0%, 10% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(calc(-100% + var(--laptop-screen-height, 200px)));
    }

    50% {
        transform: translateY(calc(-100% + var(--laptop-screen-height, 200px)));
    }

    80% {
        transform: translateY(0);
    }

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

.portfolio-item.web-project:hover .laptop-screen-inner img {
    animation-play-state: paused;
}

.portfolio-item.web-project .laptop-base {
    position: relative;
    height: 10px;
    background: linear-gradient(180deg, #3d3d3d 0%, #2a2a2a 50%, #1f1f1f 100%);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.portfolio-item.web-project .laptop-base::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(180deg, #4a4a4a, #3a3a3a);
    border-radius: 0 0 4px 4px;
}

.portfolio-item.web-project .laptop-bottom {
    position: relative;
    height: 12px;
    background: linear-gradient(180deg, #1f1f1f, #0f0f0f);
    border-radius: 0 0 12px 12px / 0 0 8px 8px;
    margin: 0 -20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.portfolio-item.web-project .laptop-bottom::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 2px;
}

.portfolio-image>img, .portfolio-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.portfolio-item:hover .portfolio-video {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image>img, .portfolio-item:hover .portfolio-thumbnail {
    transform: scale(1.05);
}

.portfolio-badge {
    position: absolute;
    transform: rotate(90deg) translateX(-30%);
    -webkit-transform: rotate(90deg) translateX(-30%);
    right: -30px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    bottom: 170px;
    z-index: 10;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.portfolio-badge span {
    background: #ffffffe8;
    color: #191919;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 8;
    text-transform: uppercase;
    gap: 8px;
    min-width: 112px;
    text-align: center;
}

.portfolio-badge i {
    display: none;
    font-size: 10px;
    color: #ffd700;
}

.play-indicator {
    display: none !important;
}

.portfolio-overlay {
    display: none;
}

.overlay-content {
    color: var(--white);
    width: 100%;
}

.portfolio-category {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.btn-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-link:after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-link:hover:after {
    transform: translateX(5px);
}

.portfolio-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 18px 20px;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}

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

.content-left {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.portfolio-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #1a1a2e;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portfolio-content .subtitle {
    font-size: 15px;
    font-style: italic;
    color: #666;
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portfolio-item:hover .portfolio-content h3 {
    color: #2d8a6e;
}

.portfolio-content .btn-detail-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--wd-primary-color) 0%, var(--wd-accent-color) 100%);
    border-radius: 50%;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 132, 18, 0.3);
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.portfolio-item {
    position: relative;
    background: linear-gradient(135deg, #e8d5f0 0%, #d4e5f7 30%, #c5e8e0 70%, #d1f0e8 100%);
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    padding: 10px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    cursor: pointer;
}

/* Portfolio filter entrance — cascade fade-in on tab click (JS adds .filtering-in with staggered animation-delay) */
.portfolio-item.filtering-in {
    animation: portfolioFilterIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes portfolioFilterIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.portfolio-content .btn-detail-link i {
    font-size: 16px;
    color: #ffffff !important;
    transition: transform 0.3s ease;
    line-height: 1;
}

.portfolio-content .btn-detail-link:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 132, 18, 0.4);
    background: linear-gradient(135deg, var(--wd-accent-color) 0%, var(--wd-primary-color) 100%);
}

.portfolio-content .btn-detail-link:hover i {
    transform: translateX(3px);
}

.portfolio-content p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.portfolio-tags, .project-stats {
    display: none !important;
}

.available-on-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-app-store {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-app-store:hover {
    border-color: #2d8a6e;
    box-shadow: 0 4px 12px rgba(45, 138, 110, 0.15);
}

.btn-app-store img, .btn-app-store svg {
    width: 20px;
    height: 20px;
}

.btn-app-store .store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-app-store .store-text small {
    font-size: 8px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0.7;
}

.btn-app-store .store-text span {
    font-size: 12px;
    font-weight: 600;
}

.btn-view-details {
    display: none;
}

#featured-project {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.featured-header {
    text-align: center;
    margin-bottom: 50px;
}

.featured-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--wd-heading-color);
}

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

.featured-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.7);
}

.featured-text {
    padding: 20px;
}

.featured-description p {
    color: var(--wd-text-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.featured-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.featured-stats .stat-item {
    display: flex;
    flex-direction: column;
}

.featured-stats .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--wd-primary-color);
    margin-bottom: 5px;
}

.featured-stats .stat-label {
    font-size: 14px;
    color: var(--wd-text-color);
}

.tech-expertise-section {
    padding: 60px 0;
    background: var(--wd-soft-green-gradient);
    position: relative;
    overflow: hidden;
}

.tech-expertise-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(rgba(37, 132, 18, 0.08), transparent 70%);
    top: -150px;
    right: -100px;
    z-index: 0;
}

.tech-expertise-section::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(rgba(78, 205, 196, 0.08), transparent 70%);
    bottom: -200px;
    left: -150px;
    z-index: 0;
}

.tech-expertise-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

body.is-safari .portfolio-grid.masonry-layout {
    column-count: unset !important;
}

body.is-safari .portfolio-grid.masonry-layout .portfolio-item {
    width: calc(33.333% - 18px) !important;
    float: left !important;
    margin-bottom: 24px !important;
}

/* ===== 6) BLOG PAGE (.page-blog) ===== */

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
}

.main-feed-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.post-meta-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.author-link {
    display: inline-flex;
}

.post-author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.post-publication-context a, .post-author-name a {
    color: var(--wd-text-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--wd-transition);
}

.post-publication-context a:hover, .post-author-name a:hover {
    color: var(--wd-primary-color);
}

.post-content-row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.post-text-content {
    flex: 1;
}

.post-text-content .post-title a {
    color: var(--wd-heading-color);
    text-decoration: none;
    transition: var(--wd-transition);
    padding: 12px 0 14px;
    display: inline-block;
}

.post-text-content .post-title a:hover {
    color: var(--primary);
    text-decoration: none;
}

.post-excerpt {
    color: var(--wd-text-color);
    font-size: 1rem;
    line-height: 1.4;
}

.post-image-container {
    flex-shrink: 0;
    width: 112px;
    height: 112px;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.post-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-date-read-time {
    color: var(--wd-light-text-color);
    font-size: 0.85rem;
}

.post-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--wd-light-text-color);
    font-size: 0.85rem;
}

.post-meta-claps, .post-meta-comments {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--wd-light-text-color);
    font-size: 1rem;
    transition: var(--wd-transition);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-action-btn:hover {
    color: var(--wd-text-color);
}

.load-more-container {
    margin-top: 2rem;
    text-align: center;
}

.load-more-button {
    background: none;
    border: 1px solid var(--wd-border-color);
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--wd-text-color);
    cursor: pointer;
    transition: var(--wd-transition);
    border-radius: 99px;
}

.load-more-button:hover {
    background-color: var(--wd-background-grey);
}

.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sticky-sidebar {
    position: sticky;
    top: 5rem;
}

.sidebar-widget {
    margin-bottom: 0rem;
    padding-top: 0px;
    padding-bottom: 20px;
}

.widget-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--wd-heading-color);
}

.widget-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 0;
}

.widget-list-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.widget-item-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.widget-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.widget-item-source {
    font-size: 0.8rem;
    color: var(--wd-light-text-color);
}

.widget-item-source a {
    color: var(--wd-light-text-color);
    text-decoration: none;
    transition: var(--wd-transition);
}

.widget-item-source a:hover {
    color: var(--wd-text-color);
}

.widget-item-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--wd-heading-color);
    text-decoration: none;
    transition: var(--wd-transition);
    line-height: 1.3;
}

.widget-item-title:hover {
    color: var(--wd-text-color);
    text-decoration: underline;
}

.widget-item-date {
    font-size: 0.8rem;
    color: var(--wd-light-text-color);
    margin-top: 0.25rem;
}

.see-full-list {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--wd-light-text-color);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--wd-transition);
}

.see-full-list:hover {
    color: var(--wd-text-color);
    text-decoration: underline;
}

.topic-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topic-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #26851533;
    border-radius: 99px;
    color: #000000;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--wd-transition);
}

.topic-pill:hover {
    background-color: var(--primary);
    color: var(--white);
}

.medium-style-post {
    animation: fadeIn 0.3s ease-out;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0px 0 0px;
    padding: 0px 0;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #2BB965;
    color: #2BB965;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 185, 101, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn i {
    font-size: 12px;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.4rem;
}

.pagination-number:hover:not(.active) {
    border-color: #2BB965;
    color: #2BB965;
    transform: scale(1.1);
}

.pagination-number.active {
    background: linear-gradient(135deg, #2BB965 0%, #239952 100%);
    border-color: #2BB965;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(43, 185, 101, 0.4);
}

.pagination-ellipsis {
    color: #999;
    font-size: 16px;
    padding: 0 4px;
}

.post-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.post-preview.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

.post-preview.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== 7) CONTACT PAGE (.page-contact) ===== */
.contact-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(37, 132, 18, .12), rgba(37, 132, 18, .05));
    padding: 140px 0 80px;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text-column {
    padding-right: 20px;
}

.hero-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.direct-contact {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
}

.direct-contact span {
    color: var(--wd-light-text-color);
    margin-bottom: 5px;
}

.phone-link {
    color: var(--wd-heading-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--wd-primary-color);
}

.hero-visual-column {
    position: relative;
    height: 440px;
}

.contact-illustration {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-image {
    max-width: 100%;
    max-height: 100%;
    animation: slight-bounce 6s ease-in-out infinite;
}

@keyframes slight-bounce {
    0%, 100% {
        transform: translateY(0);
    }

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

.floating-card-1 {
    top: 20%;
    left: -5%;
    animation: float-card 5s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 15%;
    right: -5%;
    animation: float-card 5s ease-in-out infinite 1s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.card-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--wd-heading-color);
}

.card-text p {
    font-weight: 400;
}

.contact-info-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgb(0 0 0 / 9%);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wd-primary-color), var(--wd-accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 132, 18, 0.12);
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-info-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.1) 0%, rgba(76, 175, 80, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--wd-primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-info-icon i {
    font-size: 24px;
    color: var(--wd-primary-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-accent-color));
    color: var(--white);
}

.contact-info-card:hover .contact-info-icon i {
    color: #FFFFFF;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--wd-heading-color);
}

.contact-info-card p {
    color: var(--wd-text-color);
    margin-bottom: 10px;
}

.contact-info-card a {
    color: var(--wd-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--wd-primary-color);
}

.contact-form-section {
    padding: 60px 0;
    background: var(--wd-soft-green-gradient);
    position: relative;
    overflow: hidden;
}

.form-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 30px 0px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.form-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.form-shape {
    position: absolute;
    border-radius: 50%;
}

.form-shape-1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 132, 18, 0.03) 0%, rgba(37, 132, 18, 0.08) 100%);
    top: -30px;
    right: -30px;
}

.form-shape-2 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.04) 0%, rgba(78, 205, 196, 0.08) 100%);
    bottom: 50px;
    left: -20px;
}

.form-shape-3 {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(255, 222, 89, 0.05) 0%, rgba(255, 222, 89, 0.1) 100%);
    top: 30%;
    right: 10%;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h2 {
    font-size: 36px;
    color: var(--wd-heading-color);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--wd-light-text-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.textarea-group, .select-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--wd-primary-color);
    opacity: 0.7;
    z-index: 2;
}

.textarea-group .input-icon, .select-group .input-icon {
    top: 25px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    color: var(--wd-heading-color);
}

.form-group input::placeholder, .form-group textarea::placeholder, .form-group select::placeholder {
    color: #a0aec0;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--wd-primary-color);
    box-shadow: 0 0 0 3px rgba(37, 132, 18, 0.1);
    background-color: var(--white);
}

.form-group input:focus+.input-icon, .form-group textarea:focus+.input-icon, .form-group select:focus+.input-icon {
    color: var(--wd-primary-color);
    opacity: 1;
}

.form-submit {
    margin-top: 30px;
    text-align: center;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--wd-primary-color), #4ECDC4);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 132, 18, 0.2);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 132, 18, 0.3);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--wd-light-text-color);
    font-size: 0.9rem;
}

.badge i {
    color: var(--wd-primary-color);
}

.section-heading.text-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* ===== 404 PAGE (.page-404) ===== */

.error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.05), rgba(37, 132, 18, 0.02));
    padding: 1rem;
    padding-top: 80px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.error-content {
    text-align: center;
    max-width: 600px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.error-title {
    font-size: 100px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--wd-primary-color), #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.error-subtitle {
    font-size: 20px;
    color: var(--wd-heading-color);
    margin: 0.5rem 0;
}

.error-description {
    color: var(--wd-text-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.quote-container {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(37, 132, 18, 0.05);
    position: relative;
}

.quote-text {
    font-style: italic;
    color: var(--wd-heading-color);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.quote-author {
    color: var(--wd-primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.error-actions .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.error-image {
    max-width: 200px;
    margin: 1rem auto;
    animation: float 3s ease-in-out infinite;
}

/* ===== AI_SOFTWARE_SOLUTIONS PAGE (.page-ai-software-solutions) ===== */

.location-section {
    background: var(--wd-soft-green-gradient);
}

.section-heading {
    margin-bottom: 20px;
}

.section-heading.centered {
    text-align: center;
}

.service-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.12) 0%, rgba(37, 132, 18, 0.05) 100%);
    position: relative;
    margin-top: 80px;
}

.vision-section {
    padding: 60px 0;
}

.feature-icon i {
    font-size: 24px;
    color: var(--wd-primary-color);
}

.section-title-left {
    text-align: left !important;
}

.why-choose-section {
    padding: 60px 0;
    position: relative;
}

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

.why-choose-text {
    padding-right: 0;
}

.checkmark-list {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.checkmark-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.checkmark-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-color: var(--wd-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.device-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--wd-box-shadow);
}

.solution-content p {
    font-size: 15px;
    color: var(--wd-text-color);
    margin-bottom: 0;
}

.projects-section {
    padding: 60px 0;
    background-color: #f8fbfa;
}

.projects-slider {
    position: relative;
    margin-bottom: 30px;
}

.project-number {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--wd-primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #e2e8f0;
    color: var(--wd-heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--wd-primary-color);
    border-color: var(--wd-primary-color);
    color: white;
}

.step-connector {
    position: relative;
    width: 40px;
    height: 2px;
    background-color: #e2e8f0;
    margin-top: 40px;
    flex-shrink: 1;
    min-width: 30px;
}

.process-step:hover .step-icon, .launch-step:hover .launch-step-icon {
    background-color: var(--wd-primary-color);
    color: white;
    transform: translateY(-5px);
    transition: 0.2s all;
}

.contact-section {
    padding: 60px 0;
    background-color: var(--wd-background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-text {
    padding-right: 20px;
}

.contact-form-wrapper {
    background-color: white;
    border-radius: var(--wd-border-radius);
    padding: 40px;
    box-shadow: var(--wd-box-shadow);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--wd-border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--wd-primary-color);
}

.testimonials-section {
    padding: 60px 0;
    background-color: #fbfbfb;
}

.section-heading.animate, .feature-card.animate, .solution-card.animate, .process-step.animate, .project-card.animate {
    animation: fadeIn 0.6s ease-out forwards;
}

.portfolio-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--wd-primary-color) 0%, var(--wd-accent-color) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: rotateCta 30s linear infinite;
}

@keyframes rotateCta {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.portfolio-cta .cta-content {
    position: relative;
    z-index: 1;
}

.portfolio-cta .cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    max-width: 820px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.portfolio-cta .cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.portfolio-cta .btn-primary {
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    color: white;
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.portfolio-cta .btn-primary i {
    font-size: 16px;
    margin-right: 5px;
}

.portfolio-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline-light i {
    font-size: 16px;
    margin-right: 5px;
}

.industry-features {
    margin-left: 25px;
}

/* ===== APP_DEVELOPMENT_COST PAGE (.page-app-development-cost) ===== */

.why-choose-image img {
    width: 100%;
    border-radius: 10px;
}

.detail-item {
    padding: 8px 0px;
}

.location-details {
    margin-bottom: 20px;
}

.location-info {
    width: 50%;
    padding: 0 15px;
}

.location-map_img {
    width: 50%;
    padding: 0 15px;
}

.mt-top {
    margin-top: 5px;
}

ul.industry-features {
    margin-left: 25px;
}

.cost-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-top: 40px;
    padding: 20px;
}

.cost-factor-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.cost-factor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cost-factor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cost-factor-card:hover::before {
    opacity: 1;
}

.cost-factor-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wd-primary-color), #60d0c4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.cost-factor-card:hover .cost-factor-icon {
    transform: rotate(360deg);
}

.cost-card-content h3 {
    color: var(--wd-primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 25px 0;
    transition: color 0.3s ease;
}

.cost-range {
    margin-bottom: 20px;
}

.cost-label-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 0.95rem;
    position: relative;
}

.cost-bar {
    background: #f0f2f5;
    border-radius: 15px;
    height: 12px;
    position: relative;
    overflow: hidden;
}

.cost-fill {
    background: linear-gradient(135deg, var(--wd-primary-color), #60d0c4);
    height: 100%;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.fill-label {
    position: absolute;
    right: 5px;
    top: 25px;
    background: var(--wd-primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    transform: translateX(50%);
    transition: transform 0.3s ease;
}

.cost-factor-card:hover .fill-label {
    transform: translateX(0);
}

.cost-card-content p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 20px;
}

.pricing-tier {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.pricing-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-tier:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-tier:hover::before {
    opacity: 1;
}

.pricing-tier.featured {
    transform: scale(1.05);
    border: 2px solid var(--wd-primary-color);
}

.tier-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--wd-primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.tier-header {
    text-align: center;
    margin-bottom: 30px;
}

.tier-header h3 {
    color: var(--wd-primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 20px 0;
}

.price-range {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--wd-primary-color);
}

.duration {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.tier-features {
    margin-bottom: 30px;
}

.tier-features ul {
    list-style: none;
    padding: 0;
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.05rem;
}

.tier-features li i {
    color: var(--wd-primary-color);
    font-size: 1.2rem;
}

.tier-cta {
    text-align: center;
}

.tier-cta .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.tier-cta .btn:hover {
    transform: translateY(-2px);
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.strategy-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.strategy-card:hover::before {
    opacity: 1;
}

.strategy-icon {
    width: 60px;
    height: 60px;
    background: var(--wd-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.strategy-card h3 {
    color: var(--wd-primary-color);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.strategy-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.strategy-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 15px;
}

.benefit-text {
    color: var(--wd-primary-color);
    font-weight: 600;
}

.benefit-icon {
    color: #2ecc71;
    font-size: 18px;
}

.value-content {
    display: flex;
    align-items: center;
    gap: 100px;
}

.value-text {
    width: 50%;
}

.value-image {
    width: 50%;
}

.value-image img {
    width: 100%;
    border-radius: 10px;
}

.value-visual {
    width: 100%;
}

.calculator-disclaimer {
    padding-left: 0;
    margin-top: 30px;
}
.calculator-disclaimer p {
    margin: 0;
    text-align: center;
}

.calculator-inputs {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.input-group {
    margin-bottom: 25px;
}

.input-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.input-label i {
    color: var(--wd-primary-color);
    font-size: 1.2rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--wd-primary-color);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.currency, .users, .percentage {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    font-size: 0.9rem;
}

.calculator-results {
    display: flex;
    justify-content: center;
}

.result-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

.result-header {
    margin-bottom: 25px;
}

.roi-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0) 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.15) 0%, rgba(0, 123, 255, 0) 100%);
}

.summary-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--wd-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.summary-content {
    flex: 1;
}

.summary-label {
    display: block;
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.summary-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--wd-primary-color);
    line-height: 1rem;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
}

.result-item {
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.result-item:hover {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0) 100%);
    transform: translateY(-2px);
}

.result-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--wd-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.result-content {
    flex: 1;
    padding-top: 8px;
}

/* ===== BLOG ARTICLE — SHARED by all blog posts (.page-article) ===== */

.back-to-blog {
    margin-bottom: 0px;
}

.back-to-blog .back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-to-blog .back-link:hover {
    background: var(--accent-hover);
    transform: translateX(-5px);
    color: #fff;
}

.back-to-blog .back-link:hover i {
    color: #fff;
}

.back-to-blog .back-link i {
    font-size: 12px;
}

.single-post-layout {
    max-width: 958px;
    margin: 0 auto;
}

.single-post {
    margin-bottom: 1.5rem;
}

.publication-context {
    margin-bottom: 1rem;
}

.publication-link {
    color: var(--wd-text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--wd-transition);
}

.publication-link:hover {
    color: var(--wd-primary-color);
}

.author-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0rem;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.author-name {
    color: var(--wd-heading-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--wd-transition);
}

.author-name:hover {
    color: var(--wd-primary-color);
}

.follow-button {
    background: none;
    border-radius: 99px;
    padding: 0.25rem 0.75rem;
    color: var(--wd-text-color);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--wd-transition);
    font-weight: 400;
    text-align: left;
    padding-left: 0;
    border: none;
}

.follow-button:hover {
    border-color: var(--wd-heading-color);
    color: var(--wd-heading-color);
    background-color: var(--wd-background-grey);
}

.post-details {
    color: var(--wd-light-text-color);
    font-size: 0.9rem;
}

.action-bar {
    margin-bottom: 2rem;
}

.action-bar hr {
    border: none;
    border-top: 1px solid var(--wd-border-color);
    margin: 0.75rem 0;
}

.actions-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.actions-left, .actions-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--wd-light-text-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem;
    transition: var(--wd-transition);
}

.action-btn:hover {
    color: var(--wd-heading-color);
}

.featured-image-src {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

figcaption {
    margin-top: 0.75rem;
    color: var(--wd-light-text-color);
    font-size: 0.85rem;
    text-align: center;
}

.article-body {
    margin-bottom: 2rem;
    font-family: var(--wd-font-heading);
    color: var(--wd-text-color);
}

.article-body p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    color: var(--wd-text-color);
}

.article-body ul li p {
    margin-bottom: 0rem;
}

.article-body h2 {
    font-family: var(--wd-font-heading);
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 2rem 0 0.5rem;
    color: var(--wd-heading-color);
    font-weight: 600;
}

.article-body h3 {
    font-family: var(--wd-font-heading);
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 1.5rem 0 .5rem;
    color: var(--wd-heading-color);
    font-weight: 600;
}

.article-body a {
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: var(--wd-transition);
}

.article-body a:hover {
    text-decoration-thickness: 2px;
}

.article-body ul, .article-body ol {
    margin: 0 0 2rem 2rem;
    padding: 0;
}

.article-body li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.article-body blockquote {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--wd-heading-color);
    font-style: italic;
    color: var(--wd-heading-color);
}

.article-body blockquote p {
    font-size: 1.35rem;
    line-height: 1.6;
}

.article-body pre {
    background-color: var(--wd-background-grey);
    border-radius: 4px;
    padding: 1rem;
    margin: 2rem 0;
    overflow-x: auto;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.article-body code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.9em;
    background-color: var(--wd-background-grey);
    padding: 0.2em 0.4em;
    border-radius: 3px;
}

.article-body figure {
    margin: 1rem 0;
}

.article-body figure img {
    width: 100%;
    border-radius: 4px;
}

.article-body figcaption {
    margin-top: 0.75rem;
    color: var(--wd-light-text-color);
    font-size: 0.85rem;
    text-align: center;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #26851533;
    border-radius: 99px;
    color: var(--wd-text-color);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--wd-transition);
}

.tag-link:hover {
    background-color: #a5dfa554;
}

.end-clap-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.clap-btn-large {
    background: none;
    border: 1px solid var(--wd-border-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--wd-transition);
}

.clap-btn-large:hover {
    background-color: var(--wd-background-grey);
}

.end-clap-count {
    color: var(--wd-light-text-color);
    font-size: 0.9rem;
}

.section-separator {
    border: none;
    border-top: 1px solid var(--wd-border-color);
    margin: 3rem 0;
}

.author-footer-box {
    background-color: var(--wd-background-grey);
    border-radius: 4px;
    padding: 2rem;
    background: var(--wd-soft-green-gradient);
    margin-top: -17px;
    margin-bottom: 0rem;
}

.author-footer-content {
    display: flex;
    gap: 1.5rem;
}

.footer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.footer-name {
    font-family: var(--wd-font-heading);
    font-size: 20px;
    color: var(--wd-heading-color);
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
}

.footer-bio {
    color: var(--wd-text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.follow-button-large {
    background: #25851424;
    border-radius: 99px;
    padding: 0.5rem 1.25rem;
    color: var(--wd-text-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--wd-transition);
    align-self: flex-start;
    font-weight: 400;
    border: none;
}

.follow-button-large:hover {
    border-color: var(--wd-heading-color);
    color: var(--wd-heading-color);
    background-color: rgba(0, 0, 0, 0.05);
}

.responses-section {
    margin-bottom: 4rem;
}

.response-input-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.response-input-wrapper {
    flex: 1;
}

article.post-preview img {
    width: 100%;
}

.response-input {
    width: 100%;
    min-height: 120px;
    border: 1px solid var(--wd-border-color);
    border-radius: 4px;
    padding: 1rem;
    font-family: var(--wd-font-body);
    font-size: 1rem;
    color: var(--wd-text-color);
    resize: vertical;
}

.response-input:focus {
    outline: none;
    border-color: var(--wd-heading-color);
}

.related-posts-section {
    margin-bottom: 4rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comparison-table thead tr {
    background-color: #2BB965;
    color: white;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tbody tr:hover {
    background-color: #f0f8f4;
}

.migration-help-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid #2BB965;
}

.migration-help-box h3 {
    color: #2BB965;
    margin-top: 0;
    font-size: 24px;
}

.migration-help-box p {
    font-size: 16px;
    line-height: 1.6;
}

.migration-help-box ul {
    line-height: 1.8;
    margin: 15px 0;
    padding-left: 30px;
}

.migration-help-box li {
    margin-bottom: 8px;
}

.migration-cta-btn {
    display: inline-block;
    background-color: #2BB965;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.migration-cta-btn:hover {
    background-color: #239952;
}

.peak-performance-box {
    background: #f0f5f2;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #2BB965;
}

.peak-performance-box h3 {
    color: #2BB965;
    margin-top: 0;
    font-size: 24px;
}

.peak-performance-box p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.peak-performance-box p a {
    color: #2BB965;
    font-weight: 600;
    text-decoration: none;
}

.peak-performance-btn {
    display: inline-block;
    background-color: #2BB965;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.peak-performance-btn:hover {
    background-color: #239952;
}

.strategic-steps-box {
    background: linear-gradient(135deg, rgba(43, 185, 101, 0.1) 0%, rgba(43, 185, 101, 0.05) 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid rgba(43, 185, 101, 0.2);
}

.strategic-steps-box h3 {
    color: #2BB965;
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 20px;
}

.strategic-steps-box ol {
    margin: 0;
    padding-left: 25px;
}

.strategic-steps-box li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.strategic-steps-box li strong {
    color: #2BB965;
}

.comparison-table td.winner {
    background-color: rgba(43, 185, 101, 0.15);
    font-weight: 600;
    color: #2BB965;
}

.cta-box-blue {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a7b 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.cta-box-blue h3 {
    color: #fff;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
}

.cta-box-blue p {
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-box-blue .cta-btn {
    display: inline-block;
    background-color: #00B050;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-box-blue .cta-btn:hover {
    background-color: #009040;
    transform: translateY(-2px);
}

.article-body a.highlight-link {
    color: #00B050;
    font-weight: 600;
}

.cta-box {
    background: #f4fdf7;
    border-left: 5px solid #00B050;
    padding: 25px;
    margin: 30px 0;
}

.cta-box h3 {
    color: var(--wd-heading-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.cta-box p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
}

.cta-box a {
    color: #00B050;
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, #00B050 0%, #008040 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.cta-section h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 28px;
}

.cta-section p {
    color: white;
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-section .btn {
    background: white;
    color: #00B050;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

/* ===== BLOG ARTICLE 2 — SHARED (alt design) (.page-article-2) ===== */

/* ===== HEALTHCARE_APP_DEVELOPMENT PAGE (.page-healthcare-app-development) ===== */

.compliance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.compliance-card:hover::before {
    opacity: 1;
}

.compliance-card:hover .compliance-icon {
    transform: rotate(360deg);
}

.compliance-content h3 {
    color: var(--wd-primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    transition: color 0.3s ease;
}

.compliance-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.compliance-badge {
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgb(233 242 231);
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--wd-primary-color);
}

.compliance-badge i {
    font-size: 1rem;
}

.compliance-section .compliance-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 0 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.compliance-section .compliance-icon {
    margin-left: auto;
    margin-right: auto;
}

.compliance-section .compliance-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.compliance-section .compliance-badge {
    display: inline-flex;
    margin-top: auto;
    align-self: center;
}

/* ===== MOBILE_APP_DEVELOPMENT PAGE (.page-mobile-app-development) ===== */

.tech-category {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.tech-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.tech-category-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wd-primary-color), #60d0c4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.tech-category h3 {
    color: var(--wd-primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
}

.tech-list-container {
    padding: 15px 0;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-item:last-child {
    border-bottom: none;
}

/* ===== PORTFOLIO_DETAIL_CARBUDDY PAGE (.page-portfolio-detail-carbuddy) ===== */

.portfolio-detail-hero {
    position: relative;
    padding: 120px 0 80px;
    background: var(--wd-soft-green-solid);
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.portfolio-detail-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.08), rgba(78, 205, 196, 0.08));
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.portfolio-detail-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.06), rgba(37, 132, 18, 0.06));
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}.portfolio-detail-hero .hero-content {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.portfolio-detail-hero .hero-text {
    z-index: 2;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--wd-text-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    padding: 10px 18px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--wd-primary-color);
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(37, 132, 18, 0.15);
}

.back-link i {
    transition: transform 0.3s ease;
}

.back-link:hover i {
    transform: translateX(-3px);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.project-tags .tag {
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.1), rgba(78, 205, 196, 0.1));
    color: var(--wd-primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(37, 132, 18, 0.15);
    transition: all 0.3s ease;
}

.project-tags .tag:hover {
    background: var(--wd-primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    justify-content: center;
}

.hero-buttons .btn-primary {
    background: linear-gradient(90deg, var(--wd-primary-color), var(--wd-accent-color));
    color: var(--white);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 132, 18, 0.4);
}

.hero-buttons .btn-outline {
    background: var(--white);
    color: var(--wd-heading-color);
    border: 2px solid #e5e7eb;
}

.hero-buttons .btn-outline:hover {
    border-color: var(--wd-primary-color);
    color: var(--wd-primary-color);
    transform: translateY(-3px);
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.1), rgba(78, 205, 196, 0.15));
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

.hero-visual .phone-mockup {
    position: relative;
    width: 280px;
    height: 570px;
    background: linear-gradient(145deg, #1f1f1f 0%, #0a0a0a 100%);
    border-radius: 45px;
    padding: 10px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.25),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 1;
    margin: 0 auto;
}

.hero-visual .phone-mockup::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 22px;
    background: #0a0a0a;
    border-radius: 20px;
    z-index: 3;
}

.hero-visual .phone-mockup::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #1a3a1a 30%, #0d1f0d 70%);
    border-radius: 50%;
    z-index: 4;
}

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

.hero-visual .float-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    z-index: 5;
    animation: floatBadge 3s ease-in-out infinite;
}

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

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

.hero-visual .laptop-mockup {
    position: relative;
    width: 580px;
    z-index: 1;
}

.laptop-screen {
    position: relative;
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 16px 16px 0 0;
    padding: 8px 8px 0 8px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #2a2a2a 40%, #1a1a1a 70%);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.laptop-screen-inner {
    background: #ffffff;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.laptop-screen-inner img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: top center;
    display: block;
    flex-shrink: 0;
    animation: smoothScrollLaptopAuto 40s ease-in-out infinite;
}

@keyframes smoothScrollLaptopAuto {
    0% {
        transform: translateY(0);
    }

    37.5% {
        transform: translateY(calc(-100% + var(--laptop-screen-height, 280px)));
    }

    50% {
        transform: translateY(calc(-100% + var(--laptop-screen-height, 280px)));
    }

    87.5% {
        transform: translateY(0);
    }

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

.hero-visual .laptop-mockup:hover .laptop-screen-inner img {
    animation-play-state: paused;
}

.laptop-base {
    position: relative;
    height: 18px;
    background: linear-gradient(180deg, #3d3d3d 0%, #2a2a2a 50%, #1f1f1f 100%);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(180deg, #4a4a4a, #3a3a3a);
    border-radius: 0 0 4px 4px;
}

.laptop-bottom {
    position: relative;
    height: 12px;
    background: linear-gradient(180deg, #1f1f1f, #0f0f0f);
    border-radius: 0 0 12px 12px / 0 0 8px 8px;
    margin: 0 -15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.laptop-bottom::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 2px;
}

.hero-visual .tech-float {
    position: absolute;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    z-index: 5;
    animation: floatBadge 3s ease-in-out infinite;
}

.hero-visual .tech-float i {
    font-size: 18px;
}

.hero-visual .tech-float.html-badge {
    top: 15%;
    left: -20px;
    color: #E34F26;
    animation-delay: 0s;
}

.hero-visual .tech-float.css-badge {
    top: 45%;
    right: 0px;
    color: #1572B6;
    animation-delay: 0.5s;
}

.hero-visual .tech-float.js-badge {
    bottom: 20%;
    left: -10px;
    color: #F7DF1E;
    background: #323330;
    animation-delay: 1s;
}

.hero-visual .tech-float.react-badge {
    bottom: 5%;
    right: -10px;
    color: #61DAFB;
    animation-delay: 1.5s;
}

.section-label {
    display: inline-block;
    background: linear-gradient(90deg, var(--wd-primary-color), var(--wd-accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.project-overview {
    padding: 60px 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-intro-left {
    font-size: 16px;
    color: var(--wd-text-color);
    line-height: 1.85;
    margin-bottom: 18px;
    text-align: left;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfeff 100%);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(37, 132, 18, 0.08);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.stat-card:hover {
    box-shadow: 0 8px 25px rgba(37, 132, 18, 0.12);
    border-color: rgba(37, 132, 18, 0.15);
}

.stat-card:hover .stat-icon {
    background: var(--wd-primary-color);
}

.stat-card:hover .stat-icon i {
    color: white;
}

.stat-icon i {
    font-size: 24px;
    color: var(--wd-primary-color);
    transition: color 0.4s ease;
}

.the-challenge {
    padding: 60px 0;
    background: #fff;
}

.challenge-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--wd-heading-color);
    margin-bottom: 24px;
}

.challenge-content>p {
    font-size: 17px;
    color: var(--wd-text-color);
    line-height: 1.85;
    max-width: 800px;
    margin-bottom: 50px;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.pain-point:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(37, 132, 18, 0.1);
}

.pain-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-accent-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.pain-point p {
    font-size: 15px;
    color: var(--wd-text-color);
    line-height: 1.7;
    margin: 0;
    padding-top: 4px;
}

.key-features {
    padding: 60px 0px;
    background: var(--wd-soft-green-gradient);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}



.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wd-primary-color), var(--wd-accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-accent-color));
    color: var(--white);
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.screenshots-gallery {
    padding: 60px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #e8f5e9 50%, #f0fdf4 100%);
    overflow: hidden;
    position: relative;
}

.screenshots-gallery::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 132, 18, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.screenshots-gallery::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.screenshots-gallery .section-header {
    position: relative;
    z-index: 2;
}

.screenshots-gallery .section-header .section-label {
    color: var(--wd-primary-color);
}

.gallery-wrapper {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.gallery-scroll {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
}

.screenshot-item {
    position: relative;
    width: 220px;
    height: 450px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 32px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.screenshot-item:nth-child(2) {
    transform: translateY(-20px);
}

.screenshot-item:nth-child(4) {
    transform: translateY(-20px);
}

.screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(37, 132, 18, 0.15);
}

.screenshot-item:nth-child(2):hover, .screenshot-item:nth-child(4):hover {
    transform: translateY(-30px);
}

.screenshot-item::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 20px;
    z-index: 10;
}

.screenshot-item::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(50% + 25px);
    width: 10px;
    height: 10px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 50%;
    z-index: 11;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.use-cases {
    padding: 60px 0px;
    background: var(--white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.use-case-card {
    background: var(--white);
    padding: 25px 25px;
    text-align: center;
    border: 2px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.use-case-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wd-primary-color), var(--wd-accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    border-color: rgba(37, 132, 18, 0.15);
    box-shadow: 0 10px 30px rgba(37, 132, 18, 0.08);
}

.use-case-card:hover::after {
    transform: scaleX(1);
}

.use-case-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.1) 0%, rgba(76, 175, 80, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--wd-primary-color);
    font-size: 26px;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-accent-color));
    color: var(--white);
}

.use-case-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--wd-heading-color);
    margin-bottom: 12px;
}

.use-case-card p {
    font-size: 14px;
    color: var(--wd-text-color);
    line-height: 1.7;
    margin: 0;
}

.results-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--wd-background-dark) 0%, #263445 100%);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.results-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.result-stat {
    text-align: center;
    padding: 20px;
}

.results-content {
    max-width: 1030px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tech-category h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--wd-text-color);
    margin-bottom: 22px;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-item i {
    font-size: 22px;
    color: var(--wd-primary-color);
}

.tech-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--wd-heading-color);
}

.testimonial-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--wd-background-light) 0%, #f0fdf4 100%);
}

/* .testimonial-card::before {content: ''; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px; background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-accent-color)); border-radius: 30px; z-index: -1; opacity: 0.15;}
 */

.testimonial-card blockquote {
    font-size: 21px;
    color: var(--wd-heading-color);
    line-height: 1.75;
    font-style: italic;
    margin: 0 0 36px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--wd-heading-color);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--wd-text-color);
    margin: 0;
}

.more-projects {
    padding: 60px 0 20px;
    background: linear-gradient(180deg, var(--wd-background-light) 0%, var(--white) 100%);
    position: relative;
}

.more-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 132, 18, 0.15), transparent);
}

.more-projects .section-header {
    margin-bottom: 20px;
    text-align: center;
}

.more-projects .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--wd-primary-color), var(--wd-accent-color));
    border-radius: 2px;
}

.projects-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 70px 40px;
}

.projects-row {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.projects-slider-container .arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #258412, #4ECDC4);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    line-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 132, 18, 0.3);
}

.projects-slider-container .arrow.left {
    left: 14px;
}

.projects-slider-container .arrow.right {
    right: 14px;
}

.projects-slider-container .arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.projects-slider-container .arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.project-mini-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    min-width: calc(50% - 15px);
    flex-shrink: 0;
}

.project-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--wd-primary-color), var(--wd-accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-mini-card:hover {
    background: var(--white);
    box-shadow: 0 15px 40px rgba(37, 132, 18, 0.12);
    border-color: rgba(37, 132, 18, 0.15);
    transform: translateY(-5px);
}

.project-mini-card:hover::before {
    opacity: 1;
}

.project-mini-card:hover .mini-image {
    transform: scale(1.05);
}

.project-mini-card:hover .mini-image img {
    transform: scale(1.1);
}

.project-mini-card:hover i {
    color: var(--white);
    background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-accent-color));
    transform: translateX(5px);
}

.mini-image {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: none;
    transition: transform 0.4s ease;
    border: 2px solid #298b225c;
}

.mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    object-position: top;
}

.mini-content {
    flex: 1;
}

.mini-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--wd-heading-color);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.project-mini-card:hover .mini-content h4 {
    color: var(--wd-primary-color);
}

.mini-content span {
    font-size: 14px;
    color: var(--wd-text-color);
    display: inline-block;
    padding: 4px 12px;
    background: rgba(37, 132, 18, 0.08);
    border-radius: 20px;
    font-weight: 400;
}

.project-mini-card i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wd-primary-color);
    font-size: 18px;
    background: rgba(37, 132, 18, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}.app-screens-section {
    padding: 60px 0 10px;
    background: var(--wd-soft-green-gradient);
    position: relative;
    overflow: hidden;
}

.app-screens-section .section-header {
    margin-bottom: 0px;
}

.screens-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 55px;
}

.screens-slider-viewport {
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    position: relative;
    margin: 0 auto 20px;
    min-height: 670px;
}

.center-phone-frame {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 524px;
    border-radius: 45px;
    z-index: 12;
    pointer-events: none;
    background: transparent;
    border: 4px solid;
    border-color: #1a1a1a;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(255, 255, 255, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 0 0 3px #0a0a0a;
}

.frame-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 20px;
    background: #0a0a0a;
    border-radius: 20px;
    z-index: 30;
}

.frame-notch::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #1a3a1a 30%, #0d1f0d 70%);
    border-radius: 50%;
}

.center-phone-frame::before, .center-phone-frame::after {
    display: none;
}

.screens-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
    align-items: center;
    cursor: grab;
    user-select: none;
}

.screens-slider-track:active {
    cursor: grabbing;
}

.screen-slide img {
    width: 250px;
    height: 517px;
    border-radius: 40px;
    transition: none;
    opacity: 1;
    transform: none;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 25px;
}

.screen-slide.active img {
    height: 517px;
    width: 250px;
    opacity: 1;
    border-radius: 40px;
    box-shadow: none;
    position: relative;
    z-index: 20;
    transform: none;
    transition: none;
    border: none;
}

.screens-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(37, 132, 18, 0.2);
    background: var(--white);
    color: var(--wd-primary-color);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 20;
}

.screens-nav:hover {
    background: var(--wd-primary-color);
    border-color: var(--wd-primary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 132, 18, 0.3);
}

.screens-nav:active {
    transform: scale(0.95);
}

.screens-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.screens-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
    bottom: 70px;
}

.screen-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.screen-dot:hover {
    background: rgba(37, 132, 18, 0.4);
}

.screen-dot.active {
    width: 32px;
    border-radius: 5px;
    background: var(--wd-primary-color);
}

.screens-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0px auto 0;
    padding: 0 0px;
    position: relative;
    margin-top: -40px;
}

.screens-content-wrapper:before {
    position: absolute;
    content: "";
    background: #fff;
    left: 0;
    right: 0;
    top: 100px;
    bottom: 100px;
    border-radius: 280px;
    box-shadow: 0 0 30px 0 #00000012;
}

.screens-content-wrapper .screens-slider-container {
    position: relative;
    flex: 0 0 auto;
    width: 50%;
    max-width: 490px;
}

.slide-description-container {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.slide-description {
    display: none;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
    text-align: left;
    flex: 1;
    max-width: 95%;
    margin-top: 0px;
    padding: 30px 30px 30px 15px;
}

.slide-description.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

.slide-description .description-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(37, 132, 18, 0.2);
}

.slide-description .description-icon i {
    font-size: 24px;
    color: white;
}

.slide-description h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--wd-heading-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.slide-description p {
    font-size: 16px;
    color: var(--wd-text-color);
    line-height: 1.8;
}

button.screens-nav.screens-prev {
    position: absolute;
    left: 26px;
    z-index: 20;
}

button.screens-nav.screens-next {
    position: absolute;
    right: 26px;
    z-index: 20;
}

.screen-slide {
    flex: 0 0 100%;
    padding: 0 15px;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    min-height: 662px;
    position: relative;
    opacity: 0.3;
    pointer-events: none;
}

.screen-slide.active {
    z-index: 20;
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

/* ===== PORTFOLIO DETAIL — SHARED (.page-portfolio-detail) ===== */

/* ===== LEGAL PAGES — SHARED (.page-legal) ===== */

.policy-title-section {
    padding: 120px 0 60px;
    background: #EBF4E9;
    text-align: center;
    color: var(--white);
}

.policy-title-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.policy-title-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    color: var(--wd-text-color);
}

.policy-content-section {
    padding: 60px 0;
}

.policy-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    position: relative;
}

.policy-toc {
    position: sticky;
    top: 90px;
    align-self: start;
    background: var(--wd-soft-green-gradient);
    border-radius: var(--wd-border-radius);
    padding: 30px;
    max-height: calc(100vh - 50px);
    overflow-y: auto;
}

.policy-toc h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--wd-heading-color);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--wd-border-color);
}

.policy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-toc li {
    margin-bottom: 0px;
}

.policy-toc a {
    font-size: 16px;
}

.policy-toc a:hover {
    color: var(--wd-primary-color);
}

.policy-toc a.active,
.policy-toc ul li a.active {
    color: #2BB965 !important;
    font-weight: 600 !important;
}

.policy-content {
    background-color: #ffffff;
    border-radius: var(--wd-border-radius);
    padding: 40px 0px;
    padding-top: 0;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.6rem;
    color: var(--wd-heading-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--wd-border-color);
    font-weight: 600;
}

.policy-section h3 {
    font-size: 1.4rem;
    color: var(--wd-heading-color);
    margin: 30px 0 15px;
}

.policy-section p {
    color: var(--wd-text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-section ul, .policy-section ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-section li {
    color: var(--wd-text-color);
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-section a {
    color: var(--wd-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.policy-section a:hover {
    text-decoration: underline;
}

.policy-toc ul li a {
    transition: all 0.3s ease;
    position: relative;
    display: block;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
}

.policy-toc ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #2BB965, #4ECDC4);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.policy-toc ul li a.active {
    color: #2BB965;
    font-weight: 600;
    transform: translateX(5px);
}

.policy-toc ul li a.active::before {
    transform: translateY(-50%) scaleY(1);
}

.policy-toc ul li a:hover {
    color: #2BB965;
    transform: translateX(5px);
}

/* ===== SERVICE_TEMPLATE PAGE (.page-service-template) ===== */

/* ===== SITEMAP PAGE (.page-sitemap) ===== */

.sitemap-hero {
    background: var(--wd-soft-green-gradient);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sitemap-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(rgba(37, 132, 18, 0.15), transparent 70%);
    top: -200px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.sitemap-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(rgba(78, 205, 196, 0.12), transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.sitemap-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--wd-heading-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.sitemap-hero p {
    font-size: 19px;
    color: var(--wd-text-color);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.sitemap-content {
    padding: 20px 0 80px;
    background: var(--white);
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin-top: 50px;
}

.sitemap-section.blog-fullwidth {
    grid-column: 1 / -1;
}

.sitemap-section.blog-fullwidth .sitemap-links {
    column-width: 300px;
    column-gap: 40px;
}

.sitemap-section.blog-fullwidth .sitemap-links li {
    break-inside: avoid;
}

.sitemap-section {
    background: white;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sitemap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wd-primary-color), var(--wd-accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sitemap-section:hover::before {
    transform: scaleX(1);
}

.sitemap-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 132, 18, 0.15);
}

.sitemap-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
    padding-bottom: 22px;
    border-bottom: 2px solid rgba(37, 132, 18, 0.08);
}

.sitemap-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-accent-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.sitemap-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--wd-heading-color);
    margin: 0;
    line-height: 1.3;
}

.sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-links li {
    margin-bottom: 0px;
}

.sitemap-links li:last-child {
    margin-bottom: 0;
}

.sitemap-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--wd-text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 14px;
    border-radius: 10px;
    position: relative;
}

.sitemap-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--wd-primary-color);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.sitemap-links a:hover::before {
    height: 70%;
}

.sitemap-links a:hover {
    color: var(--wd-primary-color);
    background: rgba(37, 132, 18, 0.06);
    padding-left: 14px;
}

.sitemap-links a i {
    font-size: 14px;
    color: var(--wd-primary-color);
    transition: transform 0.3s ease;
}

.sitemap-links a:hover i {
    transform: translateX(3px);
}

.link-count {
    display: inline-block;
    background: rgba(37, 132, 18, 0.1);
    color: var(--wd-primary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    margin-left: auto;
}

/* ===== TORONTO_APP_DEVELOPERS PAGE (.page-toronto-app-developers) ===== */

.industries-section.section-padding {
    padding-bottom: 60px;
}

/* ===== LANDING SHARED (.page-landing) ===== */

.trust-swiper {
    overflow: hidden;
    width: 100%;
}

.trust-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.trust-swiper .swiper-slide {
    flex: 0 0 184px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 70px;
}

.trust-new-section, .features-new-section, .how-it-works-new-section, .pricing-new-section, .pricing-value-section, .faq-section, .process-section, .industry-section, .solutions-section, .compliance-section, .challenges-section, .case-studies-section, .tech-stack-section, .demo-section, #testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
}

.challenge-content h3, .solution-content h3, .case-study-content h3, .compliance-card h3, .tech-stack-card h3 {
    font-size: 1.4rem;
}

.challenge-content p, .solution-content p, .case-study-content p, .compliance-card p, .tech-stack-card p {
    font-size: 0.95rem;
}

/* ===== AI-SOLUTION PAGES — SHARED (.page-ai-solution) ===== */

/* ===== TORONTO_AI_DEVELOPMENT PAGE (.page-toronto-ai-development) ===== */

/* ===== THANK_YOU PAGE (.page-thank-you) ===== */

/* ============================================================
   GLOBAL FAQ STYLES - single source of truth (ref: ai-development)
   All per-page .faq-* rules consolidated here. Edit ONCE.
   ============================================================ */
.faq-section {
    padding: 60px 0;
    background-color: #fff;
}
/* FAQ section: top padding, no bottom */

.faq-section .section-title { font-size: 36px; }

.faq-wrapper {
    max-width: 910px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #25841236;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: none;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color .3s ease;
    background: #ffffff;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    color: var(--wd-heading-color);
}

.faq-question p {
    color: #4a5568;
}

.faq-question i {
    color: var(--wd-primary-color);
    transition: transform .3s ease;
}

.faq-answer {
    padding: 0 20px;
}

.faq-answer p {
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
}


/* ============================================================
   GLOBAL HEADINGS - single source of truth (Inter + 600)
   All per-page h1-h6 rules consolidated here. Edit ONCE.
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--wd-heading-color);
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* GLOBAL SECTION TITLE - single source of truth: 36px everywhere except home (hero/footer use own classes) */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 700;
    color: var(--wd-heading-color);
    margin: 0 auto 12px;
}
/* Home (ai-dev-page) keeps its own larger section titles */
body.ai-dev-page .section-title { font-size: 41.6px; }

/* ===== GLOBAL SECTION SUBTITLE - single source of truth (ref: ai-development) ===== */
.section-subtitle {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #258412;
    margin-bottom: 5px;
}

/* Section header wrappers (approach/services/process/testimonials) center their
   title + subtitle. The <h2> inside now uses the global .section-title class. */

/* ===== GLOBAL TESTIMONIALS - single source of truth (ref: home/ai-dev-page) ===== */
#testimonials {
    position: relative;
    padding: 60px 0;
    background-color: #fff;
}
.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.testimonial-card {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}
.testimonial-content {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}
.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #495057;
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial-content .client-info {
    justify-content: center;
}
.testimonial-quote {
    font-size: 36px;
    color: rgba(43, 185, 101, 0.2);
    margin-bottom: 16px;
}

/* ===== GLOBAL TRUST SECTION wrapper - single source (ref: home/ai-dev-page) ===== */
.trust-new-section {
    padding: 60px 0px 60px;
    background: var(--wd-soft-green-gradient);
}
/* AI-solution pages: Trusted by Innovators section white */
 .trust-new-section,  .trust-new-section { background: #fff; }

/* ===== GLOBAL timeline track (home-style process, single source) ===== */
.timeline-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    /* flex-wrap: wrap; */
}

/* ===== GLOBAL APPROACH CARDS - single source (ref: home/ai-dev-page) ===== */
.approach-card {
    padding: 28px 28px;
    transition: all 0.4s ease;
    background: #fff;
    text-align: center;
    border: 1px solid rgb(0 0 0 / 9%);
    position: relative;
    overflow: hidden;
}
.approach-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: rgba(37, 132, 18, 0.12);
}
.approach-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background-color: rgba(43, 185, 101, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.1) 0%, rgba(76, 175, 80, 0.15) 100%);
    color: var(--wd-primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

/* ===== GLOBAL TECH-STACK section - single source (ref: page-ai-development) ===== */
.tech-stack-section {
    padding: 60px 0;
    background: var(--wd-soft-green-gradient);
    position: relative;
    overflow: hidden;
    background-color: var(--wd-background-grey);
}
.tech-stack-card {
    background-color: var(--white);
    border-radius: var(--wd-border-radius);
    box-shadow: var(--wd-box-shadow);
    padding: 25px 25px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    height: auto;
    flex: 0 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}
.tech-stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    align-items: stretch;
}
.tech-stack-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

/* ===== GLOBAL hero badge - single source ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #258412;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.15) 0%, rgba(37, 132, 18, 0.25) 100%);
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* ===== GLOBAL hero title - single source (46px) ===== */
.hero-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    animation: fadeInUp 1.2s ease;
    color: #1c2a3e;
}

/* ===== GLOBAL floating-card - single source ===== */
.floating-card {
    position: absolute;
    background: var(--white);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    animation: float 6s ease-in-out infinite;
    text-align: left;
    z-index: 1;
}

/* ===== GLOBAL hero-new-description - single source ===== */

/* ===== GLOBAL buttons - single source ===== */
.btn {display: inline-block; padding: 12px 25px; border-radius: 6px; font-weight: 600; text-align: center; cursor: pointer; transition: all .3s ease; font-family: Inter, sans-serif; font-size: 1rem;}
.btn-primary {background: linear-gradient(90deg, var(--primary), #4ecdc4); color: var(--white); padding: 12px 25px; border-radius: 6px; text-decoration: none; display: inline-block; font-weight: 600; transition: all .3s ease;}

/* ===== GLOBAL trust stats - single source ===== */
.trust-new-stats {
    display: grid;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 980px;
    margin: 3.5rem auto 0;
    padding-top: 3rem;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    background: #ffffff;
    border: 1px solid #edf1f4;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(44, 62, 80, 0.07);
    overflow: hidden;
}
.trust-stat-item {
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 2rem 2rem;
    box-shadow: none;
    transition: background .35s ease;
}
.trust-stat-item .stat-value {
    margin-bottom: .2rem;
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--wd-primary-color);
    line-height: 1;
    margin-top: 20px;
    margin: 0 0 1.1rem;
    background: linear-gradient(135deg, var(--wd-primary-color), #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.trust-stat-item .stat-title {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--wd-primary-color);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}
.trust-stat-item .stat-desc {
    display: block;
    font-size: 0.875rem;
    color: var(--wd-light-text-color);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}
.trust-stat-item:hover {
    transform: none;
    box-shadow: none;
    background: #fafdfb;
}
.trust-stat-item:not(:last-child) {
    border-right: 1px solid #edf1f4;
}

/* ===== GLOBAL challenges section - single source ===== */
.challenge-card {
    background-color: var(--white);
    border-radius: var(--wd-border-radius);
    box-shadow: var(--wd-box-shadow);
    padding: 25px 25px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.challenge-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--wd-heading-color);
    font-weight: 700;
}
.challenge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(74, 144, 226, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.challenges-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

/* ============================================================
   GLOBALIZED multi-page sections (ref: ai-development/home)
   ============================================================ */
#contact {
    padding: 60px 0px 60px 0px;
    background: var(--wd-soft-green-gradient);
}
.approach-header, .services-header, .process-header, .testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.badge-icon {
    color: #258412;
    font-size: 1.2rem;
}
.badge-text {
    color: #258412;
    font-size: .9rem;
    font-weight: 600;
}
.bar-value {
    color: #0a5226 !important;
}
.btn-large {
    padding: 12px 30px;
    font-size: 1rem;
}
.btn-outline {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #dee2e6;
    padding: 10px 25px;
}
.btn-outline:hover {
    border-color: #258412;
    color: #258412;
    transform: translateY(-2px);
    background: transparent;
}
.btn-outline-light {
    background: #ffffff;
    color: #268616;
    border: 1px solid hsla(0, 0%, 100%, .3);
    padding: 10px 24px;
    border-radius: var(--wd-border-radius);
    font-weight: 600;
    transition: all .3s ease;
}
.btn-outline-light:hover {
    background: hsla(0, 0%, 100%, .1);
    border-color: #fff;
    color: #fff;
}
.btn-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--white);
    transform: translateY(-3px);
}
.btn-primary:hover i {
    transform: translateX(0px);
}
.btn-secondary:hover {
    background-color: rgba(74, 144, 226, .1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(40, 180, 99, 0.1);
}
.calculator-container {
    background: #fff;
    border-radius: 10px;
    padding: 0;
    max-width: 1440px;
    margin: 0 auto;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 24px;
    margin-bottom: 34px;
}
.card-content h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: .25rem;
    margin-top: 0;
}
.card-content p {
    color: #4a5568;
    font-size: .9rem;
    margin-top: 0;
}
.card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background: linear-gradient(135deg, #4ecdc4, #2bb965);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}
.case-studies-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
}
.case-studies-section {
    padding: 60px 0;
    background: var(--wd-soft-green-gradient);
}
.case-study-card {
    background: var(--white);
    box-shadow: var(--wd-box-shadow);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}
.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
}
.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}
.case-study-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.case-study-content h3 {
    font-size: 1.55rem;
    color: var(--wd-heading-color);
    margin-bottom: 15px;
}
.case-study-tag {
    color: #268617;
}
.case-study-content p {
    flex-grow: 1;
    margin-bottom: 20px;
    color: var(--wd-text-color);
    line-height: 1.6;
}
.case-study-image {
    position: relative;
    height: 330px;
    overflow: hidden;
}
.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.case-study-results {
    display: flex;
    gap: 35px;
}
.case-study-stats, .case-study-stats-grid {
    gap: 20px;
    margin-top: 0px;
    padding-top: 20px;
    border-top: 1px solid var(--wd-border-color);
}
.client-details h3 {
    margin-bottom: 4px;
    font-size: 18px;
    color: #2c3e50;
}
.client-details h4 {
    margin-bottom: 4px;
    font-size: 18px;
    color: #2c3e50;
}
.client-image {
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    border-radius: 9999px;
    overflow: hidden;
    width: 60px;
    height: 60px;
}
.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 40px;
    min-height: 40px;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.company-address p {
    line-height: 1.6;
    color: var(--wd-text-color);
    margin: 0;
    font-size: .9rem;
}
.compliance-card {
    background-color: var(--white);
    border-radius: var(--wd-border-radius);
    box-shadow: var(--wd-box-shadow);
    padding: 30px 25px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 100%;
}
.compliance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(44, 62, 80, .15);
}
.compliance-grid {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.compliance-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 132, 18, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.compliance-section {
    background-color: #fff;
    padding: 60px 0;
    position: relative;
}
.contact-button {
    background: linear-gradient(90deg, var(--wd-primary-color), #4ECDC4);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease;
    display: inline-block;
}
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin: 1.5rem 0;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    margin-top: 6px;
}
.contact-item a {
    color: var(--wd-text-color);
    text-decoration: none;
    transition: color .2s;
    font-size: .95rem;
}
.contact-item a:hover {
    color: var(--wd-primary-color);
}
.contact-item i {
    color: var(--wd-primary-color);
    font-size: .9rem;
}
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 22px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.cta-content {
    padding-right: 40px;
}
.cta-content .section-title {
    text-align: left;
    margin: 0 0 16px;
}
.cta-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.demo-section {
    padding: 60px 0 10px;
}
.fa-solid, .fas {
    font-family: Font Awesome\ 6 Free;
    font-weight: 900;
}
.feature-card {
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--wd-box-shadow);
    transition: transform 0.3s ease;
    border: 1px solid #edf2f7;
    overflow: hidden;
}
.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.feature-card p {
    font-size: 15px;
    color: var(--wd-text-color);
    margin-bottom: 0;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-card-new {
    background-color: var(--white);
    padding: 20px 18px;
    border-radius: 20px;
    box-shadow: 0 0 18px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
    border-top: 4px solid transparent;
    flex: 0 1 calc(25% - 1.4rem);
    min-width: 250px;
}
.featured-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--wd-box-shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}
.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(40, 180, 99, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 400px));
    gap: 24px;
    margin-top: 40px;
    justify-content: center;
}
.features-new-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.8rem;
}
.features-new-section {
    background-color: #fff;
    padding: 60px 0;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.free_demo_title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero-background {
    top: 0;
    height: 100%;
    z-index: 1;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 25px;
    max-width: 100%;
}
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.hero-image {
    position: absolute;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: transform 0.5s ease;
    top: 19%;
    left: 0;
    width: 100%;
    animation: float 8s ease-in-out infinite;
}
.services-hero .hero-image {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    width: auto;
    transform: perspective(1000px) rotateY(-5deg);
    animation: none;
    transition: transform 0.5s ease;
}
.hero-new-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.hero-new-section {
    position: relative;
    padding: 60px 0 60px;
    background: linear-gradient(135deg, rgba(37, 132, 18, .12), rgba(37, 132, 18, .05));
    overflow: hidden;
    margin-top: 80px;
}
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 10px;
    animation: fadeInUp .8s ease-out .8s backwards;
}
.hero-tagline {
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(90deg, var(--wd-primary-color), var(--wd-accent-color));
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-style: normal;
}
.hero-visual {
    max-width: 100%;
    height: auto;
    position: relative;
}
.hero-visual-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .3));
    border-radius: 20px;
}
.highlight {
    color: #258412;
    font-weight: 800;
}
.highlight-text {
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.industry-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--wd-border-radius);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 0px;
}
.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
}
.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--white);
    font-size: 1.4rem;
}
.industry-section {
    padding: 60px 0;
    background-color: #fff;
}
.industry-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}
.location-content {
    padding: 0px;
    display: flex;
    align-items: center;
    margin: 0 -15px;
    flex-wrap: wrap;
}

.location-map_img iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
    display: block;
}
.main-content-area {
    max-width: 1280px;
    margin: 0 auto;
    padding: 140px 16px 70px 16px;
}
.post-title {
    font-family: var(--wd-font-heading);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0rem;
    font-weight: 600;
}
.pricing-rate-display {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--wd-primary-color);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.pricing-tagline-value {
    font-size: 1rem;
    color: var(--wd-text-color);
    line-height: 1.6;
}
.pricing-value-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: center;
    background-color: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, .08);
}
.pricing-value-section {
    background: var(--wd-soft-green-gradient);
    padding: 60px 0;
}
.process-section {
    padding: 60px 0;
    background: var(--wd-soft-green-gradient);
}
/* AI-solution pages: move Implementation Process bg -> Testimonials ("What Our Clients Say") */
 .process-section,  #testimonials,  #testimonials { background: var(--wd-soft-green-gradient); }
.process-step, .launch-step {
    position: relative;
    background: var(--white);
    padding: 48px 20px 40px;
    border-radius: 20px;
    box-shadow: var(--wd-box-shadow);
    text-align: center;
    z-index: 2;
    transition: transform .3s ease, box-shadow .3s ease;
}
.process-step h3, .launch-step h3 {
    font-size: 1.5rem;
    color: var(--wd-heading-color);
    margin-bottom: 15px;
}
.process-step p, .launch-step p {
    color: var(--wd-text-color);
    line-height: 1.6;
    margin-bottom: 0;
}
.process-steps, .launch-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}
/* AI-solution pages: process steps 3 per row (3+3), equal height, no connector line */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 55px 30px; align-items: stretch; }
.process-steps::before { display: none; }
.process-step { height: 100%; }
.progress-step {
    color: #0a6e2e !important;
}
.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
    border: 1px solid #ebebeb;
}
.project-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.project-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--wd-heading-color);
    margin-bottom: 12px;
    line-height: 1.3;
}
.project-content p {
    color: var(--wd-text-color);
    line-height: 1.6;
    margin-bottom: 14px;
}
.project-date, .project-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-right: 18px;
}
.project-image {
    position: relative;
    overflow: hidden;
}
.pt-top {
    padding-top: 43px;
}
.quote-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    top: -0.75rem;
    left: -0.75rem;
    color: var(--wd-primary-color);
}
.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--wd-primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.read-more:hover {
    color: #1a8917;
}
.result-label {
    display: block;
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.result-number {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: inline-block;
}
.results-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.85;
    margin-bottom: 0;
}
.result-suffix {
    font-size: 36px;
    font-weight: 700;
    color: var(--wd-accent-color);
}
.section-intro {
    max-width: 980px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}
.section-padding {
    padding: 60px 0;
}
.section-scroll-anim {
    background: var(--wd-soft-green-solid);
}

.section-subtitle-bottom {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}
.service-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0px 18px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}
.service-icon-new {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.1) 0%, rgba(76, 175, 80, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--wd-primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}
.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(37, 132, 18, 0.1);
}
.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation: float 15s infinite alternate ease-in-out;
}
.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    opacity: 0.5;
    animation: float 12s infinite alternate-reverse ease-in-out;
}
.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 15%;
    opacity: 0.7;
    animation: float 18s infinite alternate ease-in-out;
}
.shape-4 {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 30%;
    opacity: 0.2;
    animation: float 20s infinite alternate-reverse ease-in-out;
}
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}
.shape-divider .shape-fill {
    fill: #fff;
}
.solution-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--wd-box-shadow);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #edf2f7;
}
.solution-card:hover {
    transform: translateY(-5px);
}
.solution-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--wd-heading-color);
    font-weight: 700;
}
.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(41 138 34 / 11%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    min-width: 60px;
    min-height: 60px;
}
.solution-number {
    width: 50px;
    height: 50px;
    background-color: var(--wd-primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}
.solutions-grid {
    display: grid;
    gap: 26px;
    margin-bottom: 0;
}
/* AI-solution pages (financial/healthcare/manufacturing): 2 cards per row + hide number badges */
.solution-number { display: none; }
.solutions-grid { grid-template-columns: repeat(2, 1fr); }
.solutions-section {
    background-color: var(--wd-background-grey);
    padding: 60px 0;
    position: relative;
}
.solutions-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}
.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(37, 132, 18, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background 0.4s ease;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.stat-label {
    font-size: .9rem;
    color: var(--wd-light-text-color);
    margin-top: .5rem;
}
.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--wd-heading-color);
}
.step-icon, .launch-step-icon {
    width: 66px;
    height: 66px;
    background: linear-gradient(135deg, var(--wd-primary-color), var(--wd-secondary-color));
    margin: 0 auto 25px;
    font-size: 1.6rem;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s all;
}
.step-new-card {
    background-color: var(--white);
    padding: 30px 16px;
    flex: 1;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}
.step-new-content {
    padding-left: 10px;
    margin-top: 40px;
}
.step-new-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wd-primary-color);
    opacity: .2;
    position: absolute;
    top: 17px;
    left: 21px;
    line-height: 1;
    z-index: -1;
}
.step-number, .launch-step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--wd-primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 3;
}
.steps-new-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 2rem;
}
.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 40px;
}
.tech-item {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease;
}
.tech-item:hover {
    color: var(--wd-primary-color);
}
.tech-main {
    background-color: white;
    border-radius: 15px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary);
}
.tech-tab {
    font-size: 14.8px;
    padding: 9px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    user-select: none;
    background: #fff;
}
.tech-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 34px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    gap: 10px;
}
.tech-title h3 {
    font-size: 26px;
    margin: 0;
    font-weight: 600;
}
.thank-you-page {
    width: 100%;
    background: var(--wd-soft-green-gradient);
    padding: 60px 0px;
    margin: 0px;
    text-align: center;
    padding-top: 140px;
}
.timeline-content p {
    font-size: 15px;
    color: #6C757D;
    line-height: 1.5;
}
.trust-badges {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.trust-new-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 4rem;
    filter: grayscale(100%);
    opacity: .7;
    transition: filter .4s ease, opacity .4s ease;
}
.trust-new-logos img {
    height: 55px;
    width: auto;
    transition: transform .3s ease;
}
.visual-container {
    position: relative;
    height: 500px;
}
a {
    text-decoration: none;
    color: var(--primary);
    transition: all .3s ease;
}
button.tab-btn {
    border: none;
    outline: none;
}
h2 {
    font-size: 2.25rem;
}
section {
    padding: 60px 0;
    position: relative;
    overflow: clip;
}

/* ===== Back-to-top button (fixed bottom-right, shows after hero) ===== */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--primary, #258412);
    color: var(--white, #fff);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 999;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--secondary, #1C2A3E);
    transform: translateY(-2px);
}

/* ===== Portfolio hero image collage (right side) — common, markup is portfolio-only ===== */
.hero-right {
    position: relative;
}
.image-collage {
    position: relative;
    width: 100%;
    height: 500px;
    max-width: 610px;
    margin: 0 auto;
}
.collage-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
.collage-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 132, 18, 0.2), rgba(78, 205, 196, 0.1));
    z-index: 1;
}
.collage-img.img-1 {
    width: 60%;
    height: 70%;
    top: 18px;
    right: 0;
    z-index: 3;
    transform: rotate(3deg);
    transition: 0.5s all;
}
.collage-img.img-2 {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 0;
    z-index: 2;
    transform: rotate(-5deg);
    transition: 0.5s all;
}
.collage-img.img-3 {
    width: 45%;
    height: 50%;
    bottom: 0;
    right: 15%;
    z-index: 1;
    transform: rotate(-2deg);
    transition: 0.5s all;
}
.collage-img:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
}
.image-collage .tech-float {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}
.image-collage .tech-float i {
    font-size: 24px;
    color: var(--wd-primary-color);
}
.image-collage .tech-1 { top: 15%; left: 10%; animation-delay: 0s; }
.image-collage .tech-2 { bottom: 20%; left: 15%; animation-delay: 2s; }
.image-collage .tech-3 { top: 70%; right: 5%; animation-delay: 4s; }

/* service-hero pages: 2-column hero with image as right-column card (match live design) */
.service-hero .hero-image {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
    animation: none;
}

/* healthcare compliance: cards use flex-basis (3/row) → grid container must be flex */
.compliance-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
/* Compliance cards 2 per row (2x2), each filling its cell — common (all pages) */
.compliance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; justify-content: stretch; }
.compliance-grid .compliance-card { max-width: 100%; flex: none; margin: 0; }

/* process timeline: steps share width, connectors sit between (common, any page) */
.process-step, .launch-step {
    flex: 1 1 0;
    min-width: 0;
}

/* full-width CTA section: centered (common — 2-col .cta-container stays left) */
.cta-section .cta-content {
    text-align: center;
    padding-right: 0;
}
.cta-section .cta-content .section-title {
    text-align: center;
    margin: 0 auto 16px;
}
.cta-section .cta-content .section-intro {
    text-align: center;
    margin: 0 auto 32px;
    max-width: 700px;
}
.cta-section .cta-buttons {
    justify-content: center;
}

/* ===== Unified card radius — white cards = 18px (common, future-proof) ===== */
.feature-card,
.feature-card-new,
.solution-card,
.testimonial-card,
.project-mini-card,
.project-card,
.industry-card,
.case-study-card,
.use-case-card,
.tech-stack-card,
.compliance-card,
.floating-card,
.challenge-card,
.service-card,
.approach-card,
.strategy-card,
.cost-factor-card,
.contact-info-card,
.step-new-card,
.result-card,
.process-step,
.launch-step {
    border-radius: 18px;
}

/* article pages: narrow container (958px) + flat featured image (match reference) */
.main-content-area.single-post-layout {
    max-width: 958px;
}
.single-post .featured-image {
    transform: none;
    margin-bottom: 30px;
}
.single-post-layout .post-title {
    margin-bottom: 20px;
    display: inline-block;
}

/* blog + blog-detail: headings use Inter (Inter -> Inter). Body already Inter; icons untouched */
.main-content-area h1,
.main-content-area h2,
.main-content-area h3,
.main-content-area h4,
.main-content-area h5,
.main-content-area h6,
.main-content-area .post-title,
.main-content-area .widget-title {
    font-family: 'Inter', sans-serif;
}

/* services cards: learn-more link always at bottom (equal-height alignment) */
.services-section .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.services-section .service-card h3,
.services-section .service-card p {
    width: 100%;
}
.services-section .service-card .learn-more {
    margin-top: auto;
}

/* launch-steps (ai-development "3 Simple Steps") have no connectors — add gap */
.launch-steps {
    gap: 26px;
    margin-top: 60px;
}

/* ===== Mobile App Development — process section (UNIQUE mad-* classes; original backup
   minimal design). Kept separate so shared .process-* on other pages stay untouched. ===== */
.mad-process-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    position: relative;
    flex-wrap: wrap;
}
.mad-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 0;
    max-width: 200px;
    min-width: 150px;
    z-index: 2;
}
.mad-step-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid var(--wd-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--wd-primary-color);
    font-size: 30px;
    transition: all 0.3s ease;
}
.mad-process-step:hover .mad-step-icon {
    background-color: var(--wd-primary-color);
    color: #fff;
    transform: translateY(-5px);
}
.mad-process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--wd-heading-color);
}
.mad-process-step p {
    font-size: 14px;
    color: var(--wd-text-color);
    margin-bottom: 0;
}
.mad-step-connector {
    position: relative;
    width: 40px;
    height: 2px;
    background-color: #e2e8f0;
    margin-top: 40px;
    flex-shrink: 1;
    min-width: 30px;
}

/* ===== Mobile App Development — CTA (UNIQUE mad-cta-* classes; clean backup design,
   no green block). Shared .cta-section on other pages left untouched. ===== */
.mad-cta-section {
    text-align: center;
}
.mad-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.mad-cta-content .section-title {
    color: var(--wd-heading-color);
    margin: 0 auto 16px;
}
.mad-cta-content .section-intro {
    color: var(--wd-text-color);
    margin: 0 auto 32px;
}
.mad-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Case studies: one card per row, image LEFT / content RIGHT — Toronto AI Dev + Financial AI (scoped) */
 .case-studies-grid,
 .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}
 .case-study-card,
 .case-study-card {
    flex-direction: row;
    align-items: stretch;
}
 .case-study-image,
 .case-study-image {
    flex: 0 0 42%;
    max-width: 42%;
    height: auto;
    min-height: 330px;
}
 .case-study-content,
 .case-study-content {
    flex: 1;
}
 .case-study-card:nth-child(even),
 .case-study-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* Toronto App Developers — location section intro left-aligned (scoped) */
 .location-section .section-intro {
    text-align: left;
    max-width: 100%;
    margin: 0 0 24px;
}

/* Green CTA (portfolio-cta) intro — centered + white to match white heading (all pages) */
/* App Statistics labels — white on dark results section */
.results-section .result-label {
    color: rgba(255, 255, 255, 0.7);
}

/* reusable white-text utility */
.text-white { color: #ffffff !important; }

/* Mobile App Dev — Comprehensive Services (solutions) section subtle green gradient (scoped) */
 .solutions-section {
    background: var(--wd-soft-green-gradient);
}

/* Pricing note — spacing from cards + muted centered styling */
.pricing-note {
    margin-top: 40px;
    padding: 0 20px;
    text-align: center;
}
.pricing-note p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio detail — Key Features cards: white bg, no border (extra class, common .feature-card untouched) */
.feature-card.pd-feature-card {
    background: #ffffff;
    border: none;
    overflow: hidden;
}

/* Background utility classes */
.bg-white { background: #fff !important; }
.bg-soft-green { background: var(--wd-soft-green-gradient) !important; }
.bg-soft-green-solid { background: var(--wd-soft-green-solid) !important; }

/* ===== AI Development — "AI Success Stories" (unique/isolated classes, no cross-impact) ===== */
.aidev-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.aidev-story-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--wd-box-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.aidev-story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.aidev-story-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.aidev-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.aidev-story-card:hover .aidev-story-image img {
    transform: scale(1.05);
}
.aidev-story-overlay {
    position: absolute;
    top: 14px;
    right: 14px;
}
.aidev-story-location {
    background: #fff;
    color: var(--wd-primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.aidev-story-content {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.aidev-story-content h3 {
    font-size: 1.3rem;
    color: var(--wd-heading-color);
    margin: 0 0 12px;
}
.aidev-story-content p {
    color: var(--wd-text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0 0 18px;
}
.aidev-story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #eef2f7;
}
.aidev-stat {
    text-align: center;
}
.aidev-stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--wd-primary-color);
}
.aidev-stat-label {
    font-size: 0.82rem;
    color: var(--wd-text-color);
}

/* ===== Global thin, light scrollbar — visible on hover only (whole site) ===== */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}
*:hover {
    scrollbar-color: rgba(0, 0, 0, 0.22) transparent;
}
/* WebKit — Chrome / Edge / Safari */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
    transition: background-color 0.3s ease;
}
/* show light thumb when hovering the scrollable area */
*:hover::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.22);
}
/* slightly darker when hovering the thumb itself */
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.38);
}


/* section-subtitle eyebrow: when text-left, make it block so it aligns left (inline-block otherwise stays centered) */
.section-subtitle.text-left {
    display: block;
}

/* ===== Portfolio creative hero (matches worksdelight.com/portfolio) ===== */
.portfolio-hero { position: relative; padding: 70px 0 30px; background-color: var(--white); overflow: hidden; margin-top: 40px; color: var(--wd-secondary-color); }
.creative-shapes { position: absolute; inset: 0; z-index: 1; }
.shape.triangle { width: 0; height: 0; border-left: 80px solid transparent; border-right: 80px solid transparent; border-bottom: 150px solid var(--wd-primary-color); top: 60%; left: 10%; opacity: 0.1; animation: float 20s ease-in-out infinite reverse; }
.creative-hero-content { position: relative; z-index: 3; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding-right: 20px; align-items: flex-start; }
.creative-badge { display: inline-flex; align-items: center; background: linear-gradient(90deg, var(--wd-primary-color), #4ECDC4); border-radius: 50px; padding: 6px 6px 6px 20px; margin-bottom: 20px; max-width: fit-content; }
.creative-badge .badge-text { font-weight: 500; font-size: 14px; color: #fff; margin-right: 10px; }
.creative-badge .badge-icon { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background-color: #fff; color: var(--wd-primary-color); font-size: 12px; }
.creative-title { font-size: 46px; line-height: 1.2; font-weight: 700; margin-bottom: 14px; display: flex; flex-direction: column; color: #1C2A3E; }
.creative-title .title-line { display: block; }
.creative-description { max-width: 550px; }
.creative-description p { font-size: 17px; line-height: 1.6; color: var(--wd-text-color); margin-bottom: 25px; }
.achievement-pills { display: flex; align-items: center; margin-top: 8px; }
.achievement-pills .pill { display: flex; align-items: center; gap: 12px; text-align: left; }
.pill-number { font-size: 36px; font-weight: 800; color: var(--wd-primary-color); line-height: 1; }
.pill-number sup { font-size: 18px; font-weight: 700; top: -0.5em; }
.pill-text { font-size: 14px; line-height: 1.2; color: var(--wd-text-color); }
.pill-divider { width: 1px; height: 40px; background-color: rgba(0, 0, 0, 0.1); margin: 0 20px; }

/* ===== industry-left: keep this industry section left-aligned on all screens ===== */
.industry-left .section-heading,
.industry-left .section-title,
.industry-left .section-intro,
.industry-left .industry-card,
.industry-left .industry-card h3,
.industry-left .industry-features { text-align: left !important; }
.industry-left .section-intro { margin-left: 0 !important; margin-right: 0 !important; max-width: 100% !important; }
.industry-left .industry-card { align-items: flex-start !important; }
.industry-left .industry-card .industry-icon { margin-left: 0 !important; margin-right: auto !important; }
.industry-left .industry-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 40px !important; }

/* portfolio-only: white border-top on tech-expertise section */
body.page-portfolio .tech-expertise-section { border-top: 2px solid #fff; }
