/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s;
}

.logo-image:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

/* Modern CTA Button Styles (for header and other sections) */
.cta-button-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2034b0 0%, #269fd7 100%);
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2034b0 0%, #269fd7 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    border-radius: 16px;
    filter: blur(20px);
    opacity: 0.6;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.cta-btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: left 0.6s ease;
}

.cta-button-primary:hover .cta-btn-shine {
    left: 100%;
}

.cta-button-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.5);
}

.cta-button-primary:hover::before {
    opacity: 1;
}

.cta-btn-text,
.cta-btn-icon {
    position: relative;
    z-index: 1;
}

.cta-btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.4s ease;
}

.cta-button-primary:hover .cta-btn-icon {
    transform: translateX(4px);
}

.cta-button-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button-secondary .cta-btn-icon {
    transition: transform 0.4s ease;
}

.cta-button-secondary:hover .cta-btn-icon {
    transform: translateX(4px);
}

.nav-cta-button {
    margin-left: auto;
}

/* Legacy support - keep old class working */
.cta-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-weight: 500;
}

.cta-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-nav:hover::before {
    left: 100%;
}

.cta-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Mega Menu */
.nav-mega-menu {
    position: static;
}

.nav-mega-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-mega-toggle svg {
        display: none;
    }
}

.mega-menu-content {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    min-width: 1000px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) translateX(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(102, 126, 234, 0.1);
    box-sizing: border-box;
}
.iti--inline-dropdown .iti__country-list {
    max-height: 185px !important;
}
.iti--inline-dropdown .iti__dropdown-content{
    
    width: 300px !important;
    max-width: 299px !important;
}
@media (max-width: 1200px) {
    .mega-menu-content {
        min-width: 900px;
        width: 90%;
    }
}

@media (max-width: 1024px) {
    .mega-menu-content {
        min-width: 800px;
        width: 85%;
    }
    
    .mega-menu-grid {
        gap: 1.25rem;
    }
    
    .mega-menu-card {
        padding: 1.25rem;
    }
}

.nav-mega-menu:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
}

/* Completely disable hover on mobile - use touch/click only */
@media (max-width: 768px) {
    .nav-mega-menu {
        pointer-events: auto;
    }
    
    .nav-mega-menu:hover .mega-menu-content {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        max-height: 0 !important;
        padding: 0 !important;
    }
    
    /* Ensure only active state shows dropdown */
    .nav-mega-menu:not(.active):hover .mega-menu-content {
        display: none;
    }
}

/* Disable mega menu hover on mobile - use pointer-events instead */
@media (max-width: 768px) {
    .nav-mega-menu {
        pointer-events: auto;
    }
    
    .nav-mega-menu:hover .mega-menu-content {
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        padding: 0 !important;
        transform: none !important;
    }
    
    /* Only show dropdown when active class is present */
    .nav-mega-menu:not(.active) .mega-menu-content {
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        padding: 0 !important;
    }
}

.mega-menu-content::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 200% 100%;
    border-radius: 24px 24px 0 0;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.mega-menu-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    min-width: 0;
    width: 100%;
}

.mega-menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.mega-menu-card:hover::before {
    opacity: 1;
}

.mega-menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.mega-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.mega-menu-card:hover .mega-card-glow {
    opacity: 1;
}

.mega-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.mega-menu-card:hover .mega-card-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    transform: scale(1.1) rotate(5deg);
}

.mega-card-content {
    position: relative;
    z-index: 1;
}

.mega-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    transition: color 0.3s;
}

.mega-menu-card:hover .mega-card-content h3 {
    color: var(--primary-color);
}

.mega-card-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.mega-card-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s;
    z-index: 1;
}

.mega-menu-card:hover .mega-card-arrow {
    opacity: 1;
    transform: translateX(0);
    background: rgba(102, 126, 234, 0.2);
}

