
.hero-subtitle .highlight {
  font-weight: 800;
  color: #FFFFFF;
  display: inline-block;
  opacity: 0;
  animation: highlight-fade-in 1.5s ease-out 1s forwards;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@keyframes highlight-fade-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle .highlight-static {
  font-weight: 800;
  color: #FFFFFF;
  display: inline-block;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.hero-subtitle .highlight-no-animation {
  font-weight: 800;
  color: #FFFFFF;
  display: inline-block;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.case-studies-subtitle .highlight-no-animation {
  font-weight: 800;
  color: #FFFFFF;
  display: inline-block;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    background: linear-gradient(135deg, #000000 0%, #1a0b2e 50%, #000000 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    border-radius: 2px;
}

.section-title.white {
    color: #FFFFFF;
}

.section-title.purple {
    background: linear-gradient(135deg, #C084FC, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: 2rem 0;
}

/* Enhanced Card Effects */
.offset-box {
    position: relative;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border: 1px solid rgba(142, 45, 226, 0.3);
    border-radius: 12px;
    padding: 2rem;
    display: block;
    color: #FFFFFF;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(142, 45, 226, 0.1);
    transition: all 0.3s ease;
}

.offset-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(142, 45, 226, 0.2);
    border-color: rgba(142, 45, 226, 0.5);
}

.offset-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.05) 0%, transparent 100%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offset-box:hover::before {
    opacity: 1;
}

/* Service Card Styling */
.service-card.offset-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
}

.service-card.offset-box:hover {
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border-color: rgba(142, 45, 226, 0.4);
}

.service-card.offset-box::after {
    display: none;
}

.service-card.offset-box::before {
    display: none;
}

/* Enhanced Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(142, 45, 226, 0.2);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(142, 45, 226, 0.1);
}

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

/* Enhanced Logo */
.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-transform: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    order: 1;
}

.logo:hover {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: none;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    order: 2;
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
}

/* Header CTA */
.header-cta {
    order: 3;
}

.header-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
    white-space: nowrap;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #D1D5DB;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}



/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    order: 4;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

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

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

/* Main Content Wrapper */
.main-content {
    position: relative;
    z-index: 1;
    isolation: isolate;
}

/* Enhanced Buttons */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: none;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:visited {
    text-decoration: none;
}

.btn-purple {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(142, 45, 226, 0.3);
}

.btn-purple:hover {
    background: linear-gradient(135deg, #A78BFA, #8E2DE2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142, 45, 226, 0.4);
}

.btn-purple::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 ease;
}

.btn-purple:hover::before {
    left: 100%;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-transparent {
    background-color: transparent;
    color: #D1D5DB;
    border: 1px solid rgba(209, 213, 219, 0.3);
}

.btn-transparent:hover {
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1), rgba(74, 0, 224, 0.05));
    border-color: rgba(142, 45, 226, 0.5);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn:hover .arrow {
    transform: translateX(8px);
    color: rgba(255, 255, 255, 0.9);
}

.arrow {
    display: inline-block;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    font-weight: bold;
    font-size: 1.1em;
}

/* Enhanced Button Hover Effects */
.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #8E2DE2;
    outline-offset: 2px;
}

/* Improved text selection */
::selection {
    background: rgba(142, 45, 226, 0.3);
    color: #FFFFFF;
}

::-moz-selection {
    background: rgba(142, 45, 226, 0.3);
    color: #FFFFFF;
}

/* Enhanced scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #A78BFA, #8E2DE2);
}

/* Loading animation for buttons */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #FFFFFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced Hero Section */
.hero {
    padding: 12rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a0b2e 25%, #2d1b69 50%, #1a0b2e 75%, #000000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(142, 45, 226, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 0, 224, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(142, 45, 226, 0.2) 0%, transparent 50%),
        radial-gradient(1px 1px at 20px 30px, #FFFFFF, transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 130px 80px, #FFFFFF, transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255, 255, 255, 0.7), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    z-index: 1;
    opacity: 0.3;
}

.hero-background-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(142, 45, 226, 0.4) 0%, rgba(74, 0, 224, 0.3) 30%, rgba(142, 45, 226, 0.1) 60%, transparent 100%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(142, 45, 226, 0.2);
    border: 1px solid rgba(142, 45, 226, 0.4);
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    margin-bottom: 2.5rem;
    gap: 0.6rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.badge-new {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(142, 45, 226, 0.3);
}

.badge-text {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: none;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}



.hero-subheadlines {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: #D1D5DB;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-subtitle:last-child {
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
    min-width: 180px;
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* Enhanced Tech Carousel Section */
.tech-carousel {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 2rem 0 1rem 0;
    overflow: hidden;
    position: relative;
}

.tech-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

.tech-carousel-wrapper {
    overflow: hidden;
    margin-top: 2rem;
    position: relative;
}

.tech-carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(220px * 16);
}

.tech-logo-item {
    flex: 0 0 200px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border: 1px solid rgba(142, 45, 226, 0.3);
    border-radius: 12px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    gap: 0.5rem;
}

.tech-logo-item:hover {
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.2) 0%, rgba(74, 0, 224, 0.1) 100%);
    transform: translateY(-8px);
    border-color: rgba(142, 45, 226, 0.6);
    box-shadow: 0 12px 30px rgba(142, 45, 226, 0.2);
}

.tech-logo-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    letter-spacing: -0.01em;
    margin-top: 0.25rem;
}

.tech-logo-item:hover .tech-logo-name {
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(142, 45, 226, 0.5);
}

.tech-logo-item svg {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.tech-logo-item:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(142, 45, 226, 0.3));
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 15 - 2rem * 15)); /* Half the items for seamless loop */
    }
}