.mega-menu-footer {
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.mega-menu-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.mega-menu-view-all:hover {
    background: rgba(102, 126, 234, 0.1);
    gap: 0.75rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    padding: 120px 0 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title-line {
    display: block;
    width: 100%;
    position: relative;
}

.hero-title-line-2 {
    margin-top: 0.5rem;
}

.hero-text-gradient-start {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(102, 126, 234, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text-gradient-mid {
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text-gradient-end {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-arrow-annotation {
    position: absolute;
    top: -20px;
    right: -70px;
    width: 60px;
    height: 60px;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transform: rotate(25deg);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding-right: 10px;
}

.btn-text {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    color: white;
}

.btn-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    border-radius: 10px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-primary:hover .btn-icon {
    background: rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover .btn-icon {
    background: rgba(0, 0, 0, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.stat-icon {
    flex-shrink: 0;
}

.stat-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.hero-stat-numbers {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.hero-clients .clients-carousel {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.hero-clients .clients-carousel::before,
.hero-clients .clients-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 350px;
    z-index: 10;
    pointer-events: none;
}

.hero-clients .clients-carousel::before {
    left: 0;
    background: linear-gradient(to right, rgba(17, 25, 44, 1), rgba(15, 23, 42, 0));
}

.hero-clients .clients-carousel::after {
    right: 0;
    background: linear-gradient(to left, rgba(17, 25, 44, 1), rgba(15, 23, 42, 0));
}

.hero-clients .clients-track {
    display: flex;
    gap: 3rem;
    animation: scroll 35s linear infinite;
    width: fit-content;
    align-items: center;
}

.hero-clients .client-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 1rem 1.5rem;
    transition: transform 0.3s ease;
}

.hero-clients .client-logo:hover {
    transform: translateY(-5px);
}

.hero-clients .client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-clients .client-logo:hover img {
    filter: none;
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Clients Section */
.clients-section {
    padding: 50px 0;
    background: var(--bg-white);
}

.clients-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #4b5563;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.clients-title .title-underline {
    position: relative;
    display: inline-block;
}

.clients-title .title-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
}

.clients-carousel {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin-top: 0;
}

.clients-track {
    display: flex;
    gap: 3rem;
    animation: scroll 35s linear infinite;
    width: fit-content;
    align-items: center;
}

.client-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 1rem 1.5rem;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2034b0 0%, #269fd7 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #269fd7 0%, #2034b0 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.scroll-to-top::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #2034b0 0%, #269fd7 100%);
    border-radius: 50%;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: scrollToTopFadeIn 0.4s ease-out;
}

@keyframes scrollToTopFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.5), 0 6px 20px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover::before {
    opacity: 1;
}

.scroll-to-top:hover::after {
    opacity: 0.6;
}

.scroll-to-top:active {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top svg {
    transform: rotate(180deg);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.process-section .section-title {
    color: white;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-text-column {
    max-width: 100%;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.7;
}

.features-list {
    margin: 2rem 0;
}

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

.feature-icon {
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.feature-item p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Visual Column - Image */
.intro-visuals-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Services Section */
.services-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 64, 175, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.services-title {
    text-align: left;
    margin-bottom: 0;
    flex: 1;
    font-size: 2rem;
    font-weight: 800;
    max-width: 60%;
    line-height: 1.2;
}

.carousel-nav-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.services-carousel-wrapper {
    position: relative;
    margin-top: 1.5rem;
    overflow: hidden;
    width: 100%;
}

.services-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.services-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    padding-left: max(20px, calc((100vw - 1400px) / 2 + 20px));
    padding-right: max(20px, calc((100vw - 1400px) / 2 + 20px));
    padding-bottom: 1.5rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.service-card {
    flex: 0 0 450px;
    height: 400px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-bottom: 15px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.service-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.service-card:hover .service-card-bg {
    opacity: 1;
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-preview {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-preview {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.service-preview h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.service-preview p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-detail {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 2.5rem;
    z-index: 4;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.service-card:hover .service-detail {
    opacity: 1;
    transform: translateX(0);
}

.service-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    align-self: flex-end;
    text-align: left;
    width: 100%;
}

.service-detail p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
    text-align: left;
}

/* Homepage Service Cards (with images) - Override web3 styles */
.service-image {
    padding: 0 2rem 2rem 2rem;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 200px;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

/* White smoke effect at bottom of homepage cards */
#services .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(251, 253, 254, 1) 0%, rgba(251, 253, 254, 0.95) 15%, rgba(251, 253, 254, 0.85) 30%, rgba(251, 253, 254, 0.7) 45%, rgba(251, 253, 254, 0.5) 60%, rgba(255, 255, 255, 0.3) 75%, rgba(255, 255, 255, 0.15) 85%, transparent 100%);
    pointer-events: none;
    z-index: 4;
    border-radius: 0 0 24px 24px;
}

.service-image img {
    width: 80%;
    height: auto;
    object-fit: contain;
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
}

/* When service-image exists, use traditional card layout */

/* Modern browsers with :has() support */
@supports selector(:has(*)) {
    .service-card:has(.service-image) {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 400px;
    }

    .service-card:has(.service-image)::before {
        display: none;
    }

    .service-card:has(.service-image):hover {
        transform: translateY(-5px);
    }

    .service-card:has(.service-image) .service-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        color: var(--text-dark);
        font-weight: 800;
        line-height: 1.2;
    }

    .service-card:has(.service-image) .service-content p {
        color: var(--text-light);
        line-height: 1.7;
        margin: 0 0 1rem 0;
    }
}

/* Fallback for browsers without :has() - target by structure */
.service-content {
    padding: 2rem 2rem 0rem 2rem;
    position: relative;
    z-index: 3;
}

/* Only apply these if not a service-preview card */
.services-section:not(#services-overview) .service-card,
#services .service-card {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 400px;
}

#services .service-card::before {
    display: none;
}

#services .service-card:hover {
    transform: translateY(-5px);
}

#services .service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.2;
}

#services .service-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.service-image {
    padding: 0 2rem 0rem 2rem;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 200px;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.service-image img {
    width: 80%;
    height: auto;
    object-fit: contain;
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

/* Carousel Navigation */
.carousel-nav {
    position: static;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    color: var(--text-dark);
    flex-shrink: 0;
}

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

.carousel-nav:disabled,
.carousel-nav[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover,
.carousel-nav[disabled]:hover {
    background: white;
    color: var(--text-dark);
    border-color: var(--border-color);
    transform: scale(1);
}

@media (max-width: 1240px) {
    .services-carousel-track {
        padding-left: 20px;
    }
}

/* Process Section */
.process-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.process-steps-wrapper {
    position: relative;
    margin-top: 3rem;
    z-index: 2;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    width: 75%;
    position: relative;
    min-height: 200px;
    padding: 1.5rem;
    background: transparent;
}

.step-left {
    flex-direction: row;
    margin-right: auto;
}

.step-right {
    flex-direction: row-reverse;
    margin-left: auto;
}

.step-content {
    flex: 1;
    position: relative;
}

.step-title {
    font-size: 5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 2rem 0;
    line-height: 1.2;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.step-left .step-content {
    text-align: left;
}

.step-left .step-title {
    transform-origin: left center;
    text-align: left;
}

.step-right .step-content {
    text-align: right;
}

.step-right .step-title {
    transform-origin: right center;
    text-align: right;
}

.process-step.active .step-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transform: translateY(0);
}

.step-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
}

.process-step.active .step-text {
    opacity: 1;
    transform: translateY(0);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.6s ease;
    width: 200px;
    min-width: 200px;
    align-self: stretch;
}

.step-icon-image {
    width: 100%;
    height: 100%;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.process-step.active .step-icon {
    opacity: 1;
}


/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-choose-title .highlight-text {
    font-style: italic;
    color: var(--text-dark);
}

.why-choose-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.why-choose-content-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
}

.why-choose-benefits-left,
.why-choose-benefits-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.why-benefit-box {
    background: transparent;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.why-benefit-box:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-align: center;
    line-height: 1.2;
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.why-choose-center-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    height: 100%;
    min-height: 400px;
}

.why-choose-center-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.why-choose-cta {
    text-align: center;
    margin-top: 2rem;
}


.highlight-text {
    color: var(--primary-color);
}

/* Reviews Section */
.reviews-section {
    background: var(--bg-white);
}

.reviews-carousel-wrapper {
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}

.reviews-carousel-wrapper::before,
.reviews-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.reviews-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.reviews-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.reviews-carousel-track {
    display: flex;
    gap: 2rem;
    animation: scrollReviews 30s linear infinite;
    width: fit-content;
}

.review-card {
    background: #f5f5f5;
    padding: 2.5rem;
    border-radius: 16px;
    min-width: 350px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 48px;
    height: 48px;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.review-author-details {
    flex: 1;
}

.review-author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.review-author-title {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 4 - 2rem * 4));
    }
}

/* Service page reviews animation (3 cards) */
@keyframes scrollServiceReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 3 - 2rem * 3));
    }
}

#serviceReviewsCarousel {
    animation: scrollServiceReviews 30s linear infinite;
}

/* Pause animation on hover for better UX */
.reviews-carousel-wrapper:hover .reviews-carousel-track {
    animation-play-state: paused;
}


/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.faq-section::before,
.faq-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 400px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.faq-section::before {
    left: 0;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: translateX(-50%);
}

.faq-section::after {
    right: 0;
    background: radial-gradient(ellipse at center, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
    transform: translateX(50%);
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.faq-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f9fafb;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    background: #0f172a;
    border-color: #0f172a;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.3);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: #0f172a;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-dark);
    background: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.faq-item.active .faq-toggle {
    background: white;
    color: var(--text-dark);
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-toggle::before {
    content: '';
    display: none;
}

.faq-item.active .faq-toggle::before {
    content: '';
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-answer p {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.5;
}

.contact-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-form-column {
    max-width: 600px;
    width: 100%;
    flex: 1;
    box-sizing: border-box;
}

.contact-form-column .form-group {
    width: 100% !important;
    max-width: 100% !important;
}

.contact-form-column .iti {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: white;
    color: #333;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 400px;
    pointer-events: auto;
    animation: slideInRight 0.3s ease-out;
    border-left: 4px solid;
    position: relative;
    overflow: hidden;
}

.toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.toast-success {
    border-left-color: #10b981;
}

.toast-success .toast-icon {
    color: #10b981;
    font-size: 24px;
}

.toast-error {
    border-left-color: #ef4444;
}

.toast-error .toast-icon {
    color: #ef4444;
    font-size: 24px;
}

.toast-icon {
    flex-shrink: 0;
    font-size: 20px;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.toast-message {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 20px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    background: #f3f4f6;
    color: #333;
}

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

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast.hiding {
    animation: slideOutRight 0.3s ease-in forwards;
}

/* Legacy alert styles (kept for backward compatibility) */
.alert {
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: left;
    font-weight: 500;
    display: none; /* Hide inline alerts, use toast instead */
}

.alert-success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* reCAPTCHA v3 Styling - v3 is invisible, no styling needed */
/* The CAPTCHA runs in the background automatically */

/* RTL Support for Toast */
[dir="rtl"] .toast-container {
    right: auto;
    left: 20px;
}

[dir="rtl"] .toast {
    border-left: none;
    border-right: 4px solid;
}

[dir="rtl"] .toast::before {
    left: auto;
    right: 0;
}

@keyframes slideInLeft {
    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;
    }
}

[dir="rtl"] .toast {
    animation: slideInLeft 0.3s ease-out;
}

[dir="rtl"] .toast.hiding {
    animation: slideOutLeft 0.3s ease-in forwards;
}

.contact-form {
    background: transparent;
    padding: 0;
    width: 100%;
}

/* Form row for side-by-side fields */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%;
    overflow: visible;
}

.form-group-half {
    flex: 1;
    margin-bottom: 0;
    min-width: 0;
}

.form-group-full {
    width: 100% !important;
    margin-bottom: 1.5rem;
}

/* Ensure form group doesn't constrain width */
.contact-form .form-group {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* intl-tel-input Custom Styles */
.whatsapp-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.whatsapp-input:focus {
    outline: none;
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.whatsapp-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* intl-tel-input container styling */
.iti {
    width: 100% !important;
    position: relative;
    display: block !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

/* Ensure form group doesn't cut off the input */
.form-group {
    width: 100%;
    overflow: visible;
}

.form-group .iti {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block !important;
}

.form-group-full .iti {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.iti__flag-container {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.iti__selected-flag {
    padding: 1rem 0.75rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 8px 0 0 8px;
    cursor: pointer;
}

.iti__selected-flag:hover {
    background-color: rgba(15, 23, 42, 0.8);
}

.iti__arrow {
    border-top-color: rgba(255, 255, 255, 0.7);
}

.iti__country-list {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    bottom: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 300px !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    margin-top: 4px !important;
    background: rgba(15, 23, 42, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 9999 !important;
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
}

/* Prevent dropdown from using fixed positioning (full screen mode) */
.iti__country-list.iti__country-list--dropup {
    bottom: 100% !important;
    top: auto !important;
}

/* Ensure dropdown doesn't go full screen on mobile */
@media (max-width: 768px) {
    .iti__country-list {
        max-width: 100% !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }
}

.iti__country {
    color: white;
    padding: 0.5rem 0.75rem;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background-color: rgba(16, 185, 129, 0.2);
}

.iti__country-name,
.iti__dial-code {
    color: white;
}



.iti__dropdown-content {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Override any fixed positioning that might cause full screen */
.iti__country-list.iti__hide {
    display: none !important;
}

/* Ensure the dropdown container is positioned correctly */
.iti--container {
    position: relative !important;
}


.iti__search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 6px;
    width: 300px !important;
}

.iti__search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.iti__search-input:focus {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

/* Adjust input when intl-tel-input is active */
.iti input.whatsapp-input {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    border-radius: 0 8px 8px 0;
    border-left: none;
    padding-left: 1rem;
    box-sizing: border-box !important;
    flex: 1 1 auto !important;
}

/* Force full width for iti container */
.iti.iti--allow-dropdown,
.iti.iti--separate-dial-code {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    box-sizing: border-box !important;
}

.iti input.whatsapp-input:focus {
    border-left: 1px solid rgba(16, 185, 129, 0.5);
    padding-left: calc(1rem - 1px);
}

/* When country code is in input (separateDialCode: false) */
.iti--allow-dropdown input.whatsapp-input {
    padding-left: 3.5rem; /* Space for flag + country code */
    width: 100% !important;
}

.iti--allow-dropdown input.whatsapp-input:focus {
    padding-left: 3.5rem;
}

/* Ensure flag container doesn't break layout */
.iti__flag-container {
    flex-shrink: 0;
    min-width: auto;
}

/* When separateDialCode is true (flag and code separate) */
.iti--separate-dial-code {
    width: 100% !important;
    display: flex !important;
}

.iti--separate-dial-code .iti__selected-flag {
    flex-shrink: 0;
}

.iti--separate-dial-code .iti__selected-dial-code {
    flex-shrink: 0;
    padding: 0 0.5rem;
}

.iti--separate-dial-code input.whatsapp-input {
    flex: 1;
    min-width: 0;
    width: auto !important;
}

.email-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* WhatsApp Link Styling */
.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #128C7E;
    text-decoration: underline;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: 0.5rem;
}

.contact-submit-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

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

.contact-submit-btn:hover svg {
    transform: translateX(4px);
}

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

.contact-feature-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-feature-card:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.contact-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    margin-bottom: 1.25rem;
}

.contact-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.contact-feature-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.main-footer {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo-image {
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s;
}

.footer-logo-image:hover {
    opacity: 0.8;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-section p {
    color: var(--text-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .logo-image {
        height: 60px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1.5rem 0;
        transform: none;
        gap: 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        font-size: 1rem;
    }

    .nav-mega-menu {
        position: relative;
    }

    .nav-mega-toggle {
        pointer-events: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-mega-toggle svg {
        display: inline-block;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

    .nav-mega-menu.active .nav-mega-toggle svg {
        transform: rotate(180deg);
    }

    /* Hide mega menu on mobile completely */
    .mega-menu-content {
        display: none !important;
    }

    /* Mobile Services Dropdown - separate menu */
    .mobile-services-dropdown {
        list-style: none;
        margin: 0;
        padding: 0;
        background: var(--bg-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-mega-menu.active .mobile-services-dropdown {
        max-height: 500px;
    }

    .mobile-services-dropdown li {
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-services-dropdown li:last-child {
        border-bottom: none;
    }

    .mobile-services-dropdown a {
        display: block;
        padding: 0.875rem 1.5rem 0.875rem 3rem;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 0.95rem;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .mobile-services-dropdown a:hover {
        background-color: rgba(37, 99, 235, 0.05);
        color: var(--primary-color);
    }

    .mobile-services-dropdown .view-all-services {
        font-weight: 600;
        color: var(--primary-color);
        border-top: 1px solid var(--border-color);
        margin-top: 0.25rem;
    }
}

/* Hide mobile dropdown on desktop */
@media (min-width: 769px) {
    .mobile-services-dropdown {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .mega-menu-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    .mega-menu-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        background: transparent;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--border-color);
        text-decoration: none;
        color: var(--text-dark);
        transition: background-color 0.2s ease;
        min-width: auto;
        width: 100%;
    }

    .mega-menu-card:last-child {
        border-bottom: none;
    }

    .mega-menu-card:hover {
        background: rgba(37, 99, 235, 0.05);
        transform: none;
        box-shadow: none;
        border-color: var(--border-color);
    }

    .mega-card-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .mega-card-content {
        flex: 1;
    }

    .mega-card-content h3 {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: var(--text-dark);
    }

    .mega-card-content p {
        font-size: 0.8rem;
        color: var(--text-light);
        margin: 0;
        display: none;
    }

    .mega-card-arrow,
    .mega-card-glow,
    .mega-menu-footer {
        display: none;
    }

    .nav-cta-button {
        display: none;
    }

    .nav-menu.active ~ .nav-cta-button,
    .nav-menu.active + .nav-cta-button {
        display: inline-flex;
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
        width: calc(100% - 3rem);
        max-width: 300px;
        text-align: center;
    }

    .nav-cta-button.cta-button-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-cta-button .cta-btn-icon {
        width: 18px;
        height: 18px;
    }

    .nav-cta-button .cta-btn-icon svg {
        width: 18px;
        height: 18px;
    }

    .mega-card-icon {
        width: 40px;
        height: 40px;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
        display: flex;
        flex-direction: column;
    }

    .hero-title-line {
        display: block;
    }

    .hero-arrow-annotation {
        width: 50px;
        height: 50px;
        right: -60px;
        top: -5px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .cta-button-primary,
    .hero-buttons .cta-button-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-stat-item {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-stat-numbers {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .hero-clients {
        padding-top: 2rem;
    }

    .hero-clients .client-logo {
        width: 140px;
        height: 70px;
        padding: 0.75rem 1rem;
    }

    .hero-clients .clients-track {
        gap: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .service-intro-title,
    .service-section-title,
    .service-why-choose-title,
    .technologies-title {
        font-size: 2rem;
    }

    .process-section {
        padding: 40px 0;
    }

    .process-steps-wrapper {
        margin-top: 2rem;
    }

    .process-steps {
        gap: 3rem;
    }

    .process-step {
        width: 100%;
        flex-direction: column !important;
        gap: 1.5rem;
        min-height: auto;
        padding: 0;
    }

    .step-left,
    .step-right {
        margin-left: auto;
        margin-right: auto;
    }

    .step-content {
        text-align: center !important;
    }

    .step-title {
        font-size: 3rem !important;
        text-align: center !important;
    }

    .process-step.active .step-title {
        font-size: 1.75rem !important;
    }

    .step-icon {
        margin: 0 auto;
    }

    .clients-section {
        padding: 40px 0;
    }

    .clients-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .clients-carousel {
        padding: 15px 0;
    }

    .clients-track {
        gap: 2rem;
    }

    .client-logo {
        width: 140px;
        height: 70px;
        padding: 0.75rem 1rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-section::before,
    .faq-section::after {
        width: 200px;
    }

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

    .faq-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .contact-content-wrapper {
        display: flex;
        justify-content: center;
    }

    .contact-form-column {
        max-width: 100%;
    }
    
    /* Stack form fields on mobile */
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group-half {
        margin-bottom: 1.5rem;
    }
    
    /* Ensure WhatsApp field is full width on mobile */
    .form-group-full .iti,
    .form-group .iti {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .contact-title {
        font-size: 2.25rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-feature-card {
        padding: 1.5rem;
    }

    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 80px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .intro-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-title {
        font-size: 2rem;
        text-align: center;
    }

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

    .intro-image {
        max-width: 100%;
    }

    .services-section {
        padding: 40px 0;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .services-title {
        font-size: 1.75rem;
    }

    .carousel-nav-group {
        align-self: flex-end;
    }

    .service-card {
        flex: 0 0 85vw;
        height: 350px;
    }

    .services-carousel-track {
        padding-left: 20px;
        gap: 1rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .service-preview {
        padding: 1.5rem;
    }

    .service-preview h3 {
        font-size: 1.2rem;
    }

    .service-preview p {
        font-size: 0.9rem;
    }

    .service-detail {
        padding: 2rem;
    }

    .service-detail h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .service-detail p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        display: flex;
        flex-direction: column;
    }

    .hero-title-line {
        display: block;
    }

    .hero-arrow-annotation {
        display: none;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-stat-item {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-stat-numbers {
        flex-direction: row;
        gap: 1.5rem;
        width: 100%;
    }

    .hero-clients {
        padding-top: 2rem;
    }

    .hero-clients .client-logo {
        width: 120px;
        height: 60px;
        padding: 0.5rem 0.75rem;
    }

    .hero-clients .clients-track {
        gap: 0rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .btn-primary {
        padding: 0;
        font-size: 1rem;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-content {
        padding: 0 1rem;
    }

    .why-choose-title {
        font-size: 2rem;
    }

    .why-choose-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .why-choose-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-benefits-left,
    .why-choose-benefits-right {
        order: 2;
    }

    .why-choose-center-image {
        order: 1;
        min-width: auto;
        padding: 0;
        margin-bottom: 1rem;
    }

    .why-choose-center-image img {
        max-width: 100%;
    }

    .why-benefit-box {
        padding: 0;
    }
    .services-title {
        max-width: 100%;
    }
    .benefit-title {
        font-size: 1.1rem;
    }

    .benefit-text {
        font-size: 0.9rem;
    }

    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 2rem;
    }

    .reviews-carousel-track {
        gap: 1.5rem;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-section::before,
    .faq-section::after {
        width: 150px;
    }

    .faq-subtitle {
        font-size: 0.85rem;
    }

    .faq-title {
        font-size: 1.75rem;
    }

    .faq-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .section-title,
    .service-intro-title,
    .service-section-title,
    .service-why-choose-title,
    .technologies-title,
    .process-section-title {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
        padding-right: 0.75rem;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }

    .contact-feature-card {
        padding: 1.25rem;
    }

    .contact-feature-title {
        font-size: 1.1rem;
    }

    .contact-feature-text {
        font-size: 0.9rem;
    }

    .contact-feature-icon {
        width: 40px;
        height: 40px;
    }

    @keyframes scrollReviews {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 4 - 1.5rem * 4));
        }
    }

    .service-card {
        flex: 0 0 85vw;
    }

    #services .service-card {
        min-height: 350px;
    }

    .service-content {
        padding: 1.5rem;
    }

    #services .service-content h3 {
        font-size: 1.2rem;
    }

    #services .service-content p {
        font-size: 0.9rem;
    }

    .service-image {
        padding: 0 1.5rem 1.5rem;
        min-height: 180px;
    }

    .service-image img {
        width: 70%;
    }

    .services-carousel-track {
        padding-left: 20px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */

/* Service Hero Section */
.service-hero-section {
  
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%); color: white;
    padding: 80px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.5;
}

.service-hero-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.service-hero-waves::before,
.service-hero-waves::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    animation: waveAnimation 20s ease-in-out infinite;
}

.service-hero-waves::before {
    top: -50%;
    left: -50%;
    animation-delay: 0s;
}

.service-hero-waves::after {
    top: -30%;
    right: -50%;
    animation-delay: 10s;
    background: radial-gradient(ellipse at center, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

@keyframes waveAnimation {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, 50px) rotate(180deg);
        opacity: 0.6;
    }
}

.service-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: white;
}

.service-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.service-hero-badge-text {
    color: white;
    font-weight: 500;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

.service-hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.service-hero-cta {
    background: linear-gradient(135deg, #6366f1 0%, #2a19aa 100%);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
   }

.service-hero-cta:hover {
    background: linear-gradient(135deg, #6366f1 0%, #2a19aa 100%);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
   
}

/* Service Intro Section */
.service-intro-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-intro-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.service-intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-features-scroll-wrapper {
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(37, 99, 235, 0.3) transparent;
}

.service-features-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.service-features-scroll-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.service-features-scroll-wrapper::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.3);
    border-radius: 4px;
}

.service-features-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(37, 99, 235, 0.5);
}

.service-features-list {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    min-width: fit-content;
    align-items: center;
}

.service-feature-item {
    position: relative;
    background: var(--bg-white);
    padding: 2.5rem;
    min-width: 320px;
    max-width: 320px;
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    
    border-radius: 0 50% 50% 0%;
}

.service-feature-item:hover {
    box-shadow: 9px 6px 22px -4px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.feature-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

.feature-dashed-circle {
    position: absolute;
    top: 50%;
    right: -0px;
    transform: translateY(-50%);
    width: 380px;
    height: 385px;
    border: 2px dashed rgba(37, 99, 235, 0.3);
    border-left: none;
    border-top: none;
    border-bottom: none;
    border-radius: 0 50% 50% 0;
    pointer-events: none;
    z-index: 1;
}



.service-feature-content {
    flex: 1;
    width: 100%;
}

.service-feature-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-feature-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Service Section Header */
.service-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-section-title {
    font-size: 3rem;
    text-align: center;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Service Services Section */
.service-services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card-detailed {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.service-card-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-card-detailed h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-detailed p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Service Why Choose Section */
.service-why-choose-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-why-choose-content {
    max-width: 1400px;
    margin: 0 auto;
}

.service-why-choose-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: left;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    width: 70%;
}

.service-why-choose-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: left;
    margin-bottom: 3rem;
    max-width: 100%;
    line-height: 1.7;
}

.service-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-why-box {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    border-radius: 24px;
    border: 1px solid #2563eb29;
}

.service-why-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-why-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-why-icon svg {
    width: 100%;
    height: 100%;
}

.service-why-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-why-box p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Industries Section */
.service-industries-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
    padding: 1px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.industry-item {
    background: #F9FAFB;
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.industry-item:hover {
    background: #f3f4f6;
    color: var(--primary-color);
    z-index: 1;
}

/* Technologies Section - Web3 Light Mode */
.technologies-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.technologies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.technologies-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.tech-badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
    animation: pulseDot 2s ease-in-out infinite;
}

.technologies-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.tech-gradient-text {
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 50%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.technologies-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.0;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.technology-item {
    background: #f3f6fb;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 0px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.technology-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.technology-item:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.technology-item:hover::before {
    opacity: 1;
}

.tech-logo-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.tech-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    border-radius: 16px;
    transition: all 0.4s ease;
    opacity: 0.5;
}

.technology-item:hover .tech-logo-bg {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.tech-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
   }

.technology-item:hover .tech-logo {
    transform: scale(1.15);
}

.tech-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.technology-item:hover .tech-name {
    color: #2563eb;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Process Section */
.service-process-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.service-process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.service-process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.service-process-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-process-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* New Process Section with Web3 Modern Design */
.process-section-new {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    position: relative;
    overflow: visible;
    min-height: 100vh;
    margin-bottom: 100px;
}

.process-section-new .container {
    position: relative;
}



.process-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 2;
    min-height: fit-content;
}

/* Left Column - Sticky */
.process-left-column {
    position: sticky;
    top: 120px;
    align-self: start;
    padding-right: 2rem;
    height: fit-content;
    will-change: transform;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.process-badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.process-section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #ffffff;
}

.process-section-title span {
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.gradient-text-secondary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #4b48ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.process-section-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.process-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #6366f1 0%, #2a19aa 100%);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    padding-right: 10px;
}

.process-cta-button .btn-text {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    z-index: 2;
}

.process-cta-button .btn-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    color: white;
}

.process-cta-button .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    z-index: 1;
}

.process-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

.process-cta-button:hover .btn-glow {
    width: 300px;
    height: 300px;
}

/* Right Column - Scrollable Steps */
.process-right-column {
    position: relative;
    min-height: 100%;
}

.process-steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.process-steps-container::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: 70px;
    width: 2px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    z-index: 0;
    animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.process-step-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.process-step-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.process-step-box:hover {
    transform: translateY(-8px) translateX(5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.process-step-box:hover::before {
    opacity: 1;
}

.step-glow-effect {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.process-step-box:hover .step-glow-effect {
    opacity: 1;
}

.process-step-number {
    width: 70px;
    height: 70px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 16px;
    opacity: 0.2;
    transition: all 0.4s ease;
}

.process-step-number span {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.process-step-box:hover .step-number-bg {
    opacity: 0.4;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.process-step-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.process-step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.step-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    color: rgba(99, 102, 241, 0.5);
    transition: all 0.4s ease;
    opacity: 0.5;
}

.process-step-box:hover .step-arrow {
    color: rgba(99, 102, 241, 1);
    transform: translateX(5px);
    opacity: 1;
}

.process-step-box:last-child .step-arrow {
    display: none;
}

/* Service Testimonials Section */
.service-testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-testimonial-card .quote-icon {
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Service FAQ Section */
.service-faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

/* Service CTA Section */
.service-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.service-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.service-cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

/* Responsive Styles for Service Pages */
@media (max-width: 768px) {
    .service-hero-section {
        padding: 100px 0 60px;
    }

    .service-hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .service-hero-badge-dot {
        width: 6px;
        height: 6px;
    }

    .service-hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .service-hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .service-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .service-hero-cta {
        width: 100%;
        justify-content: center;
    }

    .service-intro-section {
        padding: 60px 0;
    }

    .service-intro-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .service-intro-text {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .service-features-scroll-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .service-features-list {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .service-feature-item {
        min-width: 280px;
        max-width: 280px;
        padding: 2rem;
    }

    .feature-icon-circle {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
    }

    .feature-dashed-circle {
        width: 60px;
        height: 60px;
        right: -15px;
    }

    .service-feature-content h3 {
        font-size: 1.15rem;
    }

    .service-feature-content p {
        font-size: 0.9rem;
    }

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

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-why-choose-title {
        font-size: 2rem;
        text-align: center;
    }

    .service-why-choose-description {
        text-align: center;
        font-size: 1rem;
    }

    .service-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-why-box {
        padding: 2rem;
    }

    .service-why-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1.25rem;
    }

    .service-why-box h3 {
        font-size: 1.2rem;
    }

    .service-why-box p {
        font-size: 0.9rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .technologies-section {
        padding: 60px 0;
    }

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

    .technologies-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .technologies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .technology-item {
        padding: 1.5rem 1rem;
    }

    .tech-logo-wrapper {
        width: 60px;
        height: 60px;
    }

    .tech-logo {
        width: 35px;
        height: 35px;
    }

    .tech-name {
        font-size: 0.9rem;
    }

    .service-process-step {
        flex-direction: column;
        text-align: center;
    }

    .service-process-step:hover {
        transform: translateY(-5px);
    }

    .service-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-cta-title {
        font-size: 2rem;
    }

    .service-cta-description {
        font-size: 1rem;
    }

    .service-why-choose-grid {
        grid-template-columns: 1fr;
    }

    /* New Process Section Responsive */
    .process-section-new {
        padding: 80px 0;
        min-height: auto;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-left-column {
        position: static;
        padding-right: 0;
        text-align: center;
    }

    .process-badge {
        margin: 0 auto 1.5rem;
    }

    .process-section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .process-section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .process-cta-button {
        width: 100%;
        justify-content: center;
    }

    .process-step-box {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .process-step-box:hover {
        transform: translateY(-5px);
    }

    .process-step-number {
        margin: 0 auto;
        width: 60px;
        height: 60px;
    }

    .process-step-number span {
        font-size: 1.2rem;
    }

    .process-step-content h3 {
        font-size: 1.3rem;
    }

    .process-step-content p {
        font-size: 0.95rem;
    }

    .step-arrow {
        position: static;
        margin-top: 1rem;
        transform: rotate(90deg);
    }

    .process-step-box:hover .step-arrow {
        transform: rotate(90deg) translateY(5px);
    }

    .process-steps-container::before {
        display: none;
    }
}

/* ============================================
   RTL (Right-to-Left) Layout Support
   ============================================ */

/* RTL Toggle Button */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rtl-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.rtl-toggle-btn:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.rtl-toggle-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.rtl-toggle-btn .flag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.rtl-toggle-btn .flag-svg {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.rtl-toggle-btn .lang-text {
    font-weight: 700;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .rtl-toggle-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .rtl-toggle-btn .flag-svg {
        width: 20px;
        height: 15px;
    }
    
    .rtl-toggle-btn .lang-text {
        font-size: 0.75rem;
    }
}

/* RTL Base Styles */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] body {
    direction: rtl;
}

/* RTL Navigation */
[dir="rtl"] .nav-menu {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

[dir="rtl"] .nav-cta-button {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .header-actions {
    flex-direction: row-reverse;
}

/* RTL Mega Menu */
[dir="rtl"] .mega-menu-content {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

[dir="rtl"] .nav-mega-menu:hover .mega-menu-content {
    transform: translateY(0) translateX(50%);
}

[dir="rtl"] .mega-menu-content {
    transform: translateY(-20px) translateX(50%);
}

[dir="rtl"] .mega-card-arrow {
    right: auto;
    left: 1.5rem;
    transform: translateX(10px);
}

[dir="rtl"] .mega-menu-card:hover .mega-card-arrow {
    transform: translateX(0);
}

[dir="rtl"] .mega-menu-view-all svg {
    transform: scaleX(-1);
}

/* RTL CTA Button */
[dir="rtl"] .cta-button-primary .cta-btn-icon {
    transform: scaleX(-1);
}

[dir="rtl"] .cta-button-primary:hover .cta-btn-icon {
    transform: scaleX(-1) translateX(-4px);
}

[dir="rtl"] .cta-btn-shine {
    left: auto;
    right: -50%;
    transition: right 0.6s ease;
}

[dir="rtl"] .cta-button-primary:hover .cta-btn-shine {
    right: 100%;
}

[dir="rtl"] .cta-nav::before {
    left: auto;
    right: -100%;
    transition: right 0.5s;
}

[dir="rtl"] .cta-nav:hover::before {
    right: 100%;
}

/* RTL Hero Section */
[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .hero-buttons {
    justify-content: flex-start;
}

/* RTL Services Carousel */
[dir="rtl"] .services-carousel-wrapper {
    direction: rtl;
}

[dir="rtl"] .services-carousel-track {
    direction: ltr;
}

[dir="rtl"] .carousel-button {
    left: auto;
    right: -70px;
}

[dir="rtl"] .carousel-button.prev {
    right: auto;
    left: -70px;
}

[dir="rtl"] .carousel-button.next {
    right: -70px;
    left: auto;
}

/* RTL Process Section */
[dir="rtl"] .process-left-column {
    padding-right: 0;
    padding-left: 3rem;
    text-align: right;
}

[dir="rtl"] .process-steps-container::before {
    left: auto;
    right: 35px;
}

[dir="rtl"] .process-step-box {
    flex-direction: row-reverse;
}

[dir="rtl"] .process-step-box:hover {
    transform: translateY(-8px) translateX(-5px);
}

[dir="rtl"] .step-arrow {
    right: auto;
    left: 2rem;
    transform: scaleX(-1);
}

[dir="rtl"] .process-step-box:hover .step-arrow {
    transform: scaleX(-1) translateX(-5px);
}

[dir="rtl"] .process-cta-button {
    padding-right: 0;
    padding-left: 10px;
}

[dir="rtl"] .process-cta-button .btn-icon {
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* RTL Footer */
[dir="rtl"] .footer-content {
    text-align: right;
}

[dir="rtl"] .footer-section ul {
    text-align: right;
}

/* RTL Text Alignment */
[dir="rtl"] .text-left {
    text-align: right !important;
}

[dir="rtl"] .text-right {
    text-align: left !important;
}

[dir="rtl"] .text-center {
    text-align: center !important;
}

/* RTL Float */
[dir="rtl"] .float-left {
    float: right !important;
}

[dir="rtl"] .float-right {
    float: left !important;
}

/* RTL Margin and Padding Utilities */
[dir="rtl"] .ml-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

[dir="rtl"] .mr-auto {
    margin-right: 0 !important;
    margin-left: auto !important;
}

/* RTL Hamburger Menu */
[dir="rtl"] .hamburger {
    order: -1;
}

/* RTL Logo */
[dir="rtl"] .logo {
    order: 1;
}

/* RTL Scroll to Top */
[dir="rtl"] .scroll-to-top {
    left: 20px;
    right: auto;
}

[dir="rtl"] .whatsapp-float {
    left: 30px;
    right: auto;
}

/* RTL Form Elements */
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select {
    text-align: right;
    direction: rtl;
}

[dir="rtl"] .contact-form {
    text-align: right;
}

/* RTL Service Cards */
[dir="rtl"] .service-card {
    text-align: right;
}

[dir="rtl"] .service-card-icon {
    margin-left: auto;
    margin-right: 0;
}

/* RTL Review Cards */
[dir="rtl"] .review-card {
    text-align: right;
}

[dir="rtl"] .review-author {
    flex-direction: row-reverse;
}

/* RTL FAQ */
[dir="rtl"] .faq-item {
    text-align: right;
}

[dir="rtl"] .faq-toggle {
    left: 0;
    right: auto;
}

/* RTL Industries */
[dir="rtl"] .industries-grid {
    direction: rtl;
}

[dir="rtl"] .industry-card {
    text-align: right;
}

/* RTL Stats */
[dir="rtl"] .stat-card-modern {
    text-align: right;
}

[dir="rtl"] .stat-icon-modern {
    margin-left: auto;
    margin-right: 0;
}

/* RTL Why Choose Section */
[dir="rtl"] .why-item {
    text-align: right;
}

[dir="rtl"] .why-icon {
    margin-left: auto;
    margin-right: 0;
}

/* RTL Service Pages */
[dir="rtl"] .service-hero-content {
    text-align: right;
}

[dir="rtl"] .service-hero-buttons {
    justify-content: flex-start;
}

[dir="rtl"] .service-feature-item {
    text-align: right;
}

[dir="rtl"] .service-why-box {
    text-align: right;
}

[dir="rtl"] .service-process-step {
    flex-direction: row-reverse;
    text-align: right;
}

/* RTL Mobile Menu */
@media (max-width: 768px) {
    /* Keep mobile menu off-canvas in RTL until activated */
    [dir="rtl"] .nav-menu {
        left: auto;
        right: -100%;
        transform: none;
    }

    [dir="rtl"] .nav-menu.active {
        left: auto;
        right: 0;
    }
    
    [dir="rtl"] .hamburger {
        order: -1;
    }
    
    [dir="rtl"] .header-actions {
        order: 0;
    }
    
    [dir="rtl"] .logo {
        order: 1;
    }
}

/* RTL Animations - Flip arrows and icons */
[dir="rtl"] svg[class*="arrow"],
[dir="rtl"] .arrow-icon {
    transform: scaleX(-1);
}

/* Preserve certain icons that shouldn't flip */
[dir="rtl"] .logo-image,
[dir="rtl"] .footer-logo-image,
[dir="rtl"] .service-card-icon svg,
[dir="rtl"] .stat-icon-modern svg,
[dir="rtl"] .why-icon svg {
    transform: none;
}