/* Enhanced Services Section */
.services {
    position: relative;
    padding: 3rem 0 6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 11, 46, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    isolation: isolate;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(142, 45, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(74, 0, 224, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* Mobile override for services section spacing */
@media (max-width: 768px) {
    .services.section-padding {
        padding: 2rem 0 !important;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }
}

/* Services Carousel */
.services-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 0;
}

.services-carousel-container {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.services-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    touch-action: pan-y pinch-zoom; /* Allow vertical scrolling but enable horizontal swipe */
}

.services-carousel-slide {
    min-width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.services-carousel-slide .service-card {
    margin: 0 auto;
    max-width: 500px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border: 2px solid rgba(142, 45, 226, 0.2);
    box-shadow: 0 20px 60px rgba(142, 45, 226, 0.15);
    transition: all 0.4s ease;
}

.services-carousel-slide .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(142, 45, 226, 0.25);
    border-color: rgba(142, 45, 226, 0.4);
}

/* Services Carousel Navigation */
.services-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.services-carousel-prev,
.services-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(142, 45, 226, 0.3);
    z-index: 10;
}

.services-carousel-prev {
    left: -30px;
}

.services-carousel-next {
    right: -30px;
}

.services-carousel-prev:hover,
.services-carousel-next:hover {
    transform: translateY(-50%) translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(142, 45, 226, 0.4);
    background: linear-gradient(135deg, #9D3DF0 0%, #5A10F0 100%);
}

.services-carousel-prev:active,
.services-carousel-next:active {
    transform: translateY(-50%) translateY(-1px) scale(1.02);
}

/* Case Studies Section */
.case-studies {
    background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 50%, #16213E 100%);
    position: relative;
    overflow: hidden;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(142, 45, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(74, 0, 224, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.case-studies-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Explore Our Work Button */
.explore-work-button-container {
    text-align: center;
    margin-bottom: 3rem;
}

.explore-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.explore-work-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142, 45, 226, 0.4);
}

/* Work Page Styles */
.work-page {
    background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 50%, #16213E 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.work-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(142, 45, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(74, 0, 224, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.work-headline {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.work-main-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.work-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 500;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #C084FC;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.back-link:hover {
    color: #8E2DE2;
    transform: translateX(-5px);
}

/* Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Work Card Styles */
.work-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(142, 45, 226, 0.3);
}

.work-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.work-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.work-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.work-card-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.work-card-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.work-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.work-card-footer {
    padding: 0 2rem 2rem;
    margin-top: auto;
}

/* Work Page Responsive Design */
@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .work-card {
        margin: 0 1rem;
    }

    .work-card-image {
        height: 200px;
    }

    .work-card-content {
        padding: 1.5rem;
    }

    .work-card-title {
        font-size: 1.3rem;
    }

    .work-card-metrics {
        gap: 1rem;
    }

    .work-header {
        margin-bottom: 1.5rem;
    }

    .work-headline {
        margin-bottom: 2.5rem;
    }

    .work-main-headline {
        font-size: 2rem;
        line-height: 1.3;
    }

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

@media (max-width: 480px) {
    .work-main-headline {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .work-headline {
        margin-bottom: 2rem;
    }

    .work-grid {
        gap: 1rem;
    }

    .work-card {
        margin: 0 0.5rem;
    }

    .work-card-content {
        padding: 1rem;
    }

    .work-card-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }

    .metric {
        text-align: center;
    }
}

/* Case Studies Carousel */
.case-studies-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.case-studies-carousel-container {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.case-studies-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    touch-action: pan-y pinch-zoom; /* Allow vertical scrolling but enable horizontal swipe */
}

.case-studies-carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    opacity: 0.3;
    transform: scale(0.95) translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-studies-carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Case Study Card */
.case-study-card {
    margin: 0 auto;
    max-width: 600px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(142, 45, 226, 0.2);
    box-shadow: 0 20px 60px rgba(142, 45, 226, 0.15);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    will-change: transform;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(142, 45, 226, 0.25);
    border-color: rgba(142, 45, 226, 0.4);
}

.case-study-image {
    height: 280px;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(142, 45, 226, 0.2);
    position: relative;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    border-radius: 0;
}

.case-study-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.case-study-card:hover .case-study-image::before {
    left: 100%;
}

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

.case-study-placeholder {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.case-study-card:hover .case-study-placeholder {
    opacity: 1;
    transform: scale(1.1);
}

.case-study-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.case-study-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.case-study-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8E2DE2;
    line-height: 1.2;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.case-study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(142, 45, 226, 0.2);
    color: #C084FC;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(142, 45, 226, 0.3);
}

.case-study-footer {
    padding: 0 2rem 2rem;
    margin-top: auto;
}

/* Case Studies Carousel Navigation */
.case-studies-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.case-studies-carousel-prev,
.case-studies-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(142, 45, 226, 0.3);
    z-index: 10;
}

.case-studies-carousel-prev {
    left: -30px;
}

.case-studies-carousel-next {
    right: -30px;
}

.case-studies-carousel-prev:hover,
.case-studies-carousel-next:hover {
    transform: translateY(-50%) translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(142, 45, 226, 0.4);
    background: linear-gradient(135deg, #9D3DF0 0%, #5A10F0 100%);
}

.case-studies-carousel-prev:active,
.case-studies-carousel-next:active {
    transform: translateY(-50%) translateY(-1px) scale(1.02);
}

/* Case Studies Carousel Indicators */
.case-studies-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.case-studies-carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(142, 45, 226, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-studies-carousel-indicators .indicator.active {
    background: #8E2DE2;
    transform: scale(1.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.case-studies-carousel-indicators .indicator:hover {
    background: rgba(142, 45, 226, 0.6);
}

/* Differentiators Carousel */
.differentiators-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0;
}

.differentiators-carousel-container {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.differentiators-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    touch-action: pan-y pinch-zoom; /* Allow vertical scrolling but enable horizontal swipe */
}

.differentiators-carousel-slide {
    min-width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.differentiators-carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.differentiators-carousel-slide .diff-item {
    margin: 0 auto;
    max-width: 600px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border: 2px solid rgba(142, 45, 226, 0.2);
    box-shadow: 0 20px 60px rgba(142, 45, 226, 0.15);
    transition: all 0.4s ease;
    padding: 3rem 2rem;
}

.differentiators-carousel-slide .diff-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(142, 45, 226, 0.25);
    border-color: rgba(142, 45, 226, 0.4);
}

.diff-icon {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diff-icon svg {
    width: 48px;
    height: 48px;
}

/* Differentiators Carousel Navigation */
.differentiators-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
}

.differentiators-carousel {
    position: relative;
}

.differentiators-carousel .differentiators-carousel-prev,
.differentiators-carousel .differentiators-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(142, 45, 226, 0.3);
    z-index: 10;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.differentiators-carousel .differentiators-carousel-prev {
    left: -30px;
}

.differentiators-carousel .differentiators-carousel-next {
    right: -30px;
}

.differentiators-carousel .differentiators-carousel-prev:hover,
.differentiators-carousel .differentiators-carousel-next:hover {
    transform: translateY(-50%) translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(142, 45, 226, 0.4);
    background: linear-gradient(135deg, #9D3DF0 0%, #5A10F0 100%);
}

.differentiators-carousel .differentiators-carousel-prev:active,
.differentiators-carousel .differentiators-carousel-next:active {
    transform: translateY(-50%) translateY(-1px) scale(1.02);
}



.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border-color: rgba(142, 45, 226, 0.3);
    box-shadow: 0 20px 40px rgba(142, 45, 226, 0.2);
}

.service-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-card-header {
    margin-bottom: 2rem;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-title::before {
    content: '⚡';
    font-size: 1.2rem;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.service-card:nth-child(2) .card-title::before {
    content: '🤖';
}

.service-card:nth-child(3) .card-title::before {
    content: '🚀';
}

.service-card:nth-child(4) .card-title::before {
    content: '🔧';
}

.service-card:nth-child(5) .card-title::before {
    content: '🛒';
}

.service-card:nth-child(6) .card-title::before {
    content: '🔗';
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-description {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #D1D5DB;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin-bottom: auto;
    text-align: left;
    flex-grow: 1;
    padding: 0;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    font-size: 0.95rem;
    color: #D1D5DB;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8E2DE2;
    font-weight: bold;
}

.features-list li:last-child {
    border-bottom: none;
}

.service-card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Competition Warning Section */
.competition-warning {
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: relative;
}

.competition-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(142, 45, 226, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.competition-text {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    color: #D1D5DB;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-weight: 500;
}



/* Enhanced Differentiators Section */
.differentiators {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 11, 46, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
    position: relative;
}

.differentiators::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(142, 45, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 0, 224, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.diff-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.diff-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    z-index: 1;
}

.diff-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border-color: rgba(142, 45, 226, 0.3);
    box-shadow: 0 20px 40px rgba(142, 45, 226, 0.2);
}

.diff-item.full-width {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 1.5rem auto 0;
    min-height: 180px;
}

.diff-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 700;
}

.diff-description {
    color: #D1D5DB;
    font-size: 1rem;
    line-height: 1.6;
}

/* Enhanced Final CTA Section */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(142, 45, 226, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.availability-notice {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid #00bcd4;
    color: #00bcd4;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.availability-dot {
    width: 12px;
    height: 12px;
    background-color: #00bcd4;
    border-radius: 50%;
    margin-right: 0.75rem;
}

/* Enhanced FAQ Accordion Section */
.faq-section {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(142, 45, 226, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item-accordion {
    border-bottom: 1px solid rgba(142, 45, 226, 0.3);
    margin-bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-accordion:hover {
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.05) 0%, rgba(74, 0, 224, 0.02) 100%);
    border-color: rgba(142, 45, 226, 0.5);
}

.faq-question-accordion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: none;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.faq-question-accordion:hover {
    color: #8E2DE2;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8E2DE2;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(142, 45, 226, 0.1);
    border-radius: 50%;
}

.faq-item-accordion.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(142, 45, 226, 0.2);
}

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

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

.faq-answer-accordion p {
    color: #D1D5DB;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Contact Info Section */
.contact-info-section {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(142, 45, 226, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.contact-info-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    z-index: 1;
}

.contact-info-box:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border-color: rgba(142, 45, 226, 0.3);
    box-shadow: 0 20px 40px rgba(142, 45, 226, 0.2);
}

.contact-info-title {
    background: linear-gradient(135deg, #C084FC, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
    text-align: left;
}

.contact-detail {
    color: #D1D5DB;
    font-size: 1rem;
    line-height: 1.6;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail strong {
    color: #FFFFFF;
    font-weight: 600;
    margin-right: 0.75rem;
    display: inline-block;
    min-width: 140px;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, rgba(26, 11, 46, 0.8) 50%, #000000 100%);
    padding: 2rem 0 1rem;
    color: #FFFFFF;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(142, 45, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 0, 224, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-title {
    background: linear-gradient(135deg, #C084FC, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-text {
    color: #D1D5DB;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #8E2DE2;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(142, 45, 226, 0.2);
    color: #9CA3AF;
    position: relative;
    z-index: 2;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(142, 45, 226, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(142, 45, 226, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}



/* Enhanced Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1001;
}

.floating-contact-btn {
    width: 65px;
    height: 65px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    position: relative;
}

.floating-contact-btn-meet {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    box-shadow: 0 8px 25px rgba(142, 45, 226, 0.4);
}

.floating-contact-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.floating-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}

.floating-contact-btn-meet:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(142, 45, 226, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.floating-contact-btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.floating-contact-btn:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
}

.floating-contact-btn-icon {
    font-size: 12px;
    color: #FFFFFF;
    font-weight: bold;
    transition: transform 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.floating-contact-btn:hover .floating-contact-btn-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced Floating Contact Button Tooltip */
.floating-contact-btn-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 11, 46, 0.9));
    color: #FFFFFF;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(142, 45, 226, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(142, 45, 226, 0.3);
}

.floating-contact-btn-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: rgba(142, 45, 226, 0.8);
}

.floating-contact-btn:hover .floating-contact-btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-10px);
}

/* Mobile adjustments for floating buttons */
@media (max-width: 768px) {
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-contact-btn {
        width: 55px;
        height: 55px;
    }

    .floating-contact-btn-icon {
        font-size: 10px;
    }

    /* Mobile-friendly tooltip behavior */
    .floating-contact-btn-tooltip {
        right: 65px;
        font-size: 0.75rem;
        padding: 8px 12px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    /* Show tooltip when button has active class (controlled by JavaScript) */
    .floating-contact-btn.mobile-tooltip-active .floating-contact-btn-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translateX(-5px);
    }

    /* Disable hover effects on mobile */
    .floating-contact-btn:hover .floating-contact-btn-tooltip {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-50%);
    }

    /* Enhanced Contact Page Mobile Layout */
    .contact-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-bottom: 3rem;
        width: 100%;
    }

    /* Ensure contact card appears first on mobile */
    .contact-card-left {
        order: 1;
        width: 100%;
        margin-bottom: 1rem;
    }

    .contact-form-right {
        order: 2;
        width: 100%;
    }

    /* Enhanced contact option styling for mobile */
    .contact-option-merged {
        padding: 2rem 1.5rem;
        margin-bottom: 0;
    }

    .contact-option-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .contact-option-description {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem 1.2rem;
        font-size: 1rem;
        border-radius: 10px;
        justify-content: center;
        text-align: center;
    }

    .contact-method-icon {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }

    /* Enhanced form container for mobile */
    .tally-form-container {
        padding: 1.5rem;
        margin-top: 0;
    }

    .tally-form-container iframe {
        height: 400px;
        border-radius: 8px;
    }

    .form-title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }
}

/* Additional mobile improvements for smaller screens */
@media (max-width: 480px) {
    .contact-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-option-merged {
        padding: 1.5rem 1rem;
    }

    .contact-option-title {
        font-size: 1.6rem;
    }

    .contact-option-description {
        font-size: 0.95rem;
    }

    .contact-method {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .contact-method-icon {
        width: 32px;
        height: 32px;
    }

    .tally-form-container {
        padding: 1.2rem;
    }

    .form-title {
        font-size: 1.4rem;
    }

    .tally-form-container iframe {
        height: 380px;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    /* Fix container padding to prevent content cutoff */
    .container {
        padding: 0 20px;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Force contact layout to stack on mobile - Additional override */
    .contact-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-card-left,
    .contact-form-right {
        width: 100% !important;
    }

    /* Additional mobile contact layout fixes */
    .contact-card-left {
        order: 1 !important;
        margin-bottom: 1rem !important;
    }

    .contact-form-right {
        order: 2 !important;
    }

    /* Header fixes */
    .header {
        padding: 0;
    }

    .header-content {
        flex-wrap: nowrap;
        padding: 1rem 0;
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 11, 46, 0.95) 100%);
        backdrop-filter: blur(20px);
        z-index: 1000;
        transition: left 0.3s ease;
        padding-top: 80px;
        display: flex;
        justify-content: center;
        order: 2;
        margin: 0;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding: 3rem 0;
    }

    .nav-link {
        font-size: 1.3rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: linear-gradient(135deg, rgba(142, 45, 226, 0.2) 0%, rgba(74, 0, 224, 0.1) 100%);
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    .logo {
        font-size: 1.2rem;
        order: 1;
        flex-shrink: 0;
    }

    .header-cta {
        display: none;
    }

    /* Hero section fixes */
    .hero {
        padding: 8rem 0 4rem;
        min-height: 80vh;
        overflow: hidden;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 0;
    }

    .hero-background-circle {
        width: 500px;
        height: 500px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1rem;
        padding: 0 10px;
    }

    .hero-subheadlines {
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
        white-space: nowrap;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 10px;
        text-align: center;
    }

    /* Fix any potential horizontal overflow */
    .main-content {
        overflow-x: hidden;
    }

    /* Ensure all sections have proper mobile spacing */
    .section-padding {
        padding: 2.5rem 0;
    }

    /* Fix button layouts */
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }

    /* Ensure cards and content don't overflow */
    .service-card, .diff-item, .timeline-card {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Fix any grid layouts */
    .services-grid, .diff-grid, .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services {
        padding: 2rem 0 !important;
        margin: 0px !important;
        z-index: 10;
        position: relative;
    }

    .service-card {
        z-index: 1;
        position: relative;
        padding: 2rem 1.5rem;
    }

    /* Services Carousel Mobile */
    .services-carousel {
        padding: 1rem 0;
        max-width: 100%;
    }

    .services-carousel-slide .service-card {
        max-width: 100%;
        min-height: auto;
        margin: 0 1rem;
    }

    .services-carousel-nav {
        gap: 1rem;
        margin-top: 1rem;
    }

    .services-carousel-prev,
    .services-carousel-next {
        width: 50px;
        height: 50px;
    }

    .services-carousel-prev {
        left: -25px;
    }

    .services-carousel-next {
        right: -25px;
    }

    /* Case Studies Carousel Mobile */
    .case-studies-carousel {
        padding: 1rem 0;
        max-width: 100%;
    }

    .case-studies-carousel-slide .case-study-card {
        max-width: 100%;
        min-height: auto;
        margin: 0 1rem;
    }

    .case-studies-carousel-nav {
        gap: 1rem;
        margin-top: 1rem;
    }

    .case-studies-carousel-prev,
    .case-studies-carousel-next {
        width: 50px;
        height: 50px;
    }

    .case-studies-carousel-prev {
        left: -25px;
    }

    .case-studies-carousel-next {
        right: -25px;
    }

    .case-study-content {
        padding: 1.5rem;
    }

    .case-study-metrics {
        gap: 1rem;
    }

    .metric-value {
        font-size: 1.2rem;
    }

    .case-studies-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    /* Differentiators Carousel Mobile */
    .differentiators-carousel {
        padding: 1rem 0;
        max-width: 100%;
    }

    .differentiators-carousel-slide .diff-item {
        max-width: 100%;
        min-height: auto;
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }

    .differentiators-carousel-nav {
        gap: 1rem;
        margin-top: 1rem;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .differentiators-carousel .differentiators-carousel-prev,
    .differentiators-carousel .differentiators-carousel-next {
        width: 50px;
        height: 50px;
        pointer-events: auto;
    }

    .differentiators-carousel .differentiators-carousel-prev {
        left: -25px;
    }

    .differentiators-carousel .differentiators-carousel-next {
        right: -25px;
    }



    .differentiators-carousel-dot {
        width: 10px;
        height: 10px;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .price {
        font-size: 2rem;
    }



    .diff-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Tech carousel mobile fixes */
    .tech-carousel {
        padding: 1.5rem 0;
        margin: 0 -20px;
    }

    .tech-carousel-wrapper {
        margin-top: 1.5rem;
    }

    .tech-carousel-track {
        width: calc(180px * 16);
    }

    .tech-logo-item {
        flex: 0 0 160px;
        height: 70px;
        margin: 0 0.5rem;
    }

    .tech-logo-name {
        font-size: 0.8rem;
    }

    .tech-logo-item svg {
        width: 32px;
        height: 32px;
    }

    /* Section spacing fixes */
    .section-padding {
        padding: 2rem 0;
    }

    .diff-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* Header adjustments for small screens */
    .header-content {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1rem;
    }

    /* Hero section for small screens */
    .hero {
        padding: 6rem 0 3rem;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        padding: 0 5px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        padding: 0 5px;
    }

    .hero-background-circle {
        width: 350px;
        height: 350px;
    }

    .hero-buttons {
        padding: 0 15px;
        gap: 0.75rem;
    }

    .btn {
        max-width: 250px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
        padding: 0 5px;
    }

    .services {
        padding: 3rem 0 !important;
        margin: 0px !important;
        z-index: 10;
        position: relative;
    }

    .service-card {
        z-index: 1;
        position: relative;
        padding: 1.5rem;
    }

    /* Services Carousel Small Mobile */
    .services-carousel-slide .service-card {
        margin: 0 0.5rem;
    }

    .services-carousel-prev,
    .services-carousel-next {
        width: 45px;
        height: 45px;
    }

    .services-carousel-prev {
        left: -22px;
    }

    .services-carousel-next {
        right: -22px;
    }

    /* Case Studies Carousel Small Mobile */
    .case-studies-carousel-slide .case-study-card {
        margin: 0 0.5rem;
    }

    .case-studies-carousel-prev,
    .case-studies-carousel-next {
        width: 45px;
        height: 45px;
    }

    .case-studies-carousel-prev {
        left: -22px;
    }

    .case-studies-carousel-next {
        right: -22px;
    }

    .case-study-content {
        padding: 1rem;
    }

    .case-study-title {
        font-size: 1.3rem;
    }

    .case-study-metrics {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .metric {
        text-align: center;
    }

    .metric-value {
        font-size: 1.1rem;
    }

    .case-studies-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Differentiators Carousel Small Mobile */
    .differentiators-carousel-slide .diff-item {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
    }

    .differentiators-carousel .differentiators-carousel-prev,
    .differentiators-carousel .differentiators-carousel-next {
        width: 45px;
        height: 45px;
        pointer-events: auto;
    }

    /* Tech carousel small mobile fixes */
    .tech-carousel {
        margin: 0 -15px;
        padding: 1rem 0;
    }

    .tech-carousel-track {
        width: calc(150px * 16);
    }

    .tech-logo-item {
        flex: 0 0 130px;
        height: 55px;
        margin: 0 0.25rem;
    }

    .tech-logo-name {
        font-size: 0.75rem;
    }

    .tech-logo-item svg {
        width: 28px;
        height: 28px;
    }

    .section-padding {
        padding: 1.5rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Aggressive mobile override for services section */
    section.services {
        padding: 0px !important;
        margin: 0px !important;
    }

    section.services.section-padding {
        padding: 0px !important;
        margin: 0px !important;
    }

    /* Override main content height on mobile */
    .main-content {
        min-height: auto !important;
        height: auto !important;
    }

    .services.section-padding {
        padding: 0px !important;
        margin: 0px !important;
    }

    .services {
        padding: 0px !important;
        margin: 0px !important;
    }

    .services .container {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

    .process {
        padding: 2rem 0;
        margin-top: -200px !important;
    }

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

/* Enhanced About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.about-box:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border-color: rgba(142, 45, 226, 0.3);
    box-shadow: 0 15px 35px rgba(142, 45, 226, 0.2);
}

.about-box-title {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-box-text {
    color: #D1D5DB;
    line-height: 1.7;
    font-size: 1.1rem;
}

.stats-section {
    margin: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-box {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(142, 45, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(142, 45, 226, 0.4);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.story-section {
    margin: 5rem 0;
}

.story-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3.5rem;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.story-content:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border-color: rgba(142, 45, 226, 0.3);
    box-shadow: 0 15px 35px rgba(142, 45, 226, 0.2);
}

.story-title {
    background: linear-gradient(135deg, #C084FC, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.story-text {
    color: #D1D5DB;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.values-section {
    margin: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    z-index: 1;
}

.value-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border-color: rgba(142, 45, 226, 0.3);
    box-shadow: 0 15px 35px rgba(142, 45, 226, 0.2);
}

.value-title {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-description {
    color: #D1D5DB;
    font-size: 1rem;
    line-height: 1.7;
}

.about-cta {
    margin: 4rem 0;
    text-align: center;
}

/* Enhanced Contact Page Styles */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: start;
}

.contact-card-left {
    display: flex;
    flex-direction: column;
}

.contact-form-right {
    display: flex;
    flex-direction: column;
}

.contact-option-merged {
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border: 1px solid rgba(142, 45, 226, 0.3);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-option-merged::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    z-index: 1;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border: 1px solid rgba(142, 45, 226, 0.2);
    border-radius: 12px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-method:hover {
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.2) 0%, rgba(74, 0, 224, 0.1) 100%);
    border-color: rgba(142, 45, 226, 0.4);
    transform: translateX(5px);
    color: #FFFFFF;
}

.contact-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    border-radius: 50%;
    color: #FFFFFF;
}

.tally-form-container {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 1px solid rgba(142, 45, 226, 0.4);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(142, 45, 226, 0.2);
}

.tally-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    z-index: 1;
}

.form-title {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

/* Tally Form Custom Styling */
.tally-form-container iframe {
    border-radius: 12px;
    overflow: hidden;
}

/* Override Tally form styles to match website theme */
.tally-form-container {
    --tally-color-primary: #8E2DE2;
    --tally-color-primary-hover: #4A00E0;
    --tally-color-background: transparent;
    --tally-color-text: #FFFFFF;
    --tally-color-text-light: #D1D5DB;
    --tally-color-border: rgba(142, 45, 226, 0.3);
    --tally-color-input-background: rgba(255, 255, 255, 0.1);
    --tally-color-input-border: rgba(142, 45, 226, 0.4);
}

/* Additional Tally form styling overrides */
.tally-form-container iframe[data-tally-src] {
    background: transparent !important;
}

/* Enhanced form styling */
.tally-form-container iframe {
    background: rgba(26, 11, 46, 0.9) !important;
    border-radius: 12px;
}

/* Add subtle animation to form container */
.tally-form-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(142, 45, 226, 0.3);
    border-color: rgba(142, 45, 226, 0.6);
}

/* Custom overlay to improve form integration */
.tally-form-container::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.03) 0%, transparent 50%, rgba(74, 0, 224, 0.03) 100%);
    border-radius: 12px;
    z-index: 1;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.contact-option {
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border: 1px solid rgba(142, 45, 226, 0.3);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    z-index: 1;
}

.contact-option:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.15) 0%, rgba(74, 0, 224, 0.08) 100%);
    border-color: rgba(142, 45, 226, 0.5);
    box-shadow: 0 20px 40px rgba(142, 45, 226, 0.2);
}

.contact-option-title {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-option-description {
    color: #D1D5DB;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-option-details ul {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    padding: 0;
}

.contact-option-details li {
    padding: 0.75rem 0;
    color: #D1D5DB;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.contact-option-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8E2DE2;
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-faq {
    margin: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FFFFFF;
    padding: 2rem;
}

.faq-question {
    color: #00bcd4;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info {
    margin: 4rem 0;
}



.contact-final-cta {
    margin: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    position: relative;
}

.contact-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(142, 45, 226, 0.15) 0%, transparent 70%);
    border-radius: 20px;
    z-index: 1;
}

.contact-final-text {
    color: #D1D5DB;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Privacy Page Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-updated {
    text-align: center;
    margin-bottom: 3rem;
    color: #cccccc;
    font-size: 1rem;
}

.privacy-sections {
    margin-bottom: 4rem;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #EAEAEA;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section-title {
    color: #00bcd4;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.privacy-text {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-list {
    margin: 1rem 0 1rem 2rem;
    color: #FFFFFF;
}

.privacy-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info-privacy {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #8E2DE2;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
}

.contact-info-privacy p {
    margin-bottom: 0.5rem;
    color: #D1D5DB;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-privacy strong {
    color: #FFFFFF;
    font-weight: 600;
}

.privacy-cta {
    text-align: center;
    margin: 3rem 0;
}

/* Process Timeline Section */
.process-timeline {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(142, 45, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(74, 0, 224, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Process Carousel Styles */
.process-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.process-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
}

.process-carousel-track {
    display: flex;
    flex-direction: row;
    width: 500%; /* 5 slides for infinite loop (3 original + 2 duplicates) */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    touch-action: pan-y pinch-zoom; /* Allow vertical scrolling but enable horizontal swipe */
}

.process-carousel-slide {
    width: 20%; /* Each slide takes 1/5 of track width (for 5-slide infinite track) */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    opacity: 0.4;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.process-carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.process-carousel-slide .timeline-card {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Process Carousel Navigation */
.process-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
}

.process-carousel .process-carousel-prev,
.process-carousel .process-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
    border: none;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(142, 45, 226, 0.3);
    z-index: 10;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.process-carousel .process-carousel-prev {
    left: -25px;
}

.process-carousel .process-carousel-next {
    right: -25px;
}

.process-carousel .process-carousel-prev:hover,
.process-carousel .process-carousel-next:hover {
    background: linear-gradient(135deg, #9D3DF0 0%, #5A10F0 100%);
    transform: translateY(-50%) translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(142, 45, 226, 0.4);
}



.process-carousel-dot:hover {
    border-color: rgba(142, 45, 226, 0.8);
    transform: scale(1.2);
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.timeline-layer {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-layer:last-child {
    margin-bottom: 0;
}

.timeline-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    z-index: 1;
}

.timeline-card.optional::before {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
}

.timeline-card.core::before {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    box-shadow: 0 0 20px rgba(142, 45, 226, 0.3);
}

.timeline-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border-color: rgba(142, 45, 226, 0.3);
    box-shadow: 0 20px 40px rgba(142, 45, 226, 0.2);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.timeline-number {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(142, 45, 226, 0.3);
}

.timeline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.2) 0%, rgba(74, 0, 224, 0.1) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid rgba(142, 45, 226, 0.3);
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.3) 0%, rgba(74, 0, 224, 0.2) 100%);
    border-color: rgba(142, 45, 226, 0.5);
    box-shadow: 0 8px 20px rgba(142, 45, 226, 0.3);
}

.timeline-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
}

.optional-badge {
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    color: #8E2DE2;
    border: 1px solid rgba(142, 45, 226, 0.3);
}

.core-badge {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    color: #FFFFFF;
    border: 1px solid rgba(142, 45, 226, 0.5);
    box-shadow: 0 2px 8px rgba(142, 45, 226, 0.3);
}

.timeline-content {
    color: #FFFFFF;
    position: relative;
    z-index: 2;
}

.timeline-title {
    color: #FFFFFF;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-duration {
    background: linear-gradient(135deg, #C084FC, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.timeline-description {
    color: #D1D5DB;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
}

.timeline-conditional,
.timeline-additional {
    color: #9CA3AF;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.timeline-includes {
    margin-top: 1.5rem;
}

.timeline-includes h4 {
    background: linear-gradient(135deg, #C084FC, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.timeline-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-includes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #D1D5DB;
}

.timeline-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8E2DE2;
    font-weight: bold;
}

.timeline-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
    position: relative;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #8E2DE2, #4A00E0);
    margin-bottom: 0.5rem;
}

.connector-arrow {
    background: linear-gradient(135deg, #C084FC, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: bold;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Enhanced Why Us Section */
.why-us {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(142, 45, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(74, 0, 224, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-us-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    z-index: 1;
}

.why-us-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
    border-color: rgba(142, 45, 226, 0.3);
    box-shadow: 0 20px 40px rgba(142, 45, 226, 0.2);
}

.why-us-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.2) 0%, rgba(74, 0, 224, 0.1) 100%);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(142, 45, 226, 0.3);
    transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(142, 45, 226, 0.3) 0%, rgba(74, 0, 224, 0.2) 100%);
    border-color: rgba(142, 45, 226, 0.5);
    box-shadow: 0 8px 20px rgba(142, 45, 226, 0.3);
}

.why-us-title {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-us-subtitle {
    background: linear-gradient(135deg, #C084FC, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.why-us-details {
    color: #D1D5DB;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

/* Large text cards for first two slides */
.large-text-card {
    justify-content: center;
}

.large-text-card .why-us-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.large-text-card .why-us-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.large-text-card .why-us-details {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.why-us-list {
    color: #D1D5DB;
    font-size: 1rem;
    line-height: 1.7;
    margin: 1rem 0;
    padding-left: 1.5rem;
    text-align: left;
}

.why-us-list li {
    margin-bottom: 0.75rem;
    position: relative;
}

.why-us-list li::marker {
    color: #8E2DE2;
}

/* Why Us Carousel - Visible on both desktop and mobile */
.why-us-carousel {
    display: block;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 400%;
    touch-action: pan-y pinch-zoom; /* Allow vertical scrolling but enable horizontal swipe */
}

.carousel-slide {
    width: 25%;
    flex-shrink: 0;
    padding: 0 1rem;
}

.carousel-slide .why-us-card {
    height: 100%;
    min-height: 320px;
}



.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.why-us-carousel .carousel-prev,
.why-us-carousel .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(142, 45, 226, 0.3);
    z-index: 10;
    pointer-events: auto;
}

.why-us-carousel .carousel-prev {
    left: -30px;
}

.why-us-carousel .carousel-next {
    right: -30px;
}

.why-us-carousel .carousel-prev:hover,
.why-us-carousel .carousel-next:hover {
    transform: translateY(-50%) translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(142, 45, 226, 0.4);
    background: linear-gradient(135deg, #9D3DF0 0%, #5A10F0 100%);
}

.why-us-carousel .carousel-prev:active,
.why-us-carousel .carousel-next:active {
    transform: translateY(-50%) translateY(-1px) scale(1.02);
}



/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

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

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

    /* Process Carousel Mobile Styles - now horizontal */

    .process-carousel-slide {
        padding: 1.5rem 0.5rem;
    }

    .process-carousel-nav {
        gap: 1.5rem;
        margin-top: 2rem;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .process-carousel .process-carousel-prev,
    .process-carousel .process-carousel-next {
        width: 45px;
        height: 45px;
        pointer-events: auto;
    }

    .process-carousel .process-carousel-prev {
        left: -22px;
    }

    .process-carousel .process-carousel-next {
        right: -22px;
    }

    .process-carousel-dots {
        gap: 0.8rem;
    }

    .process-carousel-dot {
        width: 10px;
        height: 10px;
    }

    /* Process Timeline Mobile Styles */
    .timeline-container {
        padding: 0 1rem;
    }

    .timeline-card {
        padding: 2rem 1.5rem;
    }

    .timeline-header {
        gap: 1rem;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
    }

    .timeline-icon svg {
        width: 36px;
        height: 36px;
    }

    .timeline-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        margin-left: 0;
        margin-top: 0.5rem;
        flex-basis: 100%;
    }

    .timeline-title {
        font-size: 1.3rem;
    }

    .timeline-duration {
        font-size: 0.9rem;
    }

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

    .timeline-conditional,
    .timeline-additional {
        font-size: 0.9rem;
    }

    .timeline-includes h4 {
        font-size: 0.9rem;
    }

    .timeline-includes li {
        font-size: 0.85rem;
        padding-left: 1.2rem;
    }

    .connector-line {
        height: 30px;
    }

    .connector-arrow {
        font-size: 1.2rem;
    }

    /* Why Us Mobile Styles */
    .why-us-carousel {
        max-width: 100%;
        padding: 1rem 0;
    }

    .carousel-slide {
        padding: 0 0.5rem;
    }

    .carousel-slide .why-us-card {
        padding: 1.5rem 1.25rem;
        min-height: 280px;
    }

    .why-us-card .why-us-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .why-us-card .why-us-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .why-us-card .why-us-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .why-us-card .why-us-details {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .why-us-card .why-us-list {
        font-size: 0.9rem;
        padding-left: 1rem;
    }

    /* Mobile styles for large text cards */
    .large-text-card .why-us-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .large-text-card .why-us-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.9rem;
    }

    .large-text-card .why-us-details {
        font-size: 1rem;
        margin-bottom: 0.9rem;
    }

    .carousel-nav {
        gap: 1.5rem;
        margin-top: 2rem;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .why-us-carousel .carousel-prev,
    .why-us-carousel .carousel-next {
        width: 50px;
        height: 50px;
        top: 50%;
        pointer-events: auto;
    }

    .why-us-carousel .carousel-prev {
        left: -25px;
    }

    .why-us-carousel .carousel-next {
        right: -25px;
    }

    .carousel-dots {
        gap: 0.8rem;
    }

    /* Mobile touch enhancements */
    .carousel-track,
    .differentiators-carousel-track,
    .services-carousel-track,
    .case-studies-carousel-track,
    .process-carousel-track {
        cursor: grab;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .carousel-track:active,
    .differentiators-carousel-track:active,
    .services-carousel-track:active,
    .case-studies-carousel-track:active,
    .process-carousel-track:active {
        cursor: grabbing;
    }

    /* Add subtle visual feedback for touch areas */
    .carousel-slide,
    .differentiators-carousel-slide,
    .services-carousel-slide,
    .case-studies-carousel-slide,
    .process-carousel-slide {
        -webkit-tap-highlight-color: transparent;
    }

    /* Mobile swipe indicator - only show on mobile */
    .why-us-carousel::after,
    .differentiators-carousel::after,
    .case-studies-carousel::after {
        content: "← Swipe →";
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.5);
        pointer-events: none;
        opacity: 0.7;
        animation: fadeInOut 3s ease-in-out infinite;
    }

    @keyframes fadeInOut {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 0.7; }
    }

    /* Case Studies Mobile Styles */
    .case-study-image {
        height: 200px;
    }

    .case-studies-carousel-slide {
        padding: 0 0.5rem;
    }

    .case-study-card {
        margin: 0 auto;
        max-width: 350px;
    }

    .case-study-content {
        padding: 1.5rem;
    }

    .case-study-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .case-study-description {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .case-study-metrics {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .metric-value {
        font-size: 1.1rem;
    }

    .metric-label {
        font-size: 0.8rem;
    }

    .case-study-tags {
        gap: 0.4rem;
        margin-bottom: 1rem;
    }

    .tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Hide swipe indicators on desktop */
@media (min-width: 769px) {
    .why-us-carousel::after,
    .differentiators-carousel::after,
    .case-studies-carousel::after {
        display: none;
    }

    .about-box-title {
        font-size: 1.5rem;
    }

    .story-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-box, .story-content, .contact-info-box {
        padding: 2rem;
    }

    .contact-option, .stat-box, .value-item, .faq-item, .contact-info-box {
        padding: 1.5rem;
    }

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

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card-footer {
        margin-top: 1.5rem;
        padding-top: 0.5rem;
    }

    .pricing.section-padding {
        padding: 0px !important;
        margin: 0px !important;
    }

    .process {
        margin-top: -150px !important;
    }

    .privacy-content {
        padding: 0 1rem;
    }

    .contact-info-privacy {
        padding: 1rem;
    }

    /* Process Carousel Small Mobile Styles - now horizontal */

    .process-carousel-slide {
        padding: 1rem 0.25rem;
    }

    .process-carousel-nav {
        gap: 1rem;
        margin-top: 1.5rem;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .process-carousel .process-carousel-prev,
    .process-carousel .process-carousel-next {
        width: 40px;
        height: 40px;
        pointer-events: auto;
    }

    .process-carousel .process-carousel-prev {
        left: -20px;
    }

    .process-carousel .process-carousel-next {
        right: -20px;
    }



    /* Process Timeline Small Mobile Styles */
    .timeline-container {
        padding: 0 0.5rem;
    }

    .timeline-card {
        padding: 1.5rem 1rem;
    }

    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .timeline-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .timeline-icon {
        width: 45px;
        height: 45px;
    }

    .timeline-icon svg {
        width: 30px;
        height: 30px;
    }

    .timeline-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
        align-self: flex-end;
        margin-top: -2rem;
    }

    .timeline-title {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .timeline-duration {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .timeline-description {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .timeline-conditional,
    .timeline-additional {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .timeline-includes {
        margin-top: 1rem;
    }

    .timeline-includes h4 {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .timeline-includes li {
        font-size: 0.8rem;
        padding-left: 1rem;
        margin-bottom: 0.3rem;
    }

    .timeline-layer {
        margin-bottom: 2rem;
    }

    .connector-line {
        height: 25px;
    }

    .connector-arrow {
        font-size: 1rem;
    }

    /* Case Studies Small Mobile Styles */
    .case-study-image {
        height: 180px;
    }

    .case-study-card {
        max-width: 300px;
    }

    .case-study-content {
        padding: 1.2rem;
    }

    .case-study-title {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .case-study-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .case-study-metrics {
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .metric-value {
        font-size: 1rem;
    }

    .metric-label {
        font-size: 0.75rem;
    }

    .case-study-tags {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }

    .tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .case-study-footer {
        padding: 1rem 1.2rem;
    }
}

/* Final mobile contact layout override - highest specificity */
@media screen and (max-width: 768px) {
    .contact-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 2rem !important;
        width: 100% !important;
    }

    .contact-card-left {
        grid-column: 1 !important;
        grid-row: 1 !important;
        order: 1 !important;
        width: 100% !important;
    }

    .contact-form-right {
        grid-column: 1 !important;
        grid-row: 2 !important;
        order: 2 !important;
        width: 100% !important;
    }
}